applyForceAtLocalPoint method

void applyForceAtLocalPoint({
  1. required Vector2 force,
  2. required Vector2 point,
})

Apply a force to a body. Both the force and point are expressed in body local coordinates.

Implementation

void applyForceAtLocalPoint({required Vector2 force, required Vector2 point}) => _body.applyForceAtLocalPoint(force: force, point: point);