2
0
mirror of https://github.com/godotengine/godot.git synced 2025-02-17 22:43:01 +08:00

Reload built-in script after create to allow dropping nodes into it

This commit is contained in:
jsjtxietian 2023-09-04 19:22:20 +08:00
parent f7c48cf803
commit d32348c686

View File

@ -390,6 +390,8 @@ void ScriptCreateDialog::_create_new() {
if (is_built_in) {
scr->set_name(internal_name->get_text());
// Make sure the script is compiled to make its type recognizable.
scr->reload();
} else {
String lpath = ProjectSettings::get_singleton()->localize_path(file_path->get_text());
scr->set_path(lpath);