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.
31 lines
664 B
31 lines
664 B
4 years ago
|
using System;
|
||
|
|
||
|
namespace UnityEngine.PostProcessing
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class DitheringModel : PostProcessingModel
|
||
|
{
|
||
|
[Serializable]
|
||
|
public struct Settings
|
||
|
{
|
||
|
public static Settings defaultSettings
|
||
|
{
|
||
|
get { return new Settings(); }
|
||
|
}
|
||
|
}
|
||
|
|
||
|
[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;
|
||
|
}
|
||
|
}
|
||
|
}
|