You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Allow dropping property path into script editor
This commit is contained in:
@@ -1452,6 +1452,7 @@ bool ScriptTextEditor::can_drop_data_fw(const Point2 &p_point, const Variant &p_
|
|||||||
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"]) == "obj_property" ||
|
||||||
String(d["type"]) == "files_and_dirs")) {
|
String(d["type"]) == "files_and_dirs")) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -1555,6 +1556,15 @@ void ScriptTextEditor::drop_data_fw(const Point2 &p_point, const Variant &p_data
|
|||||||
te->cursor_set_column(col);
|
te->cursor_set_column(col);
|
||||||
te->insert_text_at_cursor(text_to_drop);
|
te->insert_text_at_cursor(text_to_drop);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (d.has("type") && String(d["type"]) == "obj_property") {
|
||||||
|
const String quote_style = EDITOR_DEF("text_editor/completion/use_single_quotes", false) ? "'" : "\"";
|
||||||
|
const String text_to_drop = String(d["property"]).c_escape().quote(quote_style);
|
||||||
|
|
||||||
|
te->cursor_set_line(row);
|
||||||
|
te->cursor_set_column(col);
|
||||||
|
te->insert_text_at_cursor(text_to_drop);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void ScriptTextEditor::_text_edit_gui_input(const Ref<InputEvent> &ev) {
|
void ScriptTextEditor::_text_edit_gui_input(const Ref<InputEvent> &ev) {
|
||||||
|
|||||||
Reference in New Issue
Block a user