🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Advertisement

Latest Entities Activity

Within the persistence context, the entity instances and their lifecycle are managed. The EntityManager API is used to create and remove persistent entity

myfiosgateway.one

mobdro

8,594 views
Advertisement

You can also do it like the C# CLR is managing memory and have an indirection. Something like a second array and your Entity is just a wrapper around an index into that array. Something like

struct Entity
{
    public:
        EntityInstance* operator->() const
        {
            return Entity…
5,757 views

Is there a typical way to do entity management in a large open world game. I am using Unity.  

I have a background thread that manages server processing.  This only runs in a Headless or Client Hosted game.  This has a dictionary of entities defined by an interface.  I have sever…

3,714 views
Advertisement
Advertisement