add VRMMeta

This commit is contained in:
ousttrue
2018-03-30 15:47:34 +09:00
parent ae6d6ee966
commit 36f369db42
11 changed files with 136 additions and 18 deletions

View File

@@ -8,8 +8,8 @@ public static class VRMMonoBehaviourComparator
public static bool AssertAreEquals(GameObject l, GameObject r)
{
return
AssertAreEquals<VRMMetaInformation>(l, r,
(x, y) => x[0].Equals(y[0]))
AssertAreEquals<VRMMeta>(l, r,
(x, y) => x[0].Meta.Equals(y[0].Meta))
;
}