| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- return {
- summary = 'Set the components of the vector.',
- description = 'Sets the components of the vector, either from numbers or an existing vector.',
- arguments = {
- x = {
- type = 'number',
- default = '0',
- description = 'The new x value of the vector.'
- },
- y = {
- type = 'number',
- default = 'x',
- description = 'The new y value of the vector.'
- },
- z = {
- type = 'number',
- default = 'x',
- description = 'The new z value of the vector.'
- },
- w = {
- type = 'number',
- default = 'x',
- description = 'The new w value of the vector.'
- },
- u = {
- type = 'Vec4',
- description = 'The vector to copy the values from.'
- }
- },
- returns = {
- v = {
- type = 'Vec4',
- description = 'The input vector.'
- }
- },
- variants = {
- {
- arguments = { 'x', 'y', 'z', 'w' },
- returns = { 'v' }
- },
- {
- arguments = { 'u' },
- returns = { 'v' }
- }
- },
- related = {
- 'Vec4:unpack'
- }
- }
|