Notch Notch Manual 0.9.23
 Light | Dark
SetPropertyArtnet16Bit()

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_bitA flag to indicate if the binding is 16-bit or not.
property_nameThe 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);
}