Update CHANGELOG-v3.60.md

This commit is contained in:
Richard Davey 2023-03-31 16:37:04 +01:00
parent 5e0dd72153
commit f69292ed38

View file

@ -1045,6 +1045,7 @@ The following are API-breaking, in that a new optional parameter has been insert
### Updates
* You will now get a warning from the `AnimationManager` and `AnimationState` if you try to add an animation with a key that already exists. Fix #6434.
* `Tilemap.addTilesetImage` has a new optional parameter `tileOffset` which, if given, controls the rendering offset of the tiles. This was always available on the Tileset itself, but not from this function (thanks @imothee)
* The `GameObject.getBounds` method will now return a `Geom.Rectangle` instance, rather than a plain Object (thanks @samme)
* The `GetBounds.getCenter` method now has an optional `includeParent` argument, which allows you to get the value in world space.