I’m stuck trying to figure out how to implement tiling and offset for multiple texture slots in my Unity surface shader. I’ve made a custom shader based on Unity’s standard surface shader, but I’ve hit a wall. Right now, it seems that only the albedo texture slot (_MainTex) is responding to the tiling and offset properties. I want to get the same functionality for my normal texture slot (_NormalTex), but I can’t seem to get it to work.
Here’s the thing: when I adjust the tiling and offset for the _MainTex in the material properties, everything behaves as expected. The texture scales up or down based on the values I put in. But then I tried to do the same for the _NormalTex and nothing happens; it just stays the same no matter what values I enter.
From what I understand, I should be able to have individual control over each texture’s tiling and offset, right? I checked my shader code and noticed that I’m only passing the _MainTex UVs (IN.uv_MainTex) to the tex2D function for both the albedo and normal textures. Shouldn’t I set up separate UVs for each texture slot to properly support the tiling and offset functionality?
I’m a bit overwhelmed with where to go from here. I mean, I want to maintain the integrity of the surface shading, but I also want full control over the textures. I was thinking of perhaps defining new UV inputs for my normal texture or modifying the input structure, but I’m not really sure how to approach this.
Anyone else run into this issue or have any pointers on how to correctly set up the tiling and offset for multiple texture slots in a surface shader? Any advice or code snippets would be super helpful! Thanks!
Texturing Troubles in Unity Surface Shader
It sounds like you’re dealing with a common issue when it comes to handling multiple texture slots in Unity shaders. You’re right that you should be able to control the tiling and offset for both your albedo (_MainTex) and normal (_NormalTex) textures.
The key thing here is that you need to use different UVs for each texture. It seems like you’re only using the UVs for _MainTex (IN.uv_MainTex) for both textures, which is why _NormalTex isn’t reacting to the tiling and offset settings you input.
Here’s a rough idea of what you can do:
float2 uv_NormalTex;
.Tiling
andOffset
for both the albedo and normal textures separately.Here’s a tiny code snippet to illustrate:
Also, don’t forget to define the tiling and offset parameters for your normal texture in the properties section of the shader, like this:
Then make sure to read the tiling and offset values in your shader code and apply them to the UVs of _NormalTex. This way, you’ll maintain the integrity of your surface shading while having complete control over your textures!
Good luck and happy coding!
The issue you’re experiencing arises because right now you’re only using UV coordinates for your
_MainTex
(e.g.,IN.uv_MainTex
) for sampling both textures. This means your normal map texture,_NormalTex
, is locked to the same tiling and offset parameters as your albedo texture. To independently control tiling and offsets for multiple texture slots, you need to define separate UV inputs for each texture in your shader’s input structure and then apply Unity’s built-inTRANSFORM_TEX
macro to these UV coordinates individually.To correctly implement this, adjust your input struct in your surface shader by adding a dedicated UV coordinate such as
float2 uv_NormalTex;
. Then, in your surf function, sample your normal texture usingtex2D(_NormalTex, IN.uv_NormalTex)
. In your shader, ensure you’ve declared the texture scale and offset by adding the linefloat4 _NormalTex_ST;
and apply Unity’s macroo.uv_NormalTex = TRANSFORM_TEX(v.texcoord, _NormalTex);
within the vertex function. Following these adjustments will grant you independent control over both the albedo and normal textures’ tiling and offset.