Purpose
Retrieves the value of an integer property of a node.
Syntax
int GetInt(String PropertyName);
- PropertyName : the property within the node. Starts with
GroupName.Property
e.g.Transform.Position X
Example
function Update() {
layer = Document.FindLayer("My Layer");
node = layer.FindNode("Frame Buffer");
value = node.GetInt("Attributes.Frame Grab Active");
}