Chaycethegreat [Lexaloffle Blog Feed]https://www.lexaloffle.com/bbs/?uid=90124 Tree monkey <p>-- PICO-8 Cartridge</p> <p><strong>lua</strong></p> <p>-- Initialization function<br /> function _init()<br /> player_x = 64<br /> player_y = 64<br /> end</p> <p>-- Update function<br /> function _update()<br /> if btn(0) then<br /> player_x = player_x - 5<br /> elseif btn(1) then<br /> player_x = player_x + 2<br /> end<br /> end</p> <p>-- Draw function<br /> function _draw()<br /> cls() -- Clear the screen</p> <p>-- Draw the player as a filled rectangle<br /> rect(player_x, player_y, player_x + 8, player_y + 8, 7)<br /> end</p> https://www.lexaloffle.com/bbs/?tid=140078 https://www.lexaloffle.com/bbs/?tid=140078 Fri, 02 Feb 2024 20:00:46 UTC