public void Begin()
 {
   if (GUISlideGroup.current != null)
     Debug.LogError((object) "You cannot nest animGroups");
   else
     GUISlideGroup.current = this;
 }
示例#2
0
 public void Begin()
 {
     if (GUISlideGroup.current != null)
     {
         Debug.LogError("You cannot nest animGroups");
         return;
     }
     GUISlideGroup.current = this;
 }
		public void Begin()
		{
			if (GUISlideGroup.current != null)
			{
				Debug.LogError("You cannot nest animGroups");
				return;
			}
			GUISlideGroup.current = this;
		}
 public void Begin()
 {
     if (current != null)
     {
         Debug.LogError("You cannot nest animGroups");
     }
     else
     {
         current = this;
     }
 }
示例#5
0
 public void Begin()
 {
     if (current != null)
     {
         Debug.LogError("You cannot nest animGroups");
     }
     else
     {
         current = this;
     }
 }
示例#6
0
 public void Begin()
 {
     if (GUISlideGroup.current != null)
     {
         Debug.LogError((object)"You cannot nest animGroups");
     }
     else
     {
         GUISlideGroup.current = this;
     }
 }
示例#7
0
 public void SetID(GUISlideGroup owner, int id)
 {
     this.m_ID    = id;
     this.m_Owner = owner;
 }
 public void Reset()
 {
     current = null;
     this.animIDs.Clear();
 }
 public void End()
 {
     current = null;
 }
示例#10
0
 public void SetID(GUISlideGroup owner, int id)
 {
     this.m_ID = id;
     this.m_Owner = owner;
 }
示例#11
0
 public void End()
 {
     current = null;
 }
		private void InitList(SerializedObject serializedObject, SerializedProperty elements, IList elementList, bool draggable, bool displayHeader, bool displayAddButton, bool displayRemoveButton)
		{
			this.id = GUIUtility.GetPermanentControlID();
			this.m_SerializedObject = serializedObject;
			this.m_Elements = elements;
			this.m_ElementList = elementList;
			this.m_Draggable = draggable;
			this.m_Dragging = false;
			this.m_SlideGroup = new GUISlideGroup();
			this.displayAdd = displayAddButton;
			this.m_DisplayHeader = displayHeader;
			this.displayRemove = displayRemoveButton;
			if (this.m_Elements != null && !this.m_Elements.editable)
			{
				this.m_Draggable = false;
			}
			if (this.m_Elements != null && !this.m_Elements.isArray)
			{
				Debug.LogError("Input elements should be an Array SerializedProperty");
			}
		}
 public void Reset()
 {
   GUISlideGroup.current = (GUISlideGroup) null;
   this.animIDs.Clear();
 }
 public void End()
 {
   GUISlideGroup.current = (GUISlideGroup) null;
 }
示例#15
0
 public void End()
 {
     GUISlideGroup.current = null;
 }
示例#16
0
 public void Reset()
 {
     GUISlideGroup.current = null;
     this.animIDs.Clear();
 }
示例#17
0
 public void Reset()
 {
     current = null;
     this.animIDs.Clear();
 }