Command Line Argument on Editor Load

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

1 Like