r276, in common_prelude.js file:
In the set_from_poly function, as below (error is on line 6):
CollisionPoly_.prototype.set_from_poly = function (r)
{
this.pts_count = r.pts_count;
cr.shallowAssignArray(this.pts_cache, r.pts_cache);
this.bboxLeft = r.bboxLeft;
this.bboxTop - r.bboxTop;
this.bboxRight = r.bboxRight;
this.bboxBottom = r.bboxBottom;
};
The 4th line should read:
this.bboxTop = r.bboxTop; //ie equals not minus
The so-what is that this error could cause collision overlap checks to fail.