label tabs (#6)

Reviewed-on: #6
Co-authored-by: Kistaro Windrider <kistaro@gmail.com>
Co-committed-by: Kistaro Windrider <kistaro@gmail.com>
This commit is contained in:
Kistaro Windrider 2022-12-19 07:33:07 +00:00 committed by Pyrex
parent 47e1a80489
commit 6e97d16222

View File

@ -1,6 +1,7 @@
pico-8 cartridge // http://www.pico-8.com pico-8 cartridge // http://www.pico-8.com
version 38 version 39
__lua__ __lua__
-- setup
modules={} modules={}
real_modules={} real_modules={}
@ -112,6 +113,7 @@ function _mnmx(x,y)
end end
-->8 -->8
-- input
kbd={} kbd={}
add(real_modules,kbd) add(real_modules,kbd)
function kbd:init() function kbd:init()
@ -136,6 +138,7 @@ function kbd:release(i)
end end
-->8 -->8
-- title screen
title={} title={}
add(modules,title) add(modules,title)
@ -159,6 +162,7 @@ function title:update()
end end
end end
-->8 -->8
--level behaviors
level={} level={}
add(real_modules,level) add(real_modules,level)
@ -534,6 +538,7 @@ function level:tug_crate(mx0,my0,dmx,dmy)
self:reanchor(false) self:reanchor(false)
end end
-->8 -->8
--player handling
player={} player={}
add(real_modules,player) add(real_modules,player)
@ -756,6 +761,7 @@ function player:draw()
end end
-->8 -->8
--rope physics
rope={} rope={}
rope.__index=rope rope.__index=rope