Skip to content

Commit 6c9f8a1

Browse files
committed
Typo fixes and removed old phaser versions and replaced with cdn.js link.
1 parent 816a80f commit 6c9f8a1

15 files changed

Lines changed: 14 additions & 48 deletions

File tree

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

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

resources/tutorials/01 Getting Started/hellophaser/phaser.min.js

Lines changed: 0 additions & 12 deletions
This file was deleted.

resources/tutorials/01 Getting Started/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h1>Getting started with Phaser</h1>
2828

2929
<h2>Part 1 - Introduction</h2>
3030

31-
<p>In this tutorial we're going to cover setting-up a development enviornment with which you can build your Phaser games. This will include running a local web server, picking an IDE, getting the latest version of Phaser and checking it all works together properly.</p>
31+
<p>In this tutorial we're going to cover setting-up a development environment with which you can build your Phaser games. This will include running a local web server, picking an IDE, getting the latest version of Phaser and checking it all works together properly.</p>
3232

3333
<p><strong>"Why do I need a local web server? Can't I just drag the html files onto my browser?"</strong></p>
3434

resources/tutorials/01 Getting Started/part4.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ <h3>WebStorm</h3>
3737

3838
<h3>Visual Studio</h3>
3939

40-
<p>This should only really be considered if you wish to write your game using <a href="http://www.typescriptlang.org/">TypeScript</a> instead of JavaScript. Phaser has a TypeScript definitions file available, which allows you to use Microsofts new ES6 inspired lanauge to develop in. This gives you access to a statically typed language, with traditional class inheritance, interfaces and most of the OO style trappings you may be used to in other languages like AS3.</p>
40+
<p>This should only really be considered if you wish to write your game using <a href="http://www.typescriptlang.org/">TypeScript</a> instead of JavaScript. Phaser has a TypeScript definitions file available, which allows you to use Microsoft's new ES6 inspired language to develop in. This gives you access to a statically typed language, with traditional class inheritance, interfaces and most of the OO style trappings you may be used to in other languages like AS3.</p>
4141

4242
<p>The full version varies in cost and Microsoft do great student details. Naturally it's only available for Windows.</p>
4343

4444
<p><a href="http://www.visualstudio.com/">Visual Studio</a></p>
4545

4646
<h3>Brackets</h3>
4747

48-
<p>Although primarily developed for building web site code, Brackets has really come into its own lately. It's a free open-source code editor and rans across Windows, OS X and Linux. It's actually written in JavaScript and is incredibly hackable, with new versions and extensions released every couple of weeks. It has a modern and dark UI, probably familiar to anyone who uses Adobe CS. It's well worth considering, especially if you're after a free editor.</p>
48+
<p>Although primarily developed for building web site code, Brackets has really come into its own lately. It's a free open-source code editor and runs across Windows, OS X and Linux. It's actually written in JavaScript and is incredibly hackable, with new versions and extensions released every couple of weeks. It has a modern and dark UI, probably familiar to anyone who uses Adobe CS. It's well worth considering, especially if you're after a free editor.</p>
4949

5050
<p>Brackets is a multi-platform and free open-source product.</p>
5151

resources/tutorials/01 Getting Started/part6.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h1>Getting started with Phaser</h1>
1717

1818
<h2>Part 6 - Hello World!</h2>
1919

20-
<p>With your editor set-up, web server installed and Phaser downloaded it's time to create something and check it's all working.</p>
20+
<p>With your editor set up, web server installed and Phaser downloaded it's time to create something and check it's all working.</p>
2121

2222
<p>You need to discover where your 'web root' is on your machine. This is the folder in which the server looks for files. If you are using WAMP on Windows you can locate it by clicking the WAMP icon in your system-tray and select "www directory" from the pop-up menu. Other servers will have other methods of determining the location, but from this point on we'll refer to it as the 'webroot'.</p>
2323

resources/tutorials/02 Making your first game/js/phaser.min.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

resources/tutorials/02 Making your first game/part1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<title>Phaser - Making your first game, part 1</title>
6-
<script type="text/javascript" src="js/phaser.min.js"></script>
6+
<script src="//cdn.jsdelivr.net/phaser/2.2.2/phaser.min.js"></script>
77
<style type="text/css">
88
body {
99
margin: 0;

resources/tutorials/02 Making your first game/part2.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<title>Phaser - Making your first game, part 2</title>
6-
<script type="text/javascript" src="js/phaser.min.js"></script>
6+
<script src="//cdn.jsdelivr.net/phaser/2.2.2/phaser.min.js"></script>
77
<style type="text/css">
88
body {
99
margin: 0;

resources/tutorials/02 Making your first game/part3.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<title>Phaser - Making your first game, part 3</title>
6-
<script type="text/javascript" src="js/phaser.min.js"></script>
6+
<script src="//cdn.jsdelivr.net/phaser/2.2.2/phaser.min.js"></script>
77
<style type="text/css">
88
body {
99
margin: 0;

resources/tutorials/02 Making your first game/part4.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<title>Phaser - Making your first game, part 4</title>
6-
<script type="text/javascript" src="js/phaser.min.js"></script>
6+
<script src="//cdn.jsdelivr.net/phaser/2.2.2/phaser.min.js"></script>
77
<style type="text/css">
88
body {
99
margin: 0;

0 commit comments

Comments
 (0)