UnityEditor.ListViewState.Init C# (CSharp) 메소드

Init() 개인적인 메소드

private Init ( int totalRows, int rowHeight ) : void
totalRows int
rowHeight int
리턴 void
        private void Init(int totalRows, int rowHeight)
        {
            this.row = -1;
            this.column = 0;
            this.scrollPos = Vector2.zero;
            this.totalRows = totalRows;
            this.rowHeight = rowHeight;
            this.selectionChanged = false;
        }
    }