using Godot; using System; /// /// Takes the current contents of a AudioStreamPlayer and offers visualization and control. /// public partial class AudioDebugger : AudioStreamPlayer2D { [Export] private float _offset_in_seconds_to_play = 0; public void PlayFromOffset() { Play(_offset_in_seconds_to_play); } }