Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
ppesmaa.c
Go to the documentation of this file.
1
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}
Created once, on manager init. Script-side representation of C++ material class, separate handling.
void RegisterParameterScalarInt(int idx, string parameter_name, int default_value, int min, int max)
SMAA - PostProcessEffectType.SMAA.
Definition ppesmaa.c:3
PostProcessEffectType
Post-process effect type.
Definition enworld.c:72