showZ property

bool get showZ

Implementation

bool get showZ => _showZ;
set showZ (bool value)

Implementation

set showZ(bool value) {
  if (value != _showZ) {
    _showZ = value;
    _plane.showZ = value;
    _gizmo.showZ = value;

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