Purpose
Returns the name of the node.
Syntax
string GetName();
returns the name of the object.
Example
function Update() {
layer = Document.FindLayer("My Layer");
node = layer.FindNode("Image 2D");
var name = node.GetName();
}
Returns the name of the node.
string GetName();
returns the name of the object.
function Update() {
layer = Document.FindLayer("My Layer");
node = layer.FindNode("Image 2D");
var name = node.GetName();
}