Enemy debris

This commit is contained in:
Marco 2025-08-05 16:24:21 +02:00
commit 0293291315
19 changed files with 175 additions and 27 deletions

View file

@ -33,9 +33,13 @@ public partial class EnemyResource : Resource
/// </summary>
[Export] public float ResponseTime { get; private set; } = 0.5f;
[ExportCategory("Graphics")]
[Export] public Texture2D IconSprite { get; private set; }
[Export] public SpriteFrames AnimationFrames { get; private set; }
[Export] public PackedScene DebrisScene { get; private set; }
[Export] public SpriteFrames DeathAnimation { get; private set; }
[ExportCategory("Scripts")]
[Export] public BossScript BossScript { get; private set; }
}