diff --git a/CHANGELOG-v3.60.md b/CHANGELOG-v3.60.md index cd43d338d..1911b76ff 100644 --- a/CHANGELOG-v3.60.md +++ b/CHANGELOG-v3.60.md @@ -420,6 +420,7 @@ The following are API-breaking, in that a new optional parameter has been insert ### Bug Fixes +* The method `Color.setFromHSV` would not change the members `h`, `s` and `v`, only the RGB properties. It now correctly updates them both. Fix #6276 (thanks @rexrainbow) * When calling `GameObject.getPostPipeline` and passing in a string for the pipeline name it would error with 'Uncaught TypeError: Right-hand side of 'instanceof' is not an object'. This is now handled correctly internally (thanks @neki-dev) * When playing a chained animation, the `nextAnim` property could get set to `undefined` which would stop the next animation in the queue from being set. The check now handles all falsey cases. Fix #5852 (thanks @Pythux) * When calling `InputPlugin.clear` it will now call `removeDebug` on the Game Object, making sure it clears up any Input Debug Graphics left in the Scene. Fix #6137 (thanks @spayton)