-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathEZAssetMenuOrder.cs
48 lines (39 loc) · 1.16 KB
/
EZAssetMenuOrder.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
/* Author: ezhex1991@outlook.com
* CreateTime: 2019-04-12 15:57:09
* Organization: #ORGANIZATION#
* Description:
*/
namespace EZhex1991.EZAssetGenerator
{
public enum EZAssetMenuOrder
{
_Section_0 = 11000,
_Section_1 = _Section_0 + 100,
EZGradient1DTextureGenerator,
EZGradient2DTextureGenerator,
EZGaussianLutGenerator,
EZWaveTextureGenerator,
EZMaterialToTexture,
_Section_2 = _Section_0 + 200,
EZPerlinNoiseTextureGenerator,
EZPixelNoiseTextureGenerator,
EZSimpleNoiseTextureGenerator,
EZVoronoiTextureGenerator,
_Section_3 = _Section_0 + 300,
EZTextureBlurProcessor,
EZTextureSpherize,
EZTextureTwirl,
EZTextureChannelModifier,
EZTextureCombiner,
EZTexturePipeline,
_Section_4 = _Section_0 + 400,
EZPlaneGenerator,
EZBoxGenerator,
EZUVSphereGenerator,
_Section_5 = _Section_0 + 500,
_Section_6 = _Section_0 + 600,
_Section_7 = _Section_0 + 700,
_Section_8 = _Section_0 + 800,
_Section_9 = _Section_0 + 900,
}
}