spine_physics_constraint_translate method

void spine_physics_constraint_translate(
  1. spine_physics_constraint self,
  2. double x,
  3. 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 spine_physics_constraint_translate(
  spine_physics_constraint self,
  double x,
  double y,
) {
  return _spine_physics_constraint_translate(
    self,
    x,
    y,
  );
}