-
-
Notifications
You must be signed in to change notification settings - Fork 18
window_set_size
CryoEagle edited this page Jan 11, 2019
·
2 revisions
This will set custom window size
window_set_size(size)
Argument | Description |
---|---|
Size size |
Custom window size |
Returns: void
This will set custom window size, so you have 100% controll about what size to set.
window_set_size(new Size(400,400));
The above code will set window size to width 400px and height 400px.
Back to window-functions