Gamestudio Links
Zorro Links
Newest Posts
Change chart colours
by 7th_zorro. 05/11/24 09:25
Data from CSV not parsed correctly
by dr_panther. 05/06/24 18:50
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (TipmyPip, AndrewAMD), 1,151 guests, and 4 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Hanky27, firatv, wandaluciaia, Mega_Rod, EternallyCurious
19051 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Help with material effect #129943
05/15/07 02:27
05/15/07 02:27
Joined: May 2007
Posts: 30
F
fusukery Offline OP
Newbie
fusukery  Offline OP
Newbie
F

Joined: May 2007
Posts: 30
I am making a simple effect, a texture is on top of other texture/shader and blending in with them multiply mode.
I have tried by fail .. Could anyone have done it please help. I have try to find in the manual but the effect manual is too bad!
My code
Code:

bmap bcube=<cube+6.tga>;

function mtl_envmap_view()
{
mat_set(mtl.matrix,matViewInv);
mtl.matrix41=0;
mtl.matrix42=0;
mtl.matrix43=0;
}

function mtl_envmap_init()
{
bmap_to_cubemap(mtl.skin1);
mtl.event=mtl_envmap_view;
mtl.enable_view=on;
}

material mtl_envmap
{
skin1=bcube;
event=mtl_envmap_init;

effect=
"
texture entSkin1;
texture mtlSkin1;
matrix matMtl;
technique envmap
{
pass p0
{
Texture[0] = <entSkin1>;
ColorArg1[0] = Texture; // stage 0 = skin texture
ColorOp[0] = Modulate2x;
ColorArg2[0] = Diffuse; // modulate by lighting
}
pass p1
{
texture[0]=<entSkin1>;
texture[1]=<mtlSkin1>;

zWriteEnable=true;
alphaBlendEnable=false;

colorArg1[0]=Texture;
colorOp[0]=Modulate2x;
colorArg2[0]=Diffuse;

colorArg1[1]=Texture;
colorOp[1]=blendCurrentAlpha;


addressU[1]=Clamp;
addressV[1]=Clamp;
texCoordIndex[1]=cameraSpaceReflectionVector;
textureTransformFlags[1]=Count3;
textureTransform[1]=<matMtl>; // transform camera space back to world space
}
}
";
}



This is the code of an enviroment cube map.. Now, I want to make a texture blend over the shader. I think I must write a new pass, blend with the existing pass, but do not know how to do ?

Re: Help with material effect [Re: fusukery] #129944
05/17/07 07:05
05/17/07 07:05
Joined: May 2007
Posts: 30
F
fusukery Offline OP
Newbie
fusukery  Offline OP
Newbie
F

Joined: May 2007
Posts: 30
No one knows, please help a newbie

Re: Help with material effect [Re: fusukery] #129945
05/21/07 08:30
05/21/07 08:30
Joined: May 2007
Posts: 30
F
fusukery Offline OP
Newbie
fusukery  Offline OP
Newbie
F

Joined: May 2007
Posts: 30
So bad, I still can not solve this problem

Re: Help with material effect [Re: fusukery] #129946
05/21/07 15:06
05/21/07 15:06
Joined: Jan 2003
Posts: 4,615
Cambridge
Joey Offline
Expert
Joey  Offline
Expert

Joined: Jan 2003
Posts: 4,615
Cambridge
most of the keywords are case-sensitive afaik.

Re: Help with material effect [Re: Joey] #129947
05/21/07 16:36
05/21/07 16:36
Joined: May 2007
Posts: 30
F
fusukery Offline OP
Newbie
fusukery  Offline OP
Newbie
F

Joined: May 2007
Posts: 30
Quote:

most of the keywords are case-sensitive afaik.



ehm...do not understand what u mean


Moderated by  Blink, Hummel, Superku 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1