Questions tagged [image-effects]
The image-effects tag has no summary.
23 questions
0 votes
1 answer
134 views
Show an image as Tooltip in a Unity 3D
I got the following question: How to show an image as Tooltip in a Unity3D? The image should only be visible if the user hovers over the 3d object. Thanks in advance, hidayah
0 votes
1 answer
4k views
How to get neigbor pixel coordinates in Unity HLSL shader
I am writing Mandelbrot set shader for Unity. I wrote an Image Effect shader and it works. Unfortunately, each point "shimmers" on translate scale. This is because, for each shader call I ...
0 votes
2 answers
159 views
Which image effect is this?
This is a screenshot from RE7. I have once seen the same image effect in Unity, but I don't remember the name: I'm not talking about AA or DOF here, I mean this grainy / greenish thing, I don't know ...
0 votes
0 answers
848 views
SSAO in my unity games has flickering lines at the top and right side of the screen
I've tried both the built-in unity ambient occlusion that comes with the post-processing stack, as well as another one ported from the Microsoft MiniEngine by someone: https://github.com/keijiro/...
1 vote
1 answer
5k views
Unity - blur on one camera effects the other as well
I'm trying to fake a DOF effect for Sprites by using 2 cameras, one for the sharp objects, one for the blurred ones. I have set up the layers like Blur and Sharp accordingly. So I have these 2 ...
0 votes
1 answer
641 views
How To Fix Strange White Edges With DOF and Fog in Unity?
I'm using global fog and the standard assets Depth Of Field script but it has a strange effect on the edges of far away objects. How can I make the white edges along the trees blend smoothly into the ...
3 votes
1 answer
2k views
Selective Image Effects with Stencils
I am trying to create an image effect where only a part of the image has the effect applied to. One way I can think of to do this is to define the portion of the image using the stencil buffer. ...
3 votes
0 answers
1k views
Change color of bitmap
I am attempting to understand the easeljs ColorFilter and its use with cache. There is quite a bit of information at the easeljs site but it's not clear based upon the examples and documentation. ...