flag
This commit is contained in:
parent
80ecc86b12
commit
9521f949f3
31
snowdogs.p8
31
snowdogs.p8
@ -23,6 +23,7 @@ function _update()
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
function _draw()
|
||||
if mode == "title" then
|
||||
title_dr()
|
||||
@ -35,6 +36,8 @@ function _draw()
|
||||
draw_snow()
|
||||
draw_hud()
|
||||
--draw_bounds()
|
||||
elseif mode == "gameover" then
|
||||
draw_flag()
|
||||
end
|
||||
end
|
||||
|
||||
@ -374,6 +377,34 @@ function tree_bounds()
|
||||
return l+8, l+tree_wall[w].w+8
|
||||
end
|
||||
|
||||
-->8
|
||||
--end screens
|
||||
|
||||
function draw_flag()
|
||||
cls()
|
||||
|
||||
for x=0,128,1 do
|
||||
for y=10,100,1 do
|
||||
pset(x, y+sin(t()+(x/128))*5, 1)
|
||||
end
|
||||
end
|
||||
stars = {
|
||||
{x=20, y=50},
|
||||
{x=40, y=55},
|
||||
{x=50, y=65},
|
||||
{x=60, y=75},
|
||||
{x=55, y=92},
|
||||
{x=75, y=98},
|
||||
{x=85, y=80},
|
||||
{x=105, y=30},
|
||||
}
|
||||
for star in all(stars) do
|
||||
print("★", star.x, star.y + sin(t()+((star.x+4)/128)) * 5-10, 9)
|
||||
end
|
||||
|
||||
print("better luck next year", 20, 115, 9)
|
||||
end
|
||||
|
||||
__gfx__
|
||||
00000000644444466444444667c7c7c6666666666666666666666666666666660000000000033000666666666666666600000000666666666666666600000000
|
||||
000000006499994664999946c777777c666666666666666666666666556666550000000000033000666336666663766600000000466666646666666600000000
|
||||
|
Loading…
Reference in New Issue
Block a user