Skip to content

Commit 733ef1c

Browse files
committed
Made velocity line smaller
1 parent 484669c commit 733ef1c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

v3/src/physics/arcade/Body.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ var Body = new Class({
558558
var y = pos.y + this.halfHeight;
559559

560560
graphic.lineStyle(1, this.world.defaults.velocityDebugColor, 1);
561-
graphic.lineBetween(x, y, x + this.velocity.x, y + this.velocity.y);
561+
graphic.lineBetween(x, y, x + this.velocity.x / 2, y + this.velocity.y / 2);
562562
}
563563
},
564564

0 commit comments

Comments
 (0)