For some reason RenderGroups must be groups for camera reorientation to function

This commit is contained in:
Grant Sanderson 2024-08-23 14:56:35 -05:00
parent 8785eb1844
commit 51de1fb650

View file

@ -394,7 +394,7 @@ class Scene(object):
for group in self.render_groups:
group.clear()
self.render_groups = [
batch[0].get_group_class()(*batch) if len(batch) > 1 else batch[0]
batch[0].get_group_class()(*batch)
for batch, key in batches
]