Assets.UnderConstruction.Editor.GraphManagementUISystem.QueryDesignerWindowModalContent C# (CSharp) Метод

QueryDesignerWindowModalContent() публичный Метод

public QueryDesignerWindowModalContent ( List content ) : void
content List
Результат void
        public void QueryDesignerWindowModalContent(List<DesignerWindowModalContent> content)
        {
            if (EnableGraphManagementhWizard)
            {
                content.Add(new DesignerWindowModalContent()
                {
                    ZIndex = 1,
                    Drawer = (rect) =>
                    {
                    //    try
                    //    {
                            DrawGraphManagementWizard(rect);
                        //}
                        //catch (Exception ex)
                        //{
                      //      EnableGraphManagementhWizard = false;
                    //        Debug.LogError(ex);
                        //}
                    }
                });
            }
        }
        [Inject]