Files
SpaceBots/.svn/pristine/bb/bbc93eea5d5eabce64629d9581a982747b2c25ae.svn-base

20 lines
392 B
Plaintext
Raw Normal View History

2026-01-21 23:51:53 +01:00
@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)