Skip to content

Commit

Permalink
Fix keyword import, comment out Vircadia World init for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
digisomni committed Sep 6, 2024
1 parent e59877b commit df679bb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<meta charset="utf-8">
<meta name="description" content="<%= process.env.VRCA_PRODUCT_DESCRIPTION %>">
<meta name="keywords" content="Vircadia, VR, virtual, reality, metaverse, game, 3D, open-world, open-source, open, future" />
<meta name="keywords" content="<%= process.env.VRCA_PRODUCT_KEYWORDS %>" />
<meta name="author" content="Vircadia Contributors" />
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
Expand Down
3 changes: 3 additions & 0 deletions quasar.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ module.exports = configure(function (ctx) {
VRCA_PRODUCT_DESCRIPTION:
process.env.VRCA_PRODUCT_DESCRIPTION ??
packageJSON.description,
VRCA_PRODUCT_KEYWORDS:
process.env.VRCA_PRODUCT_KEYWORDS ??
"Vircadia, VR, virtual, reality, metaverse, game, 3D, open-world, open-source, open, future",
VRCA_LOGO:
process.env.VRCA_LOGO ??
"assets/images/branding/vircadia-icon.svg",
Expand Down
10 changes: 5 additions & 5 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ onMounted(async () => {
preloader.classList.add("hide");
}

await Client.Setup.InitializeVircadiaWorld({
host: "http://localhost",
port: 3000,
agentId: "1234567890",
});
// await Client.Setup.InitializeVircadiaWorld({
// host: "http://localhost",
// port: 3000,
// agentId: "1234567890",
// });
});
</script>

0 comments on commit df679bb

Please sign in to comment.