2019-02-01 17:19:20 +00:00
|
|
|
|
namespace RobloxFiles.DataTypes
|
2019-01-26 00:39:37 +00:00
|
|
|
|
{
|
|
|
|
|
public struct NumberSequenceKeypoint
|
|
|
|
|
{
|
|
|
|
|
public readonly float Time;
|
|
|
|
|
public readonly float Value;
|
|
|
|
|
public readonly float Envelope;
|
|
|
|
|
|
|
|
|
|
public NumberSequenceKeypoint(float time, float value, float envelope = 0)
|
|
|
|
|
{
|
|
|
|
|
Time = time;
|
|
|
|
|
Value = value;
|
|
|
|
|
Envelope = envelope;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return string.Join(" ", Time, Value, Envelope);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|