diff --git a/docs/Build & Automation System/UBT.md b/docs/Build & Automation System/UBT.md index 66d96ae..f8f3021 100644 --- a/docs/Build & Automation System/UBT.md +++ b/docs/Build & Automation System/UBT.md @@ -62,3 +62,29 @@ Derived from ToolMode, used to build a *target*. - Handle local builds - Get all project directories & build options - For each project: create a `SourceFileWorkingSet` object and `Build`. +7. Process the dumps to see if anything failed. +8. Save Caches + +`BuildConfiguration` Contains target agonstic settings. + + + +## QueueProjectDirectory + +Used when retreving all project directories. + +Will Enqueue a `FileMetadataPrefetch.ScanProjectDirectory` call for the directory with the prefecter. + + +### ScanProjectDirectory + +1. Get all extension directoires for the target project directory +2. For each directory + - Enqueue a scan of the plugin directory (`ScanPluginFolder`, the `Plugins` folder) + - Enqueue a scan of the project directory (`ScanDirectoryTree`, the `Source` folder) + +`Unreal.GetExtensionDirs` will do an initial scan for Platform, Restricted, and BaseDirectories, and remove them from CachedDirectories based if any of options for doing so are set. + +#### ScanPluginFolder + + diff --git a/docs/Readme.md b/docs/Readme.md index 2a5b3eb..8c24fd5 100644 --- a/docs/Readme.md +++ b/docs/Readme.md @@ -3,8 +3,9 @@ ## Conventions These docs will be written in a free-flow fasion. The main purpose of this repo is to remove the knowledge barrier to the engine. There are plenty of content written for this engine, but its not provided in a way that is easy to digest. -The order the engine is studied will be covered within in [journey](journey.md). -The perspective of the reader is for someone who's become accostomed to using the engine and is vaugely familiar with the code base, however they never really looked through the engine because there is no actual docs. +The order the engine is studied will be covered within in [Journey](journey.md). + +The perspective of the writting is from someone who's become accostomed to using the engine and is vaugely familiar with the code base, however they never really looked through the engine because there is no actual docs. Hopefully if the reader is interested in learning the engine, this approach will at least give an idea of how they could approach going about it.