Menu animation

This commit is contained in:
Иван Кузьменко 2023-08-19 12:28:56 +03:00
parent 619ed0c88e
commit 4826bc4035
15 changed files with 462 additions and 2 deletions

View file

@ -0,0 +1,11 @@
using Godot;
public partial class MovingParallaxBackground : ParallaxBackground
{
[Export] public Vector2 Speed;
public override void _Process(double delta)
{
ScrollOffset += Speed * (float)delta;
}
}