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 1ce3a56 commit 7e240c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/game/view/BalanceGameView.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ define( function( require ) {
var FaceWithPointsNode = require( 'SCENERY_PHET/FaceWithPointsNode' );
var FiniteStatusBar = require( 'VEGAS/FiniteStatusBar' );
var FulcrumNode = require( 'BALANCING_ACT/common/view/FulcrumNode' );
var GameAudioPlayer = require( 'VEGAS/GameAudioPlayer' );
var GameAudioPlayerOld = require( 'VEGAS/GameAudioPlayerOld' );
var GameIconNode = require( 'BALANCING_ACT/game/view/GameIconNode' );
var inherit = require( 'PHET_CORE/inherit' );
var LevelCompletedNode = require( 'VEGAS/LevelCompletedNode' );
Expand Down Expand Up @@ -178,7 +178,7 @@ define( function( require ) {
self.levelCompletedNode = null;

// Hook up the audio player to the sound settings.
self.gameAudioPlayer = new GameAudioPlayer( gameModel.soundEnabledProperty );
self.gameAudioPlayer = new GameAudioPlayerOld( gameModel.soundEnabledProperty );

// Create and add the game scoreboard.
this.scoreboard = new FiniteStatusBar(
Expand Down

0 comments on commit 7e240c5

Please sign in to comment.