Hi. Here is code:
group = game.add.group();
group.inputEnableChildren = true;
....
group .create(...);
...
group.onChildInputDown.add(onMouseDown, this);
Console show an error:
Uncaught TypeError: Cannot read property 'add' of undefined
E.g. "onChildInputDown" is undefined.
How fix it?