Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
ppechromaber.c
Go to the documentation of this file.
3 {
4  static const int PARAM_POWERX = 0;
5  static const int PARAM_POWERY = 1;
6 
7  static const int L_0_INTRO = 100;
8  static const int L_1_INTRO = 100;
9 
10  override int GetPostProcessEffectID()
11  {
12  return PostProcessEffectType.ChromAber;
13  }
14 
15  override string GetDefaultMaterialPath()
16  {
17  return "Graphics/Materials/postprocess/chromaber";
18  }
19 
20  override void RegisterMaterialParameters()
21  {
22  RegisterParameterScalarFloat(PARAM_POWERX,"PowerX",0.0,0.0,0.05);
23  RegisterParameterScalarFloat(PARAM_POWERY,"PowerY",0.0,0.0,0.05);
24  }
25 }
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
PPEChromAber
ChromAber - PostProcessEffectType.ChromAber.
Definition: ppechromaber.c:2