You can make a moving tiled background in Godot 4 using a single TextureRect and a shader instead of multiple sprites. I learned how to create this effect from a Reddit comment and adapted it to make the scrolling effect controlled via scripting. This approach is well-suited for background elements and also has the bonus of being size-independent.
Shader Creation
- In the FileSystem window, create a new Shader resource.
- Open the Shader Editor and copy the below code:
// shader_tiling_texture.gdshader
shader_type canvas_item;
uniform float x = 0.0;
void fragment() {
vec2 pos = UV;
pos.x = pos.x + x;
COLOR = texture(TEXTURE, pos);
}
- In the FileSystem window, create a new ShaderMaterial resource.
- Load the Shader in the ShaderMaterial.
Scene Setup
- Create a TextureRect.
- Set the TextureRect's texture.
- Set the TextureRect's "Expand Mode" to "Ignore Size".
- Set the TextureRect's "Stretch Mode" to "Tile".
- Set the TextureRect's CanvasItem.Material to the ShaderMaterial you previously created.
- Attach a script to the TextureRect and copy the below code:
# tiling_background.gdscript
extends TextureRect
@export var active = false
@export var speed = 0.1
var x = 0.0
func _physics_process(delta):
if active == true:
x += speed * delta
material.set_shader_parameter("x", x)
func pause():
active = false
func resume():
active = true
func restart():
x = 0.0
active = true
func reset():
x = 0.0
active = false
You can now play the effect using $TextureRect.restart()
from the parent node.
Reference
I last used this in Godot 4.2.2.stable.