Tagged Questions
0
votes
1answer
1k views
GameObject and Components
I am creating a relatively simple game engine in C++ and Qt. I am using Irrlicht for graphics, and as of now, I will not be using any physics or audio libraries. For time's sake, I am using ...
2
votes
2answers
625 views
How do I deal with abstracting collision handling code between entities with differing collision components?
I'm using a component based entity design with Components that hold the data and Systems that act on entities based on the components they have. Entities are registered to all systems as they are ...
5
votes
2answers
573 views
Checking for Weapon Collision in a 2D overhead RPG game
I'm starting development on a 2D overhead RPG game, and am wondering what the best approach for handling weapon collision and dealing damage to enemies is.
I'm currently using a basic ...