Difference between revisions of "Hardware and OS"
m (Text replacement - "<source" to "<syntaxhighlight") |
m (Text replacement - "</source>" to "</syntaxhighlight>") |
||
Line 25: | Line 25: | ||
local isTwoFinger = (#event.allTouches == 2) | local isTwoFinger = (#event.allTouches == 2) | ||
end | end | ||
− | </ | + | </syntaxhighlight> |
== Gyroscope == | == Gyroscope == | ||
Line 37: | Line 37: | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
application:vibrate() | application:vibrate() | ||
− | </ | + | </syntaxhighlight> |
The vibration period is 300 ms for Android. For iOS, device vibrates for a duration which is determined by the operating system. | The vibration period is 300 ms for Android. For iOS, device vibrates for a duration which is determined by the operating system. | ||
Line 48: | Line 48: | ||
-- enable screen dimming and device sleeping | -- enable screen dimming and device sleeping | ||
application:setKeepAwake(false) | application:setKeepAwake(false) | ||
− | </ | + | </syntaxhighlight> |
'''Note:''' this function has no effect on desktop player. | '''Note:''' this function has no effect on desktop player. |
Revision as of 14:29, 13 July 2023
The Ultimate Guide to Gideros Studio
Hardware and OS
Introduction to hardware system
Getting logical dimensions
Getting device dimensions
Getting system information
Getting and setting orientation
Localization and language
Handling touch and mouse input
Multitouch
The easiest way to detect if the player touches the screen with two fingers, is to control the length of event.allTouches array. If it is 2, then exactly 2 fingers is touching the screen.
local function onTouchesBegin(event)
local isTwoFinger = (#event.allTouches == 2)
end
Gyroscope
Accelerometer
GPS and location
Vibration
Gideros Studio provides a function for vibration. Consider the following example:
application:vibrate()
The vibration period is 300 ms for Android. For iOS, device vibrates for a duration which is determined by the operating system.
Disabling screen dimming
Some games may require that player doesn't touch the screen for a long time, e.g. those using accelerometer and gyro to control the actors on the screen. In this case, the screen may dim, depending on the user's activity and device settings. To disable (or enable) screen dimming, use the following commands:
-- disable screen dimming and device sleeping
application:setKeepAwake(true)
-- enable screen dimming and device sleeping
application:setKeepAwake(false)
Note: this function has no effect on desktop player.
PREV.: Profiling
NEXT: Making a Plugin