diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index c2786af..8472fe3 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -22,8 +22,8 @@ jobs: # Clone Godot - uses: actions/checkout@v2 with: - repository: v-sekai/godot - ref: groups-4.x + repository: godotengine/godot + ref: master # Clone our module under the correct directory - uses: actions/checkout@v2 @@ -88,8 +88,8 @@ jobs: # Clone Godot - uses: actions/checkout@v2 with: - repository: v-sekai/godot - ref: groups-4.x + repository: godotengine/godot + ref: master # Clone our module under the correct directory - uses: actions/checkout@v2 diff --git a/visual_script.cpp b/visual_script.cpp index fac208a..97258c7 100644 --- a/visual_script.cpp +++ b/visual_script.cpp @@ -779,6 +779,10 @@ bool VisualScript::can_instantiate() const { return true; // ScriptServer::is_scripting_enabled(); } +bool VisualScript::is_abstract() const { + return false; +} + StringName VisualScript::get_instance_base_type() const { return base_type; } Ref