Hi,
I want to set up a moving background on my title screen. I am using a ParallaxBackground with a ParallaxLayer. Since this is a menu, I don't use a camera. I am using this code to move my background:
func _physics_process(delta):
$ParallaxBackground/ParallaxLayer.motion_offset.x += 1
Those are my settings:
Sprite dimension 640x640
ParallaxLayer motion Mirroring 640x640
Screen resolution: 1280x720
I can't figure out how to reset the background at the edge of the scene... I tried to move the location but I can't find a sweet spot.
This is what it looks like :

How can I fix that?
Thank you