mirror of
https://github.com/liabru/matter-js.git
synced 2024-11-23 09:26:51 -05:00
Fixes #220
This commit is contained in:
parent
422c1e4dff
commit
74de894ed9
1 changed files with 13 additions and 7 deletions
|
@ -385,10 +385,12 @@ var Vector = require('../geometry/Vector');
|
|||
c.lineTo(constraint.pointB.x, constraint.pointB.y);
|
||||
}
|
||||
|
||||
if (constraint.render.lineWidth) {
|
||||
c.lineWidth = constraint.render.lineWidth;
|
||||
c.strokeStyle = constraint.render.strokeStyle;
|
||||
c.stroke();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -523,16 +525,20 @@ var Vector = require('../geometry/Vector');
|
|||
|
||||
if (!options.wireframes) {
|
||||
c.fillStyle = part.render.fillStyle;
|
||||
|
||||
if (part.render.lineWidth) {
|
||||
c.lineWidth = part.render.lineWidth;
|
||||
c.strokeStyle = part.render.strokeStyle;
|
||||
c.stroke();
|
||||
}
|
||||
|
||||
c.fill();
|
||||
} else {
|
||||
c.lineWidth = 1;
|
||||
c.strokeStyle = '#bbb';
|
||||
}
|
||||
|
||||
c.stroke();
|
||||
}
|
||||
}
|
||||
|
||||
c.globalAlpha = 1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue