You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
44 lines
1.1 KiB
4 years ago
|
using System;
|
||
|
|
||
|
namespace UnityEngine.PostProcessing
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class ChromaticAberrationModel : PostProcessingModel
|
||
|
{
|
||
|
[Serializable]
|
||
|
public struct Settings
|
||
|
{
|
||
|
[Tooltip("Shift the hue of chromatic aberrations.")]
|
||
|
public Texture2D spectralTexture;
|
||
|
|
||
|
[Range(0f, 1f), Tooltip("Amount of tangential distortion.")]
|
||
|
public float intensity;
|
||
|
|
||
|
public static Settings defaultSettings
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
return new Settings
|
||
|
{
|
||
|
spectralTexture = null,
|
||
|
intensity = 0.1f
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
[SerializeField]
|
||
|
Settings m_Settings = Settings.defaultSettings;
|
||
|
public Settings settings
|
||
|
{
|
||
|
get { return m_Settings; }
|
||
|
set { m_Settings = value; }
|
||
|
}
|
||
|
|
||
|
public override void Reset()
|
||
|
{
|
||
|
m_Settings = Settings.defaultSettings;
|
||
|
}
|
||
|
}
|
||
|
}
|