Geometry Nodes: Add float2 to attribute complexity map

This commit is contained in:
Hans Goudey 2021-01-25 22:20:41 -06:00
parent 71a8e32dc0
commit e9e054b987
1 changed files with 2 additions and 0 deletions

View File

@ -54,6 +54,8 @@ static int attribute_data_type_complexity(const CustomDataType data_type)
return 1;
case CD_PROP_FLOAT:
return 2;
case CD_PROP_FLOAT2:
return 3;
case CD_PROP_FLOAT3:
return 4;
case CD_PROP_COLOR: