diff --git a/app/nose/bin/game.tsx b/app/nose/bin/game.tsx index de247af..d70bd4e 100644 --- a/app/nose/bin/game.tsx +++ b/app/nose/bin/game.tsx @@ -13,9 +13,9 @@ let y = rng(0, HEIGHT) type Cloud = { x: number; y: number; speed: number } const clouds: Cloud[] = [ - { x: 200, y: 100, speed: 0.7 }, - { x: 500, y: 150, speed: 0.5 }, - { x: 50, y: 220, speed: 0.5 }, + { x: 300, y: 100, speed: 0.7 }, + { x: 600, y: 150, speed: 0.5 }, + { x: 75, y: 220, speed: 0.5 }, ] export function init() { console.log("init") }