Bladeren bron

Directories can now be dragged into the script editor

Hayden 6 jaren geleden
bovenliggende
commit
c9b9ba26db
1 gewijzigde bestanden met toevoegingen van 3 en 2 verwijderingen
  1. 3 2
      editor/plugins/script_text_editor.cpp

+ 3 - 2
editor/plugins/script_text_editor.cpp

@@ -1266,7 +1266,8 @@ bool ScriptTextEditor::can_drop_data_fw(const Point2 &p_point, const Variant &p_
 	Dictionary d = p_data;
 	Dictionary d = p_data;
 	if (d.has("type") && (String(d["type"]) == "resource" ||
 	if (d.has("type") && (String(d["type"]) == "resource" ||
 								 String(d["type"]) == "files" ||
 								 String(d["type"]) == "files" ||
-								 String(d["type"]) == "nodes")) {
+								 String(d["type"]) == "nodes" ||
+								 String(d["type"]) == "files_and_dirs")) {
 
 
 		return true;
 		return true;
 	}
 	}
@@ -1328,7 +1329,7 @@ void ScriptTextEditor::drop_data_fw(const Point2 &p_point, const Variant &p_data
 		te->insert_text_at_cursor(res->get_path());
 		te->insert_text_at_cursor(res->get_path());
 	}
 	}
 
 
-	if (d.has("type") && String(d["type"]) == "files") {
+	if (d.has("type") && (String(d["type"]) == "files" || String(d["type"]) == "files_and_dirs")) {
 
 
 		Array files = d["files"];
 		Array files = d["files"];