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
- “No method with RuntimeInitializeOnLoadMethod attribute” warning from ReadmeEditor.cs is thrown after installing Project Auditor Rules
- Projection matrix is altered when using RasterCommandBuffer.ClearRenderTarget on DX12 and Metal
- Entities Hierarchy window allows Cyclic nesting and throws an “ArgumentException: Cyclic nesting detected” error when dragging a Prefab onto the same Prefab in the Entities Hierarchy
- EnterPlayModeOptions doesn't take effect if user manually modifies m_EnterPlayModeOptionsEnabled to 0
- VFX Graph Documentation dropdown button does nothing when clicked on the right side
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.