Skip to content

Commit

Permalink
rename enhanced sound -> extra sound, phetsims/tambo#165
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Jul 8, 2022
1 parent 49b9cb6 commit b775c2b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions js/initialize-globals.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,11 @@
eall: { type: 'flag' },

/**
* Controls whether enhanced sound is on or off at startup (user can change later). This query parameter is public
* Controls whether extra sound is on or off at startup (user can change later). This query parameter is public
* facing.
* @type {boolean}
*/
enhancedSoundInitiallyEnabled: {
extraSoundInitiallyEnabled: {
type: 'boolean',
defaultValue: false,
public: true
Expand Down Expand Up @@ -665,15 +665,15 @@
},

/**
* Indicates whether enhanced sounds are used in addition to basic sounds as part of the sound design. If true, the
* PhET menu will have an option for enabling enhanced sounds. This will be ignored if sound is not generally
* Indicates whether extra sounds are used in addition to basic sounds as part of the sound design. If true, the
* PhET menu will have an option for enabling extra sounds. This will be ignored if sound is not generally
* enabled (see ?supportsSound).
*
* Primarily for internal use, though we may share links with collaborates that use this parameter.
*/
supportsEnhancedSound: {
supportsExtraSound: {
type: 'boolean',
defaultValue: !!packageSimFeatures.supportsEnhancedSound
defaultValue: !!packageSimFeatures.supportsExtraSound
},

/**
Expand Down

0 comments on commit b775c2b

Please sign in to comment.