diff --git a/CHANGELOG.md b/CHANGELOG.md index 7293e7617..c97511eba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ being passed to the simulation. The default value is 1 to remain consistent with * HTML5AudioSound.setSeek is a chainable way to set seek to a point of a single Sound instance. * HTML5AudioSound.setLoop is a chainable way to set the loop state of a single Sound instance. * Matter Physics has two new debug properties: `debugShowJoint` and `debugJointColor`. If defined they will display joints in Matter bodies during the postUpdate debug phase (only if debug is enabled) (thanks @OmarShehata) +* You can now pass a Sprite Sheet or Canvas as the Texture key to `Tilemap.addTileset` and it will work in WebGL, where-as before it would display a corrupted tilemap. Fix #3407 (thanks @Zykino) ### Bug Fixes @@ -32,6 +33,7 @@ being passed to the simulation. The default value is 1 to remain consistent with * Matter.World was using `setZ` instead of `setDepth` for the Debug Graphics Layer, causing it to appear behind objects in some display lists. * Game.destroy now checks to see if the `renderer` exists before calling destroy on it. Fix #3498 (thanks @Huararanga) * Keyboard.JustDown and Keyboard.JustUp were being reset too early, causing them to fail when called in `update` loops. Fix #3490 (thanks @belen-albeza) +* RenderTexture.destroy no longer throws an error when called. Fix #3475 (thanks @kuoruan) ### Updates