Version: 5.6
public static Color fogColor ;

설명

The color of the fog.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { RenderSettings.fogColor = Color.blue; RenderSettings.fog = true; } }