Understanding Terminology
In this lesson, we’ll learn about the Entity Component System.
We'll cover the following...
What is ECS?
ECS uses a common set of terms to denote its different parts:
-
An entity can be anything: an adventurer, an orc, or a pair of shoes. The game map is an exception; it’s usually not an entity but rather a resource that entities reference to travel. Entities don’t have logic associated with them. They’re little more ...