How to update entity states and animations in a component-based game
- by mivic
I'm trying to design a component-based entity system for learning purposes (and later use on some games) and I'm having some troubles when it comes to updating entity states.
I don't want to have an update() method inside the Component to prevent dependencies between Components.
What I currently have in mind is that components hold data and systems…