Exemplo n.º 1
0
 public override bool OnNotify(Notify ntf)
 {
     return((ntf.type == NotifyTypes.ChangeTalkingFriend) && this.OnChangeTalkingFriend((int)ntf.body));
 }
Exemplo n.º 2
0
 public override bool OnNotify(Notify ntf)
 {
     return((ntf.type == NotifyTypes.MissionUpdated) && this.OnMissionUpdated((uint)ntf.body));
 }
Exemplo n.º 3
0
 public override bool OnNotify(Notify ntf)
 {
     return((ntf.type == NotifyTypes.AnimCallBack) && this.OnAnimationCallBack(ntf.body.ToString()));
 }
Exemplo n.º 4
0
 public override bool OnNotify(Notify ntf)
 {
     return(false);
 }
Exemplo n.º 5
0
 public override bool OnNotify(Notify ntf)
 {
     return((ntf.type == NotifyTypes.SelectStoreGoodsItem) && this.OnSelectStoreGoodsItem((Goods)ntf.body));
 }
Exemplo n.º 6
0
 public override bool OnNotify(Notify ntf)
 {
     return((ntf.type == NotifyTypes.SelectAvtarIconChange) && this.UpdateSelectedAvatar((int)ntf.body));
 }
Exemplo n.º 7
0
 private bool OnPlayerLevelUpNotify(Notify ntf)
 {
     base.view.transform.Find("RewardPanel/ExpPanel").Find("PlayerExp/InfoRowLv").Find("LevelLabel").GetComponent <Text>().text = "LV." + Singleton <PlayerModule> .Instance.playerData.teamLevel;
     this._playerLevelUpAndAvatarNewSkillDialogManager.StartShow(0f);
     return(false);
 }
Exemplo n.º 8
0
 public override bool OnNotify(Notify ntf)
 {
     return((ntf.type == NotifyTypes.AvatarSelectForRevive) && this.OnAvatarSelectForRevive((uint)ntf.body));
 }
Exemplo n.º 9
0
 public override bool OnNotify(Notify ntf)
 {
     return((ntf.type == NotifyTypes.SelectAvtarSkillIconChange) && this.OnSelectedSkillChanged((int)ntf.body));
 }
Exemplo n.º 10
0
 public override bool OnNotify(Notify ntf)
 {
     return((ntf.type == NotifyTypes.EndlessSettlementAnimationEnd) && this.PlayEffect());
 }