| 95 | } |
| 96 | |
| 97 | StringName NodePath::get_subname(int p_idx) const { |
| 98 | ERR_FAIL_NULL_V(data, StringName()); |
| 99 | ERR_FAIL_INDEX_V(p_idx, data->subpath.size(), StringName()); |
| 100 | return data->subpath[p_idx]; |
| 101 | } |
| 102 | |
| 103 | int NodePath::get_total_name_count() const { |
| 104 | if (!data) { |
no test coverage detected