Зона ветра действует на всю сцену в определённом направлении.
// Creates a Spherical Wind Zone.
function Start() { var wind : WindZone = gameObject.AddComponent.<WindZone>(); wind.mode = WindZoneMode.Spherical; }
// Creates a Spherical Wind Zone.
void Start() { var wind = gameObject.AddComponent<WindZone>(); wind.mode = WindZoneMode.Spherical; }