summaryrefslogtreecommitdiff
path: root/UnityEngine.PostProcessing/ChromaticAberrationModel.cs
blob: a648f9f6ef6a914e14d2ff8bcb2c3e0b5f0c2553 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
			{
				Settings result = default(Settings);
				result.spectralTexture = null;
				result.intensity = 0.1f;
				return result;
			}
		}
	}

	[SerializeField]
	private Settings m_Settings = Settings.defaultSettings;

	public Settings settings
	{
		get
		{
			return m_Settings;
		}
		set
		{
			m_Settings = value;
		}
	}

	public override void Reset()
	{
		m_Settings = Settings.defaultSettings;
	}
}