Hi i add same type component to few entities when entities are created.
in my work, add component with switch is fine but i guess its not good performance so i wanna make switch statement before use for statement
This is my origin code
How to add variable Type component to entity?
in my work, add component with switch is fine but i guess its not good performance so i wanna make switch statement before use for statement
This is my origin code
Code (CSharp):
- for (int i = 0; i < Prefabs.lenght; i++)
- {
- Entity instance = CommandBuffer.Instantiate(index, prefabSpawner.Prefab);
- switch (prefabSpawner.unitType)...