Exemplo n.º 1
0
        void EnemyAttack()
        {
            EnemyAttackEvent enemyAttackEventiInfo = new EnemyAttackEvent();

            enemyAttackEventiInfo.Description = "Unit " + gameObject.name + " has just attacked";
            enemyAttackEventiInfo.enemy_go    = gameObject;
            enemyAttackEventiInfo.FireEvent();
        }
Exemplo n.º 2
0
 // Use this for initialization
 void Start()
 {
     PlayerAttackEvent.RegisterListener(OnPlayerAttack);
     EnemyAttackEvent.RegisterListener(OnEnemyAttack);
     TileAttackEvent.RegisterListener(OnTileAttack);
 }
Exemplo n.º 3
0
 void OnEnemyAttack(EnemyAttackEvent enemyAttack)
 {
     Debug.Log("I hear " + enemyAttack.enemy_go.name + " has taken damage, that is to bad, but at least we know the Event cb system is working fine now - Report from the DamageListener");
 }
Exemplo n.º 4
0
 void OnDestroy()
 {
     PlayerAttackEvent.UnregisterListener(OnPlayerAttack);
     EnemyAttackEvent.UnregisterListener(OnEnemyAttack);
     TileAttackEvent.UnregisterListener(OnTileAttack);
 }