Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/blender/addon/properties.py
| Show First 20 Lines • Show All 1,186 Lines • ▼ Show 20 Lines | use_curves: BoolProperty( | ||||
| default=True, | default=True, | ||||
| ) | ) | ||||
| resolution: IntProperty( | resolution: IntProperty( | ||||
| name="Resolution", | name="Resolution", | ||||
| description="Resolution of generated mesh", | description="Resolution of generated mesh", | ||||
| min=3, max=64, | min=3, max=64, | ||||
| default=3, | default=3, | ||||
| ) | ) | ||||
| minimum_width: FloatProperty( | |||||
| name="Minimal width", | |||||
| description="Minimal pixel width for strands (0 - deactivated)", | |||||
| min=0.0, max=100.0, | |||||
| default=0.0, | |||||
| subtype='PIXEL' | |||||
| ) | |||||
| maximum_width: FloatProperty( | |||||
| name="Maximal width", | |||||
| description="Maximum extension that strand radius can be increased by", | |||||
| min=0.0, max=100.0, | |||||
| default=0.1, | |||||
| subtype='PIXEL' | |||||
| ) | |||||
| subdivisions: IntProperty( | subdivisions: IntProperty( | ||||
| name="Subdivisions", | name="Subdivisions", | ||||
| description="Number of subdivisions used in Cardinal curve intersection (power of 2)", | description="Number of subdivisions used in Cardinal curve intersection (power of 2)", | ||||
| min=0, max=24, | min=0, max=24, | ||||
| default=4, | default=4, | ||||
| ) | ) | ||||
| @classmethod | @classmethod | ||||
| ▲ Show 20 Lines • Show All 339 Lines • Show Last 20 Lines | |||||