WindZoneMode.Spherical
Описание
Зона ветра имеет эффект только внутри радиуса, и имеет падение от центра к краю.
// Creates a Spherical Wind Zone. using UnityEngine;
public class ExampleScript : MonoBehaviour { void Start() { var wind = gameObject.AddComponent<WindZone>(); wind.mode = WindZoneMode.Spherical; } }