Search Issue Tracker
Fixed in 5.0.2
Votes
0
Found in
5.0.1p1
Issue ID
691289
Regression
Yes
Rigidbody2D inertia is not calculated correctly after the Centre of Mass is modified
How to reproduce:
1. Open attached project
2. Open scene BikeCOMass.unity
- Scene contains a few bike shapes made out of colliders, all of which have different settings for their centres of mass
3. Play the scene
- Notice how many of the colliders intersect and misbehave in weird ways
Temporary workaround:
float defaultInertia = body.inertia; //save the original inertia
body.centerOfMass = transform.localPosition; //modify the centre of mass
body.inertia = defaultInertia; //reset the inertia to the original value
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Warning of an unknown Script missing is logged when selecting VFX in Play Mode
- Vertical and horizontal scrollbars appear and disappear when dragging an attribute to a different position within the Shader Graph Hierarchy
- AudioSource.PlayDelayed() does not work with Audio Random Containers
- Compatible with the VFX Graph Shader Graph can't be dragged and dropped into the "Output" block from the Project window
- [Silicon] Freeze/crash on BrotliDecoderDecompressStream when using System.IO.Compression.BrotliDecoder.TryDecompress
Add comment