Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Events emitted by the windows object, such as input and resolution changes.
windows
overlay.windows.on("resolution", (width: number, height: number) => { // ... });
overlay.windows.on("keyDown", (event: KeyboardKeyEvent) => { // ... });
overlay.windows.on("keyUp", (event: KeyboardKeyEvent) => { // ... });
overlay.windows.on("keyboardFocus", (focus: boolean) => { // ... });
overlay.windows.on("mouseDown", (event: MouseButtonEvent) => { // ... });
overlay.windows.on("mouseUp", (event: MouseButtonEvent) => { // ... });
Was this page helpful?