To get a world dimension, we can use;
- sys.get_config_int(“display.width”),
- window.get_size(), or
- render.get_width().
Could you tell me which way is more efficient or some pros and cons?
Additionally, how about render.get_window_width()?
To get a world dimension, we can use;
This will give you the value you specified in game.project
This will give you the real size of the window. It can be different from the logical size set in display.width and display.height
They are simple function calls and which one you use will have no measurable impact in performance unless you call it tens of thousands of times in a loop every frame.
Thank you for the clear explanation!