|
Size: 1557
Comment: Updated with content from header file and added remark.
|
← Revision 6 as of 2020-10-12 07:02:08 ⇥
Size: 1701
Comment: Added example
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 26: | Line 26: |
| You can add your code example here | #include "SDL.h" int main(int argc, char* argv[]) { // This disables the use of gyroscopes as axis device SDL_SetHint(SDL_HINT_ACCELEROMETER_AS_JOYSTICK, "0"); } |
SDL_HINT_ACCELEROMETER_AS_JOYSTICK
A hint that specifies whether the Android / iOS built-in accelerometer should be listed as a joystick device, rather than listing actual joysticks only.
Values
0 |
list only real joysticks and accept input from them |
1 |
list real joysticks along with the accelerometer as if it were a 3 axis joystick (the default) |
Default
By default SDL will list real joysticks along with the accelerometer as if it were a 3 axis joystick.
Code Examples
#include "SDL.h"
int main(int argc, char* argv[])
{
// This disables the use of gyroscopes as axis device
SDL_SetHint(SDL_HINT_ACCELEROMETER_AS_JOYSTICK, "0");
}
Remarks
The hint is supported for iOS since SDL 2.0.4.
Version
This hint is available since SDL 2.0.2.
