Search Unity

I have no idea what ECS and Jobs System are

Discussion in 'Entity Component System' started by Liminal-Ridges, Jul 10, 2018.

  1. Liminal-Ridges

    Liminal-Ridges

    Joined:
    Oct 21, 2015
    Posts:
    256
    Someone explain me please what do i have to do differenly
     
  2. Liminal-Ridges likes this.
  3. davenirline

    davenirline

    Joined:
    Jul 7, 2010
    Posts:
    982
    Do your own learning. There are documentation and examples on the pinned threads. No one can just feed you this knowledge. Start coding some ECS and ask specific questions instead, like where you get stuck.
     
  4. 5argon

    5argon

    Joined:
    Jun 10, 2013
    Posts:
    1,555
    One liners to get you started
    ECS : Tight and neat memory for your data so iteration over them is very fast.
    C# Jobs system : Copy data to a C# struct and everything inside that is instantly safe to use on other thread.
    Together : You don't even have to copy data because your job understand and can directly use that tight memory area.
     
  5. rz_0lento

    rz_0lento

    Joined:
    Oct 8, 2013
    Posts:
    2,361