Data types
Type | Description |
---|---|
Boolean | True or False. |
Int | 32-bit integer. (signed?) |
8-bit Int | 8-bit integer (-128 to 127) |
Float | Floating-point value |
Vector | Vector with 3 float components |
2D Vector | Vector with 2 float components |
Color | RGBA color with 3 float components + alpha channel |
Byte color | RGBA color with 3 8-bit unsigned int components + alpha channel (0-255) |
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).
Domain | Description |
---|---|
Point | Single locations in space with a position:
|
Edge | Edges of meshes. |
Face | Faces of meshes. |
Face Corner | Corners of faces of meshes. Example: UV map attribute. |
Spline | Group of connected curve control points. |