mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
15 lines
495 B
C++
15 lines
495 B
C++
#include "FortFastLoadConfig.h"
|
|
|
|
UFortFastLoadConfig::UFortFastLoadConfig() {
|
|
this->bDisableStreamInBuildings = true;
|
|
this->bDisableStartupAIDirector = true;
|
|
this->bDisableUpgradePlayerBuildingClasses = true;
|
|
this->bUseMinimalPlayerBuildingClasses = true;
|
|
this->bDisableStartingMissions = true;
|
|
this->bUseFastLoadDefaultInventory = true;
|
|
this->bDisableNavAgentCostData = true;
|
|
this->bDisableThreatVisualsManager = true;
|
|
this->bDisablePreLoadAssets = true;
|
|
}
|
|
|