getOffsets method

ArrayFloat getOffsets(
  1. SlotPose pose
)

Returns the vertex offsets for the specified slot pose.

Implementation

ArrayFloat getOffsets(SlotPose pose) {
  final result = SpineBindings.bindings.spine_region_attachment_get_offsets(_ptr, pose.nativePtr.cast());
  return ArrayFloat.fromPointer(result);
}