diff --git a/js/spin/model/SternGerlach.ts b/js/spin/model/SternGerlach.ts index 6ce1ef4..0727668 100644 --- a/js/spin/model/SternGerlach.ts +++ b/js/spin/model/SternGerlach.ts @@ -97,21 +97,25 @@ export default class SternGerlach extends PhetioObject { this.blockingModeProperty = new Property( BlockingMode.NO_BLOCKER, { tandem: tandem.createTandem( 'blockingModeProperty' ), phetioReadOnly: true, + phetioFeatured: true, phetioValueType: EnumerationIO( BlockingMode ), validValues: BlockingMode.enumeration.values } ); this.isDirectionControllableProperty = new BooleanProperty( false, { - tandem: tandem.createTandem( 'isDirectionControllableProperty' ) + tandem: tandem.createTandem( 'isDirectionControllableProperty' ), + phetioFeatured: true } ); this.isZOrientedProperty = new BooleanProperty( isZOriented, { - tandem: tandem.createTandem( 'isZOrientedProperty' ) + tandem: tandem.createTandem( 'isZOrientedProperty' ), + phetioFeatured: true } ); this.isVisibleProperty = new BooleanProperty( true, { tandem: tandem.createTandem( 'isVisibleProperty' ), - phetioReadOnly: true + phetioReadOnly: true, + phetioFeatured: true } ); this.upProbabilityProperty = new NumberProperty( 0.5, {