diff --git a/apps/client/src/scenes/game/GameView.tsx b/apps/client/src/scenes/game/GameView.tsx index 9120496..2604944 100644 --- a/apps/client/src/scenes/game/GameView.tsx +++ b/apps/client/src/scenes/game/GameView.tsx @@ -5,10 +5,10 @@ */ import { GameInputOverlay } from "./input/GameInputOverlay"; import { - PIXI_LAYER_STYLE, - ROOT_STYLE, - START_COUNTDOWN_STYLE, - TIMER_STYLE, + GAME_VIEW_PIXI_LAYER_STYLE, + GAME_VIEW_ROOT_STYLE, + GAME_VIEW_START_COUNTDOWN_STYLE, + GAME_VIEW_TIMER_STYLE, } from "./styles/GameView.styles"; /** 表示と入力に必要なプロパティ */ @@ -22,7 +22,7 @@ }; const TimerOverlay = ({ timeLeft }: { timeLeft: string }) => ( -
{timeLeft}
+
{timeLeft}
); /** 画面描画と入力UIをまとめて描画する */ @@ -35,16 +35,16 @@ onPlaceBomb, }: Props) => { return ( -
+
{/* タイマーUIの表示 */} {startCountdownText && ( -
{startCountdownText}
+
{startCountdownText}
)} {/* PixiJS Canvas 配置領域 */} -
+
{/* 入力UI レイヤー */}