24 lines
344 B
C#
24 lines
344 B
C#
using System;
|
|
|
|
[Serializable]
|
|
public class MegaMorphAnimClip
|
|
{
|
|
public string name;
|
|
|
|
public float start;
|
|
|
|
public float end;
|
|
|
|
public MegaRepeatMode loop;
|
|
|
|
public float speed = 1f;
|
|
|
|
public MegaMorphAnimClip(string _name, float _start, float _end, MegaRepeatMode _loop)
|
|
{
|
|
name = _name;
|
|
start = _start;
|
|
end = _end;
|
|
loop = _loop;
|
|
}
|
|
}
|