Danmaku system

This commit is contained in:
Marco 2025-02-05 19:41:49 +01:00
commit fdec052c16
38 changed files with 924 additions and 9 deletions

View file

@ -7,9 +7,13 @@ public partial class GameManager : Node2D
private Hud _hud;
private PlayerMovement _player;
public PlayerMovement Player => _player;
private Node2D _cameraTarget;
public Vector2? PlayerPosition => _player?.GlobalPosition ?? null;
[Export]
public PackedScene PlayerTemplate { get; set; }