Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
ppesmaa.c
Go to the documentation of this file.
3 {
4  static const int PARAM_PRESET = 0;
5 
6  override int GetPostProcessEffectID()
7  {
8  return PostProcessEffectType.SMAA;
9  }
10 
11  override string GetDefaultMaterialPath()
12  {
13  return "Graphics/Materials/postprocess/smaa";
14  }
15 
16  override void RegisterMaterialParameters()
17  {
18  RegisterParameterScalarInt(PARAM_PRESET,"Preset",0,0,3);
19  }
20 }
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
PPESMAA
SMAA - PostProcessEffectType.SMAA.
Definition: ppesmaa.c:2