public void ppOptionsEnableHDRDebugonAction(coGuiCheckBoxCtrl thisobj) { if (thisobj.getValue().AsBool()) { ((coPostEffect)"LuminanceVisPostFX").enable(); } else { ((coPostEffect)"LuminanceVisPostFX").disable(); } }
public void ppOptionsEnableonAction(string thisobj) { coGuiCheckBoxCtrl ppOptionsEnable = "ppOptionsEnable"; PostFXManagersettingsSetEnabled(thisobj, ppOptionsEnable.getValue().AsBool() ? true.AsString() : false.AsString()); }
public void ppOptionsDOFEnableDOFonAction(coGuiCheckBoxCtrl thisobj) { sGlobal["$PostFXManager::PostFX::EnableDOF"] = thisobj.getValue(); ppOptionsUpdateDOFSettings(); }
public void ppOptionsDOFEnableAutoFocusonAction(coGuiCheckBoxCtrl thisobj) { sGlobal["$DOFPostFx::EnableAutoFocus"] = thisobj.getValue(); DOFPostEffectsetAutoFocus("DOFPostEffect", thisobj.getValue().AsBool()); }
public void ppOptionsHDREffectsBlueShiftonAction(coGuiCheckBoxCtrl thisobj) { sGlobal["$HDRPostFX::enableBlueShift"] = thisobj.getValue(); }