Skip to content

Commit

Permalink
required options can't have defaults in optionize defaults, phetsims/…
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Jan 9, 2023
1 parent a036987 commit 1b7cbcb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/common/model/IdealGasLawModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,8 @@ export default class IdealGasLawModel extends BaseModel {
if ( options.hasCollisionCounter ) {
this.collisionCounter = new CollisionCounter( this.collisionDetector, {
position: new Vector2( 40, 15 ), // view coordinates! determined empirically
tandem: tandem.createTandem( 'collisionCounter' )
tandem: tandem.createTandem( 'collisionCounter' ),
visible: true
} );
}

Expand Down

0 comments on commit 1b7cbcb

Please sign in to comment.