Tagged Questions
2
votes
1answer
88 views
Entity Component Systems with C++ - Accessing components
(What I'm describing is based on this design: What is an entity system framework?, scroll down and you'll find it)
I'm having some problems creating an entity-component system in C++. I have my ...
2
votes
1answer
137 views
Different kinds of movement in component based entity system
I am writing a pong clone with a component based entity system.
But I am having trouble with the different kinds of movement in the game.
The problem is the following: My paddles will just move up ...
0
votes
0answers
79 views
Techniques for incorporating physics engines like Box2D into a Component-based Entity System
Currently i'm working with my own physics engine, however given the fact that the emscripten ports have gotten incredibly good, i wanted to try and incorporate Box2D into my entity system for the next ...
-1
votes
1answer
162 views
What programming language is most suited for Entity Component System development? [closed]
What programming language is most suited for Entity Component System (ECS) development? And are languages like straight C or functional languages better suited to ECS than an OOP language like C++, ...
1
vote
2answers
270 views
Handling movement using an Entity Component-based System Architecture
I have seen various descriptions of how to handle movement in a component-based entity framework. The most common I've stumbled across is the idea of using components called Controller, Physics, ...
6
votes
1answer
338 views
How to handle materials in an Entity/Component system
My E/C implementation is the basic one where Entities are just ID's, Components are data and Systems act on the Data. Right now I'm having trouble with object materials and rendering in general. For ...
