Difference between revisions of "Gyroscope"
From GiderosMobile
| Line 2: | Line 2: | ||
'''Supported platforms:''' android, ios<br/>  | '''Supported platforms:''' android, ios<br/>  | ||
'''Available since:''' Gideros 2012.8<br/>  | '''Available since:''' Gideros 2012.8<br/>  | ||
| − | === Description ===  | + | === <translate>Description</translate> ===  | 
<translate><br />  | <translate><br />  | ||
The [[Special:MyLanguage/Gyroscope|Gyroscope]] class is used to access gyroscope data. <br />  | The [[Special:MyLanguage/Gyroscope|Gyroscope]] class is used to access gyroscope data. <br />  | ||
<br /></translate>  | <br /></translate>  | ||
| − | === Examples ===  | + | === <translate>Examples</translate> ===  | 
'''Example'''<br/>  | '''Example'''<br/>  | ||
<source lang="lua">local gyroscope = Gyroscope.new()  | <source lang="lua">local gyroscope = Gyroscope.new()  | ||
| Line 27: | Line 27: | ||
{|-  | {|-  | ||
| style="width: 50%; vertical-align:top;"|  | | style="width: 50%; vertical-align:top;"|  | ||
| − | === Methods ===  | + | === <translate>Methods</translate> ===  | 
[[Special:MyLanguage/Gyroscope.isAvailable|Gyroscope.isAvailable]] ''<translate>Gyroscope - does the gyroscope available?</translate>''<br/>  | [[Special:MyLanguage/Gyroscope.isAvailable|Gyroscope.isAvailable]] ''<translate>Gyroscope - does the gyroscope available?</translate>''<br/>  | ||
[[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/>  | ||
| Line 34: | Line 34: | ||
[[Special:MyLanguage/Gyroscope:stop|Gyroscope:stop]] ''<translate>Gyroscope - stops gyroscope updates</translate>''<br/>  | [[Special:MyLanguage/Gyroscope:stop|Gyroscope:stop]] ''<translate>Gyroscope - stops gyroscope updates</translate>''<br/>  | ||
| style="width: 50%; vertical-align:top;"|  | | style="width: 50%; vertical-align:top;"|  | ||
| − | === Events ===  | + | === <translate>Events</translate> ===  | 
| − | === Constants ===  | + | === <translate>Constants</translate> ===  | 
|}  | |}  | ||
Revision as of 07:28, 24 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("enterFrame", onEnterFrame)
MethodsGyroscope.isAvailable Gyroscope - does the gyroscope available?  | 
EventsConstants |