lengths property

ArrayFloat get lengths

The length in the setup pose from the start of the path to the end of each curve.

Implementation

ArrayFloat get lengths {
  final result = SpineBindings.bindings.spine_path_attachment_get_lengths(_ptr);
  return ArrayFloat.fromPointer(result);
}
set lengths (ArrayFloat value)

Implementation

set lengths(ArrayFloat value) {
  SpineBindings.bindings.spine_path_attachment_set_lengths(_ptr, value.nativePtr.cast());
}