Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/space_userpref.py
| Show First 20 Lines • Show All 2,137 Lines • ▼ Show 20 Lines | |||||
| class USERPREF_PT_experimental_new_features(ExperimentalPanel, Panel): | class USERPREF_PT_experimental_new_features(ExperimentalPanel, Panel): | ||||
| bl_label = "New Features" | bl_label = "New Features" | ||||
| def draw(self, context): | def draw(self, context): | ||||
| self._draw_items( | self._draw_items( | ||||
| context, ( | context, ( | ||||
| ({"property": "use_new_particle_system"}, "T73324"), | ({"property": "use_new_particle_system"}, "T73324"), | ||||
| ({"property": "use_sculpt_vertex_colors"}, "T71947"), | |||||
| ), | ), | ||||
| ) | ) | ||||
| 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): | ||||
| ▲ Show 20 Lines • Show All 122 Lines • Show Last 20 Lines | |||||