Go to the source code of this file.
| void console |
( |
string |
message | ) |
|
Prints a message to the console (~)
- Parameters
-
| message | The message to print |
| void consoleRGB |
( |
string |
message, |
|
|
Color |
color |
|
) |
| |
Prints a message to the console (~) in a given color
- Parameters
-
| message | The message to print |
| color | The color to use to display the message |
| void notify |
( |
string |
title, |
|
|
string |
message |
|
) |
| |
Open a new notification window with the given title and message
- Parameters
-
| title | The title of the notification |
| message | The message to display |
| void print |
( |
string |
message | ) |
|
Prints a message to the console (~)
- Parameters
-
| message | The message to print |
| Color rgb |
( |
number |
r, |
|
|
number |
g, |
|
|
number |
b |
|
) |
| |
Creates a full opaque (alpha = 255) color object
Equivalent of rgba(r, g, b, 255);
- Parameters
-
| r | The red component of the color |
| g | The green component of the color |
| b | The blue component of the color |
- Returns
- The created color
| Color rgba |
( |
number |
r, |
|
|
number |
g, |
|
|
number |
b, |
|
|
number |
a |
|
) |
| |
Creates a color object
- Parameters
-
| r | The red component of the color |
| g | The green component of the color |
| b | The blue component of the color |
| a | The opacity of the color |
- Returns
- The created color