more work on editor and selecting tiles, not done yet tho

This commit is contained in:
lustlion
2022-01-19 21:57:45 +01:00
parent 2b323fff8f
commit 15e8142c4c
4 changed files with 100 additions and 73 deletions

View File

@@ -1,5 +1,4 @@
function GameStep()
-- GAME STEP
if not do_pause then
SetCollisionFlags(main_Player)
for _, enty in pairs(LoadedEntities) do
@@ -17,16 +16,16 @@ function GameDraw()
GameworldDraw()
GameworldLighting()
-- HUD
-- hud
textScale = 0.5
--debug
if debug then DebugUI() end
if debug_collision then
DebugColisions()
DebugEntities()
end
-- reset color
-- pause
if do_pause then PauseUI() end
-- debug
if debug then DebugUI() end
if debug_collision then
DebugColisions()
DebugEntities()
end
end