fixed map; hookshots circle is now drawn on background

This commit is contained in:
lustlion
2022-02-18 13:21:10 +01:00
parent 37d44ce0a2
commit 192b1e6ca0
5 changed files with 24 additions and 4 deletions

View File

@@ -40,8 +40,14 @@ function GameworldDrawParticles()
end
end
function GameworldDrawEntitiesBackground()
for _, enty in pairs(LoadedObjects.Entities) do
enty:DrawBackground()
end
end
function GameworldDrawEntities()
love.graphics.setColor(1,1,1)
love.graphics.setColor(0.7,0.7,0.7)
for _, enty in pairs(LoadedObjects.Entities) do
enty:HandleAnimation()
end