File information

Last updated

Original upload

Created by

FricoRico

Uploaded by

FricoRico

Virus scan

Safe to use

658 comments

  1. LizardLuv
    LizardLuv
    • premium
    • 1 kudos
    Should add a " enabled " " color correction on/off " text popup that fades after a second or so.  
  2. sillyostrich
    sillyostrich
    • supporter
    • 0 kudos
    Does anyone else get weird artifacts when panning the camera? Like ghosting around the edge of weapons?
    1. entroponetic
      entroponetic
      • premium
      • 0 kudos
      Are you using dlss? Cause dlss does that.
  3. GRUmod
    GRUmod
    • premium
    • 243 kudos
    Really great, the only issue is Nights aren't dark enough for me, theyre somewhat bright, even with a setting of Exposure that still makes days look nice, theyre too light at night.
  4. RicoJumpy
    RicoJumpy
    • supporter
    • 6 kudos
    Sadly, the settings do not get properly applied on loading into an interior.
    This forces the user to enable / disable the mod every time you switch to get the settings properly applied and nothing I did could solve this.
    Report of this was left without answer.
    Ah well.
  5. MISTERSMELLIES
    MISTERSMELLIES
    • supporter
    • 25 kudos
    This mod would be perfect if we could independently adjust interior, exterior and day/night.
  6. Result19
    Result19
    • member
    • 0 kudos
    Man, I'm fiddling with this like crazy because I want to use it so bad, the nights look amazing. But during the day it's just too bright. It's nuclear chalky white in bright sun, the sky is too blue, it's just too much. Using no fog outdoors and a lite reshade makes it even worse, but even without those it's too bright. Unfortunately have to skip because of that. But I tracked it and will try each new release because I want to love it.
    1. MoTurtle
      MoTurtle
      • supporter
      • 0 kudos
      I'm in the same boat, I pair this with a Cyrodilic preset and it's amazing combined, but the brightness is just a bit much. I am still using it, though, I can't go back now
    2. mathew118
      mathew118
      • supporter
      • 0 kudos
      Its fixable with the right config. Best thing to do is find a sunny/bright spot in the game, use alt + page down until the brightness is at a good level. Then in the config.ini file in the mod folder, lower the ExteriorShadowContrast value so that nights aren't too dark now. For me, a good value for it is 0.65. Make sure to restart your game for the config changes to take effect.
    3. digibluez
      digibluez
      • premium
      • 2 kudos
      its unbareable to use nighteye skill, even outside, you are blinded by blue hue even at night times
    4. Osprey00
      Osprey00
      • member
      • 1 kudos
      You can press Alt+PgDn repeatedly to lower the brightness. To reduce the blue, you can try editing the mod's config.ini. There's an ExteriorBlueCorrection line that may help. In general, you might be able to fix any issue by adjusting the settings in config.ini.
    5. Result19
      Result19
      • member
      • 0 kudos
      I think the main problem and the reason why multiple people suggesting using the hotkeys is not helpful is that all of the adjustments are universal and apply day and night, indoors and outdoors. Lowering the brightness makes it impossible to see indoors. Adjusting the hue to fix Nighteye being too blue or make the sky less blue will throw off the color balance on everything, not just the problem areas. Matthew above suggested lowering the brightness and then also adjusting the contrast values, which I haven't tried yet but may help. 

      Either way, I tried Ultra Plus and like that almost as much at night and indoors, more during the day and it also fixes several graphical issues like grainy shadows and improves performance, so I'll stick with that for now.
    6. keykey191
      keykey191
      • supporter
      • 2 kudos
      If you don’t like the blue shade it’s because his color correction white temp is on the higher end. If you don’t want that turn color correction off and use Alyeid 3 or 4 depending on likes for ips panel monitor. Or use my reshade if you have a oled. They are a more fine tuned color correction since he just implemented it and haven’t gotten those settings fine tuned. 
  7. keykey191
    keykey191
    • supporter
    • 2 kudos
    Base Game

    After Reshade and Lumen remastered.



    2.5 version shadows looks really good and im loving every little bit of Lumen remastered. 

    Looking for reflection bloom settings and i think it would be PERFECT. The Glare off shiny/white surfaces are a bit too bright but if you adjust exposure then everything else is too dark. Also for my opinion of taste the color difuse from torches or flames AOE radius a little too much or too big. Most houses turn almost completely red/orange  
    1. Zanderat
      Zanderat
      • premium
      • 249 kudos
      Adjust it without the ReShade first.  Then add the Reshade and tweak that if necessary.
    2. keykey191
      keykey191
      • supporter
      • 2 kudos
      trying to find these settings first i adjust stuff but barely anything changes
    3. Osprey00
      Osprey00
      • member
      • 1 kudos
      Edit the mod's config.ini. There are settings for bloom, reflection and shadows that may help you achieve what you want.
    4. keykey191
      keykey191
      • supporter
      • 2 kudos
      I have changed these settings but they barely change the visual of the game for me. I go from .7 bloom to .1 and nothing really changes. 
  8. sillyostrich
    sillyostrich
    • supporter
    • 0 kudos
    Is there an alternate method for modifying brightness? My keyboard lacks page up/down keys.
    1. keykey191
      keykey191
      • supporter
      • 2 kudos
      ExteriorShadowContrast = 0.8
      InteriorShadowContrast = 0.86

      Inside the config.ini im pretty sure. when i hit page up or page down these change

      RegisterKeyBind(Key.PAGE_DOWN, { ModifierKey.ALT }, function()
          if IsOutside() then
              config["AutoExposure"].ExteriorBias = config["AutoExposure"].ExteriorBias - 0.2
              config["AutoExposure"].ExteriorShadowContrast = config["AutoExposure"].ExteriorShadowContrast + 0.02
          elseif IsInDungeon() then
              config["AutoExposure"].DungeonOffset = config["AutoExposure"].DungeonOffset - 0.2
          else
              config["AutoExposure"].InteriorBias = config["AutoExposure"].InteriorBias - 0.2
              config["AutoExposure"].InteriorShadowContrast = config["AutoExposure"].InteriorShadowContrast + 0.02
          end
          ConfigHelper.writeIniFile(config)
          UpdateInteriorAndExteriorSettings()
      end)
      RegisterKeyBind(Key.PAGE_UP, { ModifierKey.ALT }, function()
          if IsOutside() then
              config["AutoExposure"].ExteriorBias = config["AutoExposure"].ExteriorBias + 0.2
              config["AutoExposure"].ExteriorShadowContrast = config["AutoExposure"].ExteriorShadowContrast - 0.02
          elseif IsInDungeon() then
              config["AutoExposure"].DungeonOffset = config["AutoExposure"].DungeonOffset + 0.2
          else
              config["AutoExposure"].InteriorBias = config["AutoExposure"].InteriorBias + 0.2
              config["AutoExposure"].InteriorShadowContrast = config["AutoExposure"].InteriorShadowContrast - 0.02
          end
          ConfigHelper.writeIniFile(config)
          UpdateInteriorAndExteriorSettings()
      end)

      Im also pretty sure havent tested it out but the keybinds can be changed where it says Key.(keybind) inside main.lua
  9. rodrigones2
    rodrigones2
    • member
    • 0 kudos
    Hey, nice mod

    but i found some weird bug when using XeSS (right)

  10. Nekarat
    Nekarat
    • premium
    • 0 kudos
    Does this have a UI like reshade to adjust settings on the fly or does it require changes in the config and then restart the game to see changes?

    Would be great if there is a description as to what each setting actually does, thanks!
    1. smbooke
      smbooke
      • member
      • 0 kudos
      There is no UI for this mod, any desired changes would have to be made in the config file.

      From what I've experimented with so far, DungeonOffset is the exposure (maybe the strength of shadows too) inside of dungeons only. In my testing this only applies to caves and not forts.

      Interior/Exterior biases: strength of shadows for both areas, respectively (I believe it has to do with the bias of the global illumination levels for any specific time of day or weather).

      Shadow contact: exactly as it sounds. Purely affects the visual strength of the shadows without any bias from global illuminations or blooms. 

      Some of my definitions could be a bit off, however the changes made by modifying the values of what I have named will have the effects I listed
    2. YungFattin
      YungFattin
      • premium
      • 3 kudos
      There are in game controls, please see mod description
    3. Nekarat
      Nekarat
      • premium
      • 0 kudos
      Please advise, I could not get working with ALT+END, are you able to post a screenshot of what the in game controls are please??
    4. Nekarat
      Nekarat
      • premium
      • 0 kudos
      Thanks for that, still trying to get some sort of consistency with this, one day it looks perfect and then the interiors are ultra dark with blown out shadows etc, having a hard time as the author has not described what each setting does, unlike reshade where you adjust on the fly, a description would make it super easy to fix and get right, its very annoying as I want to use this mod but really im flying blind with the apparent inconsistencies I get!