mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 16:42:12 +02:00
Home button fallback to Tutorial
Previously, the Home button, in the case where there is no home bookmark defined, was redirecting to localhost. But some peopl emight not have a localhost domain server running. This PR change the fallback to the Tutorial instead of localhost, In addition, the tutorial place card wasn't work correctly. (it was trying to use the name instead of the address. I added an exception case for this.
This commit is contained in:
parent
d42b7fdbf4
commit
158de9125a
2 changed files with 5 additions and 2 deletions
|
@ -425,6 +425,9 @@
|
|||
if (placeRecords[i].metaverseRegion !== "local") {
|
||||
placeUrl = "hifi://" + placeRecords[i].address;
|
||||
}
|
||||
if (placeRecords[i].name === "tutorial") {
|
||||
placeUrl = "file:///~/serverless/tutorial.json";
|
||||
}
|
||||
|
||||
//Add the place to the list
|
||||
|
||||
|
|
|
@ -94,7 +94,7 @@
|
|||
if (LocationBookmarks.getHomeLocationAddress()) {
|
||||
location.handleLookupString(LocationBookmarks.getHomeLocationAddress());
|
||||
} else {
|
||||
location.goToLocalSandbox();
|
||||
Window.location = "file:///~/serverless/tutorial.json";
|
||||
}
|
||||
} else if (messageObj.action === "GO_BACK" && (n - timestamp) > INTERCALL_DELAY) {
|
||||
location.goBack();
|
||||
|
@ -442,7 +442,7 @@
|
|||
"domain": "",
|
||||
"domainOrder": "ZZZZZZZZZZZZZZZ",
|
||||
"metaverseServer": "",
|
||||
"metaverseRegion": "local"
|
||||
"metaverseRegion": "local"
|
||||
};
|
||||
portalList.push(tutorialPortal);
|
||||
|
||||
|
|
Loading…
Reference in a new issue