2021-05-11 17:37:21 +02:00
|
|
|
<script lang="typescript">
|
2021-05-12 18:32:55 +02:00
|
|
|
import MenuIcon from "./Menu/MenuIcon.svelte";
|
|
|
|
import {menuIconVisible} from "../Stores/MenuStore";
|
2021-05-28 09:31:04 +02:00
|
|
|
import {gameOverlayVisibilityStore} from "../Stores/MediaStore";
|
|
|
|
import CameraControls from "./CameraControls.svelte";
|
2021-05-11 17:37:21 +02:00
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<div>
|
2021-05-28 09:31:04 +02:00
|
|
|
{#if $gameOverlayVisibilityStore}
|
2021-05-17 16:50:35 +02:00
|
|
|
<!-- {#if $menuIconVisible}
|
2021-05-12 18:32:55 +02:00
|
|
|
<MenuIcon />
|
2021-05-17 16:50:35 +02:00
|
|
|
{/if} -->
|
2021-05-28 09:31:04 +02:00
|
|
|
<CameraControls></CameraControls>
|
|
|
|
{/if}
|
2021-05-11 17:37:21 +02:00
|
|
|
</div>
|