mirror of
https://github.com/photonstorm/phaser
synced 2024-11-10 07:04:31 +00:00
v3.85.2 version
This commit is contained in:
parent
6d68565b51
commit
e41b3be8ff
4 changed files with 14 additions and 2 deletions
|
@ -6,6 +6,7 @@ Please select a version to read that specific change log:
|
||||||
|
|
||||||
| Version | Name | Release Date |
|
| Version | Name | Release Date |
|
||||||
| ------- | ---- | ------------ |
|
| ------- | ---- | ------------ |
|
||||||
|
| [3.85.2](changelog/3.85/CHANGELOG-v3.85.2.md) | Itsuki | 17th September 2024 |
|
||||||
| [3.85.0](changelog/3.85/CHANGELOG-v3.85.md) | Itsuki | 5th September 2024 |
|
| [3.85.0](changelog/3.85/CHANGELOG-v3.85.md) | Itsuki | 5th September 2024 |
|
||||||
| [3.80.1](changelog/3.80.1/CHANGELOG-v3.80.1.md) | Nino | 27th February 2024 |
|
| [3.80.1](changelog/3.80.1/CHANGELOG-v3.80.1.md) | Nino | 27th February 2024 |
|
||||||
| [3.80](changelog/3.80/CHANGELOG-v3.80.md) | Nino | 21st February 2024 |
|
| [3.80](changelog/3.80/CHANGELOG-v3.80.md) | Nino | 21st February 2024 |
|
||||||
|
|
11
changelog/3.85.2/CHANGELOG-v3.85.2.md
Normal file
11
changelog/3.85.2/CHANGELOG-v3.85.2.md
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
# Version 3.85.2 - Itsuki - 17th September 2024
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Updates
|
||||||
|
|
||||||
|
* `WebGLRenderer.setExtensions` is a new method that queries the GL context to get the list of supported extensions. Which it then sets into the class properties. This method is called internally as part of the `init` and restore process.
|
||||||
|
|
||||||
|
## Bug Fixes
|
||||||
|
|
||||||
|
* When the WebGL context was restored it would incorrectly try to call `init.setupExtensions()` which didn't exist.
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "phaser",
|
"name": "phaser",
|
||||||
"version": "3.85.1",
|
"version": "3.85.2",
|
||||||
"release": "Itsuki",
|
"release": "Itsuki",
|
||||||
"description": "A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.",
|
"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 <rich@phaser.io> (https://www.phaser.io)",
|
"author": "Richard Davey <rich@phaser.io> (https://www.phaser.io)",
|
||||||
|
|
|
@ -20,7 +20,7 @@ var CONST = {
|
||||||
* @type {string}
|
* @type {string}
|
||||||
* @since 3.0.0
|
* @since 3.0.0
|
||||||
*/
|
*/
|
||||||
VERSION: '3.85.1',
|
VERSION: '3.85.2',
|
||||||
|
|
||||||
BlendModes: require('./renderer/BlendModes'),
|
BlendModes: require('./renderer/BlendModes'),
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue