Sfoglia il codice sorgente

:wrench: Set a minimal speed to crash

Otherwise very slow vehicle standing against an obstacle was always
triggering the effect.
DricomDragon 1 anno fa
parent
commit
98d0444929
1 ha cambiato i file con 5 aggiunte e 1 eliminazioni
  1. 5 1
      godot/component/entity/vehicles/seated_vehicle.gd

+ 5 - 1
godot/component/entity/vehicles/seated_vehicle.gd

@@ -2,6 +2,7 @@ class_name SeatedVehicle
 extends VehicleBody3D
 
 const CRASH_EFFECT: Resource = preload("res://effect/crash/crash.tscn")
+const MINIMAL_CRASH_SPEED: float = 1.0 # m2/s2
 
 var _current_commander: LocalInput = null
 var _has_collided: bool = false
@@ -25,7 +26,10 @@ func get_out() -> void:
 
 
 func _integrate_forces(state: PhysicsDirectBodyState3D) -> void:
-	if _has_collided and state.get_contact_count() > 0:
+	if state.get_contact_count() <= 0:
+		return
+
+	if _has_collided and linear_velocity.length_squared() > MINIMAL_CRASH_SPEED:
 		_crash_on(state.get_contact_collider_position(0))
 		_has_collided = false