An open API service indexing awesome lists of open source software.

https://github.com/samme/phaser-group-signals

Adds onChildAdded, onChildKilled, onChildRemoved, onChildRevived
https://github.com/samme/phaser-group-signals

Last synced: 5 months ago
JSON representation

Adds onChildAdded, onChildKilled, onChildRemoved, onChildRevived

Awesome Lists containing this project

README

          

Use
---

```javascript
group.onChildAdded.add(function (child, parent){
// {child} was added to {parent}
});

group.onChildRemoved.add(function (child, prevParent){
// {child} was removed from {prevParent}
});

group.onChildKilled.add(function (child, parent){
// {child} was killed
});

group.onChildRevived.add(function (child, parent){
// {child} was revived
});
```