setGravity.lua 513 B

1234567891011121314151617181920212223
  1. return {
  2. tag = 'worldProperties',
  3. summary = 'Set the gravity of the World.',
  4. description = 'Sets the gravity of the World.',
  5. arguments = {
  6. {
  7. name = 'xg',
  8. type = 'number',
  9. description = 'The x component of the gravity force.'
  10. },
  11. {
  12. name = 'yg',
  13. type = 'number',
  14. description = 'The y component of the gravity force.'
  15. },
  16. {
  17. name = 'zg',
  18. type = 'number',
  19. description = 'The z component of the gravity force.'
  20. }
  21. },
  22. returns = {}
  23. }