Files
pihkaal-me/app/components/Contact/BottomScreen/Buttons.vue

19 lines
405 B
Vue

<script setup lang="ts">
import BUTTONS_IMAGE from "/assets/images/contact/bottom-screen/buttons.png";
const store = useContactStore();
const [buttonsImage] = useImages(BUTTONS_IMAGE);
useRender((ctx) => {
ctx.globalAlpha = store.isIntro
? store.intro.stage3Opacity
: store.outro.stage1Opacity;
ctx.drawImage(buttonsImage!, 31, 32);
});
defineOptions({
render: () => null,
});
</script>