/// <summary>
 /// 结束命令
 /// </summary>
 private void OnStepComplete(string stepName)
 {
     if (remoteController.CurrCommand != null && remoteController.CurrCommand.StepName == stepName)
     {
         remoteController.OnEndExecuteCommand();
     }
     else
     {
         Debug.LogError("Not Step :" + stepName);
     }
 }