Is entt useful for non-game software? #1200
Unanswered
idealist-dg
asked this question in
Q&A
Replies: 1 comment
-
Yes, it is. It depends on the implementation actually. EnTT is designed to make it the default because I use this approach a lot. 🙂
What changes is the version actually. Try to look at |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm using entt to build EDA software.Maybe this is strange, but my original idea was to use entt to build more scalable and performant software.
Scalability
EDA software contains many modules, and different modules need to use smart Pointers to frequently reference each other. After using entt, different modules only need to bind its specific components on the entity.
High performance
Use entt to speed up special system update processes such as rendering.
The above is the starting point for me to use entt. Could you give me some professional advice?
Thank you for reading and replying.
Beta Was this translation helpful? Give feedback.
All reactions