-
-
Notifications
You must be signed in to change notification settings - Fork 18
window_set_min_size
drewmccluskey edited this page Feb 12, 2019
·
3 revisions
Sets window minimum size
window_set_min_size(size)
Argument | Description |
---|---|
Size size |
What min size should be set |
Returns: void
This function allows you to set the min size of the game window. It is very useful for not allowing an application window to be any smaller than the current graphics.
window_set_min_size(new Size(100,200));
The above code will sets minimum window size to width 100px and height 200px.
Back to window-functions