Purpose
Sets the value of a float property in a node but only for run/calculation time.
Syntax
void SetEnvelopeValue(String FieldName, float value);
- FieldName : the field name (NB: Does not require the group name)
- value: the float value the property is to be set to
Example
function Update() {
layer = Document.FindLayer("My Layer");
node = layer.FindNode("Frame Buffer");
node.SetEnvelopeValue("Position X", 1.3);
}