| 1234567891011121314151617181920212223242526272829 |
- return {
- summary = 'Set the angular velocity of the Collider.',
- description = 'Sets the angular velocity of the Collider.',
- arguments = {
- {
- name = 'vx',
- type = 'number',
- description = 'The x component of the angular velocity.'
- },
- {
- name = 'vy',
- type = 'number',
- description = 'The y component of the angular velocity.'
- },
- {
- name = 'vz',
- type = 'number',
- description = 'The z component of the angular velocity.'
- }
- },
- returns = {},
- related = {
- 'Collider:getLinearVelocity',
- 'Collider:setLinearVelocity',
- 'Collider:applyTorque',
- 'Collider:getOrientation',
- 'Collider:setOrientation'
- }
- }
|