mirror of
https://github.com/liabru/matter-js.git
synced 2024-11-23 09:26:51 -05:00
Merge pull request #315 from codeclown/patch-1
fix issue when render.lineWidth = 0, closes #220
This commit is contained in:
commit
68382d62c3
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