UnityEditor.ASCommitWindow.ASCommitWindow C# (CSharp) Method

ASCommitWindow() public method

public ASCommitWindow ( ASMainWindow parentWin, string guidsToTransfer ) : System
parentWin ASMainWindow
guidsToTransfer string
return System
        public ASCommitWindow(ASMainWindow parentWin, string[] guidsToTransfer)
        {
            float[] relativeSizes = new float[] { 50f, 50f };
            int[] minSizes = new int[] { 50, 50 };
            this.horSplit = new SplitterState(relativeSizes, minSizes, null);
            float[] singleArray2 = new float[] { 60f, 30f };
            int[] numArray2 = new int[] { 0x20, 0x40 };
            this.vertSplit = new SplitterState(singleArray2, numArray2, null);
            this.description = "";
            this.scrollPos = Vector2.zero;
            this.lastTransferMovedDependencies = false;
            this.lastRevertSelectionChanged = -1;
            this.showReinitedWarning = -1;
            this.guidsToTransferToTheRightSide = guidsToTransfer;
            this.parentWin = parentWin;
            this.initialUpdate = true;
        }