您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

27 行
520 B

using System;
namespace UnityEngine.PostProcessing
{
[Serializable]
public abstract class PostProcessingModel
{
[SerializeField, GetSet("enabled")]
bool m_Enabled;
public bool enabled
{
get { return m_Enabled; }
set
{
m_Enabled = value;
if (value)
OnValidate();
}
}
public abstract void Reset();
public virtual void OnValidate()
{}
}
}