Зона ветра действует только в рамках указанного радиуса и ветер дует из центра к поверхности сферы.
// Creates a Directional Wind Zone that blows wind up.
function Start() { var wind : WindZone = gameObject.AddComponent.<WindZone>(); wind.mode = WindZoneMode.Directional; transform.rotation = Quaternion.LookRotation(Vector3.up); }
// Creates a Directional Wind Zone that blows wind up.
void Start() { var wind = gameObject.AddComponent<WindZone>(); wind.mode = WindZoneMode.Directional; transform.rotation = Quaternion.LookRotation(Vector3.up); }