i got 2 dynamic texture ,and want add second texture color to first texture color But just where first texture color alpha is not 0 something like inverse transparncey i add two pic link to show what is my mean:

http://img.7setare.com/images/k5znp5efpn1szfvwka.png TO http://img.7setare.com/images/vs4p0qx81zxxrfh1v8d5.png

just collisions part must add two texture pixel color

ty for your help

link|improve this question

This question might be better asked on Game Development – Kyle Trauberman Oct 16 '11 at 16:26
1  
This isn't so much "add" as "replace". If you add them, then you'd end up with magenta spots I think. Otherwise some sort of "add" that only effected the RGB channels and ignored A would do what you want. Sorry I can't be much more help than that :) – Merlyn Morgan-Graham Oct 17 '11 at 6:48
feedback

2 Answers

Maybe using BlendState.Additive wil be enough for you.

or maybe it can be achieved with a custom BlendState.. but I have not experience with this...

or you can make a shader, you should note that you have to quads:

  1. Quad with a rag doll. (Qrd)
  2. Quad with a circle. (Qc)

you draw Qc over Qrd...

so you have to traduce the texture coordinates that you get in the pixel shader that owns to Qc to texture cordinates at Qrd space...

then you sample the color from Qrd texture, and if alpha is near zero you clip the pixel... else you return the sample from Qrc texture

link|improve this answer
im kind noob with 2d shader ,can you show asample for this shader plz? – mX64 Oct 17 '11 at 5:40
feedback
up vote 1 down vote accepted

just did it , works great

sampler circleSampler : register(s1);
sampler playerSampler : register(s0);

float4 main(float4 color : COLOR0 ,float2 texCoord : TEXCOORD0):COLOR0
{
float4 output = float4(1,1,1,1);
float4 CircColor = tex2D(circleSampler,texCoord);
float4 playerColor = tex2D(playerSampler,texCoord);
if (CircColor.a ==0)
{
output = playerColor;
}
else
{
output = CircColor* playerColor;
}
output.a = playerColor.a;
return output;
}

technique Technique1
{
    pass Pass1
    {

        PixelShader = compile ps_2_0 main();
    }
}

anyway ty for ur time

link|improve this answer
1  
you have not transformed texture coordinates, so is right if your textures have same size and are drawed in the same position... – Blau Oct 17 '11 at 10:13
yea , both texture have same sizes , ty for your attention :D – mX64 Oct 17 '11 at 11:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.