basic ECS spawner

This commit is contained in:
2026-01-15 15:27:48 +01:00
parent 24a781f36a
commit eb737b469c
860 changed files with 58621 additions and 32 deletions

View File

@@ -0,0 +1,20 @@
extends GdUnitTestSuite
func test_system_metric_last_time_is_recorded() -> void:
var tab := preload("res://addons/gecs/debug/gecs_editor_debugger_tab.gd").new()
# Simulate three metric events for same system id
tab.system_metric(1, "TestSystem", 0.5)
tab.system_metric(1, "TestSystem", 0.25)
tab.system_metric(1, "TestSystem", 0.75)
var systems = tab.ecs_data.get("systems")
assert_object(systems).is_not_null()
var sys_entry = systems.get(1)
assert_object(sys_entry).is_not_null()
# last_time should match the last recorded (0.75)
assert_float(sys_entry["last_time"]).is_equal(0.75)
# metrics should also have last_time
var metrics = sys_entry["metrics"]
assert_object(metrics).is_not_null()
assert_float(metrics["last_time"]).is_equal(0.75)
# avg_time should be (0.5+0.25+0.75)/3 = 0.5
assert_float(metrics["avg_time"]).is_equal(0.5)

View File

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