Ryan Posted June 14, 2015 Share Posted June 14, 2015 Hey guys, I'm trying to find a way to spawn a sprite on click and have it already dragging? At the moment, I have to click to spawn the sprite, then click and drag it again using enableDrag() and the start/stop events: params.sprite.events.onDragStart.add(params.onDragStart, this);params.sprite.events.onDragStop.add(params.onDragEnd, this); This functionality is for mobile, where you 'tap' a button sprite to spawn a unit and then drag it into place. Thanks! Link to comment Share on other sites More sharing options...
spencerTL Posted June 14, 2015 Share Posted June 14, 2015 When you create a sprite immediately set this:myNewSprite.input.startDrag(game.input.activePointer); Link to comment Share on other sites More sharing options...
Ryan Posted June 17, 2015 Author Share Posted June 17, 2015 Perfect! Thank you. Link to comment Share on other sites More sharing options...
Recommended Posts