Bringing up to date.

Brought everything up to date with 0.437.0.406875 and made some improvements.
This commit is contained in:
CloneTrooper1019
2020-06-21 20:02:36 -05:00
parent e5f6852e7a
commit 5f4d3e16d2
16 changed files with 12822 additions and 257 deletions

View File

@ -11,6 +11,10 @@ namespace RobloxFiles.DataTypes
return string.Join<ColorSequenceKeypoint>(" ", Keypoints);
}
public ColorSequence(float r, float g, float b) : this(new Color3(r, g, b))
{
}
public ColorSequence(Color3 c) : this(c, c)
{
}