19 lines
406 B
Vue
19 lines
406 B
Vue
<script setup lang="ts">
|
|
import BUTTONS_IMAGE from "/assets/images/contact/bottom-screen/buttons.webp";
|
|
|
|
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>
|