SetStartTime()
Updated: 9 Jun 2026
Updated: 9 Jun 2026
Sets the start time of a node’s time segment (as per Notch timeline) in hundredths of a second.
Note that this only affects the first segment of a node.
bool SetStartTime(int start_time);
start_time | The start time. |
returns true if successful or false if not.
function Update()
{
layer = Document.FindLayer("My Layer");
node = layer.FindNode("Image 2D");
node.SetStartTime(6000); // 1 second
}