Skip to content

Instantly share code, notes, and snippets.

@Achie72
Created February 25, 2024 18:53
Show Gist options
  • Save Achie72/7561933476afd6e246364b65636ab9e1 to your computer and use it in GitHub Desktop.
Save Achie72/7561933476afd6e246364b65636ab9e1 to your computer and use it in GitHub Desktop.
One Last Swing - Circular Transition by DW
-- transiton effect is from DW from the lexaloffle bbs
function draw_transition_effect()
-- magic circle does the
-- opposite of circfill and
-- instead erases the outside
-- of the circle first
for i=64,transition,-1 do
circ(32,32,i,11)
circ(33,32,i,11)
end--next i
-- set it so we can view it
circ(32,32,transition,15)
circ(33,32,transition,15)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment