← Return to game
Log in with itch.io to leave a comment.
that's great ! interesting camera movement ! feel you in pico8 dev steps
thanks! I got really distracted in the weeds on this one… look at this incantation I made to only draw the part of the map that’s actually visible onscreen (based on the camera position, which is stored at 0x5f28,0x5f2a):
map(%0x5f28\8,%0x5f2a\8,%0x5f28&~7,%0x5f2a&~7,17,17)
unfortunately (fortunately?) this has no performance benefit over just calling map(), ha.
map()
← Return to game
Comments
Log in with itch.io to leave a comment.
that's great ! interesting camera movement ! feel you in pico8 dev steps
thanks! I got really distracted in the weeds on this one… look at this incantation I made to only draw the part of the map that’s actually visible onscreen (based on the camera position, which is stored at 0x5f28,0x5f2a):
unfortunately (fortunately?) this has no performance benefit over just calling
map()
, ha.