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
- Editor UI Text is displayed incorrectly or blank, and "Unable to load font face for [System Normal]." and other warnings are spammed when Editor Font is set to System Font and TMP Package is imported
- TabView with icons is smaller in height then other tabs with text
- [iOS] Error shows and "Microphone.GetPosition" logged as zero when "Microphone.Start()" is called the first time while a microphone is busy in another app and the second time when the microphone is released
- Inconsistent Layout in Project Settings Panels
- "Check for Updates" Fails to Connect to Update Server
Add comment