| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- return {
- tag = 'input',
- summary = 'Get the orientation of a device.',
- description = 'Returns the current orientation of a device, in angle/axis form.',
- arguments = {
- device = {
- type = 'Device',
- default = [['head']],
- description = 'The device to get the orientation of.'
- }
- },
- returns = {
- angle = {
- type = 'number',
- description = 'The amount of rotation around the axis of rotation, in radians.'
- },
- ax = {
- type = 'number',
- description = 'The x component of the axis of rotation.'
- },
- ay = {
- type = 'number',
- description = 'The y component of the axis of rotation.'
- },
- az = {
- type = 'number',
- description = 'The z component of the axis of rotation.'
- }
- },
- variants = {
- {
- arguments = { 'device' },
- returns = { 'angle', 'ax', 'ay', 'az' }
- }
- },
- notes = ' If the device isn\'t tracked, all zeroes will be returned.',
- related = {
- 'lovr.headset.getPose',
- 'lovr.headset.getPosition',
- 'lovr.headset.getDirection',
- 'lovr.headset.getVelocity',
- 'lovr.headset.getAngularVelocity',
- 'lovr.headset.isTracked',
- 'lovr.headset.getDriver'
- }
- }
|