Revert "empty"

This reverts commit 46e1de9791.
This commit is contained in:
Persephone Bubblegum-Holiday 2025-07-25 18:49:40 -07:00
parent 46e1de9791
commit dacbcc3835
232 changed files with 8637 additions and 0 deletions

10
Scripts/CameraButton.gd Normal file
View file

@ -0,0 +1,10 @@
extends Control
@export var camera : String
@export var base_scene_path : String
func _ready() -> void:
$Button.text = camera
func _on_button_pressed() -> void:
get_node(base_scene_path + camera).current = true;