translate method

void translate(
  1. double x,
  2. double y
)

Translates the physics constraint so next update() forces are applied as if the bone moved an additional amount in world space.

Implementation

void translate(double x, double y) {
  SpineBindings.bindings.spine_physics_constraint_translate(_ptr, x, y);
}