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