From 0f704c71429d1aa11179a10ec2f786d67d458c7e Mon Sep 17 00:00:00 2001 From: ousttrue Date: Tue, 23 Jul 2024 15:34:10 +0900 Subject: [PATCH] =?UTF-8?q?URP=20=E3=83=97=E3=83=AD=E3=82=B8=E3=82=A7?= =?UTF-8?q?=E3=82=AF=E3=83=88=E3=81=A7=20matcap=20=E3=82=92=E5=90=AB?= =?UTF-8?q?=E3=82=80=E3=83=A2=E3=83=87=E3=83=AB=E3=82=92=20Editor=20import?= =?UTF-8?q?=20=E3=81=99=E3=82=8B=E3=81=A8=E3=82=A8=E3=83=A9=E3=83=BC?= =?UTF-8?q?=E3=81=AB=E3=81=AA=E3=82=8B=E3=81=AE=E3=82=92=E5=9B=9E=E9=81=BF?= =?UTF-8?q?(=E6=9A=AB=E5=AE=9A)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit とりえあずエラー回避。 `Exception: UnityEngine.Texture.Sphere is not converted` mtoon URP "MToon" shader is not ready. import fallback to unlit --- .../Editor/UniGLTF/ScriptedImporter/TextureExtractor.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Assets/UniGLTF/Editor/UniGLTF/ScriptedImporter/TextureExtractor.cs b/Assets/UniGLTF/Editor/UniGLTF/ScriptedImporter/TextureExtractor.cs index 8077b58b33..04a311fa9e 100644 --- a/Assets/UniGLTF/Editor/UniGLTF/ScriptedImporter/TextureExtractor.cs +++ b/Assets/UniGLTF/Editor/UniGLTF/ScriptedImporter/TextureExtractor.cs @@ -59,7 +59,8 @@ public void Extract(SubAssetKey key, TextureDescriptor texDesc) } else { - throw new Exception($"{key} is not converted."); + // throw new Exception($"{key} is not converted."); + Debug.LogWarning($"{key} is not converted."); } }