18 lines
271 B
C#
18 lines
271 B
C#
using UnityEngine;
|
|
|
|
namespace AQUAS
|
|
{
|
|
public class AQUAS_UnderwaterParameters : MonoBehaviour
|
|
{
|
|
public Color mainFogColor;
|
|
|
|
public Color deepFogColor;
|
|
|
|
public float mainFogDensity = 1f;
|
|
|
|
public float deepFogDensity = 2f;
|
|
|
|
public float maxFogDepth = 10f;
|
|
}
|
|
}
|