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