The Ways to Get a Screen Size

To get a world dimension, we can use;

  1. sys.get_config_int(“display.width”),
  2. window.get_size(), or
  3. render.get_width().
    Could you tell me which way is more efficient or some pros and cons?
    Additionally, how about render.get_window_width()?

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.

1 Like

Thank you for the clear explanation! :smiley_cat: