mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 05:33:35 +00:00
Set tint on setters
This commit is contained in:
parent
390ae5f683
commit
0ac0bc18d3
1 changed files with 4 additions and 0 deletions
|
@ -217,6 +217,7 @@ var Tint = {
|
||||||
set: function (value)
|
set: function (value)
|
||||||
{
|
{
|
||||||
this._tintTL = GetColor(value);
|
this._tintTL = GetColor(value);
|
||||||
|
this._isTinted = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
|
@ -240,6 +241,7 @@ var Tint = {
|
||||||
set: function (value)
|
set: function (value)
|
||||||
{
|
{
|
||||||
this._tintTR = GetColor(value);
|
this._tintTR = GetColor(value);
|
||||||
|
this._isTinted = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
|
@ -263,6 +265,7 @@ var Tint = {
|
||||||
set: function (value)
|
set: function (value)
|
||||||
{
|
{
|
||||||
this._tintBL = GetColor(value);
|
this._tintBL = GetColor(value);
|
||||||
|
this._isTinted = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
|
@ -286,6 +289,7 @@ var Tint = {
|
||||||
set: function (value)
|
set: function (value)
|
||||||
{
|
{
|
||||||
this._tintBR = GetColor(value);
|
this._tintBR = GetColor(value);
|
||||||
|
this._isTinted = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue