mirror of
https://github.com/photonstorm/phaser
synced 2024-11-30 08:31:01 +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)
|
if (this.isCircle)
|
||||||
{
|
{
|
||||||
graphic.strokeCircle(x, y, this.width);
|
graphic.strokeCircle(x, y, this.width / 2);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue