Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_userpref.py
| Show First 20 Lines • Show All 2,196 Lines • ▼ Show 20 Lines | |||||
| class USERPREF_PT_experimental_prototypes(ExperimentalPanel, Panel): | class USERPREF_PT_experimental_prototypes(ExperimentalPanel, Panel): | ||||
| bl_label = "Prototypes" | bl_label = "Prototypes" | ||||
| def draw(self, context): | def draw(self, context): | ||||
| self._draw_items( | self._draw_items( | ||||
| context, ( | context, ( | ||||
| ({"property": "use_new_hair_type"}, "T68981"), | ({"property": "use_new_hair_type"}, "T68981"), | ||||
| ({"property": "use_new_point_cloud_type"}, "T75717"), | |||||
| ), | ), | ||||
| ) | ) | ||||
| class USERPREF_PT_experimental_debugging(ExperimentalPanel, Panel): | class USERPREF_PT_experimental_debugging(ExperimentalPanel, Panel): | ||||
| bl_label = "Debugging" | bl_label = "Debugging" | ||||
| @classmethod | @classmethod | ||||
| ▲ Show 20 Lines • Show All 119 Lines • Show Last 20 Lines | |||||