Purpose
Sets whether the node is visible.
Syntax
void SetVisible(Bool visible);
Example
function Update() {
layer = Document.FindLayer("My Layer");
node = layer.FindNode("Image 2D");
node.SetVisible(true);
}
Sets whether the node is visible.
void SetVisible(Bool visible);
function Update() {
layer = Document.FindLayer("My Layer");
node = layer.FindNode("Image 2D");
node.SetVisible(true);
}