UnityEditor.ShadowCascadeSplitGUI.DragCache.DragCache C# (CSharp) Method

DragCache() public method

public DragCache ( int activePartition, float normalizedPartitionSize, Vector2 currentMousePos ) : System
activePartition int
normalizedPartitionSize float
currentMousePos Vector2
return System
            public DragCache(int activePartition, float normalizedPartitionSize, Vector2 currentMousePos)
            {
                this.m_ActivePartition = activePartition;
                this.m_NormalizedPartitionSize = normalizedPartitionSize;
                this.m_LastCachedMousePosition = currentMousePos;
            }
        }
ShadowCascadeSplitGUI.DragCache