I’m using this function to move the circle!
How can i display the invisible line that i draw to applay the impulse to the circle???
physics.start() function circleT(event) if event.phase == "began" then display.getCurrentStage():setFocus(circle) else if event.phase == "ended" then circle:removeEventListener("touch", circleTouch) circle:applyLinearImpulse(event.xStart - event.x, event.yStart - event.y, circle.x, circle.y) display.getCurrentStage():setFocus(nil) end end end circle:addEventListener("touch", circleT)