public override void Export(Asset asset, string path)
        {
            rootPath = Path.GetDirectoryName(path);

            var model = (asset as Model);
            var cnt = new CNT();

            TravelTree(model.Root, ref cnt, true);

            cnt.Save(path);
        }