* return the child corresponding to the specified GUID * note : avoid calling this function every frame since * it parses the whole object list each time * @param {string|RegExp|number|boolean} guid - child GUID * @returns {Renderable} corresponding child or null
(guid)
| 672 | * @returns {Renderable} corresponding child or null |
| 673 | */ |
| 674 | getChildByGUID(guid) { |
| 675 | const obj = this.getChildByProp("GUID", guid); |
| 676 | return obj.length > 0 ? obj[0] : null; |
| 677 | } |
| 678 | |
| 679 | /** |
| 680 | * return all child in this container |
nothing calls this directly
no test coverage detected