blender/release/scripts/presets/render/4K_UW_1600p.py
Bastien Montagne f4b5d0ba3a Add some basic 4K render presets.
This difinition is becomming rather common now, time to add it to our
collection imho (requested in T53064).
2017-10-14 10:08:48 +02:00

9 lines
314 B
Python

import bpy
bpy.context.scene.render.resolution_x = 3840
bpy.context.scene.render.resolution_y = 1600
bpy.context.scene.render.resolution_percentage = 100
bpy.context.scene.render.pixel_aspect_x = 1
bpy.context.scene.render.pixel_aspect_y = 1
bpy.context.scene.render.fps = 24
bpy.context.scene.render.fps_base = 1