FString ParameterValue;
if (FParse::Value(FCommandLine::Get(), TEXT("-SomeParameter="), ParameterValue))
{
// Do something with the string you just parsed.
}
1 Like
FString ParameterValue;
if (FParse::Value(FCommandLine::Get(), TEXT("-SomeParameter="), ParameterValue))
{
// Do something with the string you just parsed.
}