Difference between revisions of "Gyroscope"
From GiderosMobile
Line 20: | Line 20: | ||
local x, y, z = gyroscope:getRotationRate() | local x, y, z = gyroscope:getRotationRate() | ||
− | angx = angx | + | angx = angx + x * event.deltaTime |
− | angy = angy | + | angy = angy + y * event.deltaTime |
− | angz = angz | + | angz = angz + z * event.deltaTime |
print(angx * 180 / math.pi, angy * 180 / math.pi, angz * 180 / math.pi) | print(angx * 180 / math.pi, angy * 180 / math.pi, angz * 180 / math.pi) | ||
Line 30: | Line 30: | ||
{|- | {|- | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
+ | |||
=== <translate>Methods</translate> === | === <translate>Methods</translate> === | ||
[[Special:MyLanguage/Gyroscope.isAvailable|Gyroscope.isAvailable]] ''<translate>does the gyroscope available?</translate>''<br/><!-- GIDEROSMTD:Gyroscope.isAvailable() does the gyroscope available? --> | [[Special:MyLanguage/Gyroscope.isAvailable|Gyroscope.isAvailable]] ''<translate>does the gyroscope available?</translate>''<br/><!-- GIDEROSMTD:Gyroscope.isAvailable() does the gyroscope available? --> |
Revision as of 17:36, 6 November 2019
Supported platforms:
Available since: Gideros 2012.8
Inherits from: Object
Description
The Gyroscope class is used to access gyroscope data.
Examples
Example
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")
MethodsGyroscope.isAvailable does the gyroscope available? |
EventsConstants |