2025-01-03 12:09:23 +00:00
|
|
|
using Godot;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2026-05-22 12:25:02 +00:00
|
|
|
using Rokojori.Extensions;
|
2025-01-03 12:09:23 +00:00
|
|
|
namespace Rokojori
|
|
|
|
|
{
|
|
|
|
|
public abstract class AudioEffectMono:AudioProcessor
|
|
|
|
|
{
|
|
|
|
|
public readonly AudioStreamInput input;
|
|
|
|
|
public readonly AudioStreamOutput output;
|
|
|
|
|
|
|
|
|
|
public AudioEffectMono( AudioGraph ag ): base( ag )
|
|
|
|
|
{
|
|
|
|
|
input = new AudioStreamInput( this );
|
|
|
|
|
output = new AudioStreamOutput( this );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|