ddabrahim Posted February 27, 2018 Share Posted February 27, 2018 Hi I get the following error message with Phaser 3.1.2 when trying to run the project from this tutorial: http://phaser.io/tutorials/making-your-first-phaser-3-game Quote No texture frame found with frame 4 phaser.js:55811:13 Quote animationFrame is undefined phaser.js:75144:9 Link to comment Share on other sites More sharing options...
Scalemail Ted Posted May 2, 2018 Share Posted May 2, 2018 I know this question is from February, but I just encountered the same issue when trying to type out the tutorial on my own, and the solution is pretty straight forward, so I wanted to share since this post pops up first on a Google search. If you encounter this error. Ensure that you tell load to create a spritesheet and not an image: this.load.spritesheet('dude', 'assets/dude.png', {frameWidth: 32, frameHeight: 48}); And NOT: this.load.image('dude', 'assets/dude.png', {frameWidth: 32, frameHeight: 48}); Torolecarte 1 Link to comment Share on other sites More sharing options...
Recommended Posts