@@ -20,6 +20,7 @@ import Node from '../../../../scenery/js/nodes/Node.js';
20
20
import Text from '../../../../scenery/js/nodes/Text.js' ;
21
21
import RadioButtonGroup from '../../../../sun/js/buttons/RadioButtonGroup.js' ;
22
22
import multiSelectionSoundPlayerFactory from '../../../../tambo/js/multiSelectionSoundPlayerFactory.js' ;
23
+ import Tandem from '../../../../tandem/js/Tandem.js' ;
23
24
import flashlight2Image from '../../../mipmaps/flashlight_png.js' ;
24
25
import heatLampImage from '../../../mipmaps/infrared-source_png.js' ;
25
26
import microwaveTransmitter from '../../../mipmaps/microwave-source_png.js' ;
@@ -72,19 +73,19 @@ function QuadEmissionFrequencyControlPanel( photonAbsorptionModel, tandem ) {
72
73
// nodes do not correspond to anything in the model. They are just visual elements of the control panel.
73
74
const identityTransform = ModelViewTransform2 . createIdentity ( ) ;
74
75
const microwavePhotonNode = new PhotonNode (
75
- new Photon ( WavelengthConstants . MICRO_WAVELENGTH , tandem . createTandem ( 'microwavePhotonNode' ) ) ,
76
+ new Photon ( WavelengthConstants . MICRO_WAVELENGTH , { tandem : Tandem . OPT_OUT } ) ,
76
77
identityTransform
77
78
) ;
78
79
const infraredPhotonNode = new PhotonNode (
79
- new Photon ( WavelengthConstants . IR_WAVELENGTH , tandem . createTandem ( 'infraredPhotonNode' ) ) ,
80
+ new Photon ( WavelengthConstants . IR_WAVELENGTH , { tandem : Tandem . OPT_OUT } ) ,
80
81
identityTransform
81
82
) ;
82
83
const visiblePhotonNode = new PhotonNode (
83
- new Photon ( WavelengthConstants . VISIBLE_WAVELENGTH , tandem . createTandem ( 'visiblePhotonNode' ) ) ,
84
+ new Photon ( WavelengthConstants . VISIBLE_WAVELENGTH , { tandem : Tandem . OPT_OUT } ) ,
84
85
identityTransform
85
86
) ;
86
87
const ultravioletPhotonNode = new PhotonNode (
87
- new Photon ( WavelengthConstants . UV_WAVELENGTH , tandem . createTandem ( 'ultravioletPhotonNode' ) ) ,
88
+ new Photon ( WavelengthConstants . UV_WAVELENGTH , { tandem : Tandem . OPT_OUT } ) ,
88
89
identityTransform
89
90
) ;
90
91
0 commit comments