Untitled
unknown
html
a year ago
957 B
5
Indexable
Never
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="style.css"> <script src="phaser.js"></script> <style type="text/css"> body { margin: 0; } </style> </head> <body style="background-color: white;"> <h2> Game</h2> <script type="text/javascript"> var config = { type: Phaser.AUTO, width: 800, height: 600, scene: { preload: preload, create: create, update: update } }; var game = new Phaser.Game(config); function preload () { this.load.image('sky', 'placeForGame.png'); } function create () { this.add.image(400, 300, 'sky'); } function update () { } </script> </body> </html>