From 39ec3ad2e5d5b9e051bac3908c408317a973fe09 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Wed, 29 Jul 2020 11:45:49 +0200 Subject: [PATCH] Document `CanvasItem.draw_multiline_colors()` not supporting width and AA --- doc/classes/CanvasItem.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/classes/CanvasItem.xml b/doc/classes/CanvasItem.xml index 97e6f02907a..5f36e277cf8 100644 --- a/doc/classes/CanvasItem.xml +++ b/doc/classes/CanvasItem.xml @@ -141,7 +141,8 @@ - Draws multiple, parallel lines with a uniform [code]color[/code]. [code]width[/code] and [code]antialiased[/code] are currently not implemented and have no effect. + Draws multiple, parallel lines with a uniform [code]color[/code]. + [b]Note:[/b] [code]width[/code] and [code]antialiased[/code] are currently not implemented and have no effect. @@ -156,7 +157,8 @@ - Draws multiple, parallel lines with a uniform [code]width[/code], segment-by-segment coloring, and optional antialiasing. Colors assigned to line segments match by index between [code]points[/code] and [code]colors[/code]. + Draws multiple, parallel lines with a uniform [code]width[/code] and segment-by-segment coloring. Colors assigned to line segments match by index between [code]points[/code] and [code]colors[/code]. + [b]Note:[/b] [code]width[/code] and [code]antialiased[/code] are currently not implemented and have no effect.