refactor party

This commit is contained in:
2026-08-12 13:31:11 +02:00
parent 81d7a213cd
commit 51da5c97eb
29 changed files with 274 additions and 67 deletions

View File

@@ -1,5 +1,7 @@
using Game.Extensions;
using Godot;
using yourareanaiceo;
namespace Game;
public partial class CurrentTimeLine : Panel
{
@@ -14,7 +16,7 @@ public partial class CurrentTimeLine : Panel
return;
var pos = OffsetTransformPosition;
pos.Y += Speed * delta.toFloat();
pos.Y += Speed * DoubleExtensions.toFloat(delta);
OffsetTransformPosition = pos;
}