TOOD: Update these to utilise the type parameter
| 57 | |
| 58 | // TOOD: Update these to utilise the type parameter |
| 59 | Node *SceneTreeDatabag::find_node(const String &p_mask, bool p_recursive, bool p_owner) { |
| 60 | // Using root to search the node. |
| 61 | Node *root = world_ecs->get_tree()->get_root(); |
| 62 | return root->find_child(p_mask, p_recursive, p_owner); |
| 63 | } |
| 64 | |
| 65 | const Node *SceneTreeDatabag::find_node(const String &p_mask, bool p_recursive, bool p_owner) const { |
| 66 | // Using root to search the node. |
nothing calls this directly
no outgoing calls
no test coverage detected