Boilerplate UActorComponent in Unreal Engine 5 C++
#pragma once
#include "CoreMinimal.h"
#include "Components/ActorComponent.h"
#include "MyActorComponent.generated.h"
UCLASS( ClassGroup=(Custom), meta=(BlueprintSpawnableComponent) )
class TESTING_API UMyActorComponent : public UActorComponent
{
GENERATED_BODY()
public:
UMyActorComponent();
protected:
virtual void BeginPlay() override;
public:
virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override;
};
#include "MyActorComponent.h"
UMyActorComponent::UMyActorComponent()
{
PrimaryComponentTick.bCanEverTick = true;
}
void UMyActorComponent::BeginPlay()
{
Super::BeginPlay();
}
void UMyActorComponent::TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction)
{
Super::TickComponent(DeltaTime, TickType, ThisTickFunction);
}