mirror of
https://github.com/photonstorm/phaser
synced 2024-11-10 15:14:47 +00:00
BitmapData.getPixel fix for pixels with zero red value (thanks @lstor fix #894)
If you call ArcadePhysics.collide on a Sprite vs. a Tilemap and provide a custom processCallback, the result was being ignored and the sprite was being separated regardless (thanks @aivins fix #891 #890)
This commit is contained in:
parent
13700148fb
commit
78c4e62cfe
1 changed files with 2 additions and 0 deletions
|
@ -116,6 +116,8 @@ Version 2.0.6 - "Jornhill" - -in development-
|
|||
* Phaser.Line.intersectsPoints fixed for floating point inaccuracy (thanks @woutercommandeur, fix #865)
|
||||
* Sound.destroy(true) would call remove on the SoundManager, which in turn would throw a TypeError as it tried to remove the sound events twice (thanks @AnderbergE, fix #874)
|
||||
* When creating a Sprite or Image using a texture atlas it would set the frame twice, once in loadTexture and once when the initial frame is set. This has been reduced down to just a single setting now.
|
||||
* BitmapData.getPixel fix for pixels with zero red value (thanks @lstor fix #894)
|
||||
* If you call ArcadePhysics.collide on a Sprite vs. a Tilemap and provide a custom processCallback, the result was being ignored and the sprite was being separated regardless (thanks @aivins fix #891 #890)
|
||||
|
||||
### Migration Guide
|
||||
|
||||
|
|
Loading…
Reference in a new issue