null check

This commit is contained in:
ousttrue
2022-07-14 15:53:14 +09:00
parent 3898b0a223
commit ba83d65018

View File

@@ -97,6 +97,10 @@ namespace VRM
{
foreach (var x in avatar.Clips)
{
if (x == null)
{
continue;
}
VRM.blendShapeMaster.Add(x, this);
}
}