This repository has been archived by the owner on Sep 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Automated] Merged develop into main
- Loading branch information
Showing
20 changed files
with
658 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
from openpype.hosts.maya.api import ( | ||
lib, | ||
plugin | ||
) | ||
from openpype.lib import BoolDef | ||
|
||
|
||
class CreateMatchmove(plugin.MayaCreator): | ||
"""Instance for more complex setup of cameras. | ||
Might contain multiple cameras, geometries etc. | ||
It is expected to be extracted into .abc or .ma | ||
""" | ||
|
||
identifier = "io.openpype.creators.maya.matchmove" | ||
label = "Matchmove" | ||
family = "matchmove" | ||
icon = "video-camera" | ||
|
||
def get_instance_attr_defs(self): | ||
|
||
defs = lib.collect_animation_defs() | ||
|
||
defs.extend([ | ||
BoolDef("bakeToWorldSpace", | ||
label="Bake Cameras to World-Space", | ||
tooltip="Bake Cameras to World-Space", | ||
default=True), | ||
]) | ||
|
||
return defs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.