* @ignore * @param {...*} _args - reserved; widens the signature so subclass * overrides like `onActivateEvent(app)` remain structurally * assignable to the base Container/Renderable type.
(..._args)
| 760 | * assignable to the base Container/Renderable type. |
| 761 | */ |
| 762 | onActivateEvent(..._args) { |
| 763 | this.forEach((child) => { |
| 764 | if (typeof child.onActivateEvent === "function") { |
| 765 | child.onActivateEvent(); |
| 766 | } |
| 767 | }); |
| 768 | } |
| 769 | |
| 770 | /** |
| 771 | * Invokes the removeChildNow in a defer, to ensure the child is removed safely after the update & draw stack has completed. <br> |
no test coverage detected