Skip to content

Commit

Permalink
Fix: Camera instance creation with gather into collection (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tilix4 authored Jan 26, 2023
1 parent da9baec commit f6c822c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openpype/hosts/blender/plugins/create/create_camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class CreateCamera(plugin.Creator):
icon = "video-camera"

def process(
self, datablocks: List[bpy.types.ID] = None
self, datablocks: List[bpy.types.ID] = None, **kwargs
) -> OpenpypeInstance:
# Create instance object
asset = self.data["asset"]
Expand All @@ -36,4 +36,4 @@ def process(
datablocks.append(camera_obj)

# Create Instance
return super().process(datablocks)
return super().process(datablocks, **kwargs)

0 comments on commit f6c822c

Please sign in to comment.