Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/blender/addon/properties.py
| Context not available. | |||||
| description="Distance between volume shader samples when rendering the volume " | description="Distance between volume shader samples when rendering the volume " | ||||
| "(lower values give more accurate and detailed results, but also increased render time)", | "(lower values give more accurate and detailed results, but also increased render time)", | ||||
| default=0.1, | default=0.1, | ||||
| min=0.0000001, max=100000.0, soft_min=0.01, soft_max=1.0, precision=4 | min=0.0000001, max=100000.0, soft_min=0.01, soft_max=1.0, precision=4, | ||||
| unit='LENGTH' | |||||
| ) | ) | ||||
| volume_max_steps: IntProperty( | volume_max_steps: IntProperty( | ||||
| Context not available. | |||||
| description="Size of a micropolygon in pixels", | description="Size of a micropolygon in pixels", | ||||
| min=0.1, max=1000.0, soft_min=0.5, | min=0.1, max=1000.0, soft_min=0.5, | ||||
| default=1.0, | default=1.0, | ||||
| subtype="PIXEL" | subtype='PIXEL' | ||||
| ) | ) | ||||
| preview_dicing_rate: FloatProperty( | preview_dicing_rate: FloatProperty( | ||||
| name="Preview Dicing Rate", | name="Preview Dicing Rate", | ||||
| description="Size of a micropolygon in pixels during preview render", | description="Size of a micropolygon in pixels during preview render", | ||||
| min=0.1, max=1000.0, soft_min=0.5, | min=0.1, max=1000.0, soft_min=0.5, | ||||
| default=8.0, | default=8.0, | ||||
| subtype="PIXEL" | subtype='PIXEL' | ||||
| ) | ) | ||||
| max_subdivisions: IntProperty( | max_subdivisions: IntProperty( | ||||
| Context not available. | |||||
| description="Pixel filter width", | description="Pixel filter width", | ||||
| min=0.01, max=10.0, | min=0.01, max=10.0, | ||||
| default=1.5, | default=1.5, | ||||
| subtype='PIXEL' | |||||
| ) | ) | ||||
| seed: IntProperty( | seed: IntProperty( | ||||
| Context not available. | |||||
| "progressively increasing it to the full viewport size", | "progressively increasing it to the full viewport size", | ||||
| min=8, max=16384, | min=8, max=16384, | ||||
| default=64, | default=64, | ||||
| subtype='PIXEL' | |||||
| ) | ) | ||||
| debug_reset_timeout: FloatProperty( | debug_reset_timeout: FloatProperty( | ||||
| Context not available. | |||||
| name="Camera Cull Margin", | name="Camera Cull Margin", | ||||
| description="Margin for the camera space culling", | description="Margin for the camera space culling", | ||||
| default=0.1, | default=0.1, | ||||
| min=0.0, max=5.0 | min=0.0, max=5.0, | ||||
| subtype='FACTOR' | |||||
brecht: This is a factor relative to the image size, not in pixels. | |||||
| ) | ) | ||||
| use_distance_cull: BoolProperty( | use_distance_cull: BoolProperty( | ||||
| Context not available. | |||||
| name="Cull Distance", | name="Cull Distance", | ||||
| description="Cull objects which are further away from camera than this distance", | description="Cull objects which are further away from camera than this distance", | ||||
| default=50, | default=50, | ||||
| min=0.0 | min=0.0, | ||||
| unit='LENGTH' | |||||
Done Inline ActionsThis is a length, not in pixels. brecht: This is a length, not in pixels. | |||||
| ) | ) | ||||
| motion_blur_position: EnumProperty( | motion_blur_position: EnumProperty( | ||||
| Context not available. | |||||
| description="Minimal pixel width for strands (0 - deactivated)", | description="Minimal pixel width for strands (0 - deactivated)", | ||||
| min=0.0, max=100.0, | min=0.0, max=100.0, | ||||
| default=0.0, | default=0.0, | ||||
| subtype='PIXEL' | |||||
| ) | ) | ||||
| maximum_width: FloatProperty( | maximum_width: FloatProperty( | ||||
| name="Maximal width", | name="Maximal width", | ||||
| description="Maximum extension that strand radius can be increased by", | description="Maximum extension that strand radius can be increased by", | ||||
| min=0.0, max=100.0, | min=0.0, max=100.0, | ||||
| default=0.1, | default=0.1, | ||||
| subtype='PIXEL' | |||||
| ) | ) | ||||
| subdivisions: IntProperty( | subdivisions: IntProperty( | ||||
| name="Subdivisions", | name="Subdivisions", | ||||
| Context not available. | |||||
This is a factor relative to the image size, not in pixels.