Compare commits
No commits in common. "87d2f5634ae9f19b6e38ed97e15e98b823538635" and "f91fc76b1d58720811a3c9efe8977d0bc9a75246" have entirely different histories.
87d2f5634a
...
f91fc76b1d
25
vacation.p8
25
vacation.p8
@ -897,6 +897,21 @@ end
|
||||
-->8
|
||||
-- awakener
|
||||
|
||||
fast_awakener = {}
|
||||
mknew(fast_awakener)
|
||||
|
||||
function fast_awakener:update()
|
||||
--todo: implement
|
||||
end
|
||||
|
||||
function fast_awakener:draw()
|
||||
cls()
|
||||
pal()
|
||||
clear_alt_pal_bits()
|
||||
font_default()
|
||||
print("placeholder", 45, 61, 8)
|
||||
end
|
||||
|
||||
count_up=[[bgdy:-0.1 bspd:240 center:3:18
|
||||
>wITH EVERY COUNT
|
||||
FROM 1 !UP TO 5,
|
||||
@ -1431,8 +1446,14 @@ function setup_arcade_pal()
|
||||
pal(game_uw_pal, 2)
|
||||
end
|
||||
|
||||
function wave()
|
||||
return 2.5 * sin((t())>>1)
|
||||
-- global wave amplitude clock
|
||||
-- wave per 2 seconds
|
||||
-- optional toff: offset. at
|
||||
-- toff==0 draw directly under
|
||||
-- the dolphin
|
||||
function wave(toff)
|
||||
toff = toff or 0
|
||||
return 2.5 * sin((t()+toff)>>1)
|
||||
end
|
||||
|
||||
function clear_alt_pal_bits()
|
||||
|
Loading…
Reference in New Issue
Block a user