FullInspector.Rotorz.ReorderableList.ReorderableListControl.ReorderableListControl C# (CSharp) Method

ReorderableListControl() static private method

static private ReorderableListControl ( ) : System
return System
        static ReorderableListControl()
        {
            s_CurrentItemIndex = new Stack<int>();
            s_CurrentItemIndex.Push(-1);

            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);
            }

            s_RemoveButtonNormalContent = new GUIContent(ReorderableListResources.texRemoveButton);
            s_RemoveButtonActiveContent = new GUIContent(ReorderableListResources.texRemoveButtonActive);
        }

Same methods

ReorderableListControl::ReorderableListControl ( ReorderableListFlags flags ) : System