Skip to content

Commit

Permalink
reformatting, import statements on a single line, see phetsims/phet-i…
Browse files Browse the repository at this point in the history
  • Loading branch information
jessegreenberg committed Apr 3, 2020
1 parent dc0b83a commit 74a0b93
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
5 changes: 2 additions & 3 deletions js/common/view/MoleculesAndLightKeyboardHelpContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@
* @author Michael Kauzmann (PhET Interactive Simulations)
*/

import SliderAndGeneralKeyboardHelpContent
from '../../../../scenery-phet/js/keyboard/help/SliderAndGeneralKeyboardHelpContent.js';
import moleculesAndLightStrings from '../../moleculesAndLightStrings.js';
import SliderAndGeneralKeyboardHelpContent from '../../../../scenery-phet/js/keyboard/help/SliderAndGeneralKeyboardHelpContent.js';
import moleculesAndLight from '../../moleculesAndLight.js';
import moleculesAndLightStrings from '../../moleculesAndLightStrings.js';

const keyboardHelpDialogLightSourceSliderString = moleculesAndLightStrings.KeyboardHelpDialog.lightSourceSlider;

Expand Down
16 changes: 6 additions & 10 deletions js/moleculesandlight/view/MoleculeActionSoundGenerator.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,19 @@
* that will generate the various sounds.
*/

import merge from '../../../../phet-core/js/merge.js';
import SoundClip from '../../../../tambo/js/sound-generators/SoundClip.js';
import SoundGenerator from '../../../../tambo/js/sound-generators/SoundGenerator.js';
import photonAbsorbedSoundInfo from '../../../sounds/absorb-based-on-photon_mp3.js';
import breakApartSoundInfo from '../../../sounds/break-apart-stereo-reverb_mp3.js';
import moleculeEnergizedSoundInfo from '../../../sounds/absorb-loop-low-harmonics-reduction_mp3.js';
import rotationCounterclockwiseNormalSpeedStereoSoundInfo
from '../../../sounds/rotate-directions-001-spatialized_mp3.js';
import rotationCounterclockwiseSlowMotionStereoSoundInfo
from '../../../sounds/rotate-directions-001-spatialized-slow-mo_mp3.js';
import rotationClockwiseNormalSpeedStereoSoundInfo
from '../../../sounds/rotate-directions-001-reverse-spatialized_mp3.js';
import rotationClockwiseSlowMotionStereoSoundInfo
from '../../../sounds/rotate-directions-001-reverse-spatialized-slow-mo_mp3.js';
import breakApartSoundInfo from '../../../sounds/break-apart-stereo-reverb_mp3.js';
import rotationClockwiseSlowMotionStereoSoundInfo from '../../../sounds/rotate-directions-001-reverse-spatialized-slow-mo_mp3.js';
import rotationClockwiseNormalSpeedStereoSoundInfo from '../../../sounds/rotate-directions-001-reverse-spatialized_mp3.js';
import rotationCounterclockwiseSlowMotionStereoSoundInfo from '../../../sounds/rotate-directions-001-spatialized-slow-mo_mp3.js';
import rotationCounterclockwiseNormalSpeedStereoSoundInfo from '../../../sounds/rotate-directions-001-spatialized_mp3.js';
import vibrationSlowMotionStereoSoundInfo from '../../../sounds/vibrate-longer-spatialized-slow-mo_mp3.js';
import vibrationNormalSpeedStereoSoundInfo from '../../../sounds/vibrate-longer-spatialized_mp3.js';
import moleculesAndLight from '../../moleculesAndLight.js';
import merge from '../../../../phet-core/js/merge.js';

// constants
const ABSORPTION_TO_ACTIVITY_SOUND_DELAY = 0.2; // in seconds
Expand Down

0 comments on commit 74a0b93

Please sign in to comment.