ExoWest/Source/Exo/Private/Characters/Components/ExoPlayerAttributesComponent.cpp
Foxim 40e5a37d91 fix: correct player character check
add player attribute component test class
2025-02-21 15:59:46 +01:00

35 lines
849 B
C++

// Fill out your copyright notice in the Description page of Project Settings.
#include "Characters/Components/ExoPlayerAttributesComponent.h"
// Sets default values for this component's properties
UExoPlayerAttributesComponent::UExoPlayerAttributesComponent()
{
// Set this component to be initialized when the game starts, and to be ticked every frame. You can turn these features
// off to improve performance if you don't need them.
PrimaryComponentTick.bCanEverTick = true;
// ...
}
// Called when the game starts
void UExoPlayerAttributesComponent::BeginPlay()
{
Super::BeginPlay();
// ...
}
// Called every frame
void UExoPlayerAttributesComponent::TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction)
{
Super::TickComponent(DeltaTime, TickType, ThisTickFunction);
// ...
}