Skip to content

Commit

Permalink
Add empty stinger component for overlaying on scenes
Browse files Browse the repository at this point in the history
  • Loading branch information
slmnio committed Mar 26, 2022
1 parent 377158f commit 54af157
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
13 changes: 13 additions & 0 deletions website/src/components/broadcast/roots/EmptyStingerOverlay.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<template>
<div class="empty-stinger-overlay"></div>
</template>

<script>
export default {
name: "EmptyStingerOverlay"
};
</script>

<style scoped>
</style>
5 changes: 4 additions & 1 deletion website/src/router/broadcast.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ import CasterBackground from "@/components/broadcast/CasterBackground";
import MusicOverlay from "@/components/broadcast/roots/MusicOverlay";
import ThemeTransitionTester from "@/components/broadcast/roots/ThemeTransitionTester";
import DeskGraphicsOverlay from "@/components/broadcast/roots/DeskGraphicsOverlay";
import EmptyStingerOverlay from "@/components/broadcast/roots/EmptyStingerOverlay";

export default [
{ path: "ingame", component: IngameOverlay, props: route => ({ codes: route.query.codes }) },
Expand Down Expand Up @@ -138,5 +139,7 @@ export default [
})
},
{ path: "tester", component: ThemeTransitionTester },
{ path: "desk-graphics", component: DeskGraphicsOverlay }
{ path: "desk-graphics", component: DeskGraphicsOverlay },
{ path: "stinger", component: EmptyStingerOverlay },
{ path: "empty", redirect: "stinger" }
];

0 comments on commit 54af157

Please sign in to comment.