Attribute information

Data types

TypeDescription
BooleanTrue or False. 
Int32-bit integer. (signed?)
8-bit Int8-bit integer (-128 to 127)
FloatFloating-point value
VectorVector with 3 float components
2D VectorVector with 2 float components
ColorRGBA color with 3 float components + alpha channel
Byte colorRGBA color with 3 8-bit unsigned int components + alpha channel (0-255)

source

Domains

Domains refer to what type of geometry element the attribute corresponds to. The domain determines how attribute values are interpolated to other domains. Interpolation is simply averaging values in most cases (ie. the values for each component in a vector3 are added and divided by 3) but in the case of Booleans there are special rules (see below).

DomainDescription
Point

Single locations in space with a position: 

  • vertices
  • points of a point cloud
  • curve control points
EdgeEdges of meshes.
FaceFaces of meshes.
Face CornerCorners of faces of meshes. Example: UV map attribute.
SplineGroup of connected curve control points.