Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


mode

Defines the type of wind zone to be used (Spherical or Directional).
Read time 1 minuteLast updated 6 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; }}