summaryrefslogtreecommitdiff
path: root/Assets/ThirdParty/VRM/MeshUtility/Runtime/MeshIntegrationResult.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2020-10-15 19:05:22 +0800
committerchai <chaifix@163.com>2020-10-15 19:05:22 +0800
commitf049177e20a276049c61edbad631c1b2bbdd5706 (patch)
tree7d1a1cd9b690a5d9a8b9a65554a191d6ec769601 /Assets/ThirdParty/VRM/MeshUtility/Runtime/MeshIntegrationResult.cs
parent6990a0d1fbdcbbf404f40713363ac1a148c8840a (diff)
-advanced inspector
+odin
Diffstat (limited to 'Assets/ThirdParty/VRM/MeshUtility/Runtime/MeshIntegrationResult.cs')
-rw-r--r--Assets/ThirdParty/VRM/MeshUtility/Runtime/MeshIntegrationResult.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Assets/ThirdParty/VRM/MeshUtility/Runtime/MeshIntegrationResult.cs b/Assets/ThirdParty/VRM/MeshUtility/Runtime/MeshIntegrationResult.cs
new file mode 100644
index 00000000..91742fc8
--- /dev/null
+++ b/Assets/ThirdParty/VRM/MeshUtility/Runtime/MeshIntegrationResult.cs
@@ -0,0 +1,13 @@
+using System.Collections.Generic;
+using UnityEngine;
+
+namespace MeshUtility
+{
+ [System.Serializable]
+ public class MeshIntegrationResult
+ {
+ public List<SkinnedMeshRenderer> SourceSkinnedMeshRenderers = new List<SkinnedMeshRenderer>();
+ public List<MeshRenderer> SourceMeshRenderers = new List<MeshRenderer>();
+ public SkinnedMeshRenderer IntegratedRenderer;
+ }
+}