We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7d87de commit 1d0f584Copy full SHA for 1d0f584
editor.lua
@@ -2222,7 +2222,7 @@ function editor_draw()
2222
guielements["tabcustom"]:draw()
2223
guielements["tabanimations"]:draw()
2224
2225
- if editorstate == "tiles" then
+ if editorstate == "tiles" then
2226
--TILES
2227
love.graphics.setColor(255, 255, 255)
2228
poof.lua
@@ -37,9 +37,10 @@ function poof:update(dt)
37
end
38
39
function poof:draw()
40
- love.graphics.setColor(255, 255, 255)
41
if self.color then
42
love.graphics.setColor(self.color)
+ else
43
+ love.graphics.setColor(255, 255, 255)
44
45
local mirror = 1
46
if self.frames[self.frame] < 0 then
0 commit comments