We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 416db50 + 930ba01 commit 999d586Copy full SHA for 999d586
examples/Game/Ship.js
@@ -101,7 +101,7 @@
101
}
102
103
p.accelerate = function () {
104
- //increase push ammount for acceleration
+ //increase push amount for acceleration
105
this.thrust += this.thrust + 0.6;
106
if (this.thrust >= Ship.MAX_THRUST) {
107
this.thrust = Ship.MAX_THRUST;
@@ -118,4 +118,4 @@
118
119
window.Ship = createjs.promote(Ship, "Container");
120
121
-}(window));
+}(window));
examples/Game/SpaceRock.js
@@ -18,7 +18,7 @@
18
p.bounds; //visual radial size
19
p.hit; //average radial disparity
20
p.size; //size value itself
21
- p.spin; //spin ammount
+ p.spin; //spin amount
22
p.score; //score value
23
24
p.vX; //velocity X
0 commit comments