databpy
  • Home
  • API
  1. Attribute
  2. AttributeTypes
  • Function reference
  • Attribute
    • named_attribute
    • store_named_attribute
    • remove_named_attribute
    • AttributeDomains
    • AttributeTypes
    • AttributeArray
  • Collections
    • create_collection
  • Objects
    • create_object
    • create_bob
    • evaluate_object
    • BlenderObject
    • LinkedObjectError

On this page

  • AttributeTypes
    • Attributes
  1. Attribute
  2. AttributeTypes

AttributeTypes

AttributeTypes()

Enumeration of attribute types in Blender.

Each attribute type has a specific data type and dimensionality.

Attributes

Name Type Description
FLOAT AttributeType Single float value with dimensions (1,) More Info
FLOAT_VECTOR AttributeType 3D vector of floats with dimensions (3,) More Info
FLOAT2 AttributeType 2D vector of floats with dimensions (2,) More Info
FLOAT_COLOR AttributeType RGBA color values as floats with dimensions (4,) More Info
BYTE_COLOR AttributeType RGBA color values as integers with dimensions (4,) More Info
QUATERNION AttributeType Quaternion rotation (w, x, y, z) as floats with dimensions (4,) More Info
INT AttributeType Single integer value with dimensions (1,) More Info
INT8 AttributeType 8-bit integer value with dimensions (1,) More Info
INT32_2D AttributeType 2D vector of 32-bit integers with dimensions (2,) More Info
FLOAT4X4 AttributeType 4x4 transformation matrix of floats with dimensions (4, 4) More Info
BOOLEAN AttributeType Single boolean value with dimensions (1,) More Info