Search Issue Tracker
Fixed in 2019.3.X
Fixed in 2018.4.X, 2019.2.X
Votes
10
Found in
5.5.0p3
Issue ID
879696
Regression
No
Adding Cloth component to SkinnedMeshRenderer changes its bounds
Reproduction steps:
1. Open project attached(UnityBugRepro.zip)
2. Open scene (test)
3. Select Rig_Male_Thief_Thug -> Rig_Male_Thief_Thug_Body
4. Add cloth component to it.
Expected result: SkinnedMeshRenderer bounds will stay in its place.
Actual result: SkinnedMeshRenderer bounds changes position.
Fixed in: 2019.3.0a3
Reproduced on: 5.3.7p3, 5.4.4f1, 5.5.1p3, 5.6.0b8.
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
- [Shadergraph] Can't create multiple Boolean or Enum keywords
- DirectX12 crash when re-importing a large number of assets
- Scene view Camera's orientation can't be changed when pressing Scene Gizmo with the Hand Tool
- Prefab script field reference is lost when project is upgraded
- Changing Windows text size will cause grey bars to appear around the game view
msyoung2012
Feb 28, 2021 21:41
Still broken. No plan to fix this?
francy11
Feb 03, 2021 19:33
Problem is still present in 2019.4.19f LTS. Why it is considered fixed?
adelinebernard735
Jan 31, 2021 18:01
It still happens in version 2019.4.13 it's really a big problem, is there a chance that it will be fixed one day?
shubhamswaraj2021
Aug 18, 2020 05:33
good one <a href="https://www.lyricsauto.com">lyricsauto</a>
Jaakk0S
Jul 30, 2020 20:31
Issue still present in 2020.1 version. Analysis: the Cloth vertex deformation code seems to constantly recalculate the SkinnedMeshRenderer bounds and it messes it up.
Fix: add this script to your SkinnedMeshRenderer object or higher in hierarchy.
using UnityEngine;
public class FixClothBounds : MonoBehaviour {
private SkinnedMeshRenderer[] Renderers;
void Awake() {
this.Renderers = this.gameObject.GetComponentsInChildren<SkinnedMeshRenderer>();
}
void OnRenderObject () {
foreach (SkinnedMeshRenderer smr in this.Renderers) {
smr.localBounds = new Bounds(Vector3.zero, new Vector3(10f, 0.2f, 10f)); // Paste your meshes real bounds here
}
}
}
GameDevDavid
Jul 14, 2020 20:51
Issue still occurs in 2019.4.0 and 2019.4.3. Is there plan to integrate fix to next LTS release?
sugh1939
Jul 04, 2020 11:03
Hi, thanks a lot for sharing this with me. I am starting a new startup and was reading a business plan on www.ogscapital.com/service/business-continuity-plan/ website and really liked it a lot. I will use this plan to make my startup successful.
manutoo
Jun 18, 2020 14:54
Still bugged for me in 2019.4.0 ... >_<
It works a bit better if my root gameobject (not the root for the bones) scale is (1, 1, 1), but in that case some normals get messed up and the skinnedmesh still disappears when it shouldn't, although less obviously.
Jarel
May 11, 2020 23:32
Also having a problem with this.
Horus_Sungod42
Apr 30, 2020 15:12
Bugged in 2019.3.5f1