int setattribtypeinfo(int geohandle, string attribclass, string name, string typeinfo)
geohandle
A handle to the geometry to write to. Currently the only valid value is 0
or geoself, which means the current geometry in a node. (This argument may be used in the future to allow writing to other geometries.)
attribclass
One of "detail"
(or "global"
), "point"
, "prim"
, or "vertex"
.
You can also use "primgroup"
, "pointgroup"
or "vertexgroup"
to read from groups.
name
The name of the attribute for which to change the transformation info.
typeinfo
The meaning of the attribute, which is used by transform nodes to determine how to modify the attribute. It is one of:
|
Don’t transform. |
|
Apply scales, rotations, and transformations. |
|
Apply scales, rotations, and transformations to this vector4. |
|
Apply scales and rotations, but not transformations. |
|
Apply rotations, apply scales with inverse-transpose. |
|
Don’t transform. |
|
Apply scales, rotations, and transformations to this matrix. |
|
Apply rotations. |
|
Don’t transform. |
|
Do not blend this value when points are averaged. |
|
Integer values that blend when points are averaged. |
|
Don’t transform, and try to preserve seams when interpolating. Attributes with this type will show up in the UV viewport menu. |
attrib |
|