espace Posted November 4, 2016 Share Posted November 4, 2016 it is a question that has already been often asked but no real answer. Can a kind soul could adapt the concepts of this tutorial about fulscreen on this empty phaser https://www.sitepoint.com/use-html5-full-screen-api/ here the virgin jsfiddle https://jsfiddle.net/espace3d/y8u4o5cw/ var game = new Phaser.Game(800, 600, Phaser.CANVAS, 'phaser-example', { preload: preload,create: create, update: update, render: render }); function preload() { game.load.image('circle', 'https://s13.postimg.org/xjhlzmiev/disc_png.png'); }; function create() { }; function update() { }; function render() { } I believe that this solution will delight many people....thanks for the repliers Link to comment Share on other sites More sharing options...
samme Posted November 4, 2016 Share Posted November 4, 2016 https://jsfiddle.net/y8u4o5cw/4/ espace 1 Link to comment Share on other sites More sharing options...
espace Posted November 5, 2016 Author Share Posted November 5, 2016 Very thank you Link to comment Share on other sites More sharing options...
Recommended Posts