add "ticks per render" metric

This commit is contained in:
scamiv
2025-11-25 17:44:54 +01:00
parent a21f066700
commit 6ab7136c3c
3 changed files with 23 additions and 0 deletions
+2
View File
@@ -131,6 +131,8 @@ export class TickMetricsEvent implements GameEvent {
public readonly tickDelay?: number,
// Number of turns the client is behind the server (if known)
public readonly backlogTurns?: number,
// Number of ticks applied since last render
public readonly ticksPerRender?: number,
) {}
}