Search Unity

Blur Effect like Alto's Adventure For Game Over Screen

Discussion in 'Image Effects' started by 1ht1baron, Jan 26, 2018.

  1. 1ht1baron

    1ht1baron

    Joined:
    Aug 15, 2017
    Posts:
    65
    How can i do 2D blur effect like Alto's Adventure. I did not find any tutorial about it. I want to get blurred background it and write Game Over like this (3:13):

    Have a nice days.
     
    Last edited: Jan 26, 2018
  2. mcolombo

    mcolombo

    Joined:
    Sep 27, 2017
    Posts:
    16
    I need the exact same thing.

    Anyone?
     
  3. 1ht1baron

    1ht1baron

    Joined:
    Aug 15, 2017
    Posts:
    65
    I found something.
    https://www.assetstore.unity3d.com/en/#!/content/83913
    Download and import. Add Blur Optimized to your camera. So, blur effect will work.
    Open BlurOptimized script. Change public float blurSize = 3; to public float blursize;
    And add following codes to BlurOptimized script.

    Code (CSharp):
    1.  
    2.         void Start ()
    3.         {
    4.             blurSize = 0f;
    5.         }
    6.         void Update()
    7.         {
    8.             if (blurSize <= 3f) {
    9.                 blurSize += Time.deltaTime;
    10.             }
    11.             else
    12.             {
    13.                 blurSize = 3f;
    14.             }
    15.  
    16.         }
    If you add Game Over Screen or any buttons after blur, you create a new camera and add to its canvas. Clear Flags in new camera should be Don't Clear.
     
    Last edited: Jan 26, 2018
  4. 1ht1baron

    1ht1baron

    Joined:
    Aug 15, 2017
    Posts:
    65
    But, blur optimized has very bad performance on Mobile device. What can i do?
     
  5. MadeFromPolygons

    MadeFromPolygons

    Joined:
    Oct 5, 2013
    Posts:
    3,983
    Try adding some bloom, it looks like it could be blur coming from bloom contribution

    EDIT: actually no it doesnt, but try it anyway XD
     
  6. Kumo-Kairo

    Kumo-Kairo

    Joined:
    Sep 2, 2013
    Posts:
    343
  7. grrava

    grrava

    Joined:
    Nov 11, 2012
    Posts:
    46