Przeglądaj źródła

Fixed size subtract typo

David Catuhe 8 lat temu
rodzic
commit
e6aca04f21

Plik diff jest za duży
+ 1 - 1
dist/preview release/babylon.core.js


Plik diff jest za duży
+ 4837 - 4837
dist/preview release/babylon.d.ts


Plik diff jest za duży
+ 2 - 2
dist/preview release/babylon.js


Plik diff jest za duży
+ 2 - 2
dist/preview release/babylon.max.js


Plik diff jest za duży
+ 1 - 1
dist/preview release/babylon.noworker.js


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

@@ -1790,7 +1790,7 @@
             return r;
         }
 
-        public substract(otherSize: Size): Size {
+        public subtract(otherSize: Size): Size {
             let r = new Size(this.width - otherSize.width, this.height - otherSize.height);
             return r;
         }