removed console.log

This commit is contained in:
Josh Guyette 2022-06-26 21:53:08 -05:00
parent 4e9aa89861
commit a732f89d6c
1 changed files with 0 additions and 2 deletions

View File

@ -77,8 +77,6 @@ export const entities = (restart: boolean = false) => {
const bodyA = pairs[i].bodyA;
const bodyB = pairs[i].bodyB;
console.log(bodyA.label, bodyB.label);
// We only want collisions between the balloon and the floor
if ((bodyA.label !== "Balloon" && bodyB.label !== "Balloon") || (bodyA.label !== "Floor" && bodyB.label !== "Floor")) {
continue;