How to set a tilt based gravity using Corona accelerometer ?

By | August 28, 2011

Hi,

For setting a tilt based gravity using Corona Accelerometer, use the following sample of code.


local function urTiltFunc( event )
        physics.setGravity( 10 * event.xGravity, -10 * event.yGravity )
end

Runtime:addEventListener( "accelerometer", urTiltFunc )

🙂

Leave a Reply

Your email address will not be published. Required fields are marked *