SetPropertyArtnet16Bit()
Purpose #
Sets the ArtNet property for a node’s parameter to be 16-bit. See ArtNet for more information.
Syntax #
void SetPropertyArtnet16Bit(String property_name, bool is_16_bit);
Parameters
is_16_bit | A flag to indicate if the binding is 16-bit or not. |
property_name | The name of the property 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);
}