isGoodPerformance property

bool get isGoodPerformance

Checks if the current performance indicates good real-time performance.

Returns true if FPS is above 15 and processing time is reasonable.

Implementation

bool get isGoodPerformance => fps >= 15.0 && processingTimeMs <= 100.0;