- ALOT of new icons - Network Area of EffectOverTime With Tick Event ability type - Movement Speed modifier effect - Vampire class signature ability - vampire new ultimate ability
16 lines
465 B
C#
16 lines
465 B
C#
using Photon.Pun;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
|
|
public class NetworkedAreaOfEffectOverTimeWithTickEvent : NetworkedAreaOfEffectOverTime
|
|
{
|
|
public UnityEvent<PhotonView, Taggable, List<Taggable>> onTickHappened = new UnityEvent<PhotonView, Taggable, List<Taggable>>();
|
|
|
|
protected override void OnTickPerformed()
|
|
{
|
|
onTickHappened.Invoke(owner, ownerTag, targets);
|
|
}
|
|
}
|