Skip to content

Commit 86969a1

Browse files
committed
Fix portalprojectileparticle image being unnecessarily big
1 parent f00ca70 commit 86969a1

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed
725 Bytes
Loading

graphics/portaltiles.png

-4.56 KB
Binary file not shown.

portalprojectile.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,5 +138,5 @@ function portalprojectileparticle:draw()
138138
local r, g, b = unpack(self.color)
139139
love.graphics.setColor(r, g, b, self.alpha)
140140

141-
love.graphics.draw(portalprojectileparticleimg, math.floor((self.x-xscroll)*16*scale), math.floor((self.y-.5)*16*scale), 0, scale, scale, 2, 2)
141+
love.graphics.draw(portalprojectileparticleimg, math.floor((self.x-xscroll)*16*scale), math.floor((self.y-.5)*16*scale), 0, scale, scale, 0.5, 0.5)
142142
end

0 commit comments

Comments
 (0)