Search Unity

  1. Welcome to the Unity Forums! Please take the time to read our Code of Conduct to familiarize yourself with the forum rules and how to post constructively.
  2. Join us on Thursday, June 8, for a Q&A with Unity's Content Pipeline group here on the forum, and on the Unity Discord, and discuss topics around Content Build, Import Workflows, Asset Database, and Addressables!
    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:
    22
    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

    Unity Technologies

    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:
    22
    Ok I see, thanks!