mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 12:43:26 +00:00
Changed default collisionMask = 2147483647
This commit is contained in:
parent
1b1ce752db
commit
547179c5b8
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ var Collision = {
|
||||||
var target = (this.body) ? this.body : this;
|
var target = (this.body) ? this.body : this;
|
||||||
|
|
||||||
target.collisionCategory = 0x0001;
|
target.collisionCategory = 0x0001;
|
||||||
target.collisionMask = 1;
|
target.collisionMask = 2147483647;
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue