mirror of
https://github.com/liabru/matter-js.git
synced 2024-11-23 09:26:51 -05:00
hide axis indicator on compound bodies
This commit is contained in:
parent
ca75fde09a
commit
6a26696fc7
1 changed files with 6 additions and 4 deletions
|
@ -643,10 +643,12 @@ var Render = {};
|
|||
}
|
||||
}
|
||||
} else {
|
||||
// render a single axis indicator
|
||||
c.moveTo(body.position.x, body.position.y);
|
||||
c.lineTo((body.vertices[0].x + body.vertices[body.vertices.length-1].x) / 2,
|
||||
(body.vertices[0].y + body.vertices[body.vertices.length-1].y) / 2);
|
||||
if (body.parts.length === 1) {
|
||||
// render a single axis indicator
|
||||
c.moveTo(body.position.x, body.position.y);
|
||||
c.lineTo((body.vertices[0].x + body.vertices[body.vertices.length-1].x) / 2,
|
||||
(body.vertices[0].y + body.vertices[body.vertices.length-1].y) / 2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue