Navigation
API > API/Plugins > API/Plugins/MIDIDevice
| Name | UMIDIDeviceOutputController |
| Type | class |
| Header File | /Engine/Plugins/Runtime/MIDIDevice/Source/MIDIDevice/Public/MIDIDeviceOutputController.h |
| Include Path | #include "MIDIDeviceOutputController.h" |
Syntax
UCLASS (MinimalAPI, BlueprintType)
class UMIDIDeviceOutputController : public UMIDIDeviceControllerBase
Inheritance Hierarchy
- UObjectBase → UObjectBaseUtility → UObject → UMIDIDeviceControllerBase → UMIDIDeviceOutputController
Destructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual ~UMIDIDeviceOutputController() |
Destructor that shuts down the device if it's still in use | MIDIDeviceOutputController.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void SendMIDIChannelAftertouch
(
int32 Channel, |
Sends MIDI Channel Aftertouch event type | MIDIDeviceOutputController.h |
|
void SendMIDIControlChange
(
int32 Channel, |
Sends MIDI Control Change event type | MIDIDeviceOutputController.h |
|
void SendMIDIEvent
(
EMIDIEventType EventType, |
Sends MIDI event raw data for an event type | MIDIDeviceOutputController.h |
|
void SendMIDINoteAftertouch
(
int32 Channel, |
Sends MIDI Note Aftertouch event type | MIDIDeviceOutputController.h |
|
void SendMIDINoteOff
(
int32 Channel, |
Sends MIDI Note Off event type | MIDIDeviceOutputController.h |
|
void SendMIDINoteOn
(
int32 Channel, |
Sends MIDI Note On event type | MIDIDeviceOutputController.h |
|
void SendMIDIPitchBend
(
int32 Channel, |
Sends MIDI Pitch Bend event type | MIDIDeviceOutputController.h |
|
void SendMIDIProgramChange
(
int32 Channel, |
Sends MIDI Program Change event type | MIDIDeviceOutputController.h |
|
Overridden from UMIDIDeviceControllerBase
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual FString GetDeviceName() |
The name of this device. This name comes from the MIDI hardware, any might not be unique | MIDIDeviceOutputController.h | |
virtual int32 GetMIDIBufferSize() |
Size of the MIDI buffer in bytes | MIDIDeviceOutputController.h | |
virtual void ShutdownDevice() |
Called during destruction to clean up this device. Don't call this directly. | MIDIDeviceOutputController.h | |
virtual void StartupDevice
(
const int32 InitDeviceID, |
Called from UMIDIDeviceManager after the controller is created to get it ready to use. | MIDIDeviceOutputController.h |