trackTime property
double
get
trackTime
Current time in seconds this track entry has been the current track entry. The track time determines getAnimationTime(). The track time can be set to start the animation at a time other than 0, without affecting looping.
Implementation
double get trackTime {
final result = SpineBindings.bindings.spine_track_entry_get_track_time(_ptr);
return result;
}
set
trackTime
(double value)
Implementation
set trackTime(double value) {
SpineBindings.bindings.spine_track_entry_set_track_time(_ptr, value);
}