Search Issue Tracker
By Design
Votes
0
Found in
2018.4
2019.4.8f1
2020.2
Issue ID
1275499
Regression
No
GameObject gets stuck in the track's Mesh Collider when the GameObject is moving on top of it
How to reproduce:
1. Open the user's attached "cosmic_project.zip" project
2. Open the "TestScene1" Scene
3. Enter Play Mode
4. Hold the "W" key to move the GameObject
5. Observe the Game view
Expected result: The GameObject moves smoothly without getting stuck in the track's Mesh Collider
Actual result: The GameObject gets stuck in the track's Mesh Collider
Reproducible with: 2018.4.28f1, 2019.4.12f1, 2020.1.9f1, 2020.2.0b7
Note:
- The issue is not reproducible when moving on built-in GameObjects
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- "Shader warning in 'Hidden/Light2D': implicit truncation of vector type" is thrown when building Universal 2D template
- AI Assistant breaks compilation of packages using System.Runtime.CompilerServices.Unsafe via auto-referencing
- Unity Hub checks the "Documentation" module by default on the 6.4 and 6.5 streams despite that it was unchecked with the previous installs
- Shortcut that toggles between Dopesheet and Curves Views in the Animation Window's Timeline is mislabed
- Property List Items Overlap onto the Property List's top edge when scrolling through a long Property List
Resolution Note:
The main issue in this case is the fact that the mesh that's being used here contains a lot of triangles that are inside the mesh's volume. They are touching the mesh surface and are therefore involved in collisions that produce impulses. Removing those extra triangles produces a much smoother ride and prevents the vehicle from digging into the ground randomly.