Legacy Documentation: Version 2017.2 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

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

WindZone.windPulseFrequency

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public var windPulseFrequency: float;
public float windPulseFrequency;

Description

Defines the frequency of the wind changes.

// Creates a wind zone to produce a softly changing general wind
// Just place this into an empty game object

function Start() { var wind : WindZone = gameObject.AddComponent.<WindZone>(); wind.mode = WindZoneMode.Directional; wind.windMain = 0.70; wind.windTurbulence = 0.1; wind.windPulseMagnitude = 2.0; wind.windPulseFrequency = 0.25; }
// Creates a wind zone to produce a softly changing general wind
// Just place this into an empty game object
using UnityEngine;

public class ExampleScript : MonoBehaviour { void Start() { var wind = gameObject.AddComponent<WindZone>(); wind.mode = WindZoneMode.Directional; wind.windMain = 0.70f; wind.windTurbulence = 0.1f; wind.windPulseMagnitude = 2.0f; wind.windPulseFrequency = 0.25f; } }

Did you find this page useful? Please give it a rating: