-
Notifications
You must be signed in to change notification settings - Fork 294
/
Copy pathImageEffectBase.cs
70 lines (61 loc) · 1.35 KB
/
ImageEffectBase.cs
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
using UnityEngine;
namespace SecondStar.Effects
{
[RequireComponent (typeof(Camera))]
[ExecuteInEditMode]
public class ImageEffectBase : MonoBehaviour {
/// Provides a shader property that is set in the inspector
/// and a material instantiated from the shader
public Shader shader;
private Material m_Material;
protected Material material {
get {
if (m_Material == null) {
m_Material = new Material (shader);
m_Material.hideFlags = HideFlags.HideAndDontSave;
}
return m_Material;
}
}
public RenderTexture Output
{
get; protected set;
}
protected virtual void Start ()
{
// Disable if we don't support image effects
if (!SystemInfo.supportsImageEffects) {
enabled = false;
return;
}
// Disable the image effect if the shader can't
// run on the users graphics card
if (!shader.isSupported)
enabled = false;
}
protected virtual void OnDisable() {
if( m_Material )
{
DestroyImmediate( m_Material );
}
if (Output != null)
{
ClearBuffer(Output);
}
}
protected virtual void OnPreRender()
{
}
protected virtual void OnRenderImage(RenderTexture source, RenderTexture destination)
{
}
protected void ClearBuffer(RenderTexture buffer)
{
if (buffer != null)
{
RenderTexture.ReleaseTemporary(buffer);
buffer = null;
}
}
}
}