getCurveValue method

double getCurveValue(
  1. double time
)

Returns the interpolated value for the specified time.

Implementation

double getCurveValue(double time) {
  final result = SpineBindings.bindings.spine_curve_timeline1_get_curve_value(_ptr, time);
  return result;
}