Legacy Documentation: Version 5.0
Language: English
  • C#
  • JS

Script language

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

WindZone.windMain

Switch to Manual
public var windMain: float;

Description

The primary wind force.

It produces a softly changing wind Pressure.

// Creates a wind zone with the effect of a helicopter passing by
// Just place this into an empty game object and move it over a tree

function Start() { var wind : WindZone = gameObject.AddComponent.<WindZone>(); wind.mode = WindZoneMode.Spherical; wind.radius = 10.0; wind.windMain = 3.0; wind.windTurbulence = 0.5; wind.windPulseMagnitude = 2.0; wind.windPulseFrequency = 0.01; }