Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

WindZone.windMain

フィードバック

ありがとうございます

この度はドキュメントの品質向上のためにご意見・ご要望をお寄せいただき、誠にありがとうございます。頂いた内容をドキュメントチームで確認し、必要に応じて修正を致します。

閉じる

送信に失敗しました

なんらかのエラーが発生したため送信が出来ませんでした。しばらく経ってから<a>もう一度送信</a>してください。ドキュメントの品質向上のために時間を割いて頂き誠にありがとうございます。

閉じる

キャンセル

マニュアルに切り替える
public var windMain: float;
public float windMain;

説明

主要の風力

柔らかく風圧を変化させます

// 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; }
// 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

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