1.0.1 • Published 7 years ago

phaser-group-signals v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Use

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
});