Tagged Questions
2
votes
1answer
86 views
How to calculate distance for fog effect model on xna?
I struggled for some time to add a fog effect in my xna games.
I work with a custom shader effect in a file (. Fx).
The "PixelShaderFunction" works without error. But the problem is that all my land ...
0
votes
1answer
515 views
C#/HLSL & XNA - Blending 2 colors together via percentage in HLSL
I'm creating a fog feature in my Effect file.. in the pixel shader, I calculate the distance from the camera position and the input's position, as so:
float x = distance(_in.pos3d, ...