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
+13-6Lines changed: 13 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,20 +67,24 @@ Finally the list of [community authored Phaser Tutorials](http://www.lessmilk.co
67
67
68
68
Version 2.1.0 - "Cairhien" - -in development-
69
69
70
-
### Updates
71
-
72
-
* Updated to [p2.js 0.6.0](https://github.com/schteppe/p2.js/commit/d1c7a340c42e4d5d1d939fba5fd13c5e49d6abd2) - this was an API breaking change, so please see the p2.js section of this change log specifically if you're using p2 in your game.
73
-
* TypeScript definition updates to help fix for the `noimplicitany` option (thanks @Waog#1088)
74
-
* All of the Pixi geom classes have been removed from the build file as they aren't needed (the Phaser.Geom classes overwrite them), saving some space in the process.
75
-
76
70
### New Features
77
71
72
+
* Updated to [p2.js 0.6.0](https://github.com/schteppe/p2.js/commit/d1c7a340c42e4d5d1d939fba5fd13c5e49d6abd2) - this was an API breaking change, so please see the p2.js section of this change log specifically if you're using p2 in your game.
78
73
* Device will now detect for Kindle and PS Vita (thanks @lucbloom)
79
74
* Device will now detect for Cordova (thanks @videlais#1102)
80
75
* Arcade Physics Body.skipQuadTree is a new boolean that if set to `true` when you collide the Sprite against a Group it will tell Phaser to skip using a QuadTree for that collision. This is handy if this Body is especially large.
81
76
* Arcade Physics World.skipQuadTree will disable the use of all QuadTrees in collision methods, which can help performance in tightly packed scenes.
* Loader.useXDomainRequest boolean added. If `true` (the default is `false`) it will use XDomainRequest when loading JSON files instead of xhr. In rare IE edge-cases this may be required. You'll know if you need it (#1131#1116)
79
+
* Added support for Tiled objects type field (thanks @rex64#1111)
80
+
* Tile properties are now copied from the Tiled JSON data to the Phaser.Tile objects when parsed (thanks @beeglebug#1126)
81
+
82
+
### Updates
83
+
84
+
* TypeScript definition updates to help fix for the `noimplicitany` option (thanks @Waog#1088)
85
+
* TypeScript definitions fixes and updates (thanks @clark-stevenson and @rhmoller)
86
+
* All of the Pixi geom classes have been removed from the build file as they aren't needed (the Phaser.Geom classes overwrite them), saving some space in the process.
87
+
* Improved consistency of clone methods on geometry classes (thanks @beeglebug#1130)
0 commit comments