a.Sharing.Enabled

a.Sharing.Enabled

#Overview

name: a.Sharing.Enabled

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/Developer/AnimationSharing/Source/AnimationSharing/Private/AnimationSharingManager.cpp:46

Scope: file

Source code excerpt:

static int32 GAnimationSharingEnabled = 1;
static FAutoConsoleCommandWithWorldAndArgs CVarAnimSharing_Enabled(
	TEXT("a.Sharing.Enabled"),
	TEXT("Arguments: 0/1\n")
	TEXT("Controls whether the animation sharing is enabled."),
	FConsoleCommandWithWorldAndArgsDelegate::CreateLambda([](const TArray<FString>& Args, UWorld* World)
	{
		if (Args.Num() != 0)
		{