Loïc Baumann пре 8 година
родитељ
комит
ed7528c602
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/Math/babylon.math.ts

+ 1 - 1
src/Math/babylon.math.ts

@@ -239,7 +239,7 @@
         public static Magenta(): Color3 { return new Color3(1, 0, 1); }
         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 Random(): Color3 { return new Color3(Math.Random(), Math.Random(), Math.Random()); }
+        public static Random(): Color3 { return new Color3(Math.random(), Math.random(), Math.random()); }
     }
 
     export class Color4 {