overte/scripts/developer/utilities/render/luci2.js
2019-03-03 23:35:40 -08:00

13 lines
No EOL
397 B
JavaScript

function openEngineTaskView() {
// Set up the qml ui
var qml = Script.resolvePath('luci.qml');
var window = new OverlayWindow({
title: 'luci qml',
source: qml,
width: 300,
height: 400
});
window.setPosition(200, 50);
//window.closed.connect(function() { Script.stop(); });
}
openEngineTaskView();