attempting to upload all of these files

This commit is contained in:
2025-08-12 04:34:46 -04:00
parent 64a4edd11d
commit 6ae54ccfdb
106 changed files with 5730 additions and 0 deletions

18
addons/fpc/debug.gd Normal file
View File

@@ -0,0 +1,18 @@
extends PanelContainer
func _process(delta):
if visible:
pass
func add_property(title:String, value, order):
var target
target = $MarginContainer/VBoxContainer.find_child(title, true, false)
if !target:
target = Label.new()
$MarginContainer/VBoxContainer.add_child(target)
target.name = title
target.text = title + ": " + str(value)
elif visible:
target.text = title + ": " + str(value)
$MarginContainer/VBoxContainer.move_child(target, order)