Code cleanups

This commit is contained in:
ousttrue
2018-07-30 15:52:06 +09:00
parent 063343f855
commit 92501ae8ab
3 changed files with 17 additions and 20 deletions

View File

@@ -10,6 +10,9 @@ namespace VRM
{
var dst = new Mesh();
dst.name = src.name + "(copy)";
#if UNITY_2017_3_OR_NEWER
dst.indexFormat = src.indexFormat;
#endif
dst.vertices = src.vertices;
dst.normals = src.normals;