fps property

int fps

Frames per second used to quantize keyframe times to discrete values that match this rate.

Implementation

int get fps => _fps;
void fps=(int value)

Change the _fps field value. fpsChanged will be invoked only if the field's value has changed.

Implementation

set fps(int value) {
  if (_fps == value) {
    return;
  }
  int from = _fps;
  _fps = value;
  if (hasValidated) {
    fpsChanged(from, value);
  }
}