32 lines
826 B
C++
32 lines
826 B
C++
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
||
|
#include "LyraTeamPublicInfo.h"
|
||
|
#include "Net/UnrealNetwork.h"
|
||
|
|
||
|
ALyraTeamPublicInfo::ALyraTeamPublicInfo(const FObjectInitializer& ObjectInitializer)
|
||
|
: Super(ObjectInitializer)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void ALyraTeamPublicInfo::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const
|
||
|
{
|
||
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
||
|
|
||
|
DOREPLIFETIME_CONDITION(ThisClass, TeamDisplayAsset, COND_InitialOnly);
|
||
|
}
|
||
|
|
||
|
void ALyraTeamPublicInfo::SetTeamDisplayAsset(TObjectPtr<ULyraTeamDisplayAsset> NewDisplayAsset)
|
||
|
{
|
||
|
check(HasAuthority());
|
||
|
check(TeamDisplayAsset == nullptr);
|
||
|
|
||
|
TeamDisplayAsset = NewDisplayAsset;
|
||
|
|
||
|
TryRegisterWithTeamSubsystem();
|
||
|
}
|
||
|
|
||
|
void ALyraTeamPublicInfo::OnRep_TeamDisplayAsset()
|
||
|
{
|
||
|
TryRegisterWithTeamSubsystem();
|
||
|
}
|