Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
AleziaKurdis authored Nov 10, 2023
1 parent cd4e3dd commit 4bb25df
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 2 deletions.
14 changes: 13 additions & 1 deletion CEON/gotgPortal.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,21 @@


//################################# PORTAL LIST #############################################################
var portals = [

var portals;
if (location.protocol === "hifi") {
portals = Script.require("./portals_domain.json");
} else {
portals = Script.require("./portals_serverless.json");
}
for (i = 0; i < portals.length; i++) {
portals[i].id = Uuid.NULL;
portals[i].zoneID = Uuid.NULL;
}
/*var portals = [
{"name": "SANCTUARY", "id": Uuid.NULL, "zoneID": Uuid.NULL, "localPosition": {"x": 906.3857421875,"y": 205.67919921875,"z":-200.65283203125}}
];
*/
//###########################################################################################################


Expand Down
3 changes: 2 additions & 1 deletion CEON/inertia.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"DataVersion":3,
"Paths":{
"\/":"\/4016.94,3982.18,3980.38\/0,0.724424,0,0.689354"
"\/":"\/4016.94,3982.18,3980.38\/0,0.724424,0,0.689354",
"SANCTUARY":"\/906.3857, 205.679,-200.65283\/0,0.724424,0,0.689354"
},
"Entities":[
{
Expand Down
6 changes: 6 additions & 0 deletions CEON/portals_domain.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[
{
"name": "SANCTUARY",
"localPosition": {"x": 906.3857421875,"y": 205.67919921875,"z":-200.65283203125}
}
]
6 changes: 6 additions & 0 deletions CEON/portals_serverless.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[
{
"name": "SANCTUARY",
"localPosition": {"x": 906.3857421875,"y": 205.67919921875,"z":-200.65283203125}
}
]

0 comments on commit 4bb25df

Please sign in to comment.