mirror of
https://github.com/photonstorm/phaser
synced 2024-11-14 00:47:29 +00:00
Update CHANGELOG-v3.80.md
This commit is contained in:
parent
9febc6b44a
commit
546a0bfa06
1 changed files with 2 additions and 1 deletions
|
@ -1,9 +1,10 @@
|
|||
# Version 3.80.0 - Yotsuba - in dev
|
||||
# Version 3.80.0 - Nino - in dev
|
||||
|
||||
# Updates
|
||||
|
||||
* The `TweenChainBuilder` was incorrectly setting the `persist` flag on the Chain to `true`, which goes against what the documentation says. It now correctly sets it to `false`. This means if you previously had a Tween Chain that was persisting, it will no longer do so, so add the property to regain the feature.
|
||||
* The `dropped` argument has now been adeded to the documentation for the `DRAG_END` and `GAMEOBJECT_DRAG_END` events (thanks @samme)
|
||||
* `Container.onChildDestroyed` is a new internal method used to destroy Container children. Previously, if you destroyed a Game Object in an exclusive Container, the game object would (momentarily) move onto the Scene display list and emit an ADDED_TO_SCENE event. Also, if you added a Sprite to a non-exclusive Container and stopped the Scene, you would get a TypeError (evaluating 'this.anims.destroy'). This happened because the fromChild argument in the DESTROY event was misinterpreted as destroyChild in the Container's remove(), and the Container was calling the Sprite's destroy() again. (thanks @samme)
|
||||
|
||||
# Bug Fixes
|
||||
|
||||
|
|
Loading…
Reference in a new issue