Skip to content

Commit

Permalink
Merge pull request #165 from dictoon/master
Browse files Browse the repository at this point in the history
Adjust default rendering settings
  • Loading branch information
dictoon authored Jan 13, 2018
2 parents 64cd3d7 + 7b9a7a1 commit edc029f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions properties/scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,12 @@ def register(cls):

cls.tile_width = bpy.props.IntProperty(name="tile_width",
description="Set the width of the render tile",
default=32,
default=64,
min=1)

cls.tile_height = bpy.props.IntProperty(name="tile_height",
description="Set the height of the render tile",
default=32,
default=64,
min=1)

cls.pixel_filter = bpy.props.EnumProperty(name="Pixel Filter",
Expand Down Expand Up @@ -139,7 +139,7 @@ def register(cls):
description="Maximum number of anti-aliasing samples",
min=1,
max=1000000,
default=256,
default=64,
subtype='UNSIGNED')

cls.adaptive_sampler_enable_diagnostics = bpy.props.BoolProperty(name="adaptive_sampler_enable_diagnostics",
Expand Down

0 comments on commit edc029f

Please sign in to comment.