Can now launch two versions of the client, for standalone and client

This commit is contained in:
2025-06-04 20:28:09 -04:00
parent 8940dd9e70
commit 9f296916f8
6 changed files with 200 additions and 1007 deletions

View File

@@ -36,6 +36,10 @@ ALuprexGameModeBase::ALuprexGameModeBase()
ResetToInitialState();
OnWorldPreActorTickHandle = FWorldDelegates::OnWorldPreActorTick.AddUObject(this, &ALuprexGameModeBase::OnWorldPreActorTick);
OnWorldPostActorTickHandle = FWorldDelegates::OnWorldPostActorTick.AddUObject(this, &ALuprexGameModeBase::OnWorldPostActorTick);
FString LuprexServer;
FParse::Value(FCommandLine::Get(), TEXT("-LuprexServer="), LuprexServer);
UE_LOG(LogTemp, Display, TEXT("LuprexServer = %s"), *LuprexServer)
}
ALuprexGameModeBase::~ALuprexGameModeBase()