Blur effect

  • #1, by ke4Tuesday, 09. December 2014, 16:24 10 years ago
    Hi,

    is there a theoretical possibility how to use a blur effect on screen but not over all screen, but only use it on the corners?
    Something a bit like blur effect in Misfits?

    Thanks

    Key Killer

    810 Posts


  • #2, by afrlmeTuesday, 09. December 2014, 17:22 10 years ago
    Not unless you write your own GLSL shader code. The blur in the shader toolkit is currently only applicable to the entire scene.

    Imperator

    7278 Posts

  • #3, by ke4Tuesday, 09. December 2014, 17:51 10 years ago
    Okay
    i'll try do it somehow else.

    Key Killer

    810 Posts

  • #4, by TraivlinWednesday, 10. December 2014, 00:50 10 years ago
    That would be an amazing addition, if you could like choose an exact area with screen coordinates or something like that. Fingers crossed. smile

    Newbie

    34 Posts

  • #5, by ke4Sunday, 21. December 2014, 18:59 10 years ago
    Do you have any experience with GLSL? Could you tell how about difficult would it be to learn GLSL?

    Key Killer

    810 Posts

  • #6, by afrlmeSunday, 21. December 2014, 19:10 10 years ago
    No but SimonS does. He told me that it is essentially C. To me most of the GL code he's written in the shader toolkit script looks like pure gibberish to me!

    Imperator

    7278 Posts

  • #7, by ke4Sunday, 21. December 2014, 19:16 10 years ago
    Sounds like a lot of fun razz

    Key Killer

    810 Posts

  • #8, by afrlmeSunday, 21. December 2014, 20:00 10 years ago
    Looks like migraine inducing, eye straining code to me! razz

    Imperator

    7278 Posts

  • #9, by ke4Sunday, 21. December 2014, 20:23 10 years ago
    Okay, stop, i got it grin And respect to SimonS.

    Key Killer

    810 Posts

  • #10, by ke4Monday, 22. December 2014, 15:06 10 years ago
    I would like the blur affect whole screen, but only the edges. I want this because i'm trying to do something like memories effect. I guess i could set the scene from blured images.

    Key Killer

    810 Posts

  • #11, by afrlmeMonday, 22. December 2014, 15:13 10 years ago
    why not just create a semi-transparent white effect & maybe overlay an old movie style effect or maybe desaturate the entire scene?

    First 2 are possible without using the shader. Controlling saturation with the shader however is pretty simple.

    shaderSaturation(0, 3000) -- desaturate in 3s
    shaderSaturation(1, 3000) -- reset saturation over 3s
    

    ...it uses decimal values, so 0 = black & white & 1 = default, 0.5 would be half saturated etc. The shader toolkit script is needed for this to work.

    Imperator

    7278 Posts