We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aa7450 commit 84b0416Copy full SHA for 84b0416
com.unity.formats.fbx/Editor/Sources/Recorders/FbxRecorder/FbxRecorder.cs
@@ -39,7 +39,9 @@ protected override void EndRecording(RecordingSession session)
39
var clipName = absolutePath.Replace(FileNameGenerator.SanitizePath(Application.dataPath), "Assets");
40
41
#if UNITY_2018_3_OR_NEWER
42
- aInput.GameObjectRecorder.SaveToClip(clip, settings.FrameRate);
+ var options = new Animations.CurveFilterOptions();
43
+ options.keyframeReduction = false;
44
+ aInput.GameObjectRecorder.SaveToClip(clip, settings.FrameRate, options);
45
#else
46
aInput.gameObjectRecorder.SaveToClip(clip);
47
#endif
0 commit comments