OnResolutionChange

From Onset Developer Wiki
OnResolutionChange

Type: Event
Context: Client
Introduced: v1.0

Description

Called when the size of the game window changes. Either due to manual resizing or through settings.

Syntax

OnResolutionChange(width, height)

Parameters

  • width
    New width (x) size.
  • height
    New height (y) size.

Example

function OnResolutionChange(width, height)
	AddPlayerChat("Resolution changed to "..width.."x"..height)
end
AddEvent("OnResolutionChange", OnResolutionChange)

See also