private void InitAllViews()
		{
			if (this.m_Hierarchy == null)
			{
				this.m_Hierarchy = new AnimationWindowHierarchy(this.state, this, new Rect(0f, 0f, 1f, 1f));
			}
			if (this.m_DopeSheetEditor == null)
			{
				this.m_DopeSheetEditor = new DopeSheetEditor(this.state, this);
			}
			if (this.m_AnimationEventTimeLine == null)
			{
				this.m_AnimationEventTimeLine = new AnimationEventTimeLine(this);
			}
		}
 private void InitializeHierarchy()
 {
   this.m_Hierarchy = new AnimationWindowHierarchy(this.m_State, this.m_OwnerWindow, new Rect(0.0f, 0.0f, this.hierarchyWidth, 100f));
 }