timelines property

ArrayTimeline get timelines

If the returned array or the timelines it contains are modified, setTimelines() must be called.

Implementation

ArrayTimeline get timelines {
  final result = SpineBindings.bindings.spine_animation_get_timelines(_ptr);
  return ArrayTimeline.fromPointer(result);
}
set timelines (ArrayTimeline value)

Implementation

set timelines(ArrayTimeline value) {
  SpineBindings.bindings.spine_animation_set_timelines(_ptr, value.nativePtr.cast());
}