Skip to content

Commit

Permalink
Commit mixes, #127
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Aug 25, 2020
1 parent 5eca06d commit b77cad2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion js/common/view/RatioHalf.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class RatioHalf extends Rectangle {
// Sound for the wave slider clicks
const addSoundOptions = { categoryName: 'user-interface' };
const soundClipOptions = {
initialOutputLevel: 0.3, // TODO: I made this louder than waves intro, https://github.com/phetsims/ratio-and-proportion/issues/45
initialOutputLevel: 0.15, // TODO: I made this louder than waves intro, https://github.com/phetsims/ratio-and-proportion/issues/45
enableControlProperties: [ designingProperties.ratioUISoundsEnabledProperty, playUISoundsProperty ]
};
const commonGrabSoundClip = new SoundClip( commonGrabSound, soundClipOptions );
Expand Down
2 changes: 1 addition & 1 deletion js/common/view/sound/MovingInProportionSoundGenerator.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class MovingInProportionSoundGenerator extends SoundGenerator {
*/
constructor( ratioFitnessProperty, model, options ) {
options = merge( {
initialOutputLevel: .15
initialOutputLevel: .13
}, options );

super( options );
Expand Down
2 changes: 1 addition & 1 deletion js/common/view/sound/StaccatoFrequencySoundGenerator.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class StaccatoFrequencySoundGenerator extends SoundGenerator {
*/
constructor( fitnessProperty, fitnessRange, model, options ) {
options = merge( {
initialOutputLevel: 0.4
initialOutputLevel: 0.3
}, options );
super( options );

Expand Down
2 changes: 1 addition & 1 deletion js/explore/view/ExploreScreenView.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import ExploreScreenSummaryNode from './ExploreScreenSummaryNode.js';

// constants
const SELECTION_SOUND_OPTIONS = {
initialOutputLevel: 0.5
initialOutputLevel: 0.4
};

class ExploreScreenView extends RatioAndProportionScreenView {
Expand Down

0 comments on commit b77cad2

Please sign in to comment.