diff --git a/src/lib/components/minimap.svelte b/src/lib/components/minimap.svelte
new file mode 100644
index 0000000..8e097d3
--- /dev/null
+++ b/src/lib/components/minimap.svelte
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/routes/index.svelte b/src/routes/index.svelte
index e15be93..80c2d72 100644
--- a/src/routes/index.svelte
+++ b/src/routes/index.svelte
@@ -35,6 +35,7 @@
import Schedule from "$lib/components/world-layers/schedule/Schedule.svelte"
// *** PHONE
import PhoneNavigation from "$lib/components/PhoneNavigation.svelte"
+ import Minimap from "$lib/components/minimap.svelte"
import {
connectToGameServer,
@@ -95,6 +96,8 @@
let newRoomIntroduction = false
let streamRect = {}
let chatRect = {}
+ let minimap;
+ let mapContentElement;
$: {
if ($players && $players[$localPlayer.uuid]) {
@@ -307,6 +310,7 @@
let avatarCookie = Cookies.get("open-eyebeam-avatar")
+
if (!nameCookie && !$isAuthenticated) {
// If the user is not onboarded, branch off...
uiState.set(STATE.ONBOARDING)
@@ -314,6 +318,7 @@
// ... otherwise, finalize the set up
finalSetUp(nameCookie, avatarCookie)
}
+
})
// check for universal stream
export let universalStream = writable({})
@@ -343,6 +348,9 @@ $: $streams && selectStream($streams.filter(stream => {return $currentRoom._id =
/>
{/if}
+
+
+
{#if $currentRoom}
{return $currentRoom._id =
aria-hidden={!$activeArticle ? "false" : "true" }
role="ui"
>
-
-
-
-
-
-
-
-
- {
- if (e.detail.roomId) {
- changeRoom(e.detail.roomId)
- }
- roomIntent.set(false)
- }}
- />
-
+
+
+
+
+
+
+
+
+
+ {
+ if (e.detail.roomId) {
+ changeRoom(e.detail.roomId)
+ }
+ roomIntent.set(false)
+ }}
+ />
+
+
{/if}
@@ -429,6 +439,7 @@ $: $streams && selectStream($streams.filter(stream => {return $currentRoom._id =
{/if}
+
{#if $roomIntent}