Skip to content

Commit e299db2

Browse files
committed
fix infinite recursion from merge issue
1 parent 27a42ab commit e299db2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Packages/com.unity.formats.fbx/Editor/Scripts/ExportModelEditorWindow.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ protected override GameObject GetGameObject()
404404
{
405405
return (IsTimelineAnim)
406406
? AnimationOnlyExportData.GetGameObjectAndAnimationClip(ToExport [0]).Key
407-
: GetGameObject ();
407+
: ModelExporter.GetGameObject(ToExport[0]);
408408
}
409409

410410
protected override bool DisableTransferAnim {

0 commit comments

Comments
 (0)