Hi everyone, I would like to include an in-game guide for the game I'm creating, but I'm doubtful on what's the best method to do it. I think I have the following options: 1) write it on a standard html page and then render it on top of the game canvas as the "how to play" button is pressed, dealing with the eventual rescaling problems. 2) use phaser.text and phaser.image to create the text and manually simulate the scroll The guide is a mix of images and text with formatting, so I would go with the first option, as it's quite difficult to format text with phaser. Are there better methods to do this? If not, what method should I choose?