egellon Posted February 20, 2017 Share Posted February 20, 2017 Hello. I want to start multiple tweens at the same time (multiple objects need to change position at the same time). What is the proper way to handle such situation? Is something like this enough or there are some better methods to do this? let tween1= this.game.add.tween(...) let tween2= this.game.add.tween(...) tween1.start(); tween2.start(); I thought I can use "chain" for it, but according to the docs it is used to run tweens sequentailly. I would be grateful for your input. Best regards. Link to comment Share on other sites More sharing options...
samme Posted February 21, 2017 Share Posted February 21, 2017 That's fine. scheffgames 1 Link to comment Share on other sites More sharing options...
scheffgames Posted February 21, 2017 Share Posted February 21, 2017 You also need to be aware if both tweens modify the same property the end result might not be what you expect. Link to comment Share on other sites More sharing options...
Recommended Posts