13 lines
173 B
C#
13 lines
173 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
[Serializable]
|
|
public class MegaAnimatedVert
|
|
{
|
|
public int[] indices;
|
|
|
|
public Vector3 startVert;
|
|
|
|
public MegaBezVector3KeyControl con;
|
|
}
|