Type Function Object InputDevice Return value Array of InputAxis Revision Release 2024.3703 Keywords device, input, getAxes
Fetches information about all axis inputs available on the device. This information can be used to detect the device's capabilities, such as whether or not an analog joystick is available.
Returns an array of InputAxis tables providing information about each axis input available on the device.
Returns an empty array if the input device does not have any axis inputs. This is typically the case for keyboards.
-- Fetch all input devices currently connected to the system. local inputDevices = system.getInputDevices() -- Traverse all input devices. for deviceIndex = 1, #inputDevices do -- Fetch the input device's axes. local inputAxes = inputDevices[deviceIndex]:getAxes() if #inputAxes > 0 then -- Print all available axes to the log. for axisIndex = 1, #inputAxes do print(inputAxes[axisIndex].descriptor) end else -- Device does not have any axes. print(inputDevices[deviceIndex].descriptor .. ": No axes found.") end end