public ColorSequence(Color3 color) : this(new [] { new ColorSequenceKeypoint(0, color), new ColorSequenceKeypoint(1, color) }) { }
public ColorSequenceKeypoint(float time, Color3 value) { Time = time; Value = value; }
public ColorSequence(Color3 c0, Color3 c1) : this(new[] { new ColorSequenceKeypoint(0, c0), new ColorSequenceKeypoint(1, c1) }) { }