-
Notifications
You must be signed in to change notification settings - Fork 7.1k
TileSprite in Headless mode crashes #4297
Copy link
Copy link
Closed
Description
Version
- Phaser Version: v3.15.1-FB
- Operating system: OSX
- Browser: Chrome
Description
Running a game with the HEADLESS mode renderer will crash if there is a tileSprite created in the game.
Example Test Code
new Phaser.Game({
type: Phaser.HEADLESS,
parent: 'phaser-example',
width: 800,
height: 600,
scene: {
preload: function() {
this.load.image('pic', 'assets/pics/baal-loader.png');
},
create: function() {
this.add.tileSprite(0,0,400,300,'pic');
}
}
});
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels