-
-
Notifications
You must be signed in to change notification settings - Fork 18
window_set_colour
drewmccluskey edited this page Feb 12, 2019
·
4 revisions
This will set color of window
window_set_colour(c)
Argument | Description |
---|---|
Color c |
Custom colour of window |
Returns: void
This function will set your custom color of the window to whatever one would like.
window_set_colour(new Microsoft.Xna.Framework.Color(80, 100, 100));
The above code will set the window color to RGBA 80, 100, 100 (ash blue).
Back to window-functions