event.zRaw

Type Number
Event accelerometer
Revision Release 2024.3703
Keywords accelerometer, zRaw

Overview

Provides the acceleration due to gravity relative to the z-axis of the device's screen in portrait orientation.

This is the raw value received from the device's sensor. No filtering or smoothing is applied to it.

Gotchas

This value is always relative to the device in portrait orientation, regardless of the current orientation of your application. So, if your application is running in landscape mode, you'll need to compensate by 90 degrees.

Example

local function onAccelerate( event )
    print( event.name, event.xRaw, event.yRaw, event.zRaw )
end
 
Runtime:addEventListener( "accelerometer", onAccelerate )