Event id for when the screen is resized. Calls the OnScreenResizeCallback.
-- Create a functionlocal screenResize = function() osrs.print("Screen Resized")end-- Subscribe to the functionosrs.Events.subscribe(screenResize, osrs.Events.ON_SCREEN_RESIZE) Copy
-- Create a functionlocal screenResize = function() osrs.print("Screen Resized")end-- Subscribe to the functionosrs.Events.subscribe(screenResize, osrs.Events.ON_SCREEN_RESIZE)
Event id for when the screen is resized. Calls the OnScreenResizeCallback.
Example