public void ppOptionsEnableHDRDebugonAction(coGuiCheckBoxCtrl thisobj)
     {
     if (thisobj.getValue().AsBool())
         ((coPostEffect)"LuminanceVisPostFX").enable();
     else
         ((coPostEffect)"LuminanceVisPostFX").disable();
     }
 public void ppOptionsDOFEnableAutoFocusonAction(coGuiCheckBoxCtrl thisobj)
     {
     sGlobal["$DOFPostFx::EnableAutoFocus"] = thisobj.getValue();
     DOFPostEffectsetAutoFocus("DOFPostEffect", thisobj.getValue().AsBool());
     }
 public void ppOptionsDOFEnableDOFonAction(coGuiCheckBoxCtrl thisobj)
     {
     sGlobal["$PostFXManager::PostFX::EnableDOF"] = thisobj.getValue();
     ppOptionsUpdateDOFSettings();
     }
 public void ppOptionsHDREffectsBlueShiftonAction(coGuiCheckBoxCtrl thisobj)
     {
     sGlobal["$HDRPostFX::enableBlueShift"] = thisobj.getValue();
     }
 public void ppOptionsHDRToneMappingonAction(coGuiCheckBoxCtrl thisobj)
     {
     }
 public void ppOptionsHDRBloomonAction(coGuiCheckBoxCtrl thisobj)
     {
     sGlobal["$HDRPostFX::enableBloom"] = thisobj["value"];
     thisobj["toolTip"] = "Value : " + thisobj["value"];
     }