mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 07:01:20 +00:00
Forgot to devide width by 2
This commit is contained in:
parent
72e82ecf48
commit
4cde28fecd
1 changed files with 1 additions and 1 deletions
|
@ -1293,7 +1293,7 @@ var Body = new Class({
|
|||
|
||||
if (this.isCircle)
|
||||
{
|
||||
graphic.strokeCircle(x, y, this.width);
|
||||
graphic.strokeCircle(x, y, this.width / 2);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue