Description

Зона ветра действует только в рамках указанного радиуса и ветер дует из центра к поверхности сферы.

// Creates a Spherical Wind Zone.
using UnityEngine;

public class ExampleScript : MonoBehaviour { void Start() { var wind = gameObject.AddComponent<WindZone>(); wind.mode = WindZoneMode.Spherical; } }