public void OnExecGachaDecision(GachaRequestParam _rparam)
 {
     if (_rparam == null)
     {
         this.Failure();
     }
     this.API = FlowNode_ExecGacha2.ExecType.DECISION;
     this.ExecGacha(_rparam.Iname, !_rparam.IsFree ? 0 : 1, !_rparam.IsTicketGacha ? 0 : _rparam.Num, 1);
 }
 public void OnExecGacha(GachaRequestParam _rparam)
 {
     if (_rparam == null)
     {
         this.Failure();
     }
     this.mUseOneMore = _rparam.IsUseOneMore;
     this.API         = FlowNode_ExecGacha2.ExecType.DEFAULT;
     this.Request(_rparam);
 }