Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
A jam submission

ORB!TView game page

Physics microgame for Tweet Tweet Jam 5
Submitted by mp_indiedev — 3 days, 20 hours before the deadline
Add to collection

Play game

ORB!T's itch.io page

How many characters of code did you use?
551

Include your code here, if you'd like to show it off!
x,y,xs,ys=64,8,.4,0
_s={8,16,24,32,48,56}
tar=rnd(_s)
⧗,★,o,♥=300,0,0,0
::😐::
if btn(❎)then
xs*=1.02
ys*=1.02
end
if btn(🅾️)then
xs*=.99
ys*=.99
end
_d=sqrt((64-x)^2+(64-y)^2)
xd=(64-x)/_d
yd=(64-y)/_d
_f=.2*((500*.1)/(_d^2))
xs+=_f*xd
ys+=_f*yd
x+=xs
y+=ys
cls()
?"⧗ "..⧗,2,2,5
?"★ "..★,2,9,5
?"♥ "..♥,2,16,5
o=(o+tar)/2
circ(64,64,o,2)
circ(64,64,_d,1)
pset(x,y,6)
pset(64,64,3)
flip()
if abs(_d-tar)<5 then
⧗-=1
else
⧗=300
end
if ⧗<0 then
★+=tar*10
⧗=300
tar=rnd(_s)
♥+=1
end
if(♥>4)goto ●
goto 😐
::●::
?"you win",9,24,t()%16
?"★ "..★,9,31,7
goto ●

Leave a comment

Log in with itch.io to leave a comment.

Comments

No one has posted a comment yet