| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- return {
- tag = 'input',
- summary = 'Get the state of an analog axis on a device.',
- description = [[
- Get the current state of an analog axis on a device. Some axes are multidimensional, for
- example a 2D touchpad or thumbstick with x/y axes. For multidimensional axes, this function
- will return multiple values, one number for each axis. In these cases, it can be useful to use
- the `select` function built in to Lua to select a particular axis component.
- ]],
- arguments = {
- device = {
- type = 'Device',
- description = 'The device.'
- },
- axis = {
- type = 'DeviceAxis',
- description = 'The axis.'
- }
- },
- returns = {
- ['...'] = {
- type = 'number',
- description = [[
- The current state of the components of the axis, or `nil` if the device does not have any
- information about the axis.
- ]]
- }
- },
- variants = {
- {
- arguments = { 'device', 'axis' },
- returns = { '...' }
- }
- },
- notes = [[
- The axis values will be between 0 and 1 for 1D axes, and between -1 and 1 for each component of
- a multidimensional axis.
- When hand tracking is active, pinch strength will be mapped to the `trigger` axis.
- ]],
- related = {
- 'DeviceAxis',
- 'lovr.headset.isDown'
- }
- }
|