material dumpdebuginfo

material dumpdebuginfo

#Overview

name: material dumpdebuginfo

This variable is created as a Console Variable (cvar).

It is referenced in 1 C++ source file.

#Summary

#References in C++ code

#Callsites

This variable is referenced in the following C++ source code:

#Loc: <Workspace>/Engine/Source/Runtime/Engine/Private/Materials/MaterialShared.cpp:144

Scope (from outer to inner):

file
class        class FMaterialDumpDebugInfoExecHelper : public FSelfRegisteringExec
function     virtual bool Exec_Editor

Source code excerpt:

	virtual bool Exec_Editor(class UWorld* InWorld, const TCHAR* Cmd, FOutputDevice& Ar) override
	{
		if (FParse::Command(&Cmd, TEXT("material dumpdebuginfo")))
		{
			FString RequestedMaterialName(FParse::Token(Cmd, 0));

			if (RequestedMaterialName.Len() > 0)
			{
				for (TObjectIterator<UMaterialInterface> It; It; ++It)