Version: 5.5

Description

Зона ветра действует на всю сцену в определённом направлении.

// 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); }