Skip to content

Commit

Permalink
moved GameAudioPlayer to GameAudioPlayerOld in preparation to migrate…
Browse files Browse the repository at this point in the history
… to tambo, see phetsims/vegas#77
  • Loading branch information
jbphet committed Jun 4, 2019
1 parent 8706cd9 commit 0b7ae8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/solveit/view/SolveItScreenView.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ define( function( require ) {
var Easing = require( 'TWIXT/Easing' );
var equalityExplorer = require( 'EQUALITY_EXPLORER/equalityExplorer' );
var EqualityExplorerConstants = require( 'EQUALITY_EXPLORER/common/EqualityExplorerConstants' );
var GameAudioPlayer = require( 'VEGAS/GameAudioPlayer' );
var GameAudioPlayerOld = require( 'VEGAS/GameAudioPlayerOld' );
var inherit = require( 'PHET_CORE/inherit' );
var LevelSelectionNode = require( 'EQUALITY_EXPLORER/solveit/view/LevelSelectionNode' );
var Node = require( 'SCENERY/nodes/Node' );
Expand Down Expand Up @@ -44,7 +44,7 @@ define( function( require ) {
this.snapshotsAccordionBoxExpandedProperty =
new BooleanProperty( EqualityExplorerConstants.SNAPSHOTS_ACCORDION_BOX_EXPANDED );

var gameAudioPlayer = new GameAudioPlayer( model.soundEnabledProperty );
var gameAudioPlayer = new GameAudioPlayerOld( model.soundEnabledProperty );

// UI for level selection and other game settings
var levelSelectionNode = new LevelSelectionNode( model, this.layoutBounds, {
Expand Down

0 comments on commit 0b7ae8b

Please sign in to comment.