feat(home): pictochat -> contact

This commit is contained in:
2025-11-17 00:52:18 +01:00
parent 4c021178ac
commit cde4b991d7
4 changed files with 3 additions and 9 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -1,12 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
// the out transition:
// clicked button goes up
// other buttons, including selector fade away, text + status bar of upper screen and clock hands fades away 2x faster
// other buttons + calendar + clock body finish fading away at the same time
// then we wait a bit, and new screen starts appearing
import GameButton from "./GameButton.vue"; import GameButton from "./GameButton.vue";
import PictochatButton from "./PictochatButton.vue"; import ContactButton from "./ContactButton.vue";
import DownloadPlayButton from "./DownloadPlayButton.vue"; import DownloadPlayButton from "./DownloadPlayButton.vue";
import Selector from "~/components/Common/ButtonSelector.vue"; import Selector from "~/components/Common/ButtonSelector.vue";
@@ -67,7 +61,7 @@ const getOpacity = (button?: ButtonType) => {
:y="72 + getButtonOffset('downloadPlay')" :y="72 + getButtonOffset('downloadPlay')"
:opacity="getOpacity('downloadPlay')" :opacity="getOpacity('downloadPlay')"
/> />
<PictochatButton <ContactButton
:x="32" :x="32"
:y="72 + getButtonOffset('contact')" :y="72 + getButtonOffset('contact')"
:opacity="getOpacity('contact')" :opacity="getOpacity('contact')"

View File

@@ -18,7 +18,7 @@ useRender((ctx) => {
<template> <template>
<img <img
ref="buttonImage" ref="buttonImage"
src="/assets/images/home/bottom-screen/buttons/pictochat.png" src="/assets/images/home/bottom-screen/buttons/contact.png"
hidden hidden
/> />
</template> </template>