ACL.ListCodecs

ACL.ListCodecs

#Overview

name: ACL.ListCodecs

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/Plugins/Animation/ACLPlugin/Source/ACLPlugin/Private/ACLPluginModule.cpp:353

Scope (from outer to inner):

file
function     void FACLPlugin::StartupModule

Source code excerpt:

	{
		ConsoleCommands.Add(IConsoleManager::Get().RegisterConsoleCommand(
			TEXT("ACL.ListCodecs"),
			TEXT("Dumps statistics about animation codecs to the log."),
			FConsoleCommandWithArgsDelegate::CreateRaw(this, &FACLPlugin::ListCodecs),
			ECVF_Default
		));

		ConsoleCommands.Add(IConsoleManager::Get().RegisterConsoleCommand(
			TEXT("ACL.ListAnimSequences"),
			TEXT("Dumps statistics about animation sequences to the log."),
			FConsoleCommandWithArgsDelegate::CreateRaw(this, &FACLPlugin::ListAnimSequences),
			ECVF_Default
		));