Skip to main content

Properties

Standard Types

Single element value property types

TypeInternal TypeAPI Function
VR_BOOLboolVRAddPropertyBool
VR_CHARcharVRAddPropertyChar
VR_INTintVRAddPropertyInt
VR_FLOATfloatVRAddPropertyFloat
VR_DOUBLEdoubleVRAddPropertyDouble
VR_WORLD_FLOATdouble (in x64 versions)VRAddPropertyWorldFloat
VR_LINKUserClassVRAddPropertyLink
VR_STRINGconst char*VRAddPropertyString

Array and Vector types

The above properties (except links and strings) can be stored in array or vector properties, too.

An array property is fixed size, defined when the property is added to the metanode.

There are a number of standard array property types such as VRAddPropertyMat3f or VRAddPropertyVec4w, or array properties of arbitrary size can be defined.

TypeInternal TypeAPI Function
VR_BOOLbool[]VRAddPropertyArrayBool
VR_CHARchar[]VRAddPropertyArrayChar
VR_INTint[]VRAddPropertyArrayInt
VR_FLOATfloat[]VRAddPropertyArrayFloat
VR_DOUBLEdouble[]VRAddPropertyArrayDouble
VR_WORLD_FLOATdouble[] (in x64 versions)VRAddPropertyArrayWorldFloat

Vector properties are variable size, allowing data to be added and removed at runtime. This is usually used for storing mesh vertices, etc.

TypeInternal TypeAPI Function
VR_CHARvector(char)VRAddPropertyVectorChar
VR_INTvector(int)VRAddPropertyVectorInt
VR_FLOATvector(float)VRAddPropertyVectorFloat
VR_WORLD_FLOATvector(double) (in x64 versions)VRAddPropertyVectorWorldFloat
VR_STRINGvector(string)VRAddPropertyVectorString

Semantics and Hints

Properties can be given semantics.

Storage

Properties added to a metanode are indexed in the order they are added, however, the internal memory used to store the property data on a specific node instance may be re-arranged to provide more optimal alignment for performance improvement and platform / architecture compatibility. This is transparent to the API.