unpack.lua 466 B

12345678910111213141516171819202122232425
  1. return {
  2. summary = 'Get the components of the vector.',
  3. description = 'Returns the 4 components of the vector as numbers.',
  4. arguments = {},
  5. returns = {
  6. {
  7. name = 'x',
  8. type = 'number',
  9. description = 'The x value.'
  10. },
  11. {
  12. name = 'y',
  13. type = 'number',
  14. description = 'The y value.'
  15. },
  16. {
  17. name = 'z',
  18. type = 'number',
  19. description = 'The z value.'
  20. }
  21. },
  22. related = {
  23. 'Vec4:set'
  24. }
  25. }