summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Unit/Events/EventEffect.cs
blob: 65479cb7115839647cfcf438ba81be3e92706c1b (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 EventEffect : AnimationEventBase
{
    public string effectName;
    public bool attached;
    public string bone;
    public Vector3 position;
    public Quaternion rotation;
    public Vector3 scale;
}