19 lines
258 B
C#
19 lines
258 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
[Serializable]
|
|
public class MegaMorphTarget
|
|
{
|
|
public string name = "Empty";
|
|
|
|
public float percent;
|
|
|
|
public bool showparams = true;
|
|
|
|
public Vector3[] points;
|
|
|
|
public MOMVert[] mompoints;
|
|
|
|
public MOPoint[] loadpoints;
|
|
}
|