| 215 | } |
| 216 | |
| 217 | Vector<StringName> NodePath::get_subnames() const { |
| 218 | if (data) { |
| 219 | return data->subpath; |
| 220 | } |
| 221 | return Vector<StringName>(); |
| 222 | } |
| 223 | |
| 224 | StringName NodePath::get_concatenated_names() const { |
| 225 | ERR_FAIL_NULL_V(data, StringName()); |
no outgoing calls
no test coverage detected