public static FogMode fogMode ;

Description

Используемый режим тумана.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Example() { // Use linear fog RenderSettings.fogMode = FogMode.Linear; } }