Version: Unity 6.3 Beta (6000.3)
LanguageEnglish
  • C#

PhysicsShape.ApplyWind

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public void ApplyWind(Vector2 force, float drag, float lift, bool wake);

Parameters

Parameter Description
force The wind velocity in world-space.
drag The drag coefficient which is a force that opposes the relative velocity.
lift The lift coefficient which is a force that is perpendicular to the relative velocity.
wake Whether the shape body should be woken or not.

Description

Apply a wind force to the shape body using the density of air This considers the projected area of the shape in the wind direction. This also considers the relative velocity of the shape. This only has an effect if the shape body is UnityEngine.RigidbodyType2D.Dynamic. This only has an effect of shapes of type Circle, Capsule or Polygon.