void Start()
 {
     window = GameObject.Find("ControlWPFWindow").GetComponent <ControlWPFWindow>();
     window.ModelLoadedAction += (GameObject CurrentModel) =>
     {
         if (CurrentModel != null)
         {
             blendShapeProxy = CurrentModel.GetComponent <VRMBlendShapeProxy>();
         }
     };
 }