We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The CameraOptions to not, by default, assign default values to the camera's pan/scan settings, also described here: Colorbleed/maya-capture-gui#66
CameraOptions
Should we implement a default for this?
Note that it is already possible to supply the options to customize it with capture.capture. For example:
capture.capture
import capture # No pan/zoom capture.capture(camera="persp", camera_options={"panZoomEnabled": 0, "horizontalPan": 0.0, "verticalPan": 0.0, "zoom": 1.0}) # Pan/zoom with 0.2 horizontal pan capture.capture(camera="persp", camera_options={"panZoomEnabled": 1, "horizontalPan": 0.2, "verticalPan": 0.0, "zoom": 1.0})
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Discussion
The
CameraOptions
to not, by default, assign default values to the camera's pan/scan settings, also described here: Colorbleed/maya-capture-gui#66Should we implement a default for this?
Note that it is already possible to supply the options to customize it with
capture.capture
. For example:The text was updated successfully, but these errors were encountered: