Notch Notch Manual 0.9.23
 Light | Dark
SetPropertyArtnetDisabled()

SetPropertyArtnetDisabled()

Purpose #

Disables ArtNet for a node’s parameter. See ArtNet for more information.

Syntax #

void SetPropertyArtnetDisabled(String property_name);

Parameters

property_nameThe name of the property to disable in Artnet.

Example #

function Update()
{ 
    layer = Document.FindLayer("My Layer");
    node = layer.FindNode("Camera");
    node.SetPropertyArtnetDisabled("Attributes.Zoom");
}