Created
September 26, 2018 16:10
-
-
Save dreisicht/98377622062039be18f7ead1969b87b8 to your computer and use it in GitHub Desktop.
Rendersettings python
This file contains hidden or 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
import bpy | |
print("PYTHON SCRIPT LAUNCHED!!!!!!") | |
for scene in bpy.data.scenes: | |
print("setting settings for", scene) | |
scene.render.resolution_x = 1920 | |
scene.render.resolution_y = 1080 | |
scene.render.resolution_percentage = 200 | |
scene.cycles.samples = 512 | |
scene.render.use_border = False | |
scene.cycles.seed = 0 | |
#denoising? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment