mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 05:03:37 +00:00
Fixed property name
This commit is contained in:
parent
1f4c0b5809
commit
ecbee17c53
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue