Update url to read from more.overte.org/tutorial

Update url to read from more.overte.org/tutorial
since client entity scripts can't read local files (for security)
This commit is contained in:
Alezia Kurdis 2022-03-25 21:40:59 -04:00 committed by GitHub
parent 7194e1e78e
commit b6d4684e0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@
var isActive = false;
var thisEntityID;
var versioncall = Math.floor(Math.random()*50000);
var DopplegangerClass = Script.require('file:///~/serverless/Scripts/doppleganger.js?version=' + versioncall);
var DopplegangerClass = Script.require('https://more.overte.org/tutorial/doppleganger.js?version=' + versioncall);
var doppleganger = new DopplegangerClass({
avatar: MyAvatar,

View file

@ -13,7 +13,7 @@
//
(function() {
var CONFIG_WIZARD_URL = "file:///~/serverless/Scripts/wizard.html?v=" + Math.floor(Math.random() * 65000);
var CONFIG_WIZARD_URL = "https://more.overte.org/tutorial/wizard.html?v=" + Math.floor(Math.random() * 65000);
var loaderEntityID;
var configWizardEntityID;