Added Footsteps SFX

This commit is contained in:
2025-08-27 17:12:12 +02:00
parent 89313fd484
commit e44e06bace
56 changed files with 1039 additions and 32 deletions
+14
View File
@@ -0,0 +1,14 @@
using Godot;
namespace Babushka.scripts.CSharp.Common;
public partial class AudioPlayer2D : AudioStreamPlayer2D
{
/// <summary>
/// For SFX and other audio that should be played only once and not looped.
/// </summary>
public void PlayOneShot()
{
Play();
}
}