From d877fd6b67e9d30a74b702e99cd55aafe52d760f Mon Sep 17 00:00:00 2001 From: Zeke Chan Date: Thu, 4 Jul 2024 14:53:56 +0800 Subject: [PATCH] Update CHANGELOG-v3.85.md --- changelog/3.85/CHANGELOG-v3.85.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/changelog/3.85/CHANGELOG-v3.85.md b/changelog/3.85/CHANGELOG-v3.85.md index 44913bbda..0beef0f42 100644 --- a/changelog/3.85/CHANGELOG-v3.85.md +++ b/changelog/3.85/CHANGELOG-v3.85.md @@ -12,6 +12,8 @@ * Introduced `updateConfig` method in `ParticleEmitter.js` to allow dynamic updating of Particle Emitter configurations. This method enables existing properties to be overridden and new properties to be added to the emitter's configuration. It ensures that the emitter is reset with the updated configuration for more flexible particle effects management. * A new `wrap` method has been natively integrated into the `Body` class to replace the existing `MatterWrap` plugin. [Here's how it works](MatterWrapBounds.md). * The Matter `attractors` plugin has been natively integrated into the `Body` class and Matter engine. [More details here](MatterAttractor.md). +* Added functionality to the `Phaser.Textures.DynamicTexture#clear` method. Clear a specific area within a `Dynamic Texture` by specifying `x`, `y`, `width`, and `height` parameters to clear only a portion of the texture. +* Added functionality to the `Phaser.Renderer.WebGL.RenderTarget#clear` method. Clear a specific area within the `RenderTarget` by specifying `x`, `y`, `width`, and `height` parameters. # WebGL Rendering Updates