You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Merge pull request #107469 from Ivorforce/vector-localvector-explicit-span-conversions
Remove implicit conversions between `LocalVector` and `Vector`
This commit is contained in:
@@ -1615,7 +1615,7 @@ void GraphEdit::_draw_minimap_connection_line(const Vector2 &p_from_graph_positi
|
||||
colors.push_back(p_from_color.lerp(p_to_color, normalized_curve_position));
|
||||
}
|
||||
|
||||
minimap->draw_polyline_colors(points, colors, 0.5, lines_antialiased);
|
||||
minimap->draw_polyline_colors(points, Vector<Color>(colors), 0.5, lines_antialiased);
|
||||
}
|
||||
|
||||
void GraphEdit::_update_connections() {
|
||||
|
||||
Reference in New Issue
Block a user