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

Curious about how ECS is implemented in Tiny

Discussion in 'Project Tiny' started by Seb-1814, Dec 5, 2018.

  1. Seb-1814

    Seb-1814

    Joined:
    Nov 23, 2013
    Posts:
    23
    If I'm not mistaken, unity's ECS is written in c#. Does Tiny use the same implementation of it, or is it another version, maybe written in TypeScript?
     
  2. MBest_Unity

    MBest_Unity

    Administrator

    Joined:
    May 4, 2018
    Posts:
    18
    The core engine in written in C++ and uses TypeScript for game logic. It shares the same architecture as what you see in ECS. The C# work will bring both projects closer together.
     
    K1kk0z90_Unity likes this.
  3. Seb-1814

    Seb-1814

    Joined:
    Nov 23, 2013
    Posts:
    23
    Ok I see, thanks!