phaser/v2/resources/Project Templates/Responsive/index.html
2016-11-23 00:17:46 +00:00

42 lines
No EOL
1 KiB
HTML
Executable file

<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8" />
<title>Phaser Responsive Project Template</title>
<script src="phaser.min.js"></script>
<script src="Boot.js"></script>
<script src="Preloader.js"></script>
<script src="MainMenu.js"></script>
<script src="Game.js"></script>
<style>
body {
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<script type="text/javascript">
window.onload = function() {
// 100% of the browser window - see Boot.js for additional configuration
var game = new Phaser.Game("100%", "100%", Phaser.AUTO, '');
// Add the States your game has.
// You don't have to do this in the html, it could be done in your Boot state too, but for simplicity I'll keep it here.
game.state.add('Boot', BasicGame.Boot);
game.state.add('Preloader', BasicGame.Preloader);
game.state.add('MainMenu', BasicGame.MainMenu);
game.state.add('Game', BasicGame.Game);
// Now start the Boot state.
game.state.start('Boot');
};
</script>
</body>
</html>