Gamestudio Links
Zorro Links
Newest Posts
How to select between IB accounts by script?
by AndrewAMD. 06/13/26 15:44
Zorro tutorial ideas?
by AndrewAMD. 06/13/26 15:01
Zorro 3.01 recoded MMI function issue
by 11honza11. 06/13/26 11:40
Max Number of Strategies in /Strategy folder
by Martin_HH. 06/12/26 08:50
Stooq now requires an API key
by AndrewAMD. 06/11/26 17:55
Z9 getting Error 058
by k_ivan. 06/10/26 14:38
ZorroGPT
by TipmyPip. 06/10/26 13:07
Z12 live performance
by alx. 06/09/26 20:42
AUM Magazine
Latest Screens
Dorifto samurai
Shadow 2
Rocker`s Revenge
Stug 3 Stormartillery
Who's Online Now
3 registered members (Grant, Quad, VHX), 1,886 guests, and 4 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Student_64151, Koti, curry, DeepxKalsi, Samed
19219 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Scale mtlSkin1? #150142
08/25/07 06:39
08/25/07 06:39
Joined: Feb 2003
Posts: 211
Unna
F
Freddy_dup1 Offline OP
Member
Freddy_dup1  Offline OP
Member
F

Joined: Feb 2003
Posts: 211
Unna
Hello,

this is the shader I`m using.
Is there a way to scale the dirt-texture to a much bigger size than the entSkin1???

Code:

bmap dirt_map = <wall_dirt.bmp>;

material wall_108
{
skin1 = dirt_map;

effect
"
texture entSkin1; // block texture
texture entSkin2; // shadow texture
texture mtlSkin1; // dirt texture

technique test
{
pass p0
{
Texture[0] = <entSkin1>; // block
Texture[1] = <entSkin2>; // shadow
Texture[2] = <mtlSkin1>; // dirt

TexCoordIndex[0] = 1;
TexCoordIndex[1] = 0;
TexCoordIndex[2] = 1;

pixelshader = asm
{
ps.1.1

tex t0
tex t1
tex t2

add r1, t0, t2
mul r0, r1, t1
};
}
}
";
}



Last edited by Freddy; 08/25/07 06:40.
Re: Scale mtlSkin1? [Re: Freddy_dup1] #150143
10/10/07 09:07
10/10/07 09:07
Joined: Dec 2003
Posts: 1,097
Maryland, USA
Steempipe Offline
Serious User
Steempipe  Offline
Serious User

Joined: Dec 2003
Posts: 1,097
Maryland, USA
Since you're not doing any texcoord work in a vertexshader maybe you can try adding this?

TextureTransformFlags[2] = Count2;
TextureTransform[2]=
{ 1.0 , 0.0, 0.0 ,0.0,
0.0, 1.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0,
0.0, 0.0, 0.0, 0.0
};

Change the green hilighted numbers to your scaling.


Moderated by  Blink, Hummel, Superku 

Gamestudio download | 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