UnityEditor.View.Reflow C# (CSharp) Method

Reflow() private method

private Reflow ( ) : void
return void
        internal virtual void Reflow()
        {
            foreach (View view in this.children)
            {
                view.Reflow();
            }
        }

Usage Example

示例#1
0
 internal virtual void Reflow()
 {
     View[] children = this.children;
     for (int i = 0; i < children.Length; i++)
     {
         View view = children[i];
         view.Reflow();
     }
 }
All Usage Examples Of UnityEditor.View::Reflow