mirror of
https://github.com/AleziaKurdis/Overte-community-apps.git
synced 2025-04-06 01:53:45 +02:00
Fix undeclared variable
This commit is contained in:
parent
cb7e2dae4a
commit
d0dfa7306f
1 changed files with 116 additions and 116 deletions
|
@ -1,117 +1,117 @@
|
||||||
// dom_nav.js
|
// dom_nav.js
|
||||||
//
|
//
|
||||||
// Created by Alezia Kurdis, July 2018
|
// Created by Alezia Kurdis, July 2018
|
||||||
//
|
//
|
||||||
// This tool is to help teleporting yourself rapidly where you need in a domain in a couple of clicks,
|
// This tool is to help teleporting yourself rapidly where you need in a domain in a couple of clicks,
|
||||||
// without having to enter numbers in a path. Ideal for those who are working on large landscapes.
|
// without having to enter numbers in a path. Ideal for those who are working on large landscapes.
|
||||||
// Precision: 80 meters.
|
// Precision: 80 meters.
|
||||||
//
|
//
|
||||||
// Distributed under the Apache License, Version 2.0.
|
// Distributed under the Apache License, Version 2.0.
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
(function() {
|
(function() {
|
||||||
var MainPath = Script.resolvePath('').split("dom_nav.js")[0];
|
var MainPath = Script.resolvePath('').split("dom_nav.js")[0];
|
||||||
var APP_NAME = "DOM NAV";
|
var APP_NAME = "DOM NAV";
|
||||||
var APP_URL = MainPath + "dom_nav.html";
|
var APP_URL = MainPath + "dom_nav.html";
|
||||||
var APP_ICON_INACTIVE = MainPath + "dom_nav_icon_i.png";
|
var APP_ICON_INACTIVE = MainPath + "dom_nav_icon_i.png";
|
||||||
var APP_ICON_ACTIVE = MainPath + "dom_nav_icon_a.png";
|
var APP_ICON_ACTIVE = MainPath + "dom_nav_icon_a.png";
|
||||||
var statusApp = false;
|
var statusApp = false;
|
||||||
|
|
||||||
var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system");
|
var tablet = Tablet.getTablet("com.highfidelity.interface.tablet.system");
|
||||||
tablet.screenChanged.connect(onScreenChanged);
|
tablet.screenChanged.connect(onScreenChanged);
|
||||||
var button = tablet.addButton({
|
var button = tablet.addButton({
|
||||||
text: APP_NAME,
|
text: APP_NAME,
|
||||||
icon: APP_ICON_INACTIVE,
|
icon: APP_ICON_INACTIVE,
|
||||||
activeIcon: APP_ICON_ACTIVE
|
activeIcon: APP_ICON_ACTIVE
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
function clicked(){
|
function clicked(){
|
||||||
if (statusApp == true){
|
if (statusApp == true){
|
||||||
|
|
||||||
tablet.webEventReceived.disconnect(onWebEventReceivedz);
|
tablet.webEventReceived.disconnect(onWebEventReceivedz);
|
||||||
tablet.gotoHomeScreen();
|
tablet.gotoHomeScreen();
|
||||||
statusApp = false;
|
statusApp = false;
|
||||||
}else{
|
}else{
|
||||||
|
|
||||||
var AvatarPosition = MyAvatar.position;
|
var AvatarPosition = MyAvatar.position;
|
||||||
tablet.gotoWebScreen(APP_URL + "?x=" + Math.round(AvatarPosition.x) + "&y=" + Math.round(AvatarPosition.y) + "&z=" + Math.round(AvatarPosition.z));
|
tablet.gotoWebScreen(APP_URL + "?x=" + Math.round(AvatarPosition.x) + "&y=" + Math.round(AvatarPosition.y) + "&z=" + Math.round(AvatarPosition.z));
|
||||||
tablet.webEventReceived.connect(onWebEventReceivedz);
|
tablet.webEventReceived.connect(onWebEventReceivedz);
|
||||||
statusApp = true;
|
statusApp = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
button.editProperties({
|
button.editProperties({
|
||||||
isActive: statusApp
|
isActive: statusApp
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
button.clicked.connect(clicked);
|
button.clicked.connect(clicked);
|
||||||
|
|
||||||
function onWebEventReceivedz(eventz){
|
function onWebEventReceivedz(eventz){
|
||||||
|
|
||||||
if(typeof eventz === "string"){
|
if(typeof eventz === "string"){
|
||||||
eventzget = JSON.parse(eventz);
|
var eventzget = JSON.parse(eventz);
|
||||||
|
|
||||||
|
|
||||||
if(eventzget.type === "give_tp_coor"){
|
if(eventzget.type === "give_tp_coor"){
|
||||||
|
|
||||||
var myVec = {
|
var myVec = {
|
||||||
x: parseFloat(eventzget.x),
|
x: parseFloat(eventzget.x),
|
||||||
y: parseFloat(eventzget.y),
|
y: parseFloat(eventzget.y),
|
||||||
z: parseFloat(eventzget.z)
|
z: parseFloat(eventzget.z)
|
||||||
};
|
};
|
||||||
|
|
||||||
MyAvatar.goToLocation(myVec, false);
|
MyAvatar.goToLocation(myVec, false);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if(eventzget.type === "look_to_north"){
|
if(eventzget.type === "look_to_north"){
|
||||||
//print("Look at North!")
|
//print("Look at North!")
|
||||||
|
|
||||||
MyAvatar.goToLocation(MyAvatar.position, true,{ x: 0, y: 0, z: 0, w:1 },false);
|
MyAvatar.goToLocation(MyAvatar.position, true,{ x: 0, y: 0, z: 0, w:1 },false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(eventzget.type === "look_to_south"){
|
if(eventzget.type === "look_to_south"){
|
||||||
//print("Look at South!")
|
//print("Look at South!")
|
||||||
MyAvatar.goToLocation(MyAvatar.position, true,{ x: 0, y: 1, z: 0, w:0 },false);
|
MyAvatar.goToLocation(MyAvatar.position, true,{ x: 0, y: 1, z: 0, w:0 },false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(eventzget.type === "look_to_west"){
|
if(eventzget.type === "look_to_west"){
|
||||||
//print("Look at West!")
|
//print("Look at West!")
|
||||||
MyAvatar.goToLocation(MyAvatar.position, true,{ x: 0, y: 0.7071068, z: 0, w:0.7071068 },false);
|
MyAvatar.goToLocation(MyAvatar.position, true,{ x: 0, y: 0.7071068, z: 0, w:0.7071068 },false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(eventzget.type === "look_to_east"){
|
if(eventzget.type === "look_to_east"){
|
||||||
//print("Look at East!")
|
//print("Look at East!")
|
||||||
MyAvatar.goToLocation(MyAvatar.position, true,{ x: 0, y: 0.7071068, z: 0, w:-0.7071068 },false);
|
MyAvatar.goToLocation(MyAvatar.position, true,{ x: 0, y: 0.7071068, z: 0, w:-0.7071068 },false);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tablet.webEventReceived.connect(onWebEventReceivedz);
|
tablet.webEventReceived.connect(onWebEventReceivedz);
|
||||||
|
|
||||||
function onScreenChanged(type, url) {
|
function onScreenChanged(type, url) {
|
||||||
if (type == "Web" && url.indexOf(APP_URL) != -1){
|
if (type == "Web" && url.indexOf(APP_URL) != -1){
|
||||||
statusApp = true;
|
statusApp = true;
|
||||||
}else{
|
}else{
|
||||||
statusApp = false;
|
statusApp = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
button.editProperties({
|
button.editProperties({
|
||||||
isActive: statusApp
|
isActive: statusApp
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function cleanup() {
|
function cleanup() {
|
||||||
tablet.webEventReceived.disconnect(onWebEventReceivedz);
|
tablet.webEventReceived.disconnect(onWebEventReceivedz);
|
||||||
tablet.screenChanged.disconnect(onScreenChanged);
|
tablet.screenChanged.disconnect(onScreenChanged);
|
||||||
tablet.removeButton(button);
|
tablet.removeButton(button);
|
||||||
}
|
}
|
||||||
|
|
||||||
Script.scriptEnding.connect(cleanup);
|
Script.scriptEnding.connect(cleanup);
|
||||||
}());
|
}());
|
Loading…
Reference in a new issue