scroll property

double get scroll

Implementation

double get scroll => _scroll;
set scroll (double value)

Implementation

set scroll(double value) {
  if (_scroll != value) {
    _scroll = value;
    notifyListeners();
    for (final layer in _layers) {
      layer.updateScroll();
    }
    for (final sound in _sounds) {
      sound.updateScroll();
    }
  }
}