modeling.CreateMesh.IgnoreProjectSettings

modeling.CreateMesh.IgnoreProjectSettings

#Overview

name: modeling.CreateMesh.IgnoreProjectSettings

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

It is referenced in 2 C++ source files.

#Summary

#References in C++ code

#Callsites

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

#Loc: <Workspace>/Engine/Plugins/Runtime/MeshModelingToolset/Source/ModelingComponents/Private/ModelingObjectsCreationAPI.cpp:14

Scope: file

Source code excerpt:

// if set to 1, then we do not default-initialize our new mesh object parameters based on the Modeling Components Settings (the Modeling Tools' Project Settings)
static TAutoConsoleVariable<bool> CVarConstructMeshObjectsWithoutModelingComponentSettings(
	TEXT("modeling.CreateMesh.IgnoreProjectSettings"),
	false,
	TEXT("If enabled, do not use the preferences set in Modeling Tools' Project Settings when constructing new mesh objects"));

FCreateMeshObjectParams::FCreateMeshObjectParams(bool bConstructWithDefaultModelingComponentSettings)
{
	if (bConstructWithDefaultModelingComponentSettings && 

#Loc: <Workspace>/Engine/Plugins/Runtime/MeshModelingToolset/Source/ModelingComponents/Public/ModelingObjectsCreationAPI.h:79

Scope (from outer to inner):

file
function     struct MODELINGCOMPONENTS_API FCreateMeshObjectParams { // @param bConstructWithDefaultModelingComponentSettings Whether to initialize with the default project settings. // Note the modeling compone

Source code excerpt:

{
	// @param bConstructWithDefaultModelingComponentSettings	Whether to initialize with the default project settings.
	// Note the modeling component settings will not be used if the CVar "modeling.CreateMesh.IgnoreProjectSettings" is enabled
	FCreateMeshObjectParams(bool bConstructWithDefaultModelingComponentSettings = true);

	GENERATED_BODY()

	//
	// Base data