Physics does not work correctly in the latest version of corona sdk Corona 2018.3378:
applyAngularImpulse
applyTorque
applyForce
Act with much greater force. When set to -1, the timer does not work properly. In Corona 2018.3326 works correctly.
require "physics" physics.start() physics.setGravity( 0, 0 ) local box = display.newRect(100,100,50,50) box:setFillColor(1,0,0) physics.addBody(box, "dynamic", { density = 0.1, friction = 0.8, bounce = 0} ) function update(event) box:applyAngularImpulse( -1 ) --box:applyTorque( -1.2 ) --box:applyForce(-3,0,box.x,box.y) end timer0 = timer.performWithDelay( 1, update,-1 )