UnityEditor.CurveEditorRectangleTool.TransformKeys C# (CSharp) Method

TransformKeys() private method

private TransformKeys ( Matrix4x4 matrix, bool flipX, bool flipY ) : void
matrix UnityEngine.Matrix4x4
flipX bool
flipY bool
return void
        private void TransformKeys(Matrix4x4 matrix, bool flipX, bool flipY)
        {
            if (this.m_RippleTime)
            {
                this.m_CurveEditor.TransformRippleKeys(matrix, this.m_RippleTimeStart, this.m_RippleTimeEnd, flipX);
                GUI.changed = true;
            }
            else
            {
                this.m_CurveEditor.TransformSelectedKeys(matrix, flipX, flipY);
                GUI.changed = true;
            }
        }