This commit is contained in:
2026-04-25 22:06:37 -07:00
parent 2fe007c59d
commit a55ab4a342
11 changed files with 417 additions and 193 deletions

View File

@@ -31,6 +31,8 @@ public partial class SfxDatabase : Node
{SoundEffect.MoveUI, MoveSound },
{SoundEffect.Equip, EquipSound },
{SoundEffect.Unequip, UnequipSound },
{SoundEffect.Buff, BuffSound },
{SoundEffect.Debuff, DebuffSound },
{SoundEffect.SortInventory, SortSound },
{SoundEffect.SelectUI, SelectSound },
{SoundEffect.CancelUI, CancelSound },
@@ -63,6 +65,8 @@ public partial class SfxDatabase : Node
[Node] private AudioStreamPlayer MoveSound { get; set; }
[Node] private AudioStreamPlayer EquipSound { get; set; }
[Node] private AudioStreamPlayer UnequipSound { get; set; }
[Node] private AudioStreamPlayer BuffSound { get; set; }
[Node] private AudioStreamPlayer DebuffSound { get; set; }
[Node] private AudioStreamPlayer SortSound { get; set; }
[Node] private AudioStreamPlayer SelectSound { get; set; }
[Node] private AudioStreamPlayer CancelSound { get; set; }
@@ -115,5 +119,7 @@ public enum SoundEffect
WeaponSlowSlash,
WeaponPlasmaSword,
Eucharistia,
Buff,
Debuff
}