From d70121533c58cfa450c5c351fc409b81f6e34c0f Mon Sep 17 00:00:00 2001 From: maxcana Date: Thu, 8 May 2025 17:14:46 -0700 Subject: [PATCH 1/2] Fixed UVs not generated on model --- Components/Managers/ChiselModelManager.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Components/Managers/ChiselModelManager.cs b/Components/Managers/ChiselModelManager.cs index 1a60845..87a34f9 100644 --- a/Components/Managers/ChiselModelManager.cs +++ b/Components/Managers/ChiselModelManager.cs @@ -205,6 +205,12 @@ public void Rebuild(ChiselModelComponent model) } UpdateModelFlags(model); + + if(model.AutoRebuildUVs) + { + ForceUpdateDelayedUVGeneration(); + DelayedUVGeneration(force: true); + } } public bool IsDefaultModel(UnityEngine.Object obj) From c9567b4dd892e0148250edaa7a2e22a1094e7ddb Mon Sep 17 00:00:00 2001 From: maxcana Date: Thu, 24 Jul 2025 15:08:56 -0700 Subject: [PATCH 2/2] Update ChiselModelManager.cs --- Components/Managers/ChiselModelManager.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Components/Managers/ChiselModelManager.cs b/Components/Managers/ChiselModelManager.cs index 87a34f9..dd0f9d0 100644 --- a/Components/Managers/ChiselModelManager.cs +++ b/Components/Managers/ChiselModelManager.cs @@ -209,7 +209,6 @@ public void Rebuild(ChiselModelComponent model) if(model.AutoRebuildUVs) { ForceUpdateDelayedUVGeneration(); - DelayedUVGeneration(force: true); } }