UnityEditor.GUISlideGroup.Begin C# (CSharp) Method

Begin() public method

public Begin ( ) : void
return void
        public void Begin()
        {
            if (current != null)
            {
                Debug.LogError("You cannot nest animGroups");
            }
            else
            {
                current = this;
            }
        }