资料:
- 官方文档资料地址:https://docs.unity3d.com/Packages/com.unity.entities@0.2/api/Unity.Profiling.html
- B站Unity官方,宣雨松大大讲解DOTS:https://www.bilibili.com/video/BV18J411t7G8?t=2267
- Unity官方ECS案例源码:https://github.com/Unity-Technologies/EntityComponentSystemSamples
- Unity官方Job系统案例源码:https://github.com/stella3d/job-system-cookbook
什么是ECS?
ECS即Entity-Component-System(实体-组件-系统)的缩写,遵循组合优于继承原则,游戏内的每一个基本单元都是一个Entity,每一个Entity又由一个或多个Co