Find a root child node in the scene.
fb.Node? getChild(int index) { int? childIndex = children?[index]; if (childIndex == null) { return null; } return nodes?[childIndex]; }