mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-04-09 23:13:51 +02:00
adding some logging
This commit is contained in:
parent
3465e3cc13
commit
39d0d82067
2 changed files with 8 additions and 2 deletions
|
@ -15,6 +15,7 @@
|
|||
var _this;
|
||||
|
||||
var masterResetScript = Script.resolvePath("masterReset.js");
|
||||
print("masterResetScript PATH " + masterResetScript);
|
||||
Script.include(masterResetScript);
|
||||
|
||||
ResetSwitch = function () {
|
||||
|
|
|
@ -23,9 +23,12 @@ var wandScriptURL = Script.resolvePath("../examples/toys/bubblewand/wand.js");
|
|||
var dollScriptURL = Script.resolvePath("../examples/toys/doll/doll.js");
|
||||
var lightsScriptURL = Script.resolvePath("../examples/toys/lightSwitch.js");
|
||||
|
||||
print("hiddenEntityScript PATH OUTER " + hiddenEntityScriptURL);
|
||||
|
||||
|
||||
|
||||
MasterReset = function () {
|
||||
|
||||
print("hiddenEntityScript PATH INNER " + hiddenEntityScriptURL);
|
||||
var resetKey = "resetMe";
|
||||
var GRABBABLE_DATA_KEY = "grabbableKey";
|
||||
|
||||
|
@ -1167,4 +1170,6 @@ MasterReset = function () {
|
|||
|
||||
Script.scriptEnding.connect(cleanup);
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
MasterReset();
|
Loading…
Reference in a new issue