随笔分类 -  源码阅读笔记

摘要:模块加载遵循的顺序: 首先加载的是 Platform File Module,因为引擎要读取文件。 接下来加载的是核心模块(FEngineLoop::PreInit->LoadCoreModules)。 加载 CoreUObject。 然后在初始化引擎之前加载模块(FEngineLoop::Load 阅读全文
posted @ 2020-08-09 14:59 CodeWithMe 阅读(209) 评论(0) 推荐(0)
摘要:加载模式 namespace EHostType { enum Type { //在所有目标(程序除外)上加载。 Runtime, //在所有目标上加载,除程序和命令行外。 RuntimeNoCommandlet, //在所有目标上加载,包括受支持的程序。 RuntimeAndProgram, // 阅读全文
posted @ 2020-08-08 22:55 CodeWithMe 阅读(840) 评论(0) 推荐(0)
摘要:/** Rules for attaching components */ struct ENGINE_API FAttachmentTransformRules { /** Various preset attachment rules. Note that these default rules 阅读全文
posted @ 2020-07-28 13:15 CodeWithMe 阅读(1258) 评论(0) 推荐(0)