diff --git a/src/core/display/Transform.js b/src/core/display/Transform.js index 3a89102..913a5a1 100644 --- a/src/core/display/Transform.js +++ b/src/core/display/Transform.js @@ -19,7 +19,7 @@ * * @member {PIXI.Point} */ - this.position = new math.Point(0.0); + this.position = new math.Point(0,0); /** * The scale factor of the object. @@ -40,7 +40,7 @@ * * @member {PIXI.Point} */ - this.pivot = new math.Point(0.0); + this.pivot = new math.Point(0,0); /** * The rotation value of the object, in radians diff --git a/src/core/display/Transform.js b/src/core/display/Transform.js index 3a89102..913a5a1 100644 --- a/src/core/display/Transform.js +++ b/src/core/display/Transform.js @@ -19,7 +19,7 @@ * * @member {PIXI.Point} */ - this.position = new math.Point(0.0); + this.position = new math.Point(0,0); /** * The scale factor of the object. @@ -40,7 +40,7 @@ * * @member {PIXI.Point} */ - this.pivot = new math.Point(0.0); + this.pivot = new math.Point(0,0); /** * The rotation value of the object, in radians diff --git a/src/core/display/TransformStatic.js b/src/core/display/TransformStatic.js index 6597e11..098dda4 100644 --- a/src/core/display/TransformStatic.js +++ b/src/core/display/TransformStatic.js @@ -16,7 +16,7 @@ * * @member {PIXI.ObservablePoint} */ - this.position = new math.ObservablePoint(this.onChange, this,0.0); + this.position = new math.ObservablePoint(this.onChange, this,0,0); /** * The scale factor of the object. @@ -47,7 +47,7 @@ this._sy = Math.sin(0);//skewY); this._nsx = Math.sin(0);//skewX); this._cx = Math.cos(0);//skewX); - + this._localID = 0; this._currentLocalID = 0; }