disable collisions between arrow and bow

(the bow is currently kinematic while held)
This commit is contained in:
U-GAPOS\andrew 2016-01-13 16:57:51 -08:00
parent 6f85ee135f
commit 3aa1837e07

View file

@ -540,6 +540,7 @@
var arrowProperties = {
collisionsWillMove: true,
ignoreForCollisions: false,
collisionMask: "static,dynamic,otherAvatar", // workaround: not with kinematic --> no collision with bow
velocity: releaseVelocity,
gravity: ARROW_GRAVITY,
lifetime: 10,
@ -612,4 +613,4 @@
};
return new Bow();
});
});