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.
2 parents 0fffbda + 0c128b4 commit 8eee6eaCopy full SHA for 8eee6ea
source/FrameRecorder/Inputs/Animation/Editor/AnimationInput.cs
@@ -25,7 +25,11 @@ public override void BeginRecording(RecordingSession session)
25
#endif
26
foreach (var binding in aniSettings.bindingType)
27
{
28
- m_gameObjectRecorder.BindComponent(srcGO, binding, aniSettings.recursive);
+#if UNITY_2018_2_OR_NEWER
29
+ m_gameObjectRecorder.BindComponentsOfType(srcGO, binding, aniSettings.recursive);
30
+#else
31
+ m_gameObjectRecorder.BindComponent(srcGO, binding, aniSettings.recursive);
32
+#endif
33
}
34
m_time = session.recorderTime;
35
0 commit comments