Nick 8d78c49c64 Move TimeValuePair to Utility, Ring no longer inherits from VariableSizeModule
Also migrated the old value for curve to scaleCurve.
2022-08-25 19:29:06 -04:00

15 lines
313 B
C#

using NewHorizons.Utility;
using Newtonsoft.Json;
using UnityEngine;
namespace NewHorizons.External.Modules.VariableSize
{
[JsonObject]
public class VariableSizeModule
{
/// <summary>
/// Scale this object over time
/// </summary>
public TimeValuePair[] curve;
}
}