Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Loading...
Searching...
No Matches
ppegaussfilter.c
Go to the documentation of this file.
1
3{
4 static const int PARAM_INTENSITY = 0;
5
6 static const int L_0_ADS = 100;
7 static const int L_0_SHOCK = 200;
8 static const int L_0_FEVER = 300;
9 static const int L_0_FLASHBANG = 400;
10 static const int L_0_INV = 500;
11 static const int L_0_MENU = 600;
12 static const int L_0_CONTROLS = 700;
13 static const int L_0_LATENCY = 750;
14 static const int L_0_TUTORIALS = 800;
15 static const int L_0_FEEDBACK = 850;
16 static const int L_0_SERVER_BROWSER = 900;
17 static const int L_0_DISCONNECT = 1000;
18
20 {
21 return PostProcessEffectType.GaussFilter;
22 }
23
24 override string GetDefaultMaterialPath()
25 {
26 return "Graphics/Materials/postprocess/gauss";
27 }
28
30 {
31 RegisterParameterScalarFloat(PARAM_INTENSITY,"Intensity",0.0,0.0,1.0);
32 }
33}
void RegisterParameterScalarFloat(int idx, string parameter_name, float default_value, float min, float max)
WARNING - min/max values are usually taken from Workbench defaults, may not be actual min/max values ...
void PPEClassBase(string mat_path_override="")
GaussFilter - PostProcessEffectType.GaussFilter.
override void RegisterMaterialParameters()
static const int L_0_LATENCY
static const int L_0_SHOCK
static const int L_0_DISCONNECT
override string GetDefaultMaterialPath()
override int GetPostProcessEffectID()
static const int L_0_TUTORIALS
static const int L_0_FLASHBANG
static const int L_0_MENU
static const int L_0_INV
static const int L_0_FEVER
static const int L_0_ADS
static const int PARAM_INTENSITY
static const int L_0_FEEDBACK
static const int L_0_SERVER_BROWSER
static const int L_0_CONTROLS
PostProcessEffectType
Post-process effect type.
Definition enworld.c:72