/// <summary> /// Copies the instance values and assigns them to the target. /// </summary> /// <param name="target">Target.</param> public void DeepCopyInto(Vector3CurvesAttribute target) { target.locked = locked; m_CurveX.DeepCopyInto(target.curveX); m_CurveY.DeepCopyInto(target.curveY); m_CurveZ.DeepCopyInto(target.curveZ); }