Search Unity

  1. Unity Asset Manager is now available in public beta. Try it out now and join the conversation here in the forums.
    Dismiss Notice

How does Tiny ECS compare to Unity.Entities?

Discussion in 'Project Tiny' started by illinar, Jan 12, 2019.

  1. illinar

    illinar

    Joined:
    Apr 6, 2011
    Posts:
    863
    Which features are supported currently or will be supported after C# support implementation?

    I'm currently interested in DynamicBuffer support and/or other array types support in components. Also what about the containers from Unity.Collections? I found no way so far to make any kind of hashmap.

    Is Tiny multithreaded?
     
    Last edited: Jan 12, 2019
    NotaNaN likes this.
  2. abeisgreat

    abeisgreat

    Joined:
    Nov 21, 2016
    Posts:
    44
    I can't speak to the other questions, but in Typescript hashmaps are just JavaScript objects.

    Code (JavaScript):
    1. const dict = {};
    2. dict["a"] = "b";
    3. delete dict["a"]