First commit 🎉

This commit is contained in:
Tony Bark 2025-07-17 01:49:18 -04:00
commit 43ea213f9b
728 changed files with 37080 additions and 0 deletions

View file

@ -0,0 +1,19 @@
extends TextureButton
@export var command: SierraCommands.Commands = 0
#region Godot ######################################################################################
func _ready() -> void:
toggled.connect(on_toggled)
#endregion
#region Public #####################################################################################
func on_toggled(is_pressed: bool) -> void:
if is_pressed:
PopochiuUtils.e.current_command = command
#endregion