Ejemplo n.º 1
0
        public void Spawn(ShopModel shopModel)
        {
            ClearShop();

            //Создать разделы
            foreach (SectionModel shopSectionModel in shopModel.UiSections)
            {
                sectionSpawner.SpawnSection(shopSectionModel, shopModel.Id);
            }

            var requiredSectionNames = shopModel.GetRequiredSectionNames();

            scrollViewSmoothMovement.InitRequiredSections(requiredSectionNames);
        }