SetTargetFPS method

void SetTargetFPS(
  1. num fps
)

Set target FPS (maximum)

Implementation

void SetTargetFPS(
  num fps,
) => run(
  () => _debugLabels.SetTargetFPS(fps),
  () => _flat.SetTargetFPS(
    fps.toInt(),
  ),
);