↧
How to set a tilt based gravity using Corona accelerometer ?
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...
View ArticleHow to get the elapsed time after app launch in Corona ?
In order to get the elapsed time after the application launch in Corona, use the following lines of code, function elapsedTimeCalc( event ) print ("Time elapsed since app launch---"..event.time/1000 )...
View ArticleHow to receive memory warning in Corona ?
In order to receive memory warning in Corona, use the following chunk of code, local function memoryWarningCheck ( event ) print( "Memory Warning ! Memory is leaking somewhere! " ) end...
View Article