123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- .. _func_input_joyaxiscaps:
- ===========
- JoyAxisCaps
- ===========
- JoyAxisCaps -
- Description
- ===========
- .. code-block:: blitzmax
- JoyAxisCaps(port)
- Available axis (proportional controls) on a joystick.
- The bit positions of the returned value correspond to the following constants defined
- in the FreeJoy module:
- [ Const JOY_X=0
- * Const JOY_Y=1
- * Const JOY_Z=2
- * Const JOY_R=3
- * Const JOY_U=4
- * Const JOY_V=5
- * Const JOY_YAW=6
- * Const JOY_PITCH=7
- * Const JOY_ROLL=8
- * Const JOY_HAT=9
- * Const JOY_WHEEL=10
- ]
- Parameters
- ==========
- Return Values
- =============
- A bitfield representing which axis are available.
- Examples
- ========
- See Also
- ========
|