forked from QianMo/X-PostProcessing-Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGlitchScanLineJitter.cs
101 lines (76 loc) · 3.54 KB
/
GlitchScanLineJitter.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
93
94
95
96
97
98
99
100
101
//----------------------------------------------------------------------------------------------------------
// 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;
using UnityEngine;
using UnityEngine.Rendering;
using UnityEngine.Rendering.PostProcessing;
namespace XPostProcessing
{
[Serializable]
public sealed class DirectionParameter : ParameterOverride<Direction> { }
[Serializable]
[PostProcess(typeof(GlitchScanLineJitterRenderer), PostProcessEvent.AfterStack, "X-PostProcessing/Glitch/ScanLineJitter")]
public class GlitchScanLineJitter : PostProcessEffectSettings
{
public DirectionParameter JitterDirection = new DirectionParameter { value = Direction.Horizontal };
public IntervalTypeParameter intervalType = new IntervalTypeParameter { value = IntervalType.Random };
[Range(0f, 25f)]
public FloatParameter frequency = new FloatParameter { value = 1f };
[Range(0.0f, 1.0f)]
public FloatParameter JitterIndensity = new FloatParameter { value = 0.1f };
}
public sealed class GlitchScanLineJitterRenderer : PostProcessEffectRenderer<GlitchScanLineJitter>
{
private const string PROFILER_TAG = "X-GlitchScanLineJitter";
private Shader shader;
private float randomFrequency;
public override void Init()
{
shader = Shader.Find("Hidden/X-PostProcessing/Glitch/ScanLineJitter");
}
public override void Release()
{
base.Release();
}
static class ShaderIDs
{
internal static readonly int Params = Shader.PropertyToID("_Params");
internal static readonly int JitterIndensity = Shader.PropertyToID("_ScanLineJitter");
}
public override void Render(PostProcessRenderContext context)
{
CommandBuffer cmd = context.command;
PropertySheet sheet = context.propertySheets.Get(shader);
cmd.BeginSample(PROFILER_TAG);
UpdateFrequency(sheet);
float displacement = 0.005f + Mathf.Pow(settings.JitterIndensity, 3) * 0.1f;
float threshold = Mathf.Clamp01(1.0f - settings.JitterIndensity * 1.2f);
//sheet.properties.SetVector(ShaderIDs.Params, new Vector3(settings.amount, settings.speed, );
sheet.properties.SetVector(ShaderIDs.Params, new Vector3(displacement, threshold, settings.intervalType.value == IntervalType.Random ? randomFrequency : settings.frequency));
context.command.BlitFullscreenTriangle(context.source, context.destination, sheet, (int)settings.JitterDirection.value);
cmd.EndSample(PROFILER_TAG);
}
void UpdateFrequency(PropertySheet sheet)
{
if (settings.intervalType.value == IntervalType.Random)
{
randomFrequency = UnityEngine.Random.Range(0, settings.frequency);
}
if (settings.intervalType.value == IntervalType.Infinite)
{
sheet.EnableKeyword("USING_FREQUENCY_INFINITE");
}
else
{
sheet.DisableKeyword("USING_FREQUENCY_INFINITE");
}
}
}
}