Tagged Questions
0
votes
1answer
474 views
Is an entity/component system appropriate for this geometry handling system?
I'm working on a Component/Entity-System based game engine atm. And I have this little dilemma. I have simple geometrical structures which might be downloaded or created in game at some point.
These ...
4
votes
1answer
437 views
Managing Game Entity coordinates
In my Game I'm currently have "Scene Coordinates" which are the X,Y coordinates relative to a Game Scene.
In that Scene there are Game Entities, let's say there's a GameEntity A in x=100.0, y=100.0 ( ...