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,10 @@
extends Node
@export_group("Scenes")
@export_file("*.tscn") var main_menu_scene_path : String
@export_file("*.tscn") var game_scene_path : String
@export_file("*.tscn") var ending_scene_path : String
func _ready() -> void:
GlobalState.open()
AppSettings.set_from_config_and_window(get_window())
@@ -0,0 +1 @@
uid://cno5ujal5t3kf
@@ -0,0 +1,9 @@
[gd_scene format=3 uid="uid://cjke6crjg14a0"]
[ext_resource type="Script" uid="uid://cno5ujal5t3kf" path="res://addons/maaacks_game_template/base/nodes/autoloads/app_config/app_config.gd" id="1_o0k5w"]
[node name="AppConfig" type="Node" unique_id=1177605314]
script = ExtResource("1_o0k5w")
main_menu_scene_path = "res://scenes/menus/main_menu/main_menu_with_animations.tscn"
game_scene_path = "res://scenes/game_scene/game_ui.tscn"
ending_scene_path = "res://scenes/end_credits/end_credits.tscn"