Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/blender/addon/properties.py
| Context not available. | |||||
| items=enum_sampling_pattern, | items=enum_sampling_pattern, | ||||
| default='SOBOL', | default='SOBOL', | ||||
| ) | ) | ||||
| scrambling_distance: FloatProperty( | |||||
| name="Scrambling Distance", | |||||
| default=1.0, | |||||
| min=0.0, max=1.0, | |||||
| description="Lower values give faster rendering with GPU rendering and less noise with all devices at the cost of possible artifacts if set too low", | |||||
| ) | |||||
| scrambling_distance_vp: BoolProperty( | |||||
| name="Scrambling Distance viewport", | |||||
| default=False, | |||||
| description="Uses the Scrambling Distance value for the viewport. Faster but may flicker", | |||||
| ) | |||||
| adaptive_scrambling_distance: BoolProperty( | |||||
| name="Adaptive Scrambling Distance", | |||||
| default=True, | |||||
| description="Uses a formula to adapt the scrambling distance strength based on the sample count", | |||||
| ) | |||||
| use_layer_samples: EnumProperty( | use_layer_samples: EnumProperty( | ||||
| name="Layer Samples", | name="Layer Samples", | ||||
| Context not available. | |||||