示例#1
0
 public override bool OnNotify(Notify ntf)
 {
     return((ntf.type == NotifyTypes.ChangeTalkingFriend) && this.OnChangeTalkingFriend((int)ntf.body));
 }
示例#2
0
 public override bool OnNotify(Notify ntf)
 {
     return((ntf.type == NotifyTypes.MissionUpdated) && this.OnMissionUpdated((uint)ntf.body));
 }
 public override bool OnNotify(Notify ntf)
 {
     return((ntf.type == NotifyTypes.AnimCallBack) && this.OnAnimationCallBack(ntf.body.ToString()));
 }
示例#4
0
 public override bool OnNotify(Notify ntf)
 {
     return(false);
 }
示例#5
0
 public override bool OnNotify(Notify ntf)
 {
     return((ntf.type == NotifyTypes.SelectStoreGoodsItem) && this.OnSelectStoreGoodsItem((Goods)ntf.body));
 }
 public override bool OnNotify(Notify ntf)
 {
     return((ntf.type == NotifyTypes.SelectAvtarIconChange) && this.UpdateSelectedAvatar((int)ntf.body));
 }
示例#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);
 }
 public override bool OnNotify(Notify ntf)
 {
     return((ntf.type == NotifyTypes.AvatarSelectForRevive) && this.OnAvatarSelectForRevive((uint)ntf.body));
 }
示例#9
0
 public override bool OnNotify(Notify ntf)
 {
     return((ntf.type == NotifyTypes.SelectAvtarSkillIconChange) && this.OnSelectedSkillChanged((int)ntf.body));
 }
示例#10
0
 public override bool OnNotify(Notify ntf)
 {
     return((ntf.type == NotifyTypes.EndlessSettlementAnimationEnd) && this.PlayEffect());
 }