diff --git a/src/gameobjects/shape/ellipse/Ellipse.js b/src/gameobjects/shape/ellipse/Ellipse.js index cdf43686e..0bb31b106 100644 --- a/src/gameobjects/shape/ellipse/Ellipse.js +++ b/src/gameobjects/shape/ellipse/Ellipse.js @@ -61,12 +61,12 @@ var Ellipse = new Class({ get: function () { - return this.__smoothness; + return this._smoothness; }, set: function (value) { - this.__smoothness = value; + this._smoothness = value; this.updateData(); }