Find of Create Game Session Endpoint
This commit is contained in:
@@ -46,4 +46,6 @@ SoundCueCookQualityIndex=-1
|
|||||||
[/Script/EngineSettings.GameMapsSettings]
|
[/Script/EngineSettings.GameMapsSettings]
|
||||||
EditorStartupMap=/Game/Maps/StartupMap.StartupMap
|
EditorStartupMap=/Game/Maps/StartupMap.StartupMap
|
||||||
GameDefaultMap=/Game/Maps/StartupMap.StartupMap
|
GameDefaultMap=/Game/Maps/StartupMap.StartupMap
|
||||||
|
GlobalDefaultGameMode=/Script/FPSTemplate.ShooterGameModeBase
|
||||||
|
GlobalDefaultServerGameMode=/Script/FPSTemplate.ShooterGameModeBase
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -33,7 +33,7 @@ void ADS_GameMode::BeginPlay()
|
|||||||
void ADS_GameMode::InitGame(const FString& MapName, const FString& Options, FString& ErrorMessage)
|
void ADS_GameMode::InitGame(const FString& MapName, const FString& Options, FString& ErrorMessage)
|
||||||
{
|
{
|
||||||
Super::InitGame(MapName, Options, ErrorMessage);
|
Super::InitGame(MapName, Options, ErrorMessage);
|
||||||
|
UE_LOGFMT(LogTemp, Error, "We got into InitGame of ADS_GameMode");
|
||||||
#if WITH_GAMELIFT
|
#if WITH_GAMELIFT
|
||||||
|
|
||||||
CachedCommandLine = FCommandLine::Get();
|
CachedCommandLine = FCommandLine::Get();
|
||||||
|
|||||||
@@ -5,5 +5,7 @@ namespace DedicatedServersTags
|
|||||||
namespace GameSessionsAPI
|
namespace GameSessionsAPI
|
||||||
{
|
{
|
||||||
UE_DEFINE_GAMEPLAY_TAG_COMMENT(ListFleets, "DedicatedServersTags.GameSessionsAPI.ListFleets", "List Fleets resource on the GameSessions API")
|
UE_DEFINE_GAMEPLAY_TAG_COMMENT(ListFleets, "DedicatedServersTags.GameSessionsAPI.ListFleets", "List Fleets resource on the GameSessions API")
|
||||||
|
UE_DEFINE_GAMEPLAY_TAG_COMMENT(FindOrCreateGameSession, "DedicatedServersTags.GameSessionsAPI.FindOrCreateGameSession", "Retrieves an active game session, creating one if one doesn't exist.")
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -8,5 +8,6 @@ namespace DedicatedServersTags
|
|||||||
namespace GameSessionsAPI
|
namespace GameSessionsAPI
|
||||||
{
|
{
|
||||||
UE_DECLARE_GAMEPLAY_TAG_EXTERN(ListFleets);
|
UE_DECLARE_GAMEPLAY_TAG_EXTERN(ListFleets);
|
||||||
|
UE_DECLARE_GAMEPLAY_TAG_EXTERN(FindOrCreateGameSession)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user