Difference between revisions of "Gyroscope"
From GiderosMobile
| Line 1: | Line 1: | ||
__NOTOC__  | __NOTOC__  | ||
| − | '''Supported platforms:''' android  | + | '''<translate>Supported platforms</translate>:''' [[File:Platform android]][[File:Platform ios]]<br/>  | 
| − | '''Available since:''' Gideros 2012.8<br/>  | + | '''<translate>Available since</translate>:''' Gideros 2012.8<br/>  | 
| + | '''<translate>Inherits from</translate>:''' [[Special:MyLanguage/Object|Object]]<br/>  | ||
=== <translate>Description</translate> ===  | === <translate>Description</translate> ===  | ||
<translate><br />  | <translate><br />  | ||
| − | The   | + | The `Gyroscope` class is used to access gyroscope data. <br />  | 
<br /></translate>  | <br /></translate>  | ||
=== <translate>Examples</translate> ===  | === <translate>Examples</translate> ===  | ||
Revision as of 09:29, 24 August 2018
Supported platforms: File:Platform androidFile:Platform ios
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("enterFrame", onEnterFrame)
MethodsGyroscope.isAvailable Gyroscope - does the gyroscope available?  | 
EventsConstants |