Project290.Physics.Dynamics.Body.ApplyLinearImpulse C# (CSharp) Method

ApplyLinearImpulse() public method

Apply an impulse at a point. This immediately modifies the velocity. This wakes up the body.
public ApplyLinearImpulse ( Vector2 impulse ) : void
impulse Vector2 The world impulse vector, usually in N-seconds or kg-m/s.
return void
        public void ApplyLinearImpulse(Vector2 impulse)
        {
            ApplyLinearImpulse(ref impulse);
        }

Same methods

Body::ApplyLinearImpulse ( Vector2 impulse, Vector2 point ) : void