Hi! I have an object that has linear impulses applied to it, although, they don’t seem to work like I’ve coded them to. I want them to go in the direction of the impulse, regardless of the gravity. If the impulse is on the bottom of the object, the object should go up, and if the impulse is on the top of the object, it should go down, etc. I can’t seem to get this just right. Please, and thanks! 
[lua]local obj = display.newImage(“obj.png”)
obj.x = display.contentWidth/2
physics.addBody( obj, { friction = 1.0, radius = 75 })
function moveObj(event)
obj = event.target
obj:applyLinearImpulse( 0, 0, event.x, event.y )
end
object:addEventListener(“touch”, moveObj)[/lua] [import]uid: 25216 topic_id: 14104 reply_id: 314104[/import]