private void LoadPanels()
        {
            scrollScript.InitLists();
            things     = new List <Thing>(rules.Things);
            things     = rules.Things.Shuffle().ToList();
            sizeThings = things.Count;
            maxScore  += sizeThings;
            scoreLevel = 0;

            foreach (var thing in things)
            {
                scrollScript.InstPanel(panelImage, thing);
            }

            scrollScript.ActivateScript();
            swipeScript.ActivateScript();
            animatorController.SetBool("isStartSwipeHelp", true);
        }