clipStart method

int clipStart(
  1. Skeleton skeleton,
  2. Slot slot,
  3. ClippingAttachment? clip
)

Implementation

int clipStart(Skeleton skeleton, Slot slot, ClippingAttachment? clip) {
  final result = SpineBindings.bindings.spine_skeleton_clipping_clip_start(
      _ptr, skeleton.nativePtr.cast(), slot.nativePtr.cast(), clip?.nativePtr.cast() ?? Pointer.fromAddress(0));
  return result;
}