Skip to content

Commit

Permalink
fix: selected root transforms should always be exported, even if disa…
Browse files Browse the repository at this point in the history
…bled
  • Loading branch information
hybridherbst committed Apr 24, 2021
1 parent b7e1583 commit 893a7f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ private SceneId ExportScene(string name, Transform[] rootObjTransforms)
scene.Nodes = new List<NodeId>(rootObjTransforms.Length);
foreach (var transform in rootObjTransforms)
{
if(!ShouldExportTransform(transform)) continue;
// if(!ShouldExportTransform(transform)) continue;
scene.Nodes.Add(ExportNode(transform));
}

Expand Down

0 comments on commit 893a7f9

Please sign in to comment.