Asgard.Core.System.ObjectMapper.CreateEntity C# (CSharp) Метод

CreateEntity() публичный статический Метод

public static CreateEntity ( uint id ) : Entity
id uint
Результат Entity
        public static Entity CreateEntity(uint id = 0)
        {
            Entity ent = _manager.GetEntityByUniqueId(id);
            if (ent == null)
            {
                ent = CreateEntityById(id);
                _netObjectCache[ent] = new List<NetworkObject>();
            }

            return ent;
        }