-
Notifications
You must be signed in to change notification settings - Fork 0
Entity
Xeltica edited this page Jun 25, 2018
·
5 revisions
Entities are objects which can move inside the screen freely in pixel and can have special functions.
You can also say that entities are objects that is the core of the game because they uses as characters such as PC & NPC, tricks, event triggers etc.
The following entities will be implemented. Entity classes are basically added 'Entity' as a suffix but some one aren't it because of historical reasons.
| Name | Description |
|---|---|
| Entity | A base class of all entities. |
| SpriteEntity | A entity which can render sprite. |
| LivableEntity | A SpriteEntity which affected by gravity. |
| FlyableEntity | (unimplemented)A flyable LivableEntity. |
| NpcBehaviour | A NPC. |
| PlayerController | A playable LivableEntity. |