| 12345678910111213141516171819202122232425 |
- return {
- summary = 'Get the components of the vector.',
- description = 'Returns the 4 components of the vector as numbers.',
- arguments = {},
- returns = {
- {
- name = 'x',
- type = 'number',
- description = 'The x value.'
- },
- {
- name = 'y',
- type = 'number',
- description = 'The y value.'
- },
- {
- name = 'z',
- type = 'number',
- description = 'The z value.'
- }
- },
- related = {
- 'Vec4:set'
- }
- }
|