s.AllowUnversionedContentInEditor

s.AllowUnversionedContentInEditor

#Overview

name: s.AllowUnversionedContentInEditor

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

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

It is referenced in 1 C++ source file.

#Summary

#Setting Variables

#References In INI files

Location: <Workspace>/Engine/Config/BaseDeviceProfiles.ini:197, section: [WindowsCookedEditor DeviceProfile]

Location: <Workspace>/Engine/Config/BaseDeviceProfiles.ini:1216, section: [LinuxCookedEditor DeviceProfile]

#References in C++ code

#Callsites

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

#Loc: <Workspace>/Engine/Source/Runtime/CoreUObject/Private/UObject/UObjectGlobals.cpp:86

Scope: file

Source code excerpt:

int32 GAllowUnversionedContentInEditor = 0;
static FAutoConsoleVariableRef CVarAllowUnversionedContentInEditor(
	TEXT("s.AllowUnversionedContentInEditor"),
	GAllowUnversionedContentInEditor,
	TEXT("If true, allows unversioned content to be loaded by the editor."),
	ECVF_Default
);

bool GAllowParseObjectLoading = true;