Unity 6.3
0 онлайн 1 гость 3 в системе
Вход

WindZone.mode

Declaration

public WindZoneMode mode;

Описание

Определяет тип зоны ветра, которая будет использоваться (сферическая или направленная).

// Creates a Directional Wind Zone.
using UnityEngine;

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