change clouds

This commit is contained in:
Chris Wanstrath 2025-09-27 20:27:04 -07:00
parent 419a8328fc
commit 5afb7023ec

View File

@ -13,9 +13,9 @@ let y = rng(0, HEIGHT)
type Cloud = { x: number; y: number; speed: number } type Cloud = { x: number; y: number; speed: number }
const clouds: Cloud[] = [ const clouds: Cloud[] = [
{ x: 200, y: 100, speed: 0.7 }, { x: 300, y: 100, speed: 0.7 },
{ x: 500, y: 150, speed: 0.5 }, { x: 600, y: 150, speed: 0.5 },
{ x: 50, y: 220, speed: 0.5 }, { x: 75, y: 220, speed: 0.5 },
] ]
export function init() { console.log("init") } export function init() { console.log("init") }