From 9281b8bf6c3ae1a5b75abfedd06dcbb117e28d9b Mon Sep 17 00:00:00 2001 From: Richard Davey Date: Thu, 14 Nov 2024 00:28:01 +0000 Subject: [PATCH] Update CHANGELOG-v3.87.md --- changelog/3.87/CHANGELOG-v3.87.md | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog/3.87/CHANGELOG-v3.87.md b/changelog/3.87/CHANGELOG-v3.87.md index 4fabe384b..3f2f75350 100644 --- a/changelog/3.87/CHANGELOG-v3.87.md +++ b/changelog/3.87/CHANGELOG-v3.87.md @@ -21,6 +21,7 @@ create () ## Updates * The Particle Animation State is now optional. A Particle will not create an Animation State controller unless the `anim` property exists within the emitter configuration. By not creating the controller it leads to less memory overhead and a much faster clean-up time when destroying particles. Fix #6482 (thanks @samme) +* Optimized `TweenData.update` to achieve the same result with my less repetition. Also fixes an issue where a Tween that used a custom `ease` callback would glitch when the final value was set, as it would be set outside of the ease callback. It's now passed through it, no matter what. Fix #6939 (thanks @SBCGames) ## Bug Fixes