mode
Defines the type of wind zone to be used (Spherical or Directional).
Read time 1 minuteLast updated 5 days ago
Definition
- Type: Property
- Namespace: UnityEngine
- Assembly: UnityEngine.WindModule
public WindZoneMode mode { get; set; }
Examples
// Creates a Directional Wind Zone.using UnityEngine;public class ExampleScript : MonoBehaviour{ void Start() { var wind = gameObject.AddComponent<WindZone>(); wind.mode = WindZoneMode.Directional; }}