Gyroscope
From GiderosMobile
Supported platforms: android, ios
Available since: Gideros 2012.8
Description
The `Gyroscope` class is used to access gyroscope data.
Examples
Example
local gyroscope = Gyroscope.new()<br />
gyroscope:start()<br />
<br />
local angx = 0<br />
local angy = 0<br />
local angz = 0<br />
local function onEnterFrame(event)<br />
local x, y, z = gyroscope:getRotationRate()<br />
<br />
angx = angx x * event.deltaTime<br />
angy = angy y * event.deltaTime<br />
angz = angz z * event.deltaTime<br />
<br />
print(angx * 180 / math.pi, angy * 180 / math.pi, angz * 180 / math.pi)<br />
end<br />
<br />
stage:addEventListener("enterFrame", onEnterFrame)
MethodsGyroscope.isAvailable - Gyroscope - does the gyroscope available? |
EventsConstants |