bEnableLiveLinkForFaceTracking

bEnableLiveLinkForFaceTracking

#Overview

name: bEnableLiveLinkForFaceTracking

The value of this variable can be defined or overridden in .ini config files. 1 .ini config file referencing this setting variable.

It is referenced in 1 C++ source file.

#Summary

#Setting Variables

#References In INI files

Location: <Workspace>/Engine/Config/BaseEngine.ini:3420, section: [/Script/AppleARKit.AppleARKitSettings]

#References in C++ code

#Callsites

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

#Loc: <Workspace>/Engine/Plugins/Runtime/AR/AppleAR/AppleARKitFaceSupport/Source/AppleARKitFaceSupport/Private/AppleARKitFaceSupportModule.cpp:41

Scope (from outer to inner):

file
function     void FAppleARKitFaceSupportModule::OnModularFeatureAvailable

Source code excerpt:

		LiveLinkSource.Reset();

		bool bEnableLiveLinkForFaceTracking = false;
		FAppleARKitLiveLinkConnectionSettings Settings;
		GConfig->GetBool(TEXT("/Script/AppleARKit.AppleARKitSettings"), TEXT("bEnableLiveLinkForFaceTracking"), bEnableLiveLinkForFaceTracking, GEngineIni);
		GConfig->GetInt(TEXT("/Script/AppleARKit.AppleARKitSettings"), TEXT("LiveLinkPublishingPort"), Settings.Port, GEngineIni);

		if (bEnableLiveLinkForFaceTracking || FParse::Param(FCommandLine::Get(), TEXT("EnableLiveLinkFaceTracking")))
		{
			LiveLinkSource = FAppleARKitLiveLinkSourceFactory::CreateLiveLinkSource(Settings);
		}
	}
}