UV: Add tooltip descriptions for UV Select Similar options #104935

Open
Chris Blackbourn wants to merge 1 commits from Chris_Blackbourn/blender:uv-select-similar-tooltips into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 8 additions and 4 deletions

View File

@ -5180,12 +5180,16 @@ static EnumPropertyItem prop_edge_similar_types[] = {
{0}};
static EnumPropertyItem prop_face_similar_types[] = {
{UV_SSIM_AREA_UV, "AREA", 0, "Area", ""},
{UV_SSIM_AREA_3D, "AREA_3D", 0, "Area 3D", ""},
{UV_SSIM_AREA_UV, "AREA", 0, "Area", "Area of face in UV space"},
{UV_SSIM_AREA_3D, "AREA_3D", 0, "Area 3D", "Area of face in 3D space"},
{UV_SSIM_MATERIAL, "MATERIAL", 0, "Material", ""},
{UV_SSIM_OBJECT, "OBJECT", 0, "Object", ""},
{UV_SSIM_SIDES, "SIDES", 0, "Polygon Sides", ""},
{UV_SSIM_WINDING, "WINDING", 0, "Winding", ""},
{UV_SSIM_SIDES, "SIDES", 0, "Polygon Sides", "Triangle, Quad, Pentagon etc"},
{UV_SSIM_WINDING,
"WINDING",
0,
"Winding",
"Are faces clockwise or anti-clockwise (facing up or facing down)"},
{0}};
static EnumPropertyItem prop_island_similar_types[] = {