public EventData(string eventName, string toSectionName)
 {
     this.eventName     = eventName;
     this.toSectionName = toSectionName;
     closeType          = UITransition.TYPE.CLOSE;
     openType           = UITransition.TYPE.OPEN;
 }
Пример #2
0
 public override void Close(UITransition.TYPE type)
 {
     base.Close(type);
     DeleteModel();
 }
Пример #3
0
 public override void Close(UITransition.TYPE type = UITransition.TYPE.CLOSE)
 {
     base.Close(type);
     _OnCloseStatusStage();
 }