Skip to content

Commit

Permalink
Updated version to 3.85.0
Browse files Browse the repository at this point in the history
  • Loading branch information
photonstorm committed May 15, 2024
1 parent fc873c0 commit 5d1d379
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "phaser",
"version": "3.80.1",
"version": "3.85.0",
"release": "Nino",
"description": "A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.",
"author": "Richard Davey <[email protected]> (https://www.phaser.io)",
Expand Down
2 changes: 1 addition & 1 deletion src/const.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var CONST = {
* @type {string}
* @since 3.0.0
*/
VERSION: '3.80.1',
VERSION: '3.85.0',

BlendModes: require('./renderer/BlendModes'),

Expand Down
2 changes: 1 addition & 1 deletion src/renderer/webgl/WebGLRenderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -3033,7 +3033,7 @@ var WebGLRenderer = new Class({
* If the `dstTexture` parameter is given, the WebGL Texture is updated, rather than created fresh.
*
* @method Phaser.Renderer.WebGL.WebGLRenderer#videoToTexture
* @since 3.90.0
* @since 3.85.0
*
* @param {HTMLVideoElement} srcVideo - The Video to create the WebGL Texture from
* @param {Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper} [dstTexture] - The destination WebGLTextureWrapper to set.
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/webgl/wrappers/WebGLTextureWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ var WebGLTextureWrapper = new Class({
createResource: function ()
{
var gl = this.gl;

if (gl.isContextLost())
{
// GL state can't be updated right now.
Expand Down Expand Up @@ -291,7 +291,7 @@ var WebGLTextureWrapper = new Class({
*
* @function Phaser.Renderer.WebGL.Wrappers.WebGLTextureWrapper#_processTexture
* @protected
* @since 3.90.0
* @since 3.85.0
* @ignore
*/
_processTexture: function ()
Expand Down

0 comments on commit 5d1d379

Please sign in to comment.