Version: 2019.3
public static FogMode fogMode ;

説明

使用するフォグモードです。

using UnityEngine;
using System.Collections;

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