UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
AudioPropertiesSheetAssetBase.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
6#include "UObject/Interface.h"
7#include "UObject/Object.h"
8#include "UObject/ObjectPtr.h"
9
10#include "AudioPropertiesSheetAssetBase.generated.h"
11
12UINTERFACE(MinimalApi, meta=(CannotImplementInterfaceInBlueprint))
17
28{
30
31public:
32#if WITH_EDITORONLY_DATA
33 virtual void AllowPropertyParsing(const FProperty& TargetProperty) = 0;
34 virtual void IgnorePropertyParsing(const FProperty& PropertyToIgnore) = 0;
35 virtual bool ShouldParseProperty(const FProperty& TargetProperty) const = 0;
36#endif
37};
38
39UCLASS(MinimalAPI, Abstract)
41{
43
44public:
45#if WITH_EDITOR
46 UFUNCTION(BlueprintCallable, BlueprintPure=false, Category="AudioProperties")
47 virtual bool CopyToObjectProperties(UObject* TargetObject) const { return false; };
48
51#endif
52};
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define GENERATED_BODY(...)
Definition ObjectMacros.h:765
#define UFUNCTION(...)
Definition ObjectMacros.h:745
#define UINTERFACE(...)
Definition ObjectMacros.h:780
#define UCLASS(...)
Definition ObjectMacros.h:776
Definition IDelegateInstance.h:14
Definition UnrealType.h:174
Definition AudioPropertiesSheetAssetBase.h:28
Definition AudioPropertiesSheetAssetBase.h:41
Definition AudioPropertiesSheetAssetBase.h:14
Definition Interface.h:19
Definition Object.h:95