Wind Zone が、シーン全体に 1 方向に影響します
// Creates a Spherical Wind Zone.
function Start() { var wind : WindZone = gameObject.AddComponent.<WindZone>(); wind.mode = WindZoneMode.Spherical; }
// Creates a Spherical Wind Zone.
void Start() { var wind = gameObject.AddComponent<WindZone>(); wind.mode = WindZoneMode.Spherical; }