forked from QianMo/X-PostProcessing-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGlitchImageBlockEditor.cs
92 lines (74 loc) · 3.53 KB
/
GlitchImageBlockEditor.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
//----------------------------------------------------------------------------------------------------------
// X-PostProcessing Library
// https://github.com/QianMo/X-PostProcessing-Library
// Copyright (C) 2020 QianMo. All rights reserved.
// Licensed under the MIT License
// You may not use this file except in compliance with the License.You may obtain a copy of the License at
// http://opensource.org/licenses/MIT
//----------------------------------------------------------------------------------------------------------
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
using UnityEditor.Rendering.PostProcessing;
using UnityEngine.Rendering.PostProcessing;
namespace XPostProcessing
{
[PostProcessEditor(typeof(GlitchImageBlock))]
public sealed class GlitchImageBlockEditor : PostProcessEffectEditor<GlitchImageBlock>
{
SerializedParameterOverride Fade;
SerializedParameterOverride Speed;
SerializedParameterOverride Amount;
SerializedParameterOverride BlockLayer1_U;
SerializedParameterOverride BlockLayer1_V;
SerializedParameterOverride BlockLayer2_U;
SerializedParameterOverride BlockLayer2_V;
SerializedParameterOverride BlockLayer1_Indensity;
SerializedParameterOverride BlockLayer2_Indensity;
SerializedParameterOverride RGBSplitIndensity;
SerializedParameterOverride BlockVisualizeDebug;
//[Range(0.0f, 50.0f)]
//public FloatParameter BlockLayer1_Indensity = new FloatParameter { value = 8f };
//[Range(0.0f, 50.0f)]
//public FloatParameter BlockLayer2_Indensity = new FloatParameter { value = 4f };
public override void OnEnable()
{
Fade = FindParameterOverride(x => x.Fade);
Speed = FindParameterOverride(x => x.Speed);
Amount = FindParameterOverride(x => x.Amount);
BlockLayer1_U = FindParameterOverride(x => x.BlockLayer1_U);
BlockLayer1_V = FindParameterOverride(x => x.BlockLayer1_V);
BlockLayer2_U = FindParameterOverride(x => x.BlockLayer2_U);
BlockLayer2_V = FindParameterOverride(x => x.BlockLayer2_V);
BlockLayer1_Indensity = FindParameterOverride(x => x.BlockLayer1_Indensity);
BlockLayer2_Indensity = FindParameterOverride(x => x.BlockLayer2_Indensity);
RGBSplitIndensity = FindParameterOverride(x => x.RGBSplitIndensity);
BlockVisualizeDebug = FindParameterOverride(x => x.BlockVisualizeDebug);
}
public override string GetDisplayTitle()
{
return XPostProcessingEditorUtility.DISPLAY_TITLE_PREFIX + base.GetDisplayTitle();
}
public override void OnInspectorGUI()
{
EditorUtilities.DrawHeaderLabel("Core Property");
PropertyField(Fade);
PropertyField(Speed);
PropertyField(Amount);
EditorUtilities.DrawHeaderLabel("Block Noise Size");
PropertyField(BlockLayer1_U);
PropertyField(BlockLayer1_V);
EditorGUILayout.Space();
PropertyField(BlockLayer2_U);
PropertyField(BlockLayer2_V);
EditorUtilities.DrawHeaderLabel("Block Indensity");
PropertyField(BlockLayer1_Indensity);
PropertyField(BlockLayer2_Indensity);
PropertyField(RGBSplitIndensity);
EditorUtilities.DrawHeaderLabel("Block Visualize Debug");
PropertyField(BlockVisualizeDebug);
}
}
}