Pixel Shaders examples

Welcome to our brand new Clickteam Community Hub! We hope you will enjoy using the new features, which we will be further expanding in the coming months.

A few features including Passport are unavailable initially whilst we monitor stability of the new platform, we hope to bring these online very soon. Small issues will crop up following the import from our old system, including some message formatting, translation accuracy and other things.

Thank you for your patience whilst we've worked on this and we look forward to more exciting community developments soon!

Clickteam.
  • Im curious what about making "drop shadow" pixel shader.
    It could just add image's copy to X,Y offset of original object and set black colouring and transparency. Would be great for strings that are often hardly readble if you are using them in game and dont want to make extra black semi-transparent string for shadow effect.
    Would it work?

  • Quote from Blizna

    Im curious what about making "drop shadow" pixel shader.
    It could just add image's copy to X,Y offset of original object and set black colouring and transparency. Would be great for strings that are often hardly readble if you are using them in game and dont want to make extra black semi-transparent string for shadow effect.
    Would it work?


    There is already such a shader in Looki's shader pack

  • Would anyone be willing to help me with one pixelshader? I'm trying to make normalmapping shader but it does not work very well. I dont know if its because of bad light vector or something inside shader itself(probably both).
    here is link
    Please login to see this link.
    Any help would be greatly appreciated.

  • The problem lies where you retrieve the vector from the normal map...

    Code
    float3 normal = tex2D(NormalMap, In.Texture);


    It will return values in the range 0 to 1 for the rgb values so your vector will always be positive..
    You need to turn those values into the range -1 to 1

    Code
    normal.r = normal.r * 2 - 1;
    normal.g = normal.g * 2 - 1;
    normal.b = normal.b * 2 - 1;

    /Daniel
    <span style="font-weight: bold"> </span>
    Please login to see this link.

  • Hey, I noticed on things like the Sin Wave and Underwater effect shaders, that if you apply them to a layer, and you scroll the window, the effect doesn't scroll along with it. I understand why this is probably the case, but is there an easy way to synchronize the scrolling with the frequency so that this does not occur?

    I have it applied to a "water" layer that is under the "ground" layer (top down view) so that the water looks like it is moving. It works great, but the water speeds up/slows down when the character walks around, which looks really strange.

  • Are there any shaders that create a nice paper-texture effect? Would be nice to be able to apply that to an entire layer and have a paper-look game :)

    Please login to see this link.

  • Quote from Sphax


    [color:#FF0000]- [/color]Shaders to change the rendering quality thanks to the algorythms Scale2x, CS-Scale2x, TV and also maybe SuperEagle (currently it don't works well) and HQ2x (currently, it don't works at all ^^).


    looking forward to any of these.

    Please login to see this link.

  • Same here, there was a new pack on the way which had other stuff also. Im not sure what has happened to Sphax because there was a vector shape object being made also and then things just stopped and there has been no news in a long time now. :(

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!