🎮 Adds shadows, dynamic sliders and livestream to emulation

This commit is contained in:
Rune Harlyk
2023-07-27 16:19:10 +02:00
parent dfe0b1dc2b
commit 8f35e534cb
5 changed files with 93 additions and 35 deletions
+6 -2
View File
@@ -2,10 +2,14 @@
import Stream from '../Views/Stream.svelte';
import Controls from '../components/Controls.svelte';
import ModelView from '../components/Model/ModelView.svelte';
import { emulateModel } from '../lib/store';
</script>
<div class="flex justify-center items-center w-full h-full">
<Stream />
<ModelView />
{#if $emulateModel}
<ModelView />
{:else}
<Stream />
{/if}
<Controls />
</div>