From a10eea6e4ce647061813519d5b0ea496f29495b9 Mon Sep 17 00:00:00 2001
From: leonard Wu <364452445@qq.com>
Date: 星期四, 09 八月 2018 09:47:08 +0800
Subject: [PATCH] 同步最新svn内容
---
Assets/Plugins/PostProcessing/Runtime/PostProcessingModel.cs | 54 +++++++++++++++++++++++++++---------------------------
1 files changed, 27 insertions(+), 27 deletions(-)
diff --git a/Assets/Plugins/PostProcessing/Runtime/PostProcessingModel.cs b/Assets/Plugins/PostProcessing/Runtime/PostProcessingModel.cs
index 69f5095..bd8c2f7 100644
--- a/Assets/Plugins/PostProcessing/Runtime/PostProcessingModel.cs
+++ b/Assets/Plugins/PostProcessing/Runtime/PostProcessingModel.cs
@@ -1,27 +1,27 @@
-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()
- {}
- }
-}
+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()
+ {}
+ }
+}
--
Gitblit v1.8.0