Guest User

Untitled

a guest
Jul 18th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. const bomb = this.add.sprite(200, 200, "bomb")
  2. bomb.setScale(2)
  3. this.add.tween({
  4. targets: [bomb],
  5. durration: 1000,
  6. delay: 0,
  7. yoyo: true,
  8. repeat: Infinity,
  9. ease: 'Sine.easeInOut',
  10. x: {
  11. getStart: () => 100,
  12. getEnd: () => 200
  13. }
  14. });
Add Comment
Please, Sign In to add comment