Skip to content

Commit

Permalink
fixed wrong settings assignment > recording anim. pointer was used fo…
Browse files Browse the repository at this point in the history
…r record in world space
  • Loading branch information
pfcDorn committed Nov 20, 2023
1 parent dbd92ee commit 8160277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Runtime/Scripts/Timeline/GLTFRecorderBehaviour.cs
Expand Up @@ -36,7 +36,7 @@ private void ProcessRecording(double getTime, Transform getExportRoot)
{
if (recorder == null)
{
recorder = new GLTFRecorder(getExportRoot, Clip.m_RecordBlendShapes, Clip.m_RecordAnimationPointer);
recorder = new GLTFRecorder(getExportRoot, Clip.m_RecordBlendShapes, recordAnimationPointer: Clip.m_RecordAnimationPointer);
recorder.AnimationName = Clip.m_AnimationName;
recorder.StartRecording(getTime);
}
Expand Down

0 comments on commit 8160277

Please sign in to comment.