EasyEcs 1.0.7
See the version list below for details.
dotnet add package EasyEcs --version 1.0.7
NuGet\Install-Package EasyEcs -Version 1.0.7
<PackageReference Include="EasyEcs" Version="1.0.7" />
<PackageVersion Include="EasyEcs" Version="1.0.7" />
<PackageReference Include="EasyEcs" />
paket add EasyEcs --version 1.0.7
#r "nuget: EasyEcs, 1.0.7"
#addin nuget:?package=EasyEcs&version=1.0.7
#tool nuget:?package=EasyEcs&version=1.0.7
EasyEcs
An Entity-Component-System library
Why?
Sometimes we may want to remove bidirectional dependencies between our code, and ECS is a good way to do this.
This design pattern offers a clean way to separate the data from the logic, and it's also a good way to improve the performance.
What is ECS?
E - Entity
C - Component
S - System
But what really is it?
Well, as a human, we (entities) live in the world (context), and we have some properties (components). Moreover, we have things to do based on our properties (systems).
Concepts in EasyEcs
- A
Context
holds severalEntity
instances, someSystem
instances and someSingletonComponent
instances. - Each
Entity
has someComponent
instances. - Each
Component
(orSingletonComponent
) has only data properties. - Each
System
can filter lots ofEntity
instances in the sameContext
by their components and operate logics on them.
Why it removes bidirectional dependencies?
- Only
System
contains logics and none of them should reference on each other. But we allow one system depends on another by specifyingPriority
. (They should only depend on the filtered entities/components) Component
only contains data properties and no logics. (Again, no way to have dependency)Entity
only contains components. (It is really just a container)
Why is it fast?
- As a
System
can operate on a batch of entities with components, we can well utilize the cache of the MMU. - We can also easily parallelize the systems to improve the performance, in a multi-core CPU environment.
Anything special in EasyEcs?
- We have priority for
System
, so you can control the order of systems. - We have frequency for
System
, so you can control the frequency of systems being executed. - We only allow asynchronous interfaces for
System
andContext
, so our ECS should not block the thread (unless you screw up). - We introduce built-in parallelism and/or concurrency for
System
, so you can easily parallelize your systems (for those who are in the same priority) and well utilize the multi-core CPU. - We have a cool guy who is maintaining this library. (Just kidding)
Example
Just check out the EasyEcs.UnitTest
project. I have comments there.
Documentation
Believe me, one day I will make a website for this and document everything.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net6.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last Updated |
---|---|---|
2.1.6 | 172 | 6/5/2025 |
2.1.5 | 138 | 6/5/2025 |
2.1.4 | 141 | 6/5/2025 |
2.1.3 | 131 | 6/5/2025 |
2.1.2 | 132 | 6/4/2025 |
2.1.1 | 135 | 6/4/2025 |
2.1.0 | 137 | 6/3/2025 |
2.0.10 | 141 | 6/1/2025 |
2.0.9 | 134 | 6/1/2025 |
2.0.8 | 91 | 6/1/2025 |
2.0.7 | 89 | 6/1/2025 |
2.0.6 | 129 | 4/11/2025 |
2.0.5 | 129 | 4/11/2025 |
2.0.4 | 132 | 4/11/2025 |
2.0.3 | 186 | 3/12/2025 |
2.0.2 | 202 | 3/8/2025 |
2.0.1 | 220 | 3/8/2025 |
2.0.0 | 213 | 3/7/2025 |
1.0.8 | 109 | 2/20/2025 |
1.0.7 | 102 | 2/20/2025 |
1.0.6 | 98 | 2/20/2025 |
1.0.5 | 118 | 2/10/2025 |
1.0.4 | 104 | 2/10/2025 |
1.0.3 | 107 | 1/30/2025 |
1.0.2 | 101 | 1/21/2025 |
1.0.1 | 103 | 1/21/2025 |
1.0.0 | 106 | 1/20/2025 |
0.0.1 | 96 | 1/20/2025 |