Skyrim
Letterbox

Image information

Added on

Uploaded by

boerthi

About this image

How can I add such a letterbox in other ENBs? On google I found that I have to delete the "//" in front of \"#define HD6_VIGNETTE\" in the enbeffect.fx. It should be arround line 100, but in Project Matso this line doesn´t even appear.

please comment if you got an idea.

This screenshot is taken from the super realistic Cinema ENB by donlucka. http://skyrim.nexusmods.com/mods/16327

2 comments

  1. kaldaar
    kaldaar
    • supporter
    • 250 kudos
    maybe check this from the readme.

    2.3. Letterbox effect (LTB) (what you found on Gggl refers to an other enbeffectfx file an older one I think)

    LTB is present within the enbeffect.fx file. Thus, to enable it uncomment the flag USE_LETTERBOX_EFFECT in the file. The effect uses single variable
    (fLetterboxOffset) to govern the amount of the screen to be set to black color. It is percentage of the screen. Set to 0 means no black bars, while set
    to 50, covers all screen with them - pure darkness.

    it's near line 25 if you open it with Notepad++
    remove the // in front of #define USE_LETTERBOX_EFFECT1

    then check this line
    float2 fvTexelSize = float2(1.0 / 1920.0, 1.0 / 1080.0);

    and change screen rez so it fits your screen rez.
    ie for me it should look like (for my 1920x1200 screen)
    float2 fvTexelSize = float2(1.0 / 1920.0, 1.0 / 1200.0);

    hope I'm not wrong and hope it helped.
  2. Timmy19992
    Timmy19992
    • account closed
    • 37 kudos
    Copy those lines from cinema enb and put them in matsos . Don't ask me where though, this is just what I would did and it would be simply blind luck test.