Skip to content

Commit 8db2a2e

Browse files
committed
code review fix - remove unused param
1 parent 1e1ba52 commit 8db2a2e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

com.unity.formats.fbx/Editor/FbxExporter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1753,7 +1753,7 @@ internal static HashSet<float> GetKeyTimes(AnimationCurve[] animCurves)
17531753
/// a Cubic curve using the default tangents.
17541754
/// </summary>
17551755
internal static void ExportAnimationKeys (AnimationCurve uniAnimCurve, FbxAnimCurve fbxAnimCurve,
1756-
UnityToMayaConvertSceneHelper convertSceneHelper, string uniPropertyName)
1756+
UnityToMayaConvertSceneHelper convertSceneHelper)
17571757
{
17581758
// Copy Unity AnimCurve to FBX AnimCurve.
17591759
// NOTE: only cubic keys are supported by the FbxImporter
@@ -1951,7 +1951,7 @@ private void ExportAnimationCurve (FbxNode fbxNode,
19511951
if (ModelExporter.ExportSettings.BakeAnimationProperty) {
19521952
ExportAnimationSamples (uniAnimCurve, fbxAnimCurve, frameRate, convertSceneHelper);
19531953
} else {
1954-
ExportAnimationKeys (uniAnimCurve, fbxAnimCurve, convertSceneHelper, uniPropertyName);
1954+
ExportAnimationKeys (uniAnimCurve, fbxAnimCurve, convertSceneHelper);
19551955
}
19561956
}
19571957
}

0 commit comments

Comments
 (0)