Guest User

Untitled

a guest
Jan 18th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. gml_pragma("forceinline");
  2. /// @desc sets the window to the desired size and centres it
  3. /// @param w
  4. /// @param h
  5. // Credit: Nuxii @Kat3Nuxii
  6. window_set_rectangle(
  7. (display_get_width()-argument0) div 2,
  8. (display_get_height()-argument1) div 2,
  9. argument0,
  10. argument1
  11. );
Add Comment
Please, Sign In to add comment