aboutsummaryrefslogtreecommitdiff
path: root/src/startscreen.moon
blob: 9c927585f9ab0eec7921d38d69f210e5c356f747 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--start screen

mod = ...

mod.gen_scene = () ->
	node = am.group!
	background = am.translate(0,0) ^ am.scale(1) ^ am.sprite("data/ph_start_screen.png") 
	text = am.translate(0,-100) ^ am.text("Press space to start")
	node ^ {background, text}
	node