23 lines
757 B
C++
23 lines
757 B
C++
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
||
|
#include "EditCondition/WhenPlayingAsPrimaryPlayer.h"
|
||
|
#include "GameSettingFilterState.h"
|
||
|
#include "Engine/LocalPlayer.h"
|
||
|
|
||
|
#define LOCTEXT_NAMESPACE "GameSetting"
|
||
|
|
||
|
TSharedRef<FWhenPlayingAsPrimaryPlayer> FWhenPlayingAsPrimaryPlayer::Get()
|
||
|
{
|
||
|
static TSharedRef<FWhenPlayingAsPrimaryPlayer> Instance = MakeShared<FWhenPlayingAsPrimaryPlayer>();
|
||
|
return Instance;
|
||
|
}
|
||
|
|
||
|
void FWhenPlayingAsPrimaryPlayer::GatherEditState(const ULocalPlayer* InLocalPlayer, FGameSettingEditableState& InOutEditState) const
|
||
|
{
|
||
|
if (!InLocalPlayer->IsPrimaryPlayer())
|
||
|
{
|
||
|
InOutEditState.Disable(LOCTEXT("OnlyPrimaryPlayerEditable", "Can only be changed by the primary player."));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#undef LOCTEXT_NAMESPACE
|