added light:move(x, y, z)

This commit is contained in:
Guard13007 2014-11-10 13:02:02 -08:00
parent d81a656812
commit 40f18cae9b

View File

@ -47,6 +47,19 @@ function light:setPosition(x, y, z)
end end
end end
-- move position
function light:move(x, y, z)
if x then
self.x = self.x + x
end
if y then
self.y = self.y + y
end
if z then
self.z = self.z + z
end
end
-- get x -- get x
function light:getPosition() function light:getPosition()
return self.x, self.y, self.z return self.x, self.y, self.z