Skip to content

Commit 4cde28f

Browse files
committed
Forgot to devide width by 2
1 parent 72e82ec commit 4cde28f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/physics/arcade/Body.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1293,7 +1293,7 @@ var Body = new Class({
12931293

12941294
if (this.isCircle)
12951295
{
1296-
graphic.strokeCircle(x, y, this.width);
1296+
graphic.strokeCircle(x, y, this.width / 2);
12971297
}
12981298
else
12991299
{

0 commit comments

Comments
 (0)