We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 410ffc6 commit babe6e9Copy full SHA for babe6e9
2 files changed
v3/src/checksum.js
@@ -1,4 +1,4 @@
1
var CHECKSUM = {
2
-build: '02a76170-5aaf-11e7-923b-5bf433948572'
+build: '234a6e20-5acf-11e7-94ea-914d156f6e97'
3
};
4
module.exports = CHECKSUM;
v3/src/physics/impact/World.js
@@ -86,7 +86,7 @@ var World = new Class({
86
// Check the body against the spatial hash
87
checkHash: function (body, hash, size)
88
{
89
- console.log('checkHash');
+ // console.log('checkHash');
90
91
var checked = {};
92
var xmin = Math.floor(body.pos.x / size);
@@ -142,7 +142,7 @@ var World = new Class({
142
143
if (bodyA.collides && bodyB.collides && bodyA.collides + bodyB.collides > COLLIDES.ACTIVE)
144
145
- console.log('solve');
+ // console.log('solve');
146
Solver(this, bodyA, bodyB);
147
}
148
0 commit comments