diff --git a/CHANGELOG.md b/CHANGELOG.md index e682945f8..35d370228 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -304,6 +304,8 @@ The Animation API has had a significant overhaul to improve playback handling. I * The `AnimationState.stopAfterRepeat` method now has an optional parameter `repeatCount`, so you can tell the animation to stop after a specified number of repeats, not just 1. * When playing an animation in reverse, if it reached the first frame and had to repeat, it would then jump to the frame before the final frame and carry on, skipping out the final frame. * The `AnimationState.updateFrame` method has now been removed. Everything is handled by `setCurrentFrame` instead, which removes one extra step out of the update process. +* `GenerateFrameNames` will now console.warn if the generated frame isn't present in the texture, which should help with debugging animation creation massively. +* `GenerateFrameNumbers` will now console.warn if the generated frame isn't present in the texture, which should help with debugging animation creation massively. ### New Features