Type Boolean Event accelerometer Revision Release 2025.3721 Keywords accelerometer, isShake
When the user shakes the device, this value is true. What constitutes a shake is dependent on the OS/device.
local function listener( event )
if event.isShake then
print( "The device is being shaken!" )
end
return true
end
Runtime:addEventListener( "accelerometer", listener )