2019-04-26 18:45:48 -07:00
|
|
|
(function () {
|
|
|
|
var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system");
|
2019-07-19 16:35:07 -07:00
|
|
|
|
|
|
|
|
2019-04-26 18:45:48 -07:00
|
|
|
this.clickDownOnEntity = function (entityID, mouseEvent) {
|
2019-07-19 16:35:07 -07:00
|
|
|
var scripts = ScriptDiscoveryService.getRunning();
|
|
|
|
|
|
|
|
var runningSimplified =
|
2019-07-22 10:36:57 -07:00
|
|
|
!scripts.every(function (item) {
|
|
|
|
return item.name !== "simplifiedUI.js";
|
|
|
|
});
|
2019-07-19 16:35:07 -07:00
|
|
|
|
|
|
|
var avatarAppQML = runningSimplified ? "hifi/simplifiedUI/avatarApp/AvatarApp.qml" : "hifi/AvatarApp.qml";
|
|
|
|
tablet.loadQMLSource(avatarAppQML);
|
2019-04-26 18:45:48 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|