-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ECS base #2
Labels
Comments
MrDmitry
added a commit
that referenced
this issue
Oct 9, 2018
Migrate tests Fix migration build issues
MrDmitry
added a commit
that referenced
this issue
Oct 12, 2018
MrDmitry
added a commit
that referenced
this issue
Oct 12, 2018
MrDmitry
added a commit
that referenced
this issue
Oct 12, 2018
MrDmitry
added a commit
that referenced
this issue
Dec 6, 2018
MrDmitry
added a commit
that referenced
this issue
Dec 8, 2018
MrDmitry
added a commit
that referenced
this issue
Dec 11, 2018
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Entity-Component-System shall describe the way whole product is aimed to be used.
Entity
Entity shall represent an identifiable object within the system.
Entity shall have interface to check/modify components associated with object.
Component
Component shall represent a known collection of data. For example position can be represented by a set of coordinates that collectively can be called
Position Component
.There shall be a configurable number of components.
Built-in components include but are not limited to:
Users shall be able to add their own components and use those in user-developed systems.
System
System shall represent an isolated processing unit that works on entities that have required Components with them.
There shall be a configurable number of systems.
Build-in systems include but are not limited to:
Users shall be able to develop and integrate their own systems.
Miscellaneous
It is recommended that entities exist only in relation to some collection of entities (that can be referred to as a
World of Entities
). Such approach allows encapsulating data storage and data processing of Entity-related functionality inside theWorld
object andEntity
becomes simply an ID for the object.The text was updated successfully, but these errors were encountered: