summaryrefslogtreecommitdiffstats
path: root/editor/editor_data.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r--editor/editor_data.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp
index 1421db42ec..1f9d754185 100644
--- a/editor/editor_data.cpp
+++ b/editor/editor_data.cpp
@@ -713,6 +713,16 @@ int EditorData::get_edited_scene() const {
return current_edited_scene;
}
+int EditorData::get_edited_scene_from_path(const String &p_path) const {
+ for (int i = 0; i < edited_scene.size(); i++) {
+ if (edited_scene[i].path == p_path) {
+ return i;
+ }
+ }
+
+ return -1;
+}
+
void EditorData::set_edited_scene(int p_idx) {
ERR_FAIL_INDEX(p_idx, edited_scene.size());
current_edited_scene = p_idx;