• Unity DOTS系列之Filter Baking Output与Prefab In Baking核心分析


    最近DOTS发布了正式的版本, 我们来分享一下DOTS里面Baking核心机制,方便大家上手学习掌握Unity DOTS开发。今天给大家分享的Baking机制中的Filter Baking OutputPrefab In Baking

    对啦!这里有个游戏开发交流小组里面聚集了一帮热爱学习游戏的零基础小白,也有一些正在从事游戏开发的技术大佬,欢迎你来交流学习。

    Filter Baking Output 机制

    在默认情况下,Baking会为每个GameObject生成的Entity与Component, 这些entity都会被创建到Conversion World里面。然后在创作的时候不是所有的GameObject都需要被转换成Entity。例如: 在一个样条曲线上,一个控制点在创作的时候被用到了,但是bake成ecs数据后可能就再也没有用了,所以不需要把这个控制点Bake成entity。

    为了不把这个GameObject Bake产生的Entity输出到World并保存到entity scene里面,我们可以给这个Entity添加一个BakingOnlyEntity tag Component。当你添加了这个tag component后,Baking系统就不会把你这个entity存储到entity scene里面,也不会把这个entity生成到运行的main World里面。我们可以直接在Baker函数里面添给entity 添加一个BakingOnlyEntity的组件数据,也可以在Authoring GameObject里面添加一个 BakingOnlyEntityAuthoring的组件,这两种方式都可以达到同样的效果没有区别。

    你也可以给组件添加注解[BakingType],[TemporaryBakingType] attributes过滤掉掉组件component,让它不输出到entity中。

    [TemporaryBakingType]:被这个attributes注记的Component会在Baking Output的时候不会输出到entity。这个Component只会存活在Baker过程中,Baker结束以后就会销毁。

    我们有时候需要在Baking System里面批量处理一些组件数据,处理完后这些组件就没有用了。例如,baker 把一个bounding box 转换成了ecs component 数据,接下来我们定义了一个Baking System批量处理所有的entity,来计算entity的凸包。计算完成后原来的bounding box组件就可以删除了,这种情况下就可以使用上面的Filter Component Bake output机制。

    Prefab In Baking机制

    生成entity prefab到entity scene以后,我们就可以像使用普通的Prefab创建GameObject一样来创建entity到世界。但是使用enity prefab之前一定要确保它已经被Baker到了entity scene。当预制体实例化到Authoring Scene中的时候,Baking把它当作普通的GameObject来进行转换,不会把它当作预制体。

    生成一个entity prefab你需要注册一个Baker,在Bake函数里面添加一个依赖关系,让这个依赖于Authoring GameObject Prefab。然后Prefab将会被bake出来。我们搞一个组件保存了entity prefab的一个引用,那么unity就会把这个entity prefab 序列化到subscene中。当需要使用这个entity prefab的时候就能获取到。代码如下:

    1. public struct EntityPrefabComponent : IComponentData
    2. {
    3. public Entity Value;
    4. }
    5. public class GetPrefabAuthoring : MonoBehaviour
    6. {
    7. public GameObject Prefab;
    8. }
    9. public class GetPrefabBaker : Baker<GetPrefabAuthoring>
    10. {
    11. public override void Bake(GetPrefabAuthoring authoring)
    12. {
    13. // Register the Prefab in the Baker
    14. var entityPrefab = GetEntity(authoring.Prefab, TransformUsageFlags.Dynamic);
    15. // Add the Entity reference to a component for instantiation later
    16. var entity = GetEntity(TransformUsageFlags.Dynamic);
    17. AddComponent(entity, new EntityPrefabComponent() {Value = entityPrefab});
    18. }
    19. }
    20. #endregion

    在Baking的时候,当我们需要引用一个entity prefab, 可以使用EntityPrefabReference。这个会把它序列化到entity scene文件里面去。运行的时候直接load进来,就可以使用了。这样可以防止多个subscene不用重复拷贝生成同一个Prefab。

    1. #region InstantiateLoadedPrefabs
    2. public partial struct InstantiatePrefabReferenceSystem : ISystem
    3. {
    4. public void OnStartRunning(ref SystemState state)
    5. {
    6. // Add the RequestEntityPrefabLoaded component to the Entities that have an
    7. // EntityPrefabReference but not yet have the PrefabLoadResult
    8. // (the PrefabLoadResult is added when the prefab is loaded)
    9. // Note: it might take a few frames for the prefab to be loaded
    10. var query = SystemAPI.QueryBuilder()
    11. .WithAll<EntityPrefabComponent>()
    12. .WithNone<PrefabLoadResult>().Build();
    13. state.EntityManager.AddComponent<RequestEntityPrefabLoaded>(query);
    14. }
    15. public void OnUpdate(ref SystemState state)
    16. {
    17. var ecb = new EntityCommandBuffer(Allocator.Temp);
    18. // For the Entities that have a PrefabLoadResult component (Unity has loaded
    19. // the prefabs) get the loaded prefab from PrefabLoadResult and instantiate it
    20. foreach (var (prefab, entity) in
    21. SystemAPI.Query<RefRO<PrefabLoadResult>>().WithEntityAccess())
    22. {
    23. var instance = ecb.Instantiate(prefab.ValueRO.PrefabRoot);
    24. // Remove both RequestEntityPrefabLoaded and PrefabLoadResult to prevent
    25. // the prefab being loaded and instantiated multiple times, respectively
    26. ecb.RemoveComponent<RequestEntityPrefabLoaded>(entity);
    27. ecb.RemoveComponent<PrefabLoadResult>(entity);
    28. }
    29. ecb.Playback(state.EntityManager);
    30. ecb.Dispose();
    31. }
    32. }
    33. #endregion
    34. 实例化entity prefab可以使用EntityManager与entity command buffer。
    35. #region InstantiateEmbeddedPrefabs
    36. public partial struct InstantiatePrefabSystem : ISystem
    37. {
    38. public void OnUpdate(ref SystemState state)
    39. {
    40. var ecb = new EntityCommandBuffer(Allocator.Temp);
    41. // Get all Entities that have the component with the Entity reference
    42. foreach (var prefab in
    43. SystemAPI.Query<RefRO<EntityPrefabComponent>>())
    44. {
    45. // Instantiate the prefab Entity
    46. var instance = ecb.Instantiate(prefab.ValueRO.Value);
    47. // Note: the returned instance is only relevant when used in the ECB
    48. // as the entity is not created in the EntityManager until ECB.Playback
    49. ecb.AddComponent<ComponentA>(instance);
    50. }
    51. ecb.Playback(state.EntityManager);
    52. ecb.Dispose();
    53. }
    54. }
    55. #endregion
    56. 实例化EntityPrefabReference,可以使用如下代码:
    57. #region InstantiateLoadedPrefabs
    58. public partial struct InstantiatePrefabReferenceSystem : ISystem
    59. {
    60. public void OnStartRunning(ref SystemState state)
    61. {
    62. // Add the RequestEntityPrefabLoaded component to the Entities that have an
    63. // EntityPrefabReference but not yet have the PrefabLoadResult
    64. // (the PrefabLoadResult is added when the prefab is loaded)
    65. // Note: it might take a few frames for the prefab to be loaded
    66. var query = SystemAPI.QueryBuilder()
    67. .WithAll<EntityPrefabComponent>()
    68. .WithNone<PrefabLoadResult>().Build();
    69. state.EntityManager.AddComponent<RequestEntityPrefabLoaded>(query);
    70. }
    71. public void OnUpdate(ref SystemState state)
    72. {
    73. var ecb = new EntityCommandBuffer(Allocator.Temp);
    74. // For the Entities that have a PrefabLoadResult component (Unity has loaded
    75. // the prefabs) get the loaded prefab from PrefabLoadResult and instantiate it
    76. foreach (var (prefab, entity) in
    77. SystemAPI.Query<RefRO<PrefabLoadResult>>().WithEntityAccess())
    78. {
    79. var instance = ecb.Instantiate(prefab.ValueRO.PrefabRoot);
    80. // Remove both RequestEntityPrefabLoaded and PrefabLoadResult to prevent
    81. // the prefab being loaded and instantiated multiple times, respectively
    82. ecb.RemoveComponent<RequestEntityPrefabLoaded>(entity);
    83. ecb.RemoveComponent<PrefabLoadResult>(entity);
    84. }
    85. ecb.Playback(state.EntityManager);
    86. ecb.Dispose();
    87. }
    88. }
    89. #endregion

    在实例化EntityPrefabReference之前,Unity必须要先加载对应的entity prefab,然后才能使用它,添加RequestEntityPrefabLoaded组件能确保entity prefab被加载。Unity会PrefabLoadResult加载到带有RequestEntityPrefabLoaded同一个entity上。

    预制体也是entity,也可以被查询到,如果需要把一个预制体被查询到,可以在查询条件上添加IncludePrefab。

    1. #region PrefabsInQueries
    2. // This query will return all baked entities, including the prefab entities
    3. var prefabQuery = SystemAPI.QueryBuilder()
    4. .WithAll().WithOptions(EntityQueryOptions.IncludePrefab).Build();
    5. #endregion
    6. 使用EntityManager与entity command buffer也可以销毁一个预制体节点,代码如下:
    7. #region DestroyPrefabs
    8. var ecb = new EntityCommandBuffer(Allocator.Temp);
    9. foreach (var (component, entity) in
    10. SystemAPI.Query>().WithEntityAccess())
    11. {
    12. if (component.ValueRO.RadiansPerSecond <= 0)
    13. {
    14. ecb.DestroyEntity(entity);
    15. }
    16. }
    17. ecb.Playback(state.EntityManager);
    18. ecb.Dispose();
    19. #endregion

    今天的Baking 系列就分享到这里了,关注我学习更多的最新Unity DOTS开发技巧。

  • 相关阅读:
    基于armv8的kvm实现分析(一)虚拟化介绍
    计数类dp,完全背包,900. 整数划分
    esp32通过smartconfig连接wifi
    网络信息安全软考笔记(1)
    MUTISIM仿真 译码电路设计
    使用 JMeter 分布式性能测试
    golang 实现带令牌限流的JWT demo
    Python 中的后台进程
    MySQL数据库基本操作
    数据安全峰会2022 | 美创DSM获颁“数据安全产品能力验证计划”评测证书
  • 原文地址:https://blog.csdn.net/voidinit/article/details/134017936