We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If there is a non zero delay specified in the tween chain, the tween chain will not start
const config = { type: Phaser.AUTO, width: 800, height: 600, scene: { preload: preload, create: create, }, }; const game = new Phaser.Game(config); let sprite; function preload() { this.load.image('mySprite', 'https://labs.phaser.io/assets/particles/red.png'); } function create() { sprite = this.add.image(400, 300, 'mySprite'); this.tweens.chain({ delay: 1, tweens: [ { targets: sprite, x: 500 } ] }); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Version
Description
If there is a non zero delay specified in the tween chain, the tween chain will not start
Example Test Code
Additional Information
The text was updated successfully, but these errors were encountered: