Purpose
Sets the Artnet property for a node’s parameter to be 16-bit. See Artnet for more information.
Syntax
void SetPropertyArtnet16Bit(String propertyName, bool is16Bit);
- propertyName: The name of the property to indicate if the binding is 16-bit or not.
- is16Bit: A flag to indicate if the binding is 16-bit or not.
Example
function Update() {
layer = Document.FindLayer("My Layer");
node = layer.FindNode("Camera");
node.SetPropertyArtnet16Bit("Attributes.Zoom", true);
}