setFrame method

void setFrame(
  1. int frame,
  2. double time,
  3. double mixRotate,
  4. double mixX,
  5. double mixY,
)

Sets the time and color for the specified frame.

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

Implementation

void setFrame(int frame, double time, double mixRotate, double mixX, double mixY) {
  SpineBindings.bindings.spine_path_constraint_mix_timeline_set_frame(_ptr, frame, time, mixRotate, mixX, mixY);
}