mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
17 lines
555 B
JavaScript
17 lines
555 B
JavaScript
(function () {
|
|
var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system");
|
|
|
|
|
|
this.clickDownOnEntity = function (entityID, mouseEvent) {
|
|
var scripts = ScriptDiscoveryService.getRunning();
|
|
|
|
var runningSimplified =
|
|
!scripts.every(function (item) {
|
|
return item.name !== "simplifiedUI.js";
|
|
});
|
|
|
|
var avatarAppQML = runningSimplified ? "hifi/simplifiedUI/avatarApp/AvatarApp.qml" : "hifi/AvatarApp.qml";
|
|
tablet.loadQMLSource(avatarAppQML);
|
|
};
|
|
}
|
|
);
|