Borodar.ReorderableList.ReorderableListControl.ReorderableListControl C# (CSharp) Метод

ReorderableListControl() статический приватный Метод

static private ReorderableListControl ( ) : System.Collections.Generic
Результат System.Collections.Generic
        static ReorderableListControl()
        {
            s_CurrentListStack = new Stack<ListInfo>();
            s_CurrentListStack.Push(default(ListInfo));

            s_CurrentItemStack = new Stack<ItemInfo>();
            s_CurrentItemStack.Push(new ItemInfo(-1, default(Rect)));

            if (EditorGUIUtility.isProSkin) {
                AnchorBackgroundColor = new Color(85f / 255f, 85f / 255f, 85f / 255f, 0.85f);
                TargetBackgroundColor = new Color(0, 0, 0, 0.5f);
            }
            else {
                AnchorBackgroundColor = new Color(225f / 255f, 225f / 255f, 225f / 255f, 0.85f);
                TargetBackgroundColor = new Color(0, 0, 0, 0.5f);
            }
        }

Same methods

ReorderableListControl::ReorderableListControl ( ReorderableListFlags flags ) : System.Collections.Generic