From f3d3f2d30149bb7868597e23a7b0c471bb086f91 Mon Sep 17 00:00:00 2001 From: miteruzo Date: Sun, 14 Jun 2026 05:38:26 +0900 Subject: [PATCH] #361 --- .../{ => assets}/gekanator/mascot-celebrate.png | Bin .../{ => assets}/gekanator/mascot-confident.png | Bin .../{ => assets}/gekanator/mascot-failed.png | Bin .../public/{ => assets}/gekanator/mascot-idle.png | Bin .../gekanator/mascot-thinking-far.png | Bin .../gekanator/mascot-thinking-mid.png | Bin .../gekanator/mascot-thinking-near.png | Bin frontend/src/pages/GekanatorPage.tsx | 14 +++++++------- 8 files changed, 7 insertions(+), 7 deletions(-) rename frontend/public/{ => assets}/gekanator/mascot-celebrate.png (100%) rename frontend/public/{ => assets}/gekanator/mascot-confident.png (100%) rename frontend/public/{ => assets}/gekanator/mascot-failed.png (100%) rename frontend/public/{ => assets}/gekanator/mascot-idle.png (100%) rename frontend/public/{ => assets}/gekanator/mascot-thinking-far.png (100%) rename frontend/public/{ => assets}/gekanator/mascot-thinking-mid.png (100%) rename frontend/public/{ => assets}/gekanator/mascot-thinking-near.png (100%) diff --git a/frontend/public/gekanator/mascot-celebrate.png b/frontend/public/assets/gekanator/mascot-celebrate.png similarity index 100% rename from frontend/public/gekanator/mascot-celebrate.png rename to frontend/public/assets/gekanator/mascot-celebrate.png diff --git a/frontend/public/gekanator/mascot-confident.png b/frontend/public/assets/gekanator/mascot-confident.png similarity index 100% rename from frontend/public/gekanator/mascot-confident.png rename to frontend/public/assets/gekanator/mascot-confident.png diff --git a/frontend/public/gekanator/mascot-failed.png b/frontend/public/assets/gekanator/mascot-failed.png similarity index 100% rename from frontend/public/gekanator/mascot-failed.png rename to frontend/public/assets/gekanator/mascot-failed.png diff --git a/frontend/public/gekanator/mascot-idle.png b/frontend/public/assets/gekanator/mascot-idle.png similarity index 100% rename from frontend/public/gekanator/mascot-idle.png rename to frontend/public/assets/gekanator/mascot-idle.png diff --git a/frontend/public/gekanator/mascot-thinking-far.png b/frontend/public/assets/gekanator/mascot-thinking-far.png similarity index 100% rename from frontend/public/gekanator/mascot-thinking-far.png rename to frontend/public/assets/gekanator/mascot-thinking-far.png diff --git a/frontend/public/gekanator/mascot-thinking-mid.png b/frontend/public/assets/gekanator/mascot-thinking-mid.png similarity index 100% rename from frontend/public/gekanator/mascot-thinking-mid.png rename to frontend/public/assets/gekanator/mascot-thinking-mid.png diff --git a/frontend/public/gekanator/mascot-thinking-near.png b/frontend/public/assets/gekanator/mascot-thinking-near.png similarity index 100% rename from frontend/public/gekanator/mascot-thinking-near.png rename to frontend/public/assets/gekanator/mascot-thinking-near.png diff --git a/frontend/src/pages/GekanatorPage.tsx b/frontend/src/pages/GekanatorPage.tsx index a033498..5522e36 100644 --- a/frontend/src/pages/GekanatorPage.tsx +++ b/frontend/src/pages/GekanatorPage.tsx @@ -166,13 +166,13 @@ const performanceModeStorageKey = 'gekanator:performance-mode:v1' const maxQuestionSuggestionsPerGame = 3 const maxStoredRecentGames = 12 const mascotAssetByState: Record = { - idle: '/gekanator/mascot-idle.png', - thinking_far: '/gekanator/mascot-thinking-far.png', - thinking_mid: '/gekanator/mascot-thinking-mid.png', - thinking_near: '/gekanator/mascot-thinking-near.png', - confident: '/gekanator/mascot-confident.png', - celebrate: '/gekanator/mascot-celebrate.png', - failed: '/gekanator/mascot-failed.png' } + idle: '/assets/gekanator/mascot-idle.png', + thinking_far: '/assets/gekanator/mascot-thinking-far.png', + thinking_mid: '/assets/gekanator/mascot-thinking-mid.png', + thinking_near: '/assets/gekanator/mascot-thinking-near.png', + confident: '/assets/gekanator/mascot-confident.png', + celebrate: '/assets/gekanator/mascot-celebrate.png', + failed: '/assets/gekanator/mascot-failed.png' } const mascotAltByState: Record = { idle: '待機する洗澡鹿', thinking_far: '遠くを見つめる洗澡鹿',