Skip to content

Commit f664a49

Browse files
committed
Tidying up for 1.0 release push to master.
1 parent 7c6e6df commit f664a49

580 files changed

Lines changed: 1075 additions & 5535 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Docs/Hello Phaser/index.html

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!DOCTYPE HTML>
2+
<html>
3+
<head>
4+
<title>phaser - hello world</title>
5+
<script src="phaser-min.js"></script>
6+
</head>
7+
<body>
8+
9+
<script type="text/javascript">
10+
11+
(function () {
12+
13+
var game = new Phaser.Game(800, 600, Phaser.AUTO, '', { preload: preload, create: create, update: update });
14+
15+
function preload() {
16+
17+
game.load.image('logo', 'logo.png');
18+
19+
}
20+
21+
var logo;
22+
23+
function create() {
24+
25+
logo = game.add.sprite(0, 0, 'logo');
26+
27+
}
28+
29+
function update() {
30+
}
31+
32+
})();
33+
34+
</script>
35+
36+
</body>
37+
</html>

Docs/Hello Phaser/logo.png

176 KB
Loading

Docs/Hello Phaser/phaser-min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)