| // Copyright Epic Games, Inc. All Rights Reserved. | |
| class FLifetimeProperty; | |
| 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(); | |
| } | |