You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Setting the 'polygon' property on a AntialiasedPolygon2D (or AntialiasedRegularPolygon2D) can (and will) result in an error. $polygon2d.polygon = points
This is due to the setter in 'antialiased_polygon2d.gd' accessing the old value instead of the new value.
changing line_2d.points = AntialiasedLine2D.construct_closed_line(polygon)
to line_2d.points = AntialiasedLine2D.construct_closed_line(value)
will fix this.
(same with AntialiasedRegularPolygon2D)
The text was updated successfully, but these errors were encountered:
Setting the 'polygon' property on a AntialiasedPolygon2D (or AntialiasedRegularPolygon2D) can (and will) result in an error.
$polygon2d.polygon = points
This is due to the setter in 'antialiased_polygon2d.gd' accessing the old value instead of the new value.
changing
line_2d.points = AntialiasedLine2D.construct_closed_line(polygon)
to
line_2d.points = AntialiasedLine2D.construct_closed_line(value)
will fix this.
(same with AntialiasedRegularPolygon2D)
The text was updated successfully, but these errors were encountered: