Improve the accelerometer on devices

The default tilt function seems a bit laggy on actual devices. It takes about a second for the device to realize that the device had been tilted in another way.

[code]
function onTilt( event )
physics.setGravity( ( -1.5 * event.yGravity ), ( -1.5 * event.xGravity ) )
end
Runtime:addEventListener( “accelerometer”, onTilt )
``

[import]uid: 44110 topic_id: 31745 reply_id: 331745[/import]

Try and increase the frequency at which the accelerometer registers events.

system.setAccelerometerInterval( )  

[import]uid: 33275 topic_id: 31745 reply_id: 126775[/import]

Try and increase the frequency at which the accelerometer registers events.

system.setAccelerometerInterval( )  

[import]uid: 33275 topic_id: 31745 reply_id: 126775[/import]