Basic platformer with rope

This commit is contained in:
ASOwnerYT
2026-07-25 16:10:50 +12:00
commit 4818002bbd
503 changed files with 16081 additions and 0 deletions
@@ -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]