This is just me proving I'm somewhat alive.
I don't really know what to do.
Here is something.
P#52976 2018-05-23 22:06 ( Edited 2018-05-24 22:48)
:: trevorade
Awesome! Make it a tweetcart!
--circle of circles #pico8 #tweetcart
x,t=0,0
::_::
cls()
x=(x+.1)%5
t+=.1
for i=0,4 do
circfill(
64+32*cos(6.28/20*(t+i*(12/20))),
64+32*sin(6.28/20*(t+i*(10+(t%64)/20))),
7,
(x+i)%5+8)
end
flip()
goto _
|
You even have room to write something a bit longer and even 60fps:
--circle of circles #pico8 #tweetcart
x,t=0,0
function _update60()
x=(x+.1)%5
t+=.05
end
function _draw()
cls()
for i=0,4 do
circfill(
64+32*cos(6.28/20*(t+i*(12/20))),
64+32*sin(6.28/20*(t+i*(10+(t%64)/20))),
7,
(x+i)%5+8)
end
end
|
P#52982 2018-05-24 11:26 ( Edited 2018-05-24 15:35)
[Please log in to post a comment]



