Skip to content

Commit fa759cf

Browse files
committedMay 24, 2020
Add XPostProcessingEnum
Add XPostProcessingEnum
1 parent da93791 commit fa759cf

File tree

3 files changed

+57
-0
lines changed

3 files changed

+57
-0
lines changed
 

‎Assets/X-PostProcessing/Utility.meta

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
//----------------------------------------------------------------------------------------------------------
2+
// X-PostProcessing Library
3+
// https://github.com/QianMo/X-PostProcessing-Library
4+
// Copyright (C) 2020 QianMo. All rights reserved.
5+
// Licensed under the MIT License
6+
// You may not use this file except in compliance with the License.You may obtain a copy of the License at
7+
// http://opensource.org/licenses/MIT
8+
//----------------------------------------------------------------------------------------------------------
9+
10+
using System.Collections;
11+
using System.Collections.Generic;
12+
using UnityEngine;
13+
14+
namespace XPostProcessing
15+
{
16+
17+
18+
public enum Direction
19+
{
20+
Horizontal = 0,
21+
Vertical = 1,
22+
}
23+
24+
public enum DirectionEX
25+
{
26+
Horizontal = 0,
27+
Vertical = 1,
28+
Horizontal_Vertical =2,
29+
}
30+
31+
public enum IntervalType
32+
{
33+
Infinite,
34+
Periodic,
35+
Random
36+
}
37+
38+
}

‎Assets/X-PostProcessing/Utility/XPostProcessingEnum.cs.meta

+11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)