You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-16 14:00:40 +00:00
Make some debug prints verbose-only, remove others
This commit is contained in:
@@ -176,7 +176,6 @@ bool CollisionSolverSW::solve_concave(const ShapeSW *p_shape_A, const Transform
|
||||
}
|
||||
|
||||
concave_B->cull(local_aabb, concave_callback, &cinfo);
|
||||
//print_line("COL AABB TESTS: "+itos(cinfo.aabb_tests));
|
||||
|
||||
return cinfo.collided;
|
||||
}
|
||||
@@ -364,13 +363,10 @@ bool CollisionSolverSW::solve_distance(const ShapeSW *p_shape_A, const Transform
|
||||
|
||||
concave_B->cull(local_aabb, concave_distance_callback, &cinfo);
|
||||
if (!cinfo.collided) {
|
||||
//print_line(itos(cinfo.tested));
|
||||
r_point_A = cinfo.close_A;
|
||||
r_point_B = cinfo.close_B;
|
||||
}
|
||||
|
||||
//print_line("DIST AABB TESTS: "+itos(cinfo.aabb_tests));
|
||||
|
||||
return !cinfo.collided;
|
||||
} else {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user