From ddcc2a036086ab7670277be05e8c5fae7ee06dc2 Mon Sep 17 00:00:00 2001 From: Marcel Admiraal Date: Wed, 27 May 2020 11:57:48 +0100 Subject: [PATCH] Correct Bullet's default Area angular damp value. --- modules/bullet/area_bullet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/bullet/area_bullet.h b/modules/bullet/area_bullet.h index cde889c1ba1..c0bcc858fed 100644 --- a/modules/bullet/area_bullet.h +++ b/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;