Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

WindZone.radius

Switch to Manual
public var radius: float;

Description

Radius of the Spherical Wind Zone (only active if the WindZoneMode is set to Spherical).

// Creates a Spherical Wind Zone and sets its radius to 10.

function Start() { var wind : WindZone = gameObject.AddComponent.<WindZone>(); wind.mode = WindZoneMode.Spherical; wind.radius = 10; }