summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Unit/Events/EventMesh_LensEffect_Dash.cs
blob: 0da254cc9931610e56f60583a26a2dabea3b4769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class EventMesh_LensEffect_Dash : AnimationEventBase
{
    public override TimelineEventProxy.EEventType type { get { return TimelineEventProxy.EEventType.EventMesh_LensEffect_Dash; } }
    public override string shortName { get { return "D"; } }

    public float lifeTime;
    public float angle;

}