Difference between revisions of "Gyroscope"

From GiderosMobile
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
 +
<!-- GIDEROSOBJ:Gyroscope -->
 
'''<translate>Supported platforms</translate>:''' [[File:Platform android.png]][[File:Platform ios.png]]<br/>
 
'''<translate>Supported platforms</translate>:''' [[File:Platform android.png]][[File:Platform ios.png]]<br/>
 
'''<translate>Available since</translate>:''' Gideros 2012.8<br/>
 
'''<translate>Available since</translate>:''' Gideros 2012.8<br/>
Line 29: 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>Gyroscope - does the gyroscope available?</translate>''<br/>
+
[[Special:MyLanguage/Gyroscope.isAvailable|Gyroscope.isAvailable]] ''<translate>does the gyroscope available?</translate>''<br/><!-- GIDEROSMTD:Gyroscope.isAvailable -->
[[Special:MyLanguage/Gyroscope.new|Gyroscope.new]] ''<translate>Creates new Gyroscope instance</translate>''<br/>
+
[[Special:MyLanguage/Gyroscope.new|Gyroscope.new]] ''<translate>Creates new Gyroscope instance</translate>''<br/><!-- GIDEROSMTD:Gyroscope.new -->
[[Special:MyLanguage/Gyroscope:getRotationRate|Gyroscope:getRotationRate]] ''<translate>Gyroscope - returns the rotation rate in radians per second</translate>''<br/>
+
[[Special:MyLanguage/Gyroscope:getRotationRate|Gyroscope:getRotationRate]] ''<translate>returns the rotation rate in radians per second</translate>''<br/><!-- GIDEROSMTD:Gyroscope:getRotationRate -->
[[Special:MyLanguage/Gyroscope:start|Gyroscope:start]] ''<translate>Gyroscope - starts gyroscope updates</translate>''<br/>
+
[[Special:MyLanguage/Gyroscope:start|Gyroscope:start]] ''<translate>starts gyroscope updates</translate>''<br/><!-- GIDEROSMTD:Gyroscope:start -->
[[Special:MyLanguage/Gyroscope:stop|Gyroscope:stop]] ''<translate>Gyroscope - stops gyroscope updates</translate>''<br/>
+
[[Special:MyLanguage/Gyroscope:stop|Gyroscope:stop]] ''<translate>stops gyroscope updates</translate>''<br/><!-- GIDEROSMTD:Gyroscope:stop -->
 
| style="width: 50%; vertical-align:top;"|
 
| style="width: 50%; vertical-align:top;"|
 
=== <translate>Events</translate> ===
 
=== <translate>Events</translate> ===
 
=== <translate>Constants</translate> ===
 
=== <translate>Constants</translate> ===
 
|}
 
|}

Revision as of 15:55, 31 August 2018

Supported platforms: Platform android.pngPlatform ios.png
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(&quot;enterFrame&quot;, onEnterFrame)

Methods

Gyroscope.isAvailable does the gyroscope available?
Gyroscope.new Creates new Gyroscope instance
Gyroscope:getRotationRate returns the rotation rate in radians per second
Gyroscope:start starts gyroscope updates
Gyroscope:stop stops gyroscope updates

Events

Constants