Difference between revisions of "Gyroscope"

From GiderosMobile
(separated class methods from functions methods)
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(2 intermediate revisions by 2 users not shown)
Line 10: Line 10:
  
 
=== <translate>Examples</translate> ===
 
=== <translate>Examples</translate> ===
<source lang="lua">
+
<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)
</source>
+
</syntaxhighlight>
  
 
{|-
 
{|-
Line 49: Line 49:
 
=== <translate>Constants</translate> ===
 
=== <translate>Constants</translate> ===
 
|}
 
|}
 +
 +
{{GIDEROS IMPORTANT LINKS}}

Latest revision as of 14:29, 13 July 2023


Supported platforms: Platform android.pngPlatform ios.pngPlatform winrt.png
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)

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