Difference between revisions of "Gyroscope"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | |||
<!-- GIDEROSOBJ:Gyroscope --> | <!-- GIDEROSOBJ:Gyroscope --> | ||
− | ''' | + | '''Supported platforms:''' [[File:Platform android.png]][[File:Platform ios.png]][[File:Platform winrt.png]]<br/> |
− | ''' | + | '''Available since:''' Gideros 2012.8<br/> |
− | ''' | + | '''Inherits from:''' [[Object]]<br/> |
− | === | + | === Description === |
− | The | + | The '''Gyroscope''' class is used to access gyroscope data. |
− | === | + | === Example === |
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
local gyroscope = Gyroscope.new() | local gyroscope = Gyroscope.new() | ||
Line 32: | Line 31: | ||
{|- | {|- | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
− | === | + | === Methods === |
− | [[ | + | [[Gyroscope.isAvailable]] ''is the gyroscope available''<br/><!--GIDEROSMTD:Gyroscope.isAvailable() is the gyroscope available--> |
− | <!-- GIDEROSMTD:Gyroscope.isAvailable() | + | [[Gyroscope.new]] ''creates a new Gyroscope instance''<br/><!--GIDEROSMTD:Gyroscope.new() creates a new Gyroscope instance--> |
− | [[ | ||
− | <!-- GIDEROSMTD:Gyroscope.new() | ||
− | [[ | + | [[Gyroscope:getRotationRate]] ''returns the rotation rate in radians per second''<br/><!--GIDEROSMTD:Gyroscope:getRotationRate() returns the rotation rate in radians per second--> |
− | <!-- GIDEROSMTD:Gyroscope:getRotationRate() returns the rotation rate in radians per second --> | + | [[Gyroscope:start]] ''starts gyroscope updates''<br/><!--GIDEROSMTD:Gyroscope:start() starts gyroscope updates--> |
− | [[ | + | [[Gyroscope:stop]] ''stops gyroscope updates''<br/><!--GIDEROSMTD:Gyroscope:stop() stops gyroscope updates--> |
− | <!-- GIDEROSMTD:Gyroscope:start() starts gyroscope updates --> | ||
− | [[ | ||
− | <!-- GIDEROSMTD:Gyroscope:stop() stops gyroscope updates --> | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
− | === | + | === Events === |
− | === | + | === Constants === |
|} | |} | ||
{{GIDEROS IMPORTANT LINKS}} | {{GIDEROS IMPORTANT LINKS}} |
Latest revision as of 17:49, 12 January 2025
Supported platforms:
Available since: Gideros 2012.8
Inherits from: Object
Description
The Gyroscope class is used to access gyroscope data.
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",onEnterFrame,self)
MethodsGyroscope.isAvailable is the gyroscope available Gyroscope:getRotationRate returns the rotation rate in radians per second |
EventsConstants |