Initial commit

This commit is contained in:
2026-01-21 23:51:53 +01:00
commit 60b208fee0
1703 changed files with 100223 additions and 0 deletions

View File

@@ -0,0 +1 @@
uid://dpmo4x21ey2de

View File

@@ -0,0 +1,19 @@
@tool
extends Node
var performance_display: PerformancesDisplay
func _ready():
process_mode = PROCESS_MODE_ALWAYS
performance_display = PerformancesDisplay.new()
add_child(performance_display)
func _exit_tree() -> void:
remove_child(performance_display)
performance_display.free()
func _process(delta):
FmodServer.update()
func _notification(what):
FmodServer.notification(what)