positionMode property

PositionMode get positionMode

The mode for positioning the first bone on the path.

Implementation

PositionMode get positionMode {
  final result = SpineBindings.bindings.spine_path_constraint_data_get_position_mode(_ptr);
  return PositionMode.fromValue(result);
}
set positionMode (PositionMode value)

Implementation

set positionMode(PositionMode value) {
  SpineBindings.bindings.spine_path_constraint_data_set_position_mode(_ptr, value.value);
}