We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cba2a0 commit 7a64f53Copy full SHA for 7a64f53
2 files changed
README.md
@@ -124,6 +124,7 @@ Version 2.0.4 - "Mos Shirare" - in development
124
* Game checks if window.console exists before using it (should fix IE9 issues when dev tools are closed), however it is still used deeper in Pixi.
125
* Masks now work when used in RenderTextures / CacheAsBitmap and Filters (pixi.js update)
126
* Fixed bug where stroked text sometimes got clipped (pixi.js update)
127
+* Fixed Polygon.contains for coordinates to the left of the polygon (thanks @vilcans, fix #766)
128
129
130
### ToDo
src/geom/Polygon.js
@@ -94,7 +94,7 @@ Phaser.Polygon.prototype = {
94
95
if (intersect)
96
{
97
- inside = true;
+ inside = !inside;
98
}
99
100
0 commit comments