mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
17 lines
521 B
C++
17 lines
521 B
C++
#include "FortFastLoadConfig.h"
|
|
|
|
UFortFastLoadConfig::UFortFastLoadConfig() {
|
|
bDisableStreamInBuildings = true;
|
|
bDisableStartupAIDirector = true;
|
|
bDisableUpgradePlayerBuildingClasses = true;
|
|
bUseMinimalPlayerBuildingClasses = true;
|
|
bDisableStartingMissions = true;
|
|
bUseFastLoadDefaultInventory = true;
|
|
bDisableNavAgentCostData = true;
|
|
bDisableThreatVisualsManager = true;
|
|
bDisablePreLoadAssets = true;
|
|
bDisablePreLoadLootAssets = true;
|
|
bDisableLoadStateClientAthena = true;
|
|
}
|
|
|