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
Brand new Grunt task - creates each core library as its own file and a combined phaser.js.
New build script now cleanly splits Phaser, Pixi and p2 so they are each UMD wrapped and each available in the global scope (now more requireJS friendly!).
phaser-no-libs.js allows you to use your own version of p2.js or pixi.js with Phaser. Warning: This is totally unsupported. If you hit bugs, you fix them yourself.
Fixed silly instanceof bug in game objects (sorry guys).
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,6 +125,9 @@ New features:
125
125
* All GameObjects now have a 'destroyChildren' boolean as a parameter to their destroy method. It's default is true and the value propogates down its children.
126
126
* Pixi GrayFilter ported over (thanks nickryall #404)
127
127
* Animation.speed added. You can now change the animation speed on the fly, without re-starting the animation (feature request #458)
128
+
* Brand new Grunt task - creates each core library as its own file and a combined phaser.js.
129
+
* New build script now cleanly splits Phaser, Pixi and p2 so they are each UMD wrapped and each available in the global scope (now more requireJS friendly!).
130
+
* phaser-no-libs.js allows you to use your own version of p2.js or pixi.js with Phaser. Warning: This is totally unsupported. If you hit bugs, you fix them yourself.
128
131
129
132
130
133
Updates:
@@ -148,8 +151,6 @@ Updates:
148
151
* Vastly improved visibility API support + pageshow/pagehide + focus/blur. Working across Chrome, IE, Firefox, iOS, Android (also fixes #161)
149
152
* Pausing the game will now mute audio and resuming will un-mute, unless it was muted via the game (fixes #439)
150
153
* ScaleManager has 2 new events: ScaleManager.enterFullScreen and ScaleManager.leaveFullScreen, so you can respond to fullscreen changes directly.
151
-
* The grunt task now creates an optional version of Phaser without any Physics support built in. Quite a bit smaller now.
152
-
* The grunt task now has a new `noUmd` option which builds Phaser without the UMD wrapper.
0 commit comments