Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


radius

Radius of the Spherical Wind Zone (only active if the WindZoneMode is set to Spherical).
Read time 1 minuteLast updated 6 days ago

Definition

  • Type: Property
  • Namespace: UnityEngine
  • Assembly: UnityEngine.WindModule
public float radius { get; set; }

Examples

// Creates a Spherical Wind Zone and sets its radius to 10.using UnityEngine;public class ExampleScript : MonoBehaviour{ void Start() { var wind = gameObject.AddComponent<WindZone>(); wind.mode = WindZoneMode.Spherical; wind.radius = 10f; }}