You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ Phaser 1.0
5
5
6
6
Phaser is a fast, free and fun open source game framework for making desktop and mobile browser HTML5 games. It uses [Pixi.js](https://github.com/GoodBoyDigital/pixi.js/) internally for fast 2D Canvas and WebGL rendering.
7
7
8
-
Version: 1.0.4 - Released: September 18th 2013
8
+
Version: 1.0.5 - Released: September 20th 2013
9
9
10
10
By Richard Davey, [Photon Storm](http://www.photonstorm.com)
11
11
@@ -35,7 +35,7 @@ Phaser is everything we ever wanted from an HTML5 game framework. It will power
35
35
Change Log
36
36
----------
37
37
38
-
Version 1.0.5 (In progress)
38
+
Version 1.0.5 (September 20th 2013)
39
39
40
40
* Fixed issue in FrameData.getFrameIndexes where the input array was being ignored.
41
41
* Added Math.numberArray - Returns an Array containing the numbers from min to max (inclusive), useful for animation frame construction.
@@ -44,6 +44,15 @@ Version 1.0.5 (In progress)
44
44
* Added Group.length property.
45
45
* Added explicit x/y attributes to Phaser.Text to make it work with the camera system (thanks cocoademon).
46
46
* Fixed issue stopping multiple animations from playing, only the most recent would play (frames array was being overwritten, thanks Legrandk)
47
+
* Updated Debug.renderSpriteBounds() so it doesn't use the deprecated Sprite.worldView any more (thanks MikeMnD)
48
+
* Added 2 new properties to the Text object: Text.text and Text.style, both are getter/setters and don't flag dirty unless changed, so safe for core loop use.
49
+
* Removed the exists check from Group.callAll, it now runs on all children (as the name implies)
50
+
* Added Group.callAllExists - you can now call a function on all children who have exists = the provided boolean.
51
+
* Finished off the Breakout example game - now fully playable, proper rebound, scoring, lives, etc.
52
+
* Removed Group.sort dummy entry until it's working.
53
+
* Removed ArcadePhysics.postUpdate.
54
+
* Updated Sprite.update to set renderable to false when the object goes out of Camera, not 'visible' false, otherwise it stops the transform being updated by Pixi.
55
+
* BUG: There is a known issue where the wrong rect coordinates are given to the QuadTree if the Sprite is a child of a Group or another Sprite which has an x/y offset.
0 commit comments