Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
ppegaussfilter.c
Go to the documentation of this file.
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_TUTORIALS = 800;
14  static const int L_0_SERVER_BROWSER = 900;
15  static const int L_0_DISCONNECT = 1000;
16 
17  override int GetPostProcessEffectID()
18  {
19  return PostProcessEffectType.GaussFilter;
20  }
21 
22  override string GetDefaultMaterialPath()
23  {
24  return "Graphics/Materials/postprocess/gauss";
25  }
26 
27  override void RegisterMaterialParameters()
28  {
29  RegisterParameterScalarFloat(PARAM_INTENSITY,"Intensity",0.0,0.0,1.0);
30  }
31 }
PostProcessEffectType
PostProcessEffectType
Post-process effect type.
Definition: enworld.c:71
PPEClassBase
Created once, on manager init. Script-side representation of C++ material class, separate handling.
Definition: ppematclassesbase.c:2
PPEGaussFilter
GaussFilter - PostProcessEffectType.GaussFilter.
Definition: ppegaussfilter.c:2