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
Changed the define function calls to use named modules, allows pixi, phaser and p2 to reside in 1 file and still be located by requirejs (thanks brejep, phaserjs#531)
Copy file name to clipboardExpand all lines: README.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -223,6 +223,7 @@ Bug Fixes:
223
223
* Circle.circumferencePoint using the asDegrees parameter would apply degToRad instead of radToDeg (thanks Ziriax, fixes #509)
224
224
* InputHandler.enableSnap now correctly assigns the snap offset parameters (fixes #515)
225
225
* Objects that are 'fixedToCamera' are now still correctly placed even if the camera is scaled (#512)
226
+
* Changed the define function calls to use named modules, allows pixi, phaser and p2 to reside in 1 file and still be located by requirejs (thanks brejep, #531)
226
227
227
228
228
229
TO DO:
@@ -241,7 +242,9 @@ We provide a fully compiled version of Phaser in the `build` directory, in both
241
242
242
243
We also provide a Grunt script that will build Phaser from source along with all the examples.
243
244
244
-
Run `grunt` in the phaser folder for a list of command-line options.
245
+
Run `grunt` to perform a default build to the `dist` folder and update the examples.
246
+
247
+
If you replace Pixi or p2 then run `grunt replace` to patch their UMD strings so they work properly with Phaser and requireJS.
0 commit comments