Ejemplo n.º 1
0
 public void Init(C_UiEventMgr eventMgr)
 {
     eventMgr.BindEvent(typeof(UiMsgs.Hit), Hit);
     eventMgr.BindEvent(typeof(UiMsgs.Spread), Spread);
     eventMgr.BindEvent(typeof(UiMsgs.Kill), Kill);
     eventMgr.BindEvent(typeof(UiMsgs.Assists), Assists);
     eventMgr.BindEvent(typeof(UiMsgs.Killer), Killer);
     eventMgr.BindEvent(typeof(UiMsgs.Dot), Dot);
     eventMgr.BindEvent(typeof(UiMsgs.Blood), Blood);
 }
Ejemplo n.º 2
0
 public void Init(C_UiEventMgr eventMgr)
 {
     eventMgr.BindEvent(typeof(UiMsgs.Hp), RefreshHp);
     eventMgr.BindEvent(typeof(UiMsgs.Ammo), RefreshAmmo);
     eventMgr.BindEvent(typeof(UiMsgs.WeaponCut), SetWeaponCut);
 }
Ejemplo n.º 3
0
    public void Init(C_Attributes attributes, C_UiEventMgr eventMgr)
    {
        nameText.color = (attributes.camp == Battle.localPlayerCamp) ? friendColor : enemyColor;

        eventMgr.BindEvent(typeof(UiMsgs.Hp), RefreshHp);
    }