Skip to content

Commit 02b75b9

Browse files
committed
Updated doc files.
1 parent 0896c2f commit 02b75b9

182 files changed

Lines changed: 70133 additions & 16656 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.

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ Version: 1.1.4 "Kandor" - Released: February 5th 2014
99

1010
By Richard Davey, [Photon Storm](http://www.photonstorm.com)
1111

12-
View the [Official Website](http://phaser.io)<br />
13-
Follow on [Twitter](https://twitter.com/photonstorm)<br />
14-
Join the [Forum](http://www.html5gamedevs.com/forum/14-phaser/)<br />
15-
Try out 210+ [Phaser Examples](http://examples.phaser.io)<br />
16-
Read the [documentation online](http://docs.phaser.io)
12+
* View the [Official Website](http://phaser.io)
13+
* Follow on [Twitter](https://twitter.com/photonstorm)
14+
* Join the [Forum](http://www.html5gamedevs.com/forum/14-phaser/)
15+
* Try out 220+ [Phaser Examples](http://examples.phaser.io)
16+
* Read the [documentation online](http://docs.phaser.io)
1717

1818
[Subscribe to our new Phaser Newsletter](https://confirmsubscription.com/h/r/369DE48E3E86AF1E). We'll email you when new versions are released as well as send you our regular Phaser game making magazine.
1919

docs/Animation.js.html

Lines changed: 32 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,10 @@
9090
<a href="Phaser.Device.html">Device</a>
9191
</li>
9292

93+
<li>
94+
<a href="Phaser.DOMSprite.html">DOMSprite</a>
95+
</li>
96+
9397
<li>
9498
<a href="Phaser.Easing.html">Easing</a>
9599
</li>
@@ -162,6 +166,14 @@
162166
<a href="Phaser.GameObjectFactory.html">GameObjectFactory</a>
163167
</li>
164168

169+
<li>
170+
<a href="Phaser.Gamepad.html">Gamepad</a>
171+
</li>
172+
173+
<li>
174+
<a href="Phaser.GamepadButton.html">GamepadButton</a>
175+
</li>
176+
165177
<li>
166178
<a href="Phaser.Graphics.html">Graphics</a>
167179
</li>
@@ -186,6 +198,10 @@
186198
<a href="Phaser.Keyboard.html">Keyboard</a>
187199
</li>
188200

201+
<li>
202+
<a href="Phaser.Line.html">Line</a>
203+
</li>
204+
189205
<li>
190206
<a href="Phaser.LinkedList.html">LinkedList</a>
191207
</li>
@@ -278,6 +294,10 @@
278294
<a href="Phaser.Signal.html">Signal</a>
279295
</li>
280296

297+
<li>
298+
<a href="Phaser.SinglePad.html">SinglePad</a>
299+
</li>
300+
281301
<li>
282302
<a href="Phaser.Sound.html">Sound</a>
283303
</li>
@@ -342,6 +362,10 @@
342362
<a href="Phaser.Timer.html">Timer</a>
343363
</li>
344364

365+
<li>
366+
<a href="Phaser.TimerEvent.html">TimerEvent</a>
367+
</li>
368+
345369
<li>
346370
<a href="Phaser.Touch.html">Touch</a>
347371
</li>
@@ -374,36 +398,6 @@
374398
</ul>
375399
</li>
376400

377-
<li class="dropdown">
378-
<a href="global.html" class="dropdown-toggle" data-toggle="dropdown">Global<b
379-
class="caret"></b></a>
380-
381-
<ul class="dropdown-menu ">
382-
383-
<li>
384-
<a href="global.html#bottom">bottom</a>
385-
</li>
386-
387-
<li>
388-
<a href="global.html#HEXtoRGB">HEXtoRGB</a>
389-
</li>
390-
391-
<li>
392-
<a href="global.html#render">render</a>
393-
</li>
394-
395-
<li>
396-
<a href="global.html#renderXY">renderXY</a>
397-
</li>
398-
399-
<li>
400-
<a href="global.html#right">right</a>
401-
</li>
402-
403-
404-
</ul>
405-
</li>
406-
407401
</ul>
408402
</div>
409403
</div>
@@ -423,7 +417,7 @@ <h1 class="page-title">Source: animation/Animation.js</h1>
423417
<article>
424418
<pre class="sunlight-highlight-javascript linenums">/**
425419
* @author Richard Davey &lt;rich@photonstorm.com>
426-
* @copyright 2013 Photon Storm Ltd.
420+
* @copyright 2014 Photon Storm Ltd.
427421
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
428422
*/
429423

@@ -466,7 +460,7 @@ <h1 class="page-title">Source: animation/Animation.js</h1>
466460
this.name = name;
467461

468462
/**
469-
* @property {object} _frames
463+
* @property {array} _frames
470464
* @private
471465
*/
472466
this._frames = [];
@@ -483,7 +477,8 @@ <h1 class="page-title">Source: animation/Animation.js</h1>
483477
this.looped = looped;
484478

485479
/**
486-
* @property {boolean} looped - The loop state of the Animation.
480+
* @property {boolean} killOnComplete - Should the parent of this Animation be killed when the animation completes?
481+
* @default
487482
*/
488483
this.killOnComplete = false;
489484

@@ -750,6 +745,8 @@ <h1 class="page-title">Source: animation/Animation.js</h1>
750745

751746
};
752747

748+
Phaser.Animation.prototype.constructor = Phaser.Animation;
749+
753750
/**
754751
* @name Phaser.Animation#paused
755752
* @property {boolean} paused - Gets and sets the paused state of this Animation.
@@ -906,13 +903,13 @@ <h1 class="page-title">Source: animation/Animation.js</h1>
906903

907904

908905
<span class="copyright">
909-
Phaser Copyright © 2012-2013 Photon Storm Ltd.
906+
Phaser Copyright © 2012-2014 Photon Storm Ltd.
910907
</span>
911908
<br />
912909

913910
<span class="jsdoc-message">
914911
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-dev</a>
915-
on Thu Nov 28 2013 15:56:25 GMT-0000 (GMT) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
912+
on Wed Feb 05 2014 06:28:24 GMT-0000 (GMT) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
916913
</span>
917914
</footer>
918915
</div>

docs/AnimationManager.js.html

Lines changed: 29 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,10 @@
9090
<a href="Phaser.Device.html">Device</a>
9191
</li>
9292

93+
<li>
94+
<a href="Phaser.DOMSprite.html">DOMSprite</a>
95+
</li>
96+
9397
<li>
9498
<a href="Phaser.Easing.html">Easing</a>
9599
</li>
@@ -162,6 +166,14 @@
162166
<a href="Phaser.GameObjectFactory.html">GameObjectFactory</a>
163167
</li>
164168

169+
<li>
170+
<a href="Phaser.Gamepad.html">Gamepad</a>
171+
</li>
172+
173+
<li>
174+
<a href="Phaser.GamepadButton.html">GamepadButton</a>
175+
</li>
176+
165177
<li>
166178
<a href="Phaser.Graphics.html">Graphics</a>
167179
</li>
@@ -186,6 +198,10 @@
186198
<a href="Phaser.Keyboard.html">Keyboard</a>
187199
</li>
188200

201+
<li>
202+
<a href="Phaser.Line.html">Line</a>
203+
</li>
204+
189205
<li>
190206
<a href="Phaser.LinkedList.html">LinkedList</a>
191207
</li>
@@ -278,6 +294,10 @@
278294
<a href="Phaser.Signal.html">Signal</a>
279295
</li>
280296

297+
<li>
298+
<a href="Phaser.SinglePad.html">SinglePad</a>
299+
</li>
300+
281301
<li>
282302
<a href="Phaser.Sound.html">Sound</a>
283303
</li>
@@ -342,6 +362,10 @@
342362
<a href="Phaser.Timer.html">Timer</a>
343363
</li>
344364

365+
<li>
366+
<a href="Phaser.TimerEvent.html">TimerEvent</a>
367+
</li>
368+
345369
<li>
346370
<a href="Phaser.Touch.html">Touch</a>
347371
</li>
@@ -374,36 +398,6 @@
374398
</ul>
375399
</li>
376400

377-
<li class="dropdown">
378-
<a href="global.html" class="dropdown-toggle" data-toggle="dropdown">Global<b
379-
class="caret"></b></a>
380-
381-
<ul class="dropdown-menu ">
382-
383-
<li>
384-
<a href="global.html#bottom">bottom</a>
385-
</li>
386-
387-
<li>
388-
<a href="global.html#HEXtoRGB">HEXtoRGB</a>
389-
</li>
390-
391-
<li>
392-
<a href="global.html#render">render</a>
393-
</li>
394-
395-
<li>
396-
<a href="global.html#renderXY">renderXY</a>
397-
</li>
398-
399-
<li>
400-
<a href="global.html#right">right</a>
401-
</li>
402-
403-
404-
</ul>
405-
</li>
406-
407401
</ul>
408402
</div>
409403
</div>
@@ -423,7 +417,7 @@ <h1 class="page-title">Source: animation/AnimationManager.js</h1>
423417
<article>
424418
<pre class="sunlight-highlight-javascript linenums">/**
425419
* @author Richard Davey &lt;rich@photonstorm.com>
426-
* @copyright 2013 Photon Storm Ltd.
420+
* @copyright 2014 Photon Storm Ltd.
427421
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
428422
*/
429423

@@ -734,6 +728,8 @@ <h1 class="page-title">Source: animation/AnimationManager.js</h1>
734728

735729
};
736730

731+
Phaser.AnimationManager.prototype.constructor = Phaser.AnimationManager;
732+
737733
/**
738734
* @name Phaser.AnimationManager#frameData
739735
* @property {Phaser.FrameData} frameData - The current animations FrameData.
@@ -863,13 +859,13 @@ <h1 class="page-title">Source: animation/AnimationManager.js</h1>
863859

864860

865861
<span class="copyright">
866-
Phaser Copyright © 2012-2013 Photon Storm Ltd.
862+
Phaser Copyright © 2012-2014 Photon Storm Ltd.
867863
</span>
868864
<br />
869865

870866
<span class="jsdoc-message">
871867
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-dev</a>
872-
on Thu Nov 28 2013 15:56:25 GMT-0000 (GMT) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
868+
on Wed Feb 05 2014 06:28:24 GMT-0000 (GMT) using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
873869
</span>
874870
</footer>
875871
</div>

0 commit comments

Comments
 (0)