public void SetModelWithAction(int modelId, string actionName, Action actionEnd = null)
 {
     this.m_modelId = modelId;
     if (this.m_actorModel == null)
     {
         this.m_actorModel = this.GetAM();
     }
     ModelDisplayManager.ShowAction(this.m_actorModel, actionName, actionEnd);
 }