Entitas-CSharp

Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity

Github星跟蹤圖

Entitas - The Entity Component System Framework for C# and Unity

Entitas is a super fast Entity Component System Framework (ECS) specifically made for C# and Unity. Internal caching and blazing fast component access makes it second to none. Several design decisions have been made to work optimal in a garbage collected environment and to go easy on the garbage collector. Entitas comes with an optional code generator which radically reduces the amount of code you have to write and makes your code read like well written prose.


» Download

» Documentation

» Ask a question

» Wiki and example projects

» #madeWithEntitas


Video Tutorials & Unity Unite Talks
=================, Entitas ECS Unity Tutorial, Entitas ECS Unity Tutorial, Entity system architecture with Unity, ECS architecture with Unity by example, :---------------------------------:, :---------------------------------:, :--------------------------------------------------------------------:, :--------------------------------------------------------------------:, Shmup1, Shmup2, Unite 15, Unite 16, Setup & Basics, Git & Unit Tests, » Open the slides on SlideShare: Unite Europe 2015, » Open the slides on SlideShare: Unite Europe 2016, First glimpse

The optional code generator lets you write code that is super fast, safe and literally screams its intent.

public static GameEntity CreateRedGem(this GameContext context, Vector3 position) {
    var entity = context.CreateEntity();
    entity.isGameBoardElement = true;
    entity.isMovable = true;
    entity.AddPosition(position);
    entity.AddAsset("RedGem");
    entity.isInteractive = true;
    return entity;
}
var entities = context.GetEntities(Matcher<GameEntity>.AllOf(GameMatcher.Position, GameMatcher.Velocity));
foreach(var e in entities) {
    var pos = e.position;
    var vel = e.velocity;
    e.ReplacePosition(pos.value + vel.value);
}

Overview

Entitas is fast, light and gets rid of unnecessary complexity. There are less than a handful classes you have to know to rocket start your game or application:

  • Entity
  • Context
  • Group
  • Entity Collector

Read more...

Code Generator

The Code Generator generates classes and methods for you, so you can focus on getting the job done. It radically reduces the amount of code you have to write and improves readability by a huge magnitude. It makes your code less error-prone while ensuring best performance. I strongly recommend using it!

Read more...

Unity integration

The optional Unity module integrates Entitas nicely into Unity and provides powerful editor extensions to inspect and debug contexts, groups, entities, components and systems.

Read more...

Entitas deep dive

Read the wiki or checkout the example projects to see Entitas in action. These example projects illustrate how systems, groups, collectors and entities all play together seamlessly.

Download Entitas

Each release is published with zip files containing all source files you need.

Show releases

Thanks to

Big shout out to @mzaks, @cloudjubei and @devboy for endless hours of discussion and helping making Entitas awesome!

Maintainer(s)

Different language?

Entitas is available in

主要指標

概覽
名稱與所有者sschmid/Entitas
主編程語言C#
編程語言C# (語言數: 2)
平台
許可證MIT License
所有者活动
創建於2014-03-18 16:36:44
推送於2023-12-30 16:18:56
最后一次提交
發布數123
最新版本名稱1.14.1 (發布於 2022-09-26 18:31:21)
第一版名稱0.1.0 (發布於 2014-03-21 15:51:05)
用户参与
星數7.4k
關注者數402
派生數1.1k
提交數2.4k
已啟用問題?
問題數962
打開的問題數101
拉請求數84
打開的拉請求數1
關閉的拉請求數38
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?