Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/blender/addon/properties.py
| Show First 20 Lines • Show All 48 Lines • ▼ Show 20 Lines | |||||
| enum_bvh_types = ( | enum_bvh_types = ( | ||||
| ('DYNAMIC_BVH', "Dynamic BVH", "Objects can be individually updated, at the cost of slower render time"), | ('DYNAMIC_BVH', "Dynamic BVH", "Objects can be individually updated, at the cost of slower render time"), | ||||
| ('STATIC_BVH', "Static BVH", "Any object modification requires a complete BVH rebuild, but renders faster"), | ('STATIC_BVH', "Static BVH", "Any object modification requires a complete BVH rebuild, but renders faster"), | ||||
| ) | ) | ||||
| enum_filter_types = ( | enum_filter_types = ( | ||||
| ('BOX', "Box", "Box filter"), | ('BOX', "Box", "Box filter"), | ||||
| ('GAUSSIAN', "Gaussian", "Gaussian filter"), | ('GAUSSIAN', "Gaussian", "Gaussian filter"), | ||||
| ('BLACKMAN_HARRIS', "Blackman-Harris", "Blackman-Harris filter"), | |||||
| ) | ) | ||||
| enum_aperture_types = ( | enum_aperture_types = ( | ||||
| ('RADIUS', "Radius", "Directly change the size of the aperture"), | ('RADIUS', "Radius", "Directly change the size of the aperture"), | ||||
| ('FSTOP', "F-stop", "Change the size of the aperture by f-stop"), | ('FSTOP', "F-stop", "Change the size of the aperture by f-stop"), | ||||
| ) | ) | ||||
| enum_panorama_types = ( | enum_panorama_types = ( | ||||
| ▲ Show 20 Lines • Show All 983 Lines • Show Last 20 Lines | |||||