Purpose
Retrieves the visible state of the node.
Syntax
bool GetVisible();
Example
function Update() {
layer = Document.FindLayer("My Layer");
node = layer.FindNode("Image 2D");
var isVisible = node.GetVisible();
}
Retrieves the visible state of the node.
bool GetVisible();
function Update() {
layer = Document.FindLayer("My Layer");
node = layer.FindNode("Image 2D");
var isVisible = node.GetVisible();
}