UnityEditor.GUISlideGroup.Begin C# (CSharp) Méthode

Begin() public méthode

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