Merge pull request #31604 from Xrayez/fix-inertia-2d

Fix uninitialized inertia value in Body2DSW
This commit is contained in:
Rémi Verschelde 2019-08-24 10:50:08 +02:00 committed by GitHub
commit 57589a767d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -671,6 +671,7 @@ Body2DSW::Body2DSW() :
angular_velocity = 0;
biased_angular_velocity = 0;
mass = 1;
inertia = 0;
user_inertia = false;
_inv_inertia = 0;
_inv_mass = 1;