setFrame method

void setFrame(
  1. int frame,
  2. double time,
  3. Inherit inherit
)

Sets the inherit transform mode for the specified frame.

frame Between 0 and frameCount, inclusive. time The frame time in seconds.

Implementation

void setFrame(int frame, double time, Inherit inherit) {
  SpineBindings.bindings.spine_inherit_timeline_set_frame(_ptr, frame, time, inherit.value);
}