Difference between revisions of "Gyroscope"

From GiderosMobile
Line 28: Line 28:
 
| style="width: 50%;"|
 
| style="width: 50%;"|
 
=== Methods ===
 
=== Methods ===
[[Gyroscope.isAvailable]] - Gyroscope - does the gyroscope available?<br/>
+
[[Gyroscope.isAvailable]] {{<translate>Gyroscope - does the gyroscope available?</translate>}}<br/>
[[Gyroscope.new]] - Creates new Gyroscope instance<br/>
+
[[Gyroscope.new]] {{<translate>Creates new Gyroscope instance</translate>}}<br/>
[[Gyroscope:getRotationRate]] - Gyroscope - returns the rotation rate in radians per second<br/>
+
[[Gyroscope:getRotationRate]] {{<translate>Gyroscope - returns the rotation rate in radians per second</translate>}}<br/>
[[Gyroscope:start]] - Gyroscope - starts gyroscope updates<br/>
+
[[Gyroscope:start]] {{<translate>Gyroscope - starts gyroscope updates</translate>}}<br/>
[[Gyroscope:stop]] - Gyroscope - stops gyroscope updates<br/>
+
[[Gyroscope:stop]] {{<translate>Gyroscope - stops gyroscope updates</translate>}}<br/>
 
| style="width: 50%;"|
 
| style="width: 50%;"|
 
=== Events ===
 
=== Events ===
 
=== Constants ===
 
=== Constants ===
 
|}
 
|}

Revision as of 15:19, 23 August 2018

Supported platforms: android, ios
Available since: Gideros 2012.8

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 Template:Gyroscope - does the gyroscope available?
Gyroscope.new Template:Creates new Gyroscope instance
Gyroscope:getRotationRate Template:Gyroscope - returns the rotation rate in radians per second
Gyroscope:start Template:Gyroscope - starts gyroscope updates
Gyroscope:stop Template:Gyroscope - stops gyroscope updates

Events

Constants