Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_attribute.c
| Show All 38 Lines | |||||
| const EnumPropertyItem rna_enum_attribute_type_items[] = { | const EnumPropertyItem rna_enum_attribute_type_items[] = { | ||||
| {CD_PROP_FLOAT, "FLOAT", 0, "Float", "Floating-point value"}, | {CD_PROP_FLOAT, "FLOAT", 0, "Float", "Floating-point value"}, | ||||
| {CD_PROP_INT32, "INT", 0, "Integer", "32-bit integer"}, | {CD_PROP_INT32, "INT", 0, "Integer", "32-bit integer"}, | ||||
| {CD_PROP_FLOAT3, "FLOAT_VECTOR", 0, "Vector", "3D vector with floating-point values"}, | {CD_PROP_FLOAT3, "FLOAT_VECTOR", 0, "Vector", "3D vector with floating-point values"}, | ||||
| {CD_PROP_COLOR, "FLOAT_COLOR", 0, "Float Color", "RGBA color with floating-point precisions"}, | {CD_PROP_COLOR, "FLOAT_COLOR", 0, "Float Color", "RGBA color with floating-point precisions"}, | ||||
| {CD_MLOOPCOL, "BYTE_COLOR", 0, "Byte Color", "RGBA color with 8-bit precision"}, | {CD_MLOOPCOL, "BYTE_COLOR", 0, "Byte Color", "RGBA color with 8-bit precision"}, | ||||
| {CD_PROP_STRING, "STRING", 0, "String", "Text string"}, | {CD_PROP_STRING, "STRING", 0, "String", "Text string"}, | ||||
| {CD_PROP_BOOL, "BOOLEAN", 0, "Boolean", "True or false"}, | |||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| const EnumPropertyItem rna_enum_attribute_domain_items[] = { | const EnumPropertyItem rna_enum_attribute_domain_items[] = { | ||||
| /* Not implement yet */ | /* Not implement yet */ | ||||
| // {ATTR_DOMAIN_GEOMETRY, "GEOMETRY", 0, "Geometry", "Attribute on (whole) geometry"}, | // {ATTR_DOMAIN_GEOMETRY, "GEOMETRY", 0, "Geometry", "Attribute on (whole) geometry"}, | ||||
| {ATTR_DOMAIN_POINT, "POINT", 0, "Point", "Attribute on point"}, | {ATTR_DOMAIN_POINT, "POINT", 0, "Point", "Attribute on point"}, | ||||
| {ATTR_DOMAIN_EDGE, "EDGE", 0, "Edge", "Attribute on mesh edge"}, | {ATTR_DOMAIN_EDGE, "EDGE", 0, "Edge", "Attribute on mesh edge"}, | ||||
| ▲ Show 20 Lines • Show All 625 Lines • Show Last 20 Lines | |||||