global.physics_config 373 B

123456789101112131415
  1. materials = {
  2. default = { friction = 0.8 rolling_friction = 0.5 restitution = 0.81 }
  3. }
  4. collision_filters = {
  5. no_collision = { collides_with = [] }
  6. default = { collides_with = [ "default" ] }
  7. }
  8. actors = {
  9. static = { dynamic = false }
  10. dynamic = { dynamic = true }
  11. keyframed = { dynamic = true kinematic = true disable_gravity = true }
  12. trigger = { trigger = true }
  13. }