Ryan Posted June 14, 2015 Report 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! Quote Link to comment Share on other sites More sharing options...
spencerTL Posted June 14, 2015 Report Share Posted June 14, 2015 When you create a sprite immediately set this:myNewSprite.input.startDrag(game.input.activePointer); Quote Link to comment Share on other sites More sharing options...
Ryan Posted June 17, 2015 Author Report Share Posted June 17, 2015 Perfect! Thank you. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.