add more stats to perf overlay

This commit is contained in:
scamiv
2025-11-26 14:46:05 +01:00
parent 8159222612
commit ff0533fd1b
3 changed files with 131 additions and 12 deletions
+5
View File
@@ -137,6 +137,11 @@ export class TickMetricsEvent implements GameEvent {
public readonly workerTicksPerSecond?: number,
// Approximate render tick() calls per second
public readonly renderTicksPerSecond?: number,
// Tile update metrics
public readonly tileUpdatesCount?: number,
public readonly ringBufferUtilization?: number,
public readonly ringBufferOverflows?: number,
public readonly ringDrainTime?: number,
) {}
}