-
-
Notifications
You must be signed in to change notification settings - Fork 18
window_set_size
drewmccluskey edited this page Feb 12, 2019
·
2 revisions
This will set custom window size
window_set_size(size)
Argument | Description |
---|---|
Size size |
Custom window size |
Returns: void
This function will set the current game window size the input width and height pixel dimensions.
window_set_size(new Size(400,400));
The above code will set the window size to width 400px and height 400px.
Back to window-functions