UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
AudioOutputTarget.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2#pragma once
3
5
6#include "AudioOutputTarget.generated.h"
7
8UENUM()
10{
11 enum Type : int
12 {
13 Speaker UMETA(ToolTip = "Sound plays only from speakers."),
14 Controller UMETA(ToolTip = "Sound plays only from controller if present."),
15 ControllerFallbackToSpeaker UMETA(ToolTip = "Sound plays on the controller if present. If not present, it plays from speakers.")
16 };
17}
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define UMETA(...)
Definition ObjectMacros.h:747
#define UENUM(...)
Definition ObjectMacros.h:749
Definition AudioOutputTarget.h:10
Type
Definition AudioOutputTarget.h:12