Skip to content

Instantly share code, notes, and snippets.

@diegogangl
Created April 4, 2016 13:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diegogangl/1539552938f8eefaf306b9786fd5505f to your computer and use it in GitHub Desktop.
Save diegogangl/1539552938f8eefaf306b9786fd5505f to your computer and use it in GitHub Desktop.
Change resolution for all scenes in Blender
import bpy
for scene in bpy.data.scene:
scene.render.resolution_x = 1920
scene.render.resolution_y = 1080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment