mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 09:44:21 +02:00
Added failsafe so dependencies don't break
This commit is contained in:
parent
62a6a9d45e
commit
fbf6d0efe8
1 changed files with 5 additions and 0 deletions
|
@ -12,7 +12,12 @@
|
|||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
//
|
||||
|
||||
|
||||
// UI and debug console implemented using uiwidgets / 2d overlays
|
||||
Script.include("../../libraries/uiwidgets.js");
|
||||
if (typeof('UI') === 'undefined') { // backup link in case the user downloaded this somewhere
|
||||
Script.include('http://public.highfidelity.io/scripts/libraries/uiwidgets.js');
|
||||
}
|
||||
|
||||
// Platform script
|
||||
(function () {
|
||||
|
|
Loading…
Reference in a new issue