Remove unused Color ToArray function.

This commit is contained in:
Masataka SUMI
2021-05-07 19:58:00 +09:00
parent 139625f5a6
commit 23fff239d7

View File

@@ -281,11 +281,6 @@ namespace UniGLTF
return new float[] { v.x, v.y, v.z, v.w };
}
public static float[] ToArray(this Color c)
{
return new float[] { c.r, c.g, c.b, c.a };
}
public static void ReverseRecursive(this Transform root, IAxisInverter axisInverter)
{
var globalMap = root.Traverse().ToDictionary(x => x, x => PosRot.FromGlobalTransform(x));