Skip to content

Commit

Permalink
Increased number of wires to 25, see phetsims/circuit-construction-ki…
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Mar 9, 2018
1 parent dd89b05 commit ea6021b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/blackbox/view/BlackBoxSceneView.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ define( function( require ) {
return self.circuitLayerNode.globalToLocalPoint( point );
} );

var wireToolNode = circuitElementToolFactory.createWireToolNode( 20, tandem.createTandem( 'wireToolNode' ) );
var wireToolNode = circuitElementToolFactory.createWireToolNode( 25, tandem.createTandem( 'wireToolNode' ) );

// Tool nodes that appear on every screen. Pagination for the carousel, each page should begin with wire node
var circuitElementToolNodes = [
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 @@ -26,7 +26,7 @@ define( function( require ) {
return self.circuitLayerNode.globalToLocalPoint( point );
} );

var wireToolNode = circuitElementToolFactory.createWireToolNode( 20, tandem.createTandem( 'wireToolNode' ) );
var wireToolNode = circuitElementToolFactory.createWireToolNode( 25, tandem.createTandem( 'wireToolNode' ) );

// Tool nodes that appear on every screen. Pagination for the carousel, each page should begin with wire node
var circuitElementToolNodes = [
Expand Down

0 comments on commit ea6021b

Please sign in to comment.