mirror of
https://github.com/overte-org/overte.git
synced 2025-04-07 20:14:22 +02:00
12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
print("Launching web window");
|
|
qmlWindow = new OverlayWindow({
|
|
title: 'Test Qml',
|
|
source: "qrc:///qml/OverlayWindowTest.qml",
|
|
height: 240,
|
|
width: 320,
|
|
visible: true
|
|
});
|
|
|
|
Script.setInterval(function() {
|
|
qmlWindow.raise();
|
|
}, 2 * 1000);
|