Skip to content
Isaiah Kelly edited this page Apr 27, 2017 · 78 revisions

Installation

1. Download Entitas

2. Setup

Setup For C#

  • Option A: Use the EntitasPure sample project
  • Option B:
    1. Add the contents of Entitas-CSharp.zip to your project
      • If you want to use the code generator you can create yourself a simple helper console application which you can run as a post compile command.
      • See EntitasPure Program.cs
    2. The project file must be updated in order to recognize the generated files
    3. Add this to your .csproj

Example:

<ItemGroup>
  <Compile Include="Generated\**\*.cs" />
</ItemGroup>

Setup For Unity Engine

  1. Copy the contents of the Entitas-Unity.zip into the Assets folder of your Unity project.
    • It's recommended to place Entitas in a sub-folder for organization (e.g Assets/Libraries/Entitas), but you can place it anywhere you like as long as it resides inside the Assets folder.
  2. Open the Entitas Preferences from the Menu Bar -> Entitas -> Preferences
  3. Specify all the paths and set everything up to your liking
  4. Use the generate button or the menu item

Done. You're awesome! 🎉

Add contexts, write some components and systems and make an awesome game. Feel free to share what you've created with Entitas in the Community Section in the Wiki and use #madeWithEntitas in your Tweets so we can all enjoy playing your game or learn from it!

Clone this wiki locally