| 81 | } |
| 82 | |
| 83 | StringName NodePath::get_name(int p_idx) const { |
| 84 | ERR_FAIL_NULL_V(data, StringName()); |
| 85 | ERR_FAIL_INDEX_V(p_idx, data->path.size(), StringName()); |
| 86 | return data->path[p_idx]; |
| 87 | } |
| 88 | |
| 89 | int NodePath::get_subname_count() const { |
| 90 | if (!data) { |
nothing calls this directly
no test coverage detected