| 257 | } |
| 258 | |
| 259 | NodePath MultiNodeEdit::get_node(int p_index) const { |
| 260 | ERR_FAIL_INDEX_V(p_index, get_node_count(), NodePath()); |
| 261 | return nodes[p_index]; |
| 262 | } |
| 263 | |
| 264 | StringName MultiNodeEdit::get_edited_class_name() const { |
| 265 | Node *es = EditorNode::get_singleton()->get_edited_scene(); |
no test coverage detected