content/hifi-public/cozza13/solarsystem/loader.js
Dale Glass 0d14e5a379 Initial data.
Needs a lot of cleanup. Data has been de-duplicated, and where identical copies existed, one of them
has been replaced with a symlink.

Some files have been excluded, such as binaries, installers and debug dumps. Some of that may still
be present.
2022-02-13 18:59:11 +01:00

22 lines
No EOL
535 B
JavaScript

(function () {
BASE_URL = 'http://vkislichenko.github.io/hifi/scripts/stage/';
MANAGER_SEARCH_DIST = 10.0;
PERM_CAN_CREATE = true;
PERM_CAN_EDIT = true;
PERM_CAN_DELETE = true;
// load
Script.include(BASE_URL + "app/WebView.js");
Script.include(BASE_URL + "app/Entity.js");
Script.include(BASE_URL + "app/Entity/Identifier.js");
Script.include(BASE_URL + "app/Builder.js");
Script.include(BASE_URL + "app/Manager.js");
Script.include(BASE_URL + "app/Interface.js");
StageManager.searchForManagerEntity();
})();