Hi
i have a background and two png sprites
I want to make this effect using the provided background and sprites using XNA 3.1
I'm doing something wrong because i only get this As you noticed its not the effect i wanna do
It is possible do this effect with a few lines of code using alpha blending in XNA 3.1? A practical example would be really great!
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
|
|
First, render textures that contain the shapes that you want to be transparent to texture A. The textures containing the shapes should contain black shapes, on a transparent background -- easily constructed with image editing software like Photoshop. Then take texture A and draw it over top of your scene using an effect (an HLSL shader) that does:
Effectively making the output image's alpha lower where A is darker. The image will have clear portions where you drew your shapes on A, and will be black everywhere else. Here are the details of the shader code:
|
|||||||||||||||
|
|
If you want a solution without shader. You first need your fog of war textures to be black with the transparent parts as White.
|
|||
|
|