feat: 일시정지 버튼을 눌렀을 때 별의 움직임이 함께 멈춤

This commit is contained in:
2026-02-14 02:19:34 +09:00
parent 6640962573
commit f32b7ee615
8 changed files with 67 additions and 162 deletions

View File

@@ -1,5 +1,11 @@
import { FlightStarfieldCanvas } from '@/features/flight-starfield';
export function FlightBackgroundWidget() {
return <FlightStarfieldCanvas vanishYOffset={-68} centerProtectRadius={200} />;
export function FlightBackgroundWidget({ isPaused }: { isPaused: boolean }) {
return (
<FlightStarfieldCanvas
vanishYOffset={-68}
centerProtectRadius={200}
isPaused={isPaused}
/>
);
}