Texture scrolling - shader tutorial / example

Recently on discord there was a question about how to make a scrolling animated texture in defold. So I wanted to make a short tutorial to cover this basic yet powerful effect. Scrolling textures via shader is a staple in many shader effects , so lets make one. I put together an example project so those interested can follow along and try it out. The method we will use is UV offsetting using a constant in the shader.

Also put a demo of the example project on itch for those that would like to see the result of this short tutorial/guide.

Click to play Demo
(Click to play Demo on itch )


Defold supported graphics api can be found here: The render pipeline in Defold
In this short tutorial/guide the method for scrolling textures should work for most, if not all the graphics api but I have not tested to know for sure.


Lets begin - The project is setup with a subdivided 3d plane (.dea) this will be used to display the scrolling texture , assigned the .dea to a model. Two small texture .png images that are 64x64 pixels in size and created to seamlessly tile and are assigned in the .model properties. A shader (Material + Vertex Program + Fragment Program ) that is assigned to the plane model. A constant set in materials and the shader, and also a .script we attached to the model game object that we use to start an animation loop.

∙ Model setup


Note: water_bg is assigned to tex0 slot and water_wave is set to tex1 slot. Two sampler slots are assigned in material sampler properties shown below.

Currently tex1 will be the texture that will be scrolling so Wrap U & V are set to Repeat.

That is the basic setup and now we can move on to the water_scroll.vp(vertex) and water_scroll.fp(fragment) programs. You can see in the image above these are set to the material.

It’s good practice to avoid doing to much calculations in the fragment program if you can avoid it so we calculate the UV offset in the vertex program before the coordinates are sent to the fragment program. We also create a constant “animation_time” with type user to the vertex constant properties set in the material (as seen above). The constant is a vector 4 but we only use the first value. If we denote this vector 4 as vector4(x,y,z,w) we will only use x value in the shader as shown below.

water_scroll_vp
The model supplies the attribute texcoord0, this is our texture UV coordinates. We declare our vec4 uniform named animation_time and we also have two vec2 varying texcoords 0 and 1 which we pass these to the fragment program after we assign them the attribute UV coords “texcoord0” in void main(). As you can see var_texcoord1 is different because this one we are offsetting before it is sent to the fragment program. Assign a vec2 so that we can supply animation_time to the x and y separately if we want. In this case we only take texcoord0.x and subtract our constant animation_time.x which when animated will offset in the negative U axis (horizontal left), we set texcoord0.y to keep its attribute position. EZ PZ!


water_scroll_fp
Now to the fragment program, we have a simple setup. Two “in” varying vec2’s that we sent from the vertex program var_textcoord0 and var_texcoord1 and then we supply uniforms for the sampler textures we set in our model and material they are named tex0 and tex1. Then in void main() we create vector 4’s to assign to our textures using texture2d() , the images are in RGBA(red,green,blue,alpha) channel format. We assign sampler name and then the texture coordinates we want them to use. As you see in the image above “water_waves” has var_texcoord1 assigned. this is the texture we are animating/scrolling and var_texcoord0 assigned to water_bg we left as is. For the global reserved variable “gl_FragColor” this is where pixel colors are assigned with the same vec4(r,g,b,a) format. We want to combine the 2 textures together so we use addition to mix the rgb channels of each texture together, also we are not using the textures alpha channel so we assign a float value of 1.0 which equals full opacity.



There are more than one ways of animating constant values, you can calculate delta time steps and update the constant with these values in the render script or a normal script if you wanted to. In this case we are only animating one shader and if you wanted a time step in several shaders calculating in an update() might be more ideal . However we will use go.animate because we have a lot of functionality at our disposal , we can animate just the x value of our constant using “animation_time.x” we also have duration, delay and easing to play with if we so choose. We can also set playback to loop or play once and cancel the animation if we needed to. These all come in very handy when animating our shaders. The local float 1.0 is our target value we are animating in the animation_time.x, in shaders for the most part we deal with normalized float values 0.0 to 1.0. Notice the default constant values in the material for our animation_time is (0,0,0,0) we are animating the first zero from 0.0 to 1.0. Nice , this means our offset UV coords will animate to the edge and then loop again over and over, this is exactly what we want.That should be it!

As an exercise, if you are up for it. In the project you can animate the water_bg texcoords in the opposite direction like I did in the example demo! Hope this helps and apologies if I am not as clear on certain aspects of this short tutorial as I should have made it. If you do make something scroll please share!

Cheers ~ :japanese_ogre:

18 Likes

This is great, thank you for sharing this!

The post could definitely be made into a tutorial and/or blog post (with your permission).

2 Likes

Thank you so much! :heart:

It might be also easily tweaked for parallax backgrounds, but instead of passing time, you will need to send to the shader the position of the camera :wink:

3 Likes

Wow! Pretty nice! Thanks

1 Like

Thank you! Of course that would be great.

For sure, and you could use basic addition and subtraction on the constant to move parallax elements less or more than the others to get that effect.

My pleasure , hope to do more tut/guides in the future.

3 Likes

Oh yes, please, you’re really great at making them and your explanations are very good.

2 Likes

Thanks! Here it is: Texture scrolling shader

Would love to see more content!

4 Likes

Very nice, thanks for taking the time.

1 Like