Skip to content

Commit 416c545

Browse files
committed
Removed old Phaser build and updated index.html.
1 parent fbd1ba0 commit 416c545

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

-72.5 KB
Binary file not shown.

resources/tutorials/01 Getting Started/hellophaser/index.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,18 @@
33
<head>
44
<meta charset="UTF-8" />
55
<title>hello phaser!</title>
6-
<script src="//cdn.jsdelivr.net/phaser/2.2.2/phaser.min.js"></script>
6+
<script src="//cdn.jsdelivr.net/phaser/2.5.0/phaser.min.js"></script>
77
</head>
88
<body>
99

1010
<script type="text/javascript">
1111

1212
window.onload = function() {
1313

14+
// Note that this html file is set to pull down Phaser 2.5.0 from the JS Delivr CDN.
15+
// Although it will work fine with this tutorial, it's almost certainly not the most current version.
16+
// Be sure to replace it with an updated version before you start experimenting with adding your own code.
17+
1418
var game = new Phaser.Game(800, 600, Phaser.AUTO, '', { preload: preload, create: create });
1519

1620
function preload () {

0 commit comments

Comments
 (0)