Skip to content

Commit 7fbb055

Browse files
committed
Updated
1 parent 6ccb0f2 commit 7fbb055

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ being passed to the simulation. The default value is 1 to remain consistent with
2323
* Matter Physics has two new debug properties: `debugShowJoint` and `debugJointColor`. If defined they will display joints in Matter bodies during the postUpdate debug phase (only if debug is enabled) (thanks @OmarShehata)
2424
* You can now pass a Sprite Sheet or Canvas as the Texture key to `Tilemap.addTileset` and it will work in WebGL, where-as before it would display a corrupted tilemap. Fix #3407 (thanks @Zykino)
2525
* Graphics.slice allows you to easily draw a Pacman, or slice of pie shape to a Graphics object.
26+
* List.addCallback is a new optional callback that is invoked every time a new child is added to the List. You can use this to have a callback fire when children are added to the Display List.
27+
* List.removeCallback is a new optional callback that is invoked every time a new child is removed from the List. You can use this to have a callback fire when children are removed from the Display List.
2628

2729
### Bug Fixes
2830

@@ -53,6 +55,14 @@ being passed to the simulation. The default value is 1 to remain consistent with
5355
* The Gamepad Axis threshold has been increased from 0.05 to 0.1.
5456
* Utils.Array.FindClosestInSorted has a new optional argument `key` which will allow you to scan a top-level property of any object in the given sorted array and get the closest match to it.
5557
* Vector2.setTo is a method alias for Vector2.set allowing it to be used inter-changeably with Geom.Point.
58+
* List.add can now take an array or a single child. If an array is given it's passed over to List.addMultiple.
59+
* List.add has a new optional argument `skipCallback`.
60+
* List.addAt has a new optional argument `skipCallback`.
61+
* List.addMultiple has a new optional argument `skipCallback`.
62+
* List.remove has a new optional argument `skipCallback`.
63+
* List.removeAt has a new optional argument `skipCallback`.
64+
* List.removeBetween has a new optional argument `skipCallback`.
65+
* List.removeAll has a new optional argument `skipCallback`.
5666

5767
### Animation Component Updates
5868

0 commit comments

Comments
 (0)