ive made a some what of a game in picotron playground
--cool
--dyln
function _init()
x=64
y=64
b = userdata("
[8x8] | |
end
function _update()
if (btn(1)) then
x +=1
end
if(btn(0)) then
x-=1
end
if(btn(2)) then
y-=1
end
if(btn(3)) then
y+=1
end
end
function _draw()
cls()
spr(b, x, y)
end
are you going to be making Hyperactive bunnies on the pico-8 or the picotron?
[Please log in to post a comment]