mirror of
https://github.com/tanema/light_world.lua.git
synced 2024-12-24 20:24:19 +00:00
fixed the setpoints bug where it overwrites image data
This commit is contained in:
parent
e2e85750dc
commit
b7f4af4fbc
39
lib/body.lua
39
lib/body.lua
@ -346,17 +346,19 @@ function body:setPoints(...)
|
|||||||
self.unit_data[i], self.unit_data[i+1] = self.unit_data[i] - self.width * 0.5, self.unit_data[i+1] - self.height * 0.5
|
self.unit_data[i], self.unit_data[i+1] = self.unit_data[i] - self.width * 0.5, self.unit_data[i+1] - self.height * 0.5
|
||||||
end
|
end
|
||||||
|
|
||||||
self.img = love.graphics.newImage(poly_canvas:getImageData())
|
if not self.img then
|
||||||
self.imgWidth = self.img:getWidth()
|
self.img = love.graphics.newImage(poly_canvas:getImageData())
|
||||||
self.imgHeight = self.img:getHeight()
|
self.imgWidth = self.img:getWidth()
|
||||||
self.ix = self.imgWidth * 0.5
|
self.imgHeight = self.img:getHeight()
|
||||||
self.iy = self.imgHeight * 0.5
|
self.ix = self.imgWidth * 0.5
|
||||||
self:generateNormalMapFlat("top")
|
self.iy = self.imgHeight * 0.5
|
||||||
|
self:generateNormalMapFlat("top")
|
||||||
|
end
|
||||||
--wrapping with polygon normals causes edges to show
|
--wrapping with polygon normals causes edges to show
|
||||||
--also we do not need wrapping for this default normal map
|
--also we do not need wrapping for this default normal map
|
||||||
self.normal:setWrap("clamp", "clamp")
|
self.normal:setWrap("clamp", "clamp")
|
||||||
|
self.shadowType = "polygon"
|
||||||
self:setShadowType('polygon', ...)
|
self:refresh()
|
||||||
end
|
end
|
||||||
|
|
||||||
-- get polygon data
|
-- get polygon data
|
||||||
@ -497,19 +499,20 @@ function body:setShadowType(type, ...)
|
|||||||
self.ox = args[2] or 0
|
self.ox = args[2] or 0
|
||||||
self.oy = args[3] or 0
|
self.oy = args[3] or 0
|
||||||
elseif self.shadowType == "rectangle" then
|
elseif self.shadowType == "rectangle" then
|
||||||
self.ox = args[3] or args[1] * 0.5
|
self.shadowType = "polygon"
|
||||||
self.oy = args[4] or args[2] * 0.5
|
local width = args[1] or 64
|
||||||
self:setShadowType('polygon',
|
local height = args[2] or 64
|
||||||
|
self.ox = args[3] or width * 0.5
|
||||||
|
self.oy = args[4] or height * 0.5
|
||||||
|
|
||||||
|
self:setPoints(
|
||||||
self.x - self.ox, self.y - self.oy,
|
self.x - self.ox, self.y - self.oy,
|
||||||
self.x - self.ox + args[1], self.y - self.oy,
|
self.x - self.ox + width, self.y - self.oy,
|
||||||
self.x - self.ox + args[1], self.y - self.oy + args[2],
|
self.x - self.ox + width, self.y - self.oy + height,
|
||||||
self.x - self.ox, self.y - self.oy + args[2]
|
self.x - self.ox, self.y - self.oy + height
|
||||||
)
|
)
|
||||||
elseif self.shadowType == "polygon" then
|
elseif self.shadowType == "polygon" then
|
||||||
if not self.unit_data then
|
self:setPoints(args)
|
||||||
self:setPoints(...)
|
|
||||||
end
|
|
||||||
self:refresh()
|
|
||||||
elseif self.shadowType == "image" then
|
elseif self.shadowType == "image" then
|
||||||
if self.img then
|
if self.img then
|
||||||
self.width = self.imgWidth
|
self.width = self.imgWidth
|
||||||
|
Loading…
Reference in New Issue
Block a user