Files
tooll3--t3/Editor/Gui/Interaction/Midi/CommandProcessing/ControlChangeSignal.cs
T
2026-07-13 13:13:17 +08:00

11 lines
299 B
C#

namespace T3.Editor.Gui.Interaction.Midi.CommandProcessing;
/// <summary>
/// Used to save captured note and control events from MidiInputs
/// </summary>
public sealed class ControlChangeSignal
{
public int ControllerId;
public float ControllerValue;
public int Channel;
}