Tree collisions and highlights

This commit is contained in:
Dan Baker 2025-06-26 18:28:33 +01:00
parent 57602adddb
commit 7255cbdf64
17 changed files with 231 additions and 2251 deletions

View file

@ -62,7 +62,9 @@ func get_object_debug_text() -> String:
var static_max = Performance.get_monitor(Performance.MEMORY_STATIC_MAX)
text += "Static Mem: " + format_bytes(static_mem) + "\n"
text += "Peak Mem: " + format_bytes(static_max)
text += "Peak Mem: " + format_bytes(static_max) + "\n"
text += "Trees: " + str(get_tree().get_nodes_in_group("tree").size())
return text