mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 11:36:40 +02:00
13 lines
No EOL
412 B
JavaScript
13 lines
No EOL
412 B
JavaScript
function openEngineTaskView() {
|
|
// Set up the qml ui
|
|
var qml = Script.resolvePath('engineList.qml');
|
|
var window = new OverlayWindow({
|
|
title: 'Render Engine',
|
|
source: qml,
|
|
width: 300,
|
|
height: 400
|
|
});
|
|
window.setPosition(200, 50);
|
|
//window.closed.connect(function() { Script.stop(); });
|
|
}
|
|
openEngineTaskView(); |