"ECS of Unity DOTS from entry to real fragrance" (2) DOTS development environment configuration

1. Unity DOTS environment configuration

1. If you use ECS, you need to import these four packages in Package Manager:

  • com.unity.burst
  • com.unity.entities
  • com.unity.jobs
  • com.unity.mathematics
    insert image description here
    Here is an easier way to install directly:
  • Com.unity.rendering.hybrid
    is fine. Hybrid depends on the above four packages. Installing hybrid Unity will directly install the environment for us.
    hybrid is a hybrid renderer that provides systems and components for rendering ECS ​​entities, and is currently a solution for unity ECS to render GameObjects. official chain

Guess you like

Origin blog.csdn.net/cxihu/article/details/120609784