Notch Notch Manual 0.9.23
 Light | Dark
GetEndTime()

GetEndTime()

Purpose #

Provides the end time of the layer (as per Notch timeline) in hundredths of a second.

Syntax #

int GetEndTime();
returns time in hundredths of a second as an integer.

Example #

function Update()
{ 
    layer = Document.FindLayer("My Layer");
    var timeStart = layer.GetEndTime();
}