Difference between revisions of "Gyroscope"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 10: | Line 10: | ||
=== <translate>Examples</translate> === | === <translate>Examples</translate> === | ||
− | < | + | <syntaxhighlight lang="lua"> |
local gyroscope = Gyroscope.new() | local gyroscope = Gyroscope.new() | ||
gyroscope:start() | gyroscope:start() | ||
Line 28: | Line 28: | ||
stage:addEventListener("enterFrame",onEnterFrame,self) | stage:addEventListener("enterFrame",onEnterFrame,self) | ||
− | </ | + | </syntaxhighlight> |
{|- | {|- | ||
| 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/> |
− | [[Special:MyLanguage/Gyroscope.new|Gyroscope.new]] ''<translate>Creates new Gyroscope instance</translate>''<br/><!-- GIDEROSMTD:Gyroscope.new() Creates new Gyroscope instance --> | + | <!-- GIDEROSMTD:Gyroscope.isAvailable() does the gyroscope available? --> |
− | [[Special:MyLanguage/Gyroscope:getRotationRate|Gyroscope:getRotationRate]] ''<translate>returns the rotation rate in radians per second</translate>''<br/><!-- GIDEROSMTD:Gyroscope:getRotationRate() returns the rotation rate in radians per second --> | + | [[Special:MyLanguage/Gyroscope.new|Gyroscope.new]] ''<translate>Creates new Gyroscope instance</translate>''<br/> |
− | [[Special:MyLanguage/Gyroscope:start|Gyroscope:start]] ''<translate>starts gyroscope updates</translate>''<br/><!-- GIDEROSMTD:Gyroscope:start() starts gyroscope updates --> | + | <!-- GIDEROSMTD:Gyroscope.new() Creates new Gyroscope instance --> |
− | [[Special:MyLanguage/Gyroscope:stop|Gyroscope:stop]] ''<translate>stops gyroscope updates</translate>''<br/><!-- GIDEROSMTD:Gyroscope:stop() stops gyroscope updates --> | + | |
+ | [[Special:MyLanguage/Gyroscope:getRotationRate|Gyroscope:getRotationRate]] ''<translate>returns the rotation rate in radians per second</translate>''<br/> | ||
+ | <!-- GIDEROSMTD:Gyroscope:getRotationRate() returns the rotation rate in radians per second --> | ||
+ | [[Special:MyLanguage/Gyroscope:start|Gyroscope:start]] ''<translate>starts gyroscope updates</translate>''<br/> | ||
+ | <!-- GIDEROSMTD:Gyroscope:start() starts gyroscope updates --> | ||
+ | [[Special:MyLanguage/Gyroscope:stop|Gyroscope:stop]] ''<translate>stops gyroscope updates</translate>''<br/> | ||
+ | <!-- GIDEROSMTD:Gyroscope:stop() stops gyroscope updates --> | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
Line 43: | Line 49: | ||
=== <translate>Constants</translate> === | === <translate>Constants</translate> === | ||
|} | |} | ||
+ | |||
+ | {{GIDEROS IMPORTANT LINKS}} |
Latest revision as of 14:29, 13 July 2023
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? Gyroscope:getRotationRate returns the rotation rate in radians per second |
EventsConstants |