Log In  

Cart #52975 | 2018-05-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

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)

Hey, it's a cool program. I'm not sure what to make of your comment though. If you feel you have to prove you're alive maybe you should talk to someone, a family member or a friend? I think that's what you should do.

P#52981 2018-05-24 10:41 ( Edited 2018-05-24 14:41)

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)

I feel like I was just brainwashed. Did you just brainwash me or was this urge to kill the president always there?

Joking aside I think it's cute and I like the music :)

P#52986 2018-05-24 18:48 ( Edited 2018-05-24 22:48)

[Please log in to post a comment]

Follow Lexaloffle:          
Generated 2024-03-28 20:11:10 | 0.024s | Q:21