Basic game template addon
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 6s
Create tag and build when new code gets to main / Export (push) Successful in 1m1s

This commit is contained in:
2026-01-30 19:45:56 +01:00
parent b923f6bec2
commit 44f251ed66
406 changed files with 12602 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
@tool
extends ConfirmationDialog
const MAIN_SCENE_UPDATE_TEXT = "Would you like to update the project's main scene?\n\nCurrent:\n%s\n\nNew:\n%s\n"
func set_main_scene_text(new_scene_path):
var current_scene_path : String = ProjectSettings.get_setting("application/run/main_scene", "")
dialog_text = MAIN_SCENE_UPDATE_TEXT % [current_scene_path, new_scene_path]