void Unpack()
        {
            _unpackedCrawl = CrawlDataUnpacker.Unpack(_packedCrawled);
            m_Status       = "Loading snapshot in Grid .....";
#if !UNITY_5_6_OR_NEWER
            m_nodeView.ClearNodeView();
            bCheckHeapOnly = true;
#endif
            if (bCheckHeapOnly)
            {
                m_nodeView.CreateTreelessView(_unpackedCrawl);
            }
            else
            {
                Array.Sort(_unpackedCrawl.nativeObjects, new NativeUnityEngineObjectComparer());
                Array.Sort(_unpackedCrawl.managedObjects, new ManagedObjectComparer());
                m_nodeView.bShowMemHeap = false;
#if UNITY_5_6_OR_NEWER
                m_TreeModel.SetData(populateData(_unpackedCrawl.allObjects.Length));
                m_TreeView.Reload();
#endif
            }
            //Debug.Log("Snapshot Loaded! " + _unpackedCrawl);
            m_Status = "Snapshot Loaded!";
        }
        void Unpack()
        {
            _unpackedCrawl = CrawlDataUnpacker.Unpack(_packedCrawled);
            m_Status       = "Loading snapshot in Grid .....";

            m_TreeModel.SetData(populateData(_unpackedCrawl.allObjects.Length));
            m_TreeView.Reload();
            m_Status = "Snapshot Loaded!";
        }