Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/blender/addon/properties.py
| Show First 20 Lines • Show All 76 Lines • ▼ Show 20 Lines | enum_panorama_types = ( | ||||
| ('EQUIRECTANGULAR', "Equirectangular", "Render the scene with a spherical camera, also known as Lat Long panorama"), | ('EQUIRECTANGULAR', "Equirectangular", "Render the scene with a spherical camera, also known as Lat Long panorama"), | ||||
| ('FISHEYE_EQUIDISTANT', "Fisheye Equidistant", "Ideal for fulldomes, ignore the sensor dimensions"), | ('FISHEYE_EQUIDISTANT', "Fisheye Equidistant", "Ideal for fulldomes, ignore the sensor dimensions"), | ||||
| ('FISHEYE_EQUISOLID', "Fisheye Equisolid", | ('FISHEYE_EQUISOLID', "Fisheye Equisolid", | ||||
| "Similar to most fisheye modern lens, takes sensor dimensions into consideration"), | "Similar to most fisheye modern lens, takes sensor dimensions into consideration"), | ||||
| ('MIRRORBALL', "Mirror Ball", "Uses the mirror ball mapping"), | ('MIRRORBALL', "Mirror Ball", "Uses the mirror ball mapping"), | ||||
| ) | ) | ||||
| enum_curve_primitives = ( | enum_curve_primitives = ( | ||||
| ('TRIANGLES', "Triangles", "Create triangle geometry around strands"), | ('LINE_SEGMENTS', "Line Segments", "Use line segment primitives", 1), | ||||
| ('LINE_SEGMENTS', "Line Segments", "Use line segment primitives"), | ('CURVE_SEGMENTS', "Curve Segments", "Use segmented cardinal curve primitives", 2), | ||||
| ('CURVE_SEGMENTS', "Curve Segments", "Use segmented cardinal curve primitives"), | |||||
| ) | |||||
| enum_triangle_curves = ( | |||||
| ('CAMERA_TRIANGLES', "Planes", "Create individual triangles forming planes that face camera"), | |||||
| ('TESSELLATED_TRIANGLES', "Tessellated", "Create mesh surrounding each strand"), | |||||
| ) | ) | ||||
| enum_curve_shape = ( | enum_curve_shape = ( | ||||
| ('RIBBONS', "Ribbons", "Ignore thickness of each strand"), | ('RIBBONS', "Ribbons", "Ignore thickness of each strand"), | ||||
| ('THICK', "Thick", "Use thickness of strand when rendering"), | ('THICK', "Thick", "Use thickness of strand when rendering"), | ||||
| ) | ) | ||||
| enum_tile_order = ( | enum_tile_order = ( | ||||
| ▲ Show 20 Lines • Show All 1,080 Lines • ▼ Show 20 Lines | cull_backfacing: BoolProperty( | ||||
| description="Do not test the back-face of each strand", | description="Do not test the back-face of each strand", | ||||
| default=True, | default=True, | ||||
| ) | ) | ||||
| use_curves: BoolProperty( | use_curves: BoolProperty( | ||||
| name="Use Cycles Hair Rendering", | name="Use Cycles Hair Rendering", | ||||
| description="Activate Cycles hair rendering for particle system", | description="Activate Cycles hair rendering for particle system", | ||||
| default=True, | default=True, | ||||
| ) | ) | ||||
| resolution: IntProperty( | |||||
| name="Resolution", | |||||
| description="Resolution of generated mesh", | |||||
| min=3, max=64, | |||||
| default=3, | |||||
| ) | |||||
| minimum_width: FloatProperty( | minimum_width: FloatProperty( | ||||
| name="Minimal width", | name="Minimal width", | ||||
| 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' | subtype='PIXEL' | ||||
| ) | ) | ||||
| maximum_width: FloatProperty( | maximum_width: FloatProperty( | ||||
| ▲ Show 20 Lines • Show All 353 Lines • Show Last 20 Lines | |||||