spacingMode property

SpacingMode get spacingMode

The mode for positioning the bones after the first bone on the path.

Implementation

SpacingMode get spacingMode {
  final result = SpineBindings.bindings.spine_path_constraint_data_get_spacing_mode(_ptr);
  return SpacingMode.fromValue(result);
}
set spacingMode (SpacingMode value)

Implementation

set spacingMode(SpacingMode value) {
  SpineBindings.bindings.spine_path_constraint_data_set_spacing_mode(_ptr, value.value);
}