CSL_Traffic.UI.RoadCustomizerPanel.Awake C# (CSharp) Method

Awake() private method

private Awake ( ) : void
return void
        private void Awake()
        {
            this.m_atlas = UIUtils.LoadThumbnailsTextureAtlas("UIThumbnails");
            this.m_scrollablePanel = GetComponentInChildren<UIScrollablePanel>();
            this.m_scrollablePanel.autoLayoutStart = LayoutStart.TopLeft;
            UIScrollbar scrollbar = this.GetComponentInChildren<UIScrollbar>();
            if (scrollbar != null)
                scrollbar.incrementAmount = 109;
            this.m_objectIndex = m_selectedIndex = 0;
            this.m_panelType = Panel.Unset;
        }