Selaa lähdekoodia

Merge pull request #39085 from madmiraal/fix-39059

Correct Bullet's default Area angular damp value.
Rémi Verschelde 5 vuotta sitten
vanhempi
commit
e67339eeca
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      modules/bullet/area_bullet.h

+ 1 - 1
modules/bullet/area_bullet.h

@@ -93,7 +93,7 @@ private:
 	Vector3 spOv_gravityVec = Vector3(0, -1, 0);
 	real_t spOv_gravityMag = 10;
 	real_t spOv_linearDump = 0.1;
-	real_t spOv_angularDump = 1;
+	real_t spOv_angularDump = 0.1;
 	int spOv_priority = 0;
 
 	bool isScratched = false;