| | |
| | |
| | class PPEDepthOfField: PPEClassBase |
| | { |
| | static const int PARAM_DOFLQ = 0; |
| | static const int PARAM_FOCALDISTANCE = 1; |
| | static const int PARAM_HYPERFOCAL = 2; |
| | static const int PARAM_FOCALOFFSET = 3; |
| | static const int PARAM_BLURFACTOR = 4; |
| | static const int PARAM_SIMPLEDOF = 5; |
| | static const int PARAM_SIMPLEHFNEAR = 6; |
| | static const int PARAM_SIMPLEDOFSIZE = 7; |
| | static const int PARAM_SIMPLEDOFGAUSS = 8; |
| | |
| | override int GetPostProcessEffectID() |
| | { |
| | return PostProcessEffectType.DepthOfField; |
| | } |
| | |
| | override string GetDefaultMaterialPath() |
| | { |
| | string ret = "Graphics/Materials/postprocess/depthoffieldTest2"; |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | return ret; |
| | } |
| | |
| | override void RegisterMaterialParameters() |
| | { |
| | RegisterParameterScalarBool(PARAM_DOFLQ,"DOFLowQuality",false); |
| | RegisterParameterScalarFloat(PARAM_FOCALDISTANCE,"FocalDistance",0.1,0.0,1.0); |
| | RegisterParameterScalarFloat(PARAM_HYPERFOCAL,"HyperFocal",0.85,0.1,100.0); |
| | RegisterParameterScalarFloat(PARAM_FOCALOFFSET,"FocalOffset",0.0,0.0,1.0); |
| | RegisterParameterScalarFloat(PARAM_BLURFACTOR,"BlurFactor",4.0,0.0,10.0); |
| | RegisterParameterScalarBool(PARAM_SIMPLEDOF,"SimpleDOF",false); |
| | RegisterParameterScalarFloat(PARAM_SIMPLEHFNEAR,"SimpleHyperFocalNear",0.7,0.1,100.0); |
| | RegisterParameterScalarInt(PARAM_SIMPLEDOFSIZE,"SimpleDOFSize",2.0,1.0,4.0); |
| | RegisterParameterScalarInt(PARAM_SIMPLEDOFGAUSS,"SimpleDOFGauss",1.0,0.0,4.0); |
| | } |
| | }; |