From 222c735fad8d947ff5dc8b729ac1ce56ed11da18 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Thu, 9 Mar 2023 19:53:35 +0900 Subject: [PATCH 1/2] to warning --- Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/MeshExportInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/MeshExportInfo.cs b/Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/MeshExportInfo.cs index 293fedf3c..5002bd0e7 100644 --- a/Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/MeshExportInfo.cs +++ b/Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/MeshExportInfo.cs @@ -264,7 +264,7 @@ namespace UniGLTF } else { - throw new NotImplementedException(); + Debug.LogWarning($"unknown renderer: {renderer}"); } } From f7718b514b7de7176574b1944a68e1fd3394ec35 Mon Sep 17 00:00:00 2001 From: ousttrue Date: Thu, 9 Mar 2023 20:11:04 +0900 Subject: [PATCH 2/2] context --- Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/MeshExportInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/MeshExportInfo.cs b/Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/MeshExportInfo.cs index 5002bd0e7..f918be318 100644 --- a/Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/MeshExportInfo.cs +++ b/Assets/UniGLTF/Runtime/UniGLTF/IO/MeshIO/MeshExportInfo.cs @@ -264,7 +264,7 @@ namespace UniGLTF } else { - Debug.LogWarning($"unknown renderer: {renderer}"); + Debug.LogWarning($"unknown renderer: {renderer}", context: renderer); } }