Skip to content

Commit

Permalink
rename PullObject to PullerNode, see issue #59
Browse files Browse the repository at this point in the history
  • Loading branch information
aadish committed Mar 9, 2016
1 parent d9e3173 commit e23c3ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/gravity-force-lab/view/MassObject.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ define( function( require ) {
var Node = require( 'SCENERY/nodes/Node' );
var Path = require( 'SCENERY/nodes/Path' );
var PhetFont = require( 'SCENERY_PHET/PhetFont' );
var PullObject = require( 'GRAVITY_FORCE_LAB/gravity-force-lab/view/PullObject' );
var PullerNode = require( 'GRAVITY_FORCE_LAB/gravity-force-lab/view/PullerNode' );
var RadialGradient = require( 'SCENERY/util/RadialGradient' );
var Range = require( 'DOT/Range' );
var Shape = require( 'KITE/Shape' );
Expand Down Expand Up @@ -68,7 +68,7 @@ define( function( require ) {

Node.call( this );
var dragNode = new Node( { cursor: 'pointer' } );
this.pullerNode = new PullObject( { image_count: PULL_IMAGES_COUNT } );
this.pullerNode = new PullerNode( { image_count: PULL_IMAGES_COUNT } );
if ( options.direction === 'right' ) {
self.pullerNode.scale( -1, 1 );
}
Expand Down
File renamed without changes.

0 comments on commit e23c3ac

Please sign in to comment.