Difference between revisions of "Gyroscope"
From GiderosMobile
m (formatting) |
|||
Line 43: | Line 43: | ||
=== <translate>Constants</translate> === | === <translate>Constants</translate> === | ||
|} | |} | ||
− | |||
− |
Revision as of 23:31, 9 December 2019
Supported platforms:
Available since: Gideros 2012.8
Inherits from: Object
Description
The Gyroscope class is used to access gyroscope data.
Examples
local gyroscope = Gyroscope.new()
gyroscope:start()
local angx = 0
local angy = 0
local angz = 0
local function onEnterFrame(event)
local x, y, z = gyroscope:getRotationRate()
angx = angx + x * event.deltaTime
angy = angy + y * event.deltaTime
angz = angz + z * event.deltaTime
print(angx * 180 / math.pi, angy * 180 / math.pi, angz * 180 / math.pi)
end
stage:addEventListener("enterFrame",onEnterFrame,self)
MethodsGyroscope.isAvailable does the gyroscope available? |
EventsConstants |