Imported from Joplin

This commit is contained in:
dan
2021-10-29 14:50:40 -04:00
parent 71c1d08b0f
commit 71fc095075
90 changed files with 1844 additions and 0 deletions

16
pico-8/snipppets.md Normal file
View File

@@ -0,0 +1,16 @@
Snipppets
# Draw Target
Function Draw_Target(x,y)
circfill (x,y,16,8)
circfill (x,y,12,7)
circfill (x,y,8,8)
circfill (x,y,4,7)
# Move Player
Function Move_Player()
If (BTN(0)) PX-=1 --Left
If (BTN(1)) PX+=1 --Right
If (BTN(2)) PY-=1 --Up
If (BTN(3)) PY+=1 --Down
END