Merge pull request #46677 from W4RH4WK/fix-canvas-renderer-line-width

Fix canvas renderer line width
This commit is contained in:
Rémi Verschelde 2021-03-05 00:14:42 +01:00 committed by GitHub
commit 1eabeec680
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -527,11 +527,11 @@ void RendererCanvasCull::canvas_item_add_line(RID p_item, const Point2 &p_from,
Item::CommandPrimitive *line = canvas_item->alloc_command<Item::CommandPrimitive>();
ERR_FAIL_COND(!line);
if (p_width > 1.001) {
Vector2 t = (p_from - p_to).orthogonal().normalized();
line->points[0] = p_from + t * p_width;
line->points[1] = p_from - t * p_width;
line->points[2] = p_to - t * p_width;
line->points[3] = p_to + t * p_width;
Vector2 t = (p_from - p_to).orthogonal().normalized() * p_width * 0.5;
line->points[0] = p_from + t;
line->points[1] = p_from - t;
line->points[2] = p_to - t;
line->points[3] = p_to + t;
line->point_count = 4;
} else {
line->point_count = 2;