isGravityIgnored.lua 378 B

1234567891011121314151617
  1. return {
  2. summary = 'Check if the Collider ignores gravity.',
  3. description = 'Returns whether the Collider is currently ignoring gravity.',
  4. arguments = {},
  5. returns = {
  6. ignored = {
  7. type = 'boolean',
  8. description = 'Whether gravity is ignored for this Collider.'
  9. }
  10. },
  11. variants = {
  12. {
  13. arguments = {},
  14. returns = { 'ignored' }
  15. }
  16. }
  17. }