|
@@ -239,6 +239,7 @@
|
|
public static Magenta(): Color3 { return new Color3(1, 0, 1); }
|
|
public static Magenta(): Color3 { return new Color3(1, 0, 1); }
|
|
public static Yellow(): Color3 { return new Color3(1, 1, 0); }
|
|
public static Yellow(): Color3 { return new Color3(1, 1, 0); }
|
|
public static Gray(): Color3 { return new Color3(0.5, 0.5, 0.5); }
|
|
public static Gray(): Color3 { return new Color3(0.5, 0.5, 0.5); }
|
|
|
|
+ public static Random(): Color3 { return new Color3(Math.Random(), Math.Random(), Math.Random()); }
|
|
}
|
|
}
|
|
|
|
|
|
export class Color4 {
|
|
export class Color4 {
|
|
@@ -4081,4 +4082,4 @@
|
|
Matrix.Zero(), Matrix.Zero(),
|
|
Matrix.Zero(), Matrix.Zero(),
|
|
Matrix.Zero(), Matrix.Zero()]; // 6 temp Matrices at once should be enough
|
|
Matrix.Zero(), Matrix.Zero()]; // 6 temp Matrices at once should be enough
|
|
}
|
|
}
|
|
-}
|
|
|
|
|
|
+}
|