mirror of
https://github.com/photonstorm/phaser
synced 2024-11-14 17:07:43 +00:00
fix sprite vs sprite overlap check
This commit is contained in:
parent
8479e456dd
commit
01a314018d
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ Phaser.Physics.Arcade.prototype = {
|
|||
{
|
||||
if (object2.type == Phaser.SPRITE || object2.type == Phaser.TILESPRITE)
|
||||
{
|
||||
this.collideSpriteVsSprite(object1, object2, collideCallback, processCallback, callbackContext, true);
|
||||
this.collideSpriteVsSprite(object1, object2, overlapCallback, processCallback, callbackContext, true);
|
||||
}
|
||||
else if (object2.type == Phaser.GROUP || object2.type == Phaser.EMITTER)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue