showY property

bool get showY

Implementation

bool get showY => _showY;
set showY (bool value)

Implementation

set showY(bool value) {
  if (value != _showY) {
    _showY = value;
    _plane.showY = value;
    _gizmo.showY = value;

    scope.dispatchEvent(Event(type: 'showY-changed', value: value));
    scope.dispatchEvent(_changeEvent);
  }
}