UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
LiveLinkController.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
8#include "UObject/Object.h"
9
10#include "LiveLinkRole.h"
12
13#include "LiveLinkController.generated.h"
14
15class AActor;
16
20UCLASS(Abstract, MinimalAPI)
22{
24
25public:
27
29 virtual void OnRegistered() { }
30
32 virtual void Tick(float DeltaTime, const FLiveLinkSubjectRepresentation& SubjectRepresentation) { }
33
34#if WITH_EDITOR
35 virtual void InitializeInEditor(UObject* FromObject) { }
36#endif
37};
#define PURE_VIRTUAL(func,...)
Definition CoreMiscDefines.h:103
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
#define GENERATED_BODY(...)
Definition ObjectMacros.h:765
#define UCLASS(...)
Definition ObjectMacros.h:776
Definition Actor.h:257
FName Tag const
Definition Actor.h:3810
Definition SubclassOf.h:30
Definition LiveLinkController.h:22
virtual TSubclassOf< ULiveLinkRole > GetRole() const PURE_VIRTUAL(ULiveLinkController
Definition LiveLinkController.h:26
virtual void Tick(float DeltaTime, const FLiveLinkSubjectRepresentation &SubjectRepresentation)
Definition LiveLinkController.h:32
Definition LiveLinkRole.h:18
Definition Object.h:95
Definition LiveLinkRole.h:36