GarageGames / Torque3D

MIT Licensed Open Source version of Torque 3D from GarageGames
http://torque3d.org
MIT License
3.35k stars 1.2k forks source link

ppOptionsHDREffectsBlueShiftColorBlend not correct #2239

Open ChelaruCatalin opened 6 years ago

ChelaruCatalin commented 6 years ago

In postFxManager.gui.settings.cs under function PostFXManager::settingsRefreshHDR

the ppOptionsHDREffectsBlueShiftColor.BaseColor = $HDRPostFX::blueShiftColor; ppOptionsHDREffectsBlueShiftColor.PickColor = $HDRPostFX::blueShiftColor;

are not correct. The name of the guicolorpicker is ppOptionsHDREffectsBlueShiftColorBlend

and the fix is :

ppOptionsHDREffectsBlueShiftColorBlend.BaseColor = $HDRPostFX::blueShiftColor; ppOptionsHDREffectsBlueShiftColorBlend.PickColor = $HDRPostFX::blueShiftColor;