setGravityIgnored.lua 359 B

1234567891011121314151617
  1. return {
  2. summary = 'Set whether the Collider ignores gravity.',
  3. description = 'Sets whether the Collider should ignore gravity.',
  4. arguments = {
  5. ignored = {
  6. type = 'boolean',
  7. description = 'Whether gravity should be ignored.'
  8. }
  9. },
  10. returns = {},
  11. variants = {
  12. {
  13. arguments = { 'ignored' },
  14. returns = {}
  15. }
  16. }
  17. }