align
align for TweetTweetJam - by Luthwyhn
Align the planets' orbits to win!
Anyone can play by running the .html file in a modern browser. If you have pico-8 you can load up the source file and goof around with it as you wish.
Full code of game:
🐱=360
c=64
s=3
a={0,0,0,0}
⧗={rnd(🐱)/🐱,rnd(🐱)/🐱,rnd(🐱)/🐱,rnd(🐱)/🐱}
⬇️={23,32,41,50}
▥={12,4,3,8}
function _update()
if(btnp(2))s=(s)%4+1
if(btnp(3))s=(s+2)%4+1
if(btnp(4))⬇️[s]=max(14,⬇️[s]-1)
if(btnp(5))⬇️[s]=min(c,⬇️[s]+1)
if ★==c then
print("win!",59,61,rnd(15))
return
end
★=8
cls()
circfill(c,c,12,10)
circ(c,c,⬇️[s],▥[s])
for i=1,4 do
a[i]=9+5*min(max(0,100*⧗[i]-73),1)
★+=a[i]
⧗[i]+=(28+18*i)/(⬇️[i]*🐱)
if(⧗[i]>.77)⧗[i]-=1
circfill(c+⬇️[i]*sin(⧗[i]),c+⬇️[i]*cos(⧗[i]),i+1,▥[i])
circ(c+⬇️[i],c,2,a[i])
end
end
Download
Click download now to get access to the following files:
Comments
Log in with itch.io to leave a comment.
Hooray, I got it! Really an awesome concept for a game! I'd play a full mobile game of puzzles like this.