Merge pull request #356 from hiroj/fix_exportEditor_reduceBlendShapeSize

ReduceBlendShapeSize cannot be exported without VRMBlendShapeProxy
This commit is contained in:
ousttrue
2019-12-26 16:11:29 +09:00
committed by GitHub

View File

@@ -73,6 +73,11 @@ namespace VRM
{
yield return "Require Author. ";
}
if(ReduceBlendshapeSize && Source.GetComponent<VRMBlendShapeProxy>() == null)
{
yield return "ReduceBlendshapeSize is need VRMBlendShapeProxy, you need to convert to VRM once.";
}
}
public void InitializeFrom(GameObject go)