Hi everyone. I'm new in Godot so be patient please.
I try to make scrolling background in top down shooter. It should look like scrolling land in RiverRaid game.
I made a Scene: Area2D -> Sprite -> StaticBody2D -> CollisionPolygon2D
To scroll it down i'am using: set_pos(Vector2(0, get_pos().y + speed * delta))
It works, but I want to ask if there is better way to accomplish it.