Updated version number

This commit is contained in:
Richard Davey 2021-09-20 11:41:47 +01:00
parent 259f68d04b
commit 2f8d6a023d
2 changed files with 5 additions and 5 deletions

View file

@ -1365,7 +1365,7 @@ var Text = new Class({
*
* @method Phaser.GameObjects.Text#onContextRestored
* @protected
* @since 3.56.0
* @since 3.60.0
*/
onContextRestored: function ()
{

View file

@ -517,7 +517,7 @@ var TileSprite = new Class({
*
* @method Phaser.GameObjects.TileSprite#onContextRestored
* @protected
* @since 3.56.0
* @since 3.60.0
*/
onContextRestored: function (renderer)
{
@ -525,13 +525,13 @@ var TileSprite = new Class({
{
return;
}
var gl = renderer.gl;
this.dirty = true;
this.fillPattern = null;
this.fillPattern = renderer.createTexture2D(0, gl.LINEAR, gl.LINEAR, gl.REPEAT, gl.REPEAT, gl.RGBA, this.fillCanvas, this.potWidth, this.potHeight);
},
/**