mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 14:33:28 +02:00
12 lines
306 B
JavaScript
12 lines
306 B
JavaScript
var width = 0,
|
|
height = 0;
|
|
|
|
function onUpdate(dt) {
|
|
if (width != Window.innerWidth || height != Window.innerHeight) {
|
|
width = Window.innerWidth;
|
|
height = Window.innerHeight;
|
|
print("New window dimensions: " + width + ", " + height);
|
|
}
|
|
}
|
|
|
|
Script.update.connect(onUpdate);
|