setFrame method

void setFrame(
  1. int frameIndex,
  2. double time,
  3. ArrayFloat vertices
)

Sets the time and vertices for the specified frame.

Implementation

void setFrame(int frameIndex, double time, ArrayFloat vertices) {
  SpineBindings.bindings.spine_deform_timeline_set_frame(_ptr, frameIndex, time, vertices.nativePtr.cast());
}