Improve the appearance of 2D path editors

- Add new handle icons for path/polygon editors
- Add smooth path point icons and curve tangent icons
- Use a gray color for tangent lines in the Path2D and Path editors
- Use antialiasing for Path2D lines
This commit is contained in:
Hugo Locurcio 2019-08-18 22:18:57 +02:00
parent ef37f00525
commit 558e93f069
No known key found for this signature in database
GPG key ID: 39E8F8BE30B0A49C
8 changed files with 41 additions and 21 deletions

View file

@ -652,7 +652,6 @@ PathSpatialGizmoPlugin::PathSpatialGizmoPlugin() {
Color path_color = EDITOR_DEF("editors/3d_gizmos/gizmo_colors/path", Color(0.5, 0.5, 1.0, 0.8));
create_material("path_material", path_color);
path_color.a = 0.4;
create_material("path_thin_material", path_color);
create_material("path_thin_material", Color(0.5, 0.5, 0.5));
create_handle_material("handles");
}