Files
UnrealEngineUWP/Engine/Source/Editor/UnrealEd/Classes/Commandlets/DumpAssetRegistryCommandlet.h
Matt Peters 2cdc1a2554 DumpAssetRegistryCommandlet: Converts the AssetRegistry.bin files generated by the cook into text.
#rb Robert.Millar, Tyler.Staples
#rnx
#preflight 62d1739cdc4397d3845425e8

[CL 21116172 by Matt Peters in ue5-main branch]
2022-07-15 15:55:49 -04:00

30 lines
618 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Commandlets/Commandlet.h"
#include "Containers/Array.h"
#include "Containers/UnrealString.h"
#include "DumpAssetRegistryCommandlet.generated.h"
UCLASS()
class UDumpAssetRegistryCommandlet: public UCommandlet
{
GENERATED_UCLASS_BODY()
public:
// Begin UCommandlet Interface
virtual int32 Main(const FString& Params) override;
// End UCommandlet Interface
private:
bool TryParseArgs();
bool TryDumpAssetRegistry();
TArray<FString> FormattingArgs;
int32 LinesPerPage = 0;
bool bLowerCase = false;
FString Path;
FString OutDir;
};