Add new components: BrickThrowComponent, BulletComponent, CageComponent, ChaseLevelComponent, CleanupComponent, and ThrowInputResource classes; implement game saving and loading logic in SaveSystem

This commit is contained in:
2025-08-12 13:12:16 +02:00
parent dfa8a17ba1
commit bf11d6a9cb
12 changed files with 399 additions and 6 deletions

View File

@@ -17,6 +17,7 @@ public partial class ShipMovementComponent : Node, IMovement
private Vector2 _velocity = Vector2.Zero;
public Vector2 Velocity => _velocity;
public Vector2 LastDirection => _velocity.Normalized();
public override void _PhysicsProcess(double delta)
{