Search Unity

Aged Cracked (Craquelure) Oil Paintings

Discussion in 'Editor & General Support' started by potter3366, Oct 10, 2012.

  1. potter3366

    potter3366

    Joined:
    Oct 15, 2009
    Posts:
    65
    Is there any oil painting camera effect (Image Effect Script) free or on Asset Store ??


     
    Last edited: Oct 10, 2012
  2. hippocoder

    hippocoder

    Digital Ape

    Joined:
    Apr 11, 2010
    Posts:
    29,723
    Use Unity Diffuse Bump Spec.

    You'll obviously need a light and a quad with the image on it and a decent normal map.
     
  3. antenna-tree

    antenna-tree

    Joined:
    Oct 30, 2005
    Posts:
    5,324
    I don't think he's simply trying to recreate the painting in Unity hippo ;-) - I think he's referring to a NPR technique/effect for making a scene look like an old oil painting.

    There aren't any image effects on the Asset Store that achieve this effect AFAIK. You'll probably have to pay someone to do an effect as specific as this.
     
  4. hippocoder

    hippocoder

    Digital Ape

    Joined:
    Apr 11, 2010
    Posts:
    29,723
    Alternatively if realtime lighting of the cracks is unimportant it might just be easier to blit an alpha texture over the screen.

    edit: you're right Ethan :D
     
  5. potter3366

    potter3366

    Joined:
    Oct 15, 2009
    Posts:
    65
    I have tried with this, but it doesn't works:

    var aTexture : Texture;

    function Start() {
    if(!aTexture)
    Debug.LogError("A texture is missing.");
    }

    function Update () {
    Graphics.Blit (aTexture, null);
    }