currently I'm experiencing some troubles with newPolygonShape()
e.g.
Code: Select all
test = love.physics.newPolygonShape(0,0,0,3,3,3,3,0)
Code: Select all
test = love.physics.newPolygonShape(0,0,0,4,4,4,4,0)
It seems height/width of a PolygonShape have to be > 3 to work. But if I try to make a smaller Shape like this:
Code: Select all
test = love.physics.newRectangleShape(0.000001, 0.0001)
Anyone has an explanation to this? Or even better, a solution? For my project I need to be able to make small PolygonShapes...
Thanks in advance!
LilaQ