fake-bpy-module 20240320__py3-none-any.whl → 20240322__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

Files changed (285) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +27 -11
  3. aud/__init__.pyi +130 -123
  4. bgl/__init__.pyi +1831 -216
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +19 -10
  7. bl_app_template_utils/__init__.pyi +19 -4
  8. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -5
  9. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -3
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -5
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -2
  12. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -15
  13. bl_i18n_utils/merge_po/__init__.pyi +4 -1
  14. bl_i18n_utils/settings/__init__.pyi +19 -23
  15. bl_i18n_utils/utils/__init__.pyi +81 -143
  16. bl_i18n_utils/utils_cli/__init__.pyi +29 -6
  17. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -1
  18. bl_i18n_utils/utils_rtl/__init__.pyi +9 -2
  19. bl_keymap_utils/io/__init__.pyi +44 -9
  20. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -1
  21. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -1
  22. bl_keymap_utils/platform_helpers/__init__.pyi +9 -2
  23. bl_keymap_utils/versioning/__init__.pyi +4 -1
  24. bl_math/__init__.pyi +3 -3
  25. bl_operators/__init__.pyi +9 -2
  26. bl_operators/add_mesh_torus/__init__.pyi +120 -49
  27. bl_operators/anim/__init__.pyi +903 -297
  28. bl_operators/assets/__init__.pyi +348 -123
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1262 -470
  31. bl_operators/console/__init__.pyi +542 -160
  32. bl_operators/constraint/__init__.pyi +452 -140
  33. bl_operators/file/__init__.pyi +339 -114
  34. bl_operators/freestyle/__init__.pyi +440 -132
  35. bl_operators/geometry_nodes/__init__.pyi +2131 -842
  36. bl_operators/image/__init__.pyi +330 -97
  37. bl_operators/mesh/__init__.pyi +339 -109
  38. bl_operators/node/__init__.pyi +1506 -621
  39. bl_operators/object/__init__.pyi +1828 -668
  40. bl_operators/object_align/__init__.pyi +124 -35
  41. bl_operators/object_quick_effects/__init__.pyi +470 -149
  42. bl_operators/object_randomize_transform/__init__.pyi +114 -35
  43. bl_operators/presets/__init__.pyi +3056 -1374
  44. bl_operators/rigidbody/__init__.pyi +336 -106
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +115 -33
  46. bl_operators/sequencer/__init__.pyi +579 -204
  47. bl_operators/spreadsheet/__init__.pyi +110 -38
  48. bl_operators/userpref/__init__.pyi +3201 -1236
  49. bl_operators/uvcalc_follow_active/__init__.pyi +119 -38
  50. bl_operators/uvcalc_lightmap/__init__.pyi +137 -54
  51. bl_operators/uvcalc_transform/__init__.pyi +295 -83
  52. bl_operators/vertexpaint_dirt/__init__.pyi +119 -34
  53. bl_operators/view3d/__init__.pyi +542 -184
  54. bl_operators/wm/__init__.pyi +5554 -2159
  55. bl_previews_utils/bl_previews_render/__init__.pyi +34 -7
  56. bl_rna_utils/data_path/__init__.pyi +12 -2
  57. bl_text_utils/external_editor/__init__.pyi +4 -1
  58. bl_ui/__init__.pyi +346 -146
  59. bl_ui/anim/__init__.pyi +107 -47
  60. bl_ui/asset_shelf/__init__.pyi +111 -33
  61. bl_ui/generic_ui_list/__init__.pyi +349 -146
  62. bl_ui/node_add_menu/__init__.pyi +138 -53
  63. bl_ui/node_add_menu_compositor/__init__.pyi +2134 -1016
  64. bl_ui/node_add_menu_geometry/__init__.pyi +5833 -2855
  65. bl_ui/node_add_menu_shader/__init__.pyi +1162 -511
  66. bl_ui/node_add_menu_texture/__init__.pyi +1008 -450
  67. bl_ui/properties_animviz/__init__.pyi +14 -12
  68. bl_ui/properties_collection/__init__.pyi +601 -218
  69. bl_ui/properties_constraint/__init__.pyi +10115 -10647
  70. bl_ui/properties_data_armature/__init__.pyi +1550 -648
  71. bl_ui/properties_data_bone/__init__.pyi +1317 -511
  72. bl_ui/properties_data_camera/__init__.pyi +1852 -719
  73. bl_ui/properties_data_curve/__init__.pyi +2015 -781
  74. bl_ui/properties_data_curves/__init__.pyi +713 -262
  75. bl_ui/properties_data_empty/__init__.pyi +252 -84
  76. bl_ui/properties_data_gpencil/__init__.pyi +2505 -1105
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1350 -594
  78. bl_ui/properties_data_lattice/__init__.pyi +374 -123
  79. bl_ui/properties_data_light/__init__.pyi +1319 -489
  80. bl_ui/properties_data_lightprobe/__init__.pyi +734 -241
  81. bl_ui/properties_data_mesh/__init__.pyi +2652 -1189
  82. bl_ui/properties_data_metaball/__init__.pyi +610 -197
  83. bl_ui/properties_data_modifier/__init__.pyi +1143 -506
  84. bl_ui/properties_data_pointcloud/__init__.pyi +670 -303
  85. bl_ui/properties_data_shaderfx/__init__.pyi +126 -36
  86. bl_ui/properties_data_speaker/__init__.pyi +618 -195
  87. bl_ui/properties_data_volume/__init__.pyi +1052 -408
  88. bl_ui/properties_freestyle/__init__.pyi +3366 -1450
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +1634 -776
  90. bl_ui/properties_mask_common/__init__.pyi +803 -371
  91. bl_ui/properties_material/__init__.pyi +2038 -831
  92. bl_ui/properties_material_gpencil/__init__.pyi +1272 -523
  93. bl_ui/properties_object/__init__.pyi +1863 -745
  94. bl_ui/properties_output/__init__.pyi +2482 -1071
  95. bl_ui/properties_paint_common/__init__.pyi +317 -424
  96. bl_ui/properties_particle/__init__.pyi +7235 -2942
  97. bl_ui/properties_physics_cloth/__init__.pyi +1903 -758
  98. bl_ui/properties_physics_common/__init__.pyi +164 -51
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +2787 -1114
  100. bl_ui/properties_physics_field/__init__.pyi +1294 -486
  101. bl_ui/properties_physics_fluid/__init__.pyi +3631 -1545
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +115 -34
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +983 -312
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +1718 -656
  105. bl_ui/properties_physics_softbody/__init__.pyi +2091 -836
  106. bl_ui/properties_render/__init__.pyi +7177 -2939
  107. bl_ui/properties_scene/__init__.pyi +1881 -760
  108. bl_ui/properties_texture/__init__.pyi +3539 -1399
  109. bl_ui/properties_view_layer/__init__.pyi +2368 -940
  110. bl_ui/properties_workspace/__init__.pyi +517 -202
  111. bl_ui/properties_world/__init__.pyi +862 -269
  112. bl_ui/space_clip/__init__.pyi +9127 -4137
  113. bl_ui/space_console/__init__.pyi +666 -286
  114. bl_ui/space_dopesheet/__init__.pyi +3287 -1504
  115. bl_ui/space_filebrowser/__init__.pyi +3958 -1935
  116. bl_ui/space_graph/__init__.pyi +2406 -1142
  117. bl_ui/space_image/__init__.pyi +9242 -4526
  118. bl_ui/space_info/__init__.pyi +664 -285
  119. bl_ui/space_nla/__init__.pyi +2014 -932
  120. bl_ui/space_node/__init__.pyi +4549 -1949
  121. bl_ui/space_outliner/__init__.pyi +1619 -745
  122. bl_ui/space_properties/__init__.pyi +340 -105
  123. bl_ui/space_sequencer/__init__.pyi +9396 -4264
  124. bl_ui/space_spreadsheet/__init__.pyi +110 -60
  125. bl_ui/space_statusbar/__init__.pyi +107 -32
  126. bl_ui/space_text/__init__.pyi +1907 -872
  127. bl_ui/space_time/__init__.pyi +812 -327
  128. bl_ui/space_toolsystem_common/__init__.pyi +203 -99
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +845 -289
  130. bl_ui/space_topbar/__init__.pyi +3131 -1437
  131. bl_ui/space_userpref/__init__.pyi +11510 -4926
  132. bl_ui/space_view3d/__init__.pyi +31358 -14417
  133. bl_ui/space_view3d_toolbar/__init__.pyi +12401 -6163
  134. bl_ui/utils/__init__.pyi +7 -16
  135. bl_ui_utils/bug_report_url/__init__.pyi +4 -1
  136. bl_ui_utils/layout/__init__.pyi +4 -1
  137. blend_render_info/__init__.pyi +13 -3
  138. blf/__init__.pyi +5 -7
  139. bmesh/__init__.pyi +7 -7
  140. bmesh/geometry/__init__.pyi +5 -5
  141. bmesh/ops/__init__.pyi +490 -504
  142. bmesh/types/__init__.pyi +253 -247
  143. bmesh/utils/__init__.pyi +54 -54
  144. bpy/__init__.pyi +2 -2
  145. bpy/app/__init__.pyi +4 -5
  146. bpy/app/handlers/__init__.pyi +36 -36
  147. bpy/app/icons/__init__.pyi +8 -10
  148. bpy/app/timers/__init__.pyi +9 -11
  149. bpy/app/translations/__init__.pyi +20 -22
  150. bpy/msgbus/__init__.pyi +3 -12
  151. bpy/ops/action/__init__.pyi +316 -415
  152. bpy/ops/anim/__init__.pyi +428 -566
  153. bpy/ops/armature/__init__.pyi +360 -488
  154. bpy/ops/asset/__init__.pyi +146 -183
  155. bpy/ops/boid/__init__.pyi +50 -67
  156. bpy/ops/brush/__init__.pyi +72 -96
  157. bpy/ops/buttons/__init__.pyi +128 -142
  158. bpy/ops/cachefile/__init__.pyi +124 -137
  159. bpy/ops/camera/__init__.pyi +22 -28
  160. bpy/ops/clip/__init__.pyi +768 -1005
  161. bpy/ops/cloth/__init__.pyi +10 -13
  162. bpy/ops/collection/__init__.pyi +36 -50
  163. bpy/ops/console/__init__.pyi +150 -203
  164. bpy/ops/constraint/__init__.pyi +150 -201
  165. bpy/ops/curve/__init__.pyi +474 -607
  166. bpy/ops/curves/__init__.pyi +170 -221
  167. bpy/ops/cycles/__init__.pyi +18 -26
  168. bpy/ops/dpaint/__init__.pyi +34 -46
  169. bpy/ops/ed/__init__.pyi +122 -149
  170. bpy/ops/export_anim/__init__.pyi +18 -21
  171. bpy/ops/export_mesh/__init__.pyi +26 -29
  172. bpy/ops/export_scene/__init__.pyi +307 -342
  173. bpy/ops/file/__init__.pyi +342 -436
  174. bpy/ops/fluid/__init__.pyi +88 -117
  175. bpy/ops/font/__init__.pyi +252 -311
  176. bpy/ops/geometry/__init__.pyi +86 -113
  177. bpy/ops/gizmogroup/__init__.pyi +22 -27
  178. bpy/ops/gpencil/__init__.pyi +1444 -1864
  179. bpy/ops/graph/__init__.pyi +642 -822
  180. bpy/ops/grease_pencil/__init__.pyi +426 -576
  181. bpy/ops/image/__init__.pyi +612 -733
  182. bpy/ops/import_anim/__init__.pyi +26 -29
  183. bpy/ops/import_curve/__init__.pyi +6 -9
  184. bpy/ops/import_mesh/__init__.pyi +18 -23
  185. bpy/ops/import_scene/__init__.pyi +86 -101
  186. bpy/ops/info/__init__.pyi +60 -77
  187. bpy/ops/lattice/__init__.pyi +64 -85
  188. bpy/ops/marker/__init__.pyi +106 -137
  189. bpy/ops/mask/__init__.pyi +318 -420
  190. bpy/ops/material/__init__.pyi +18 -24
  191. bpy/ops/mball/__init__.pyi +70 -93
  192. bpy/ops/mesh/__init__.pyi +1988 -2460
  193. bpy/ops/nla/__init__.pyi +331 -429
  194. bpy/ops/node/__init__.pyi +852 -1115
  195. bpy/ops/object/__init__.pyi +2420 -3081
  196. bpy/ops/outliner/__init__.pyi +498 -661
  197. bpy/ops/paint/__init__.pyi +518 -667
  198. bpy/ops/paintcurve/__init__.pyi +64 -84
  199. bpy/ops/palette/__init__.pyi +48 -66
  200. bpy/ops/particle/__init__.pyi +264 -355
  201. bpy/ops/pose/__init__.pyi +336 -438
  202. bpy/ops/poselib/__init__.pyi +70 -92
  203. bpy/ops/preferences/__init__.pyi +336 -440
  204. bpy/ops/ptcache/__init__.pyi +46 -62
  205. bpy/ops/render/__init__.pyi +114 -147
  206. bpy/ops/rigidbody/__init__.pyi +102 -135
  207. bpy/ops/scene/__init__.pyi +270 -364
  208. bpy/ops/screen/__init__.pyi +378 -477
  209. bpy/ops/script/__init__.pyi +18 -26
  210. bpy/ops/sculpt/__init__.pyi +400 -488
  211. bpy/ops/sculpt_curves/__init__.pyi +40 -53
  212. bpy/ops/sequencer/__init__.pyi +1040 -1279
  213. bpy/ops/sound/__init__.pyi +208 -226
  214. bpy/ops/spreadsheet/__init__.pyi +30 -40
  215. bpy/ops/surface/__init__.pyi +108 -126
  216. bpy/ops/text/__init__.pyi +382 -486
  217. bpy/ops/text_editor/__init__.pyi +10 -13
  218. bpy/ops/texture/__init__.pyi +26 -35
  219. bpy/ops/transform/__init__.pyi +790 -905
  220. bpy/ops/ui/__init__.pyi +216 -291
  221. bpy/ops/uilist/__init__.pyi +20 -29
  222. bpy/ops/uv/__init__.pyi +600 -742
  223. bpy/ops/view2d/__init__.pyi +156 -195
  224. bpy/ops/view3d/__init__.pyi +576 -742
  225. bpy/ops/wm/__init__.pyi +2360 -2702
  226. bpy/ops/workspace/__init__.pyi +42 -57
  227. bpy/ops/world/__init__.pyi +6 -8
  228. bpy/path/__init__.pyi +110 -81
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86358 -87091
  231. bpy/utils/__init__.pyi +242 -154
  232. bpy/utils/previews/__init__.pyi +57 -57
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/anim_utils/__init__.pyi +11 -31
  235. bpy_extras/asset_utils/__init__.pyi +4 -1
  236. bpy_extras/image_utils/__init__.pyi +2 -2
  237. bpy_extras/io_utils/__init__.pyi +30 -27
  238. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  239. bpy_extras/mesh_utils/__init__.pyi +18 -18
  240. bpy_extras/node_utils/__init__.pyi +4 -1
  241. bpy_extras/object_utils/__init__.pyi +25 -26
  242. bpy_extras/view3d_utils/__init__.pyi +33 -38
  243. bpy_restrict_state/__init__.pyi +14 -1
  244. bpy_types/__init__.pyi +3748 -1248
  245. console_python/__init__.pyi +41 -7
  246. console_shell/__init__.pyi +24 -5
  247. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/METADATA +1 -1
  248. fake_bpy_module-20240322.dist-info/RECORD +343 -0
  249. freestyle/chainingiterators/__init__.pyi +50 -52
  250. freestyle/functions/__init__.pyi +303 -207
  251. freestyle/predicates/__init__.pyi +299 -115
  252. freestyle/shaders/__init__.pyi +49 -80
  253. freestyle/types/__init__.pyi +463 -470
  254. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  255. freestyle/utils/__init__.pyi +27 -17
  256. gpu/capabilities/__init__.pyi +19 -20
  257. gpu/matrix/__init__.pyi +14 -16
  258. gpu/platform/__init__.pyi +5 -5
  259. gpu/shader/__init__.pyi +2 -5
  260. gpu/state/__init__.pyi +1 -1
  261. gpu/texture/__init__.pyi +3 -3
  262. gpu/types/__init__.pyi +54 -85
  263. gpu_extras/batch/__init__.pyi +26 -6
  264. gpu_extras/presets/__init__.pyi +51 -16
  265. graphviz_export/__init__.pyi +9 -2
  266. idprop/types/__init__.pyi +36 -12
  267. imbuf/__init__.pyi +8 -9
  268. imbuf/types/__init__.pyi +8 -15
  269. keyingsets_builtins/__init__.pyi +2520 -1085
  270. keyingsets_utils/__init__.pyi +69 -14
  271. mathutils/__init__.pyi +491 -423
  272. mathutils/bvhtree/__init__.pyi +26 -31
  273. mathutils/geometry/__init__.pyi +176 -185
  274. mathutils/kdtree/__init__.pyi +14 -17
  275. mathutils/noise/__init__.pyi +47 -48
  276. nodeitems_builtins/__init__.pyi +37 -15
  277. nodeitems_utils/__init__.pyi +45 -13
  278. rna_info/__init__.pyi +177 -76
  279. rna_keymap_ui/__init__.pyi +29 -6
  280. rna_prop_ui/__init__.pyi +56 -14
  281. rna_xml/__init__.pyi +29 -6
  282. sys_info/__init__.pyi +4 -1
  283. fake_bpy_module-20240320.dist-info/RECORD +0 -343
  284. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/WHEEL +0 -0
  285. {fake_bpy_module-20240320.dist-info → fake_bpy_module-20240322.dist-info}/top_level.txt +0 -0
@@ -3,12 +3,13 @@ import bpy_types
3
3
 
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
- class UnifiedPaintPanel:
6
+ class BrushPanel(UnifiedPaintPanel):
7
+ """ """
8
+
7
9
  def get_brush_mode(self, context):
8
10
  """
9
11
 
10
12
  :param context:
11
- :type context:
12
13
  """
13
14
  ...
14
15
 
@@ -16,7 +17,13 @@ class UnifiedPaintPanel:
16
17
  """
17
18
 
18
19
  :param context:
19
- :type context:
20
+ """
21
+ ...
22
+
23
+ def poll(self, context):
24
+ """
25
+
26
+ :param context:
20
27
  """
21
28
  ...
22
29
 
@@ -36,25 +43,15 @@ class UnifiedPaintPanel:
36
43
  """
37
44
 
38
45
  :param layout:
39
- :type layout:
40
46
  :param context:
41
- :type context:
42
47
  :param brush:
43
- :type brush:
44
48
  :param prop_name:
45
- :type prop_name:
46
49
  :param unified_name:
47
- :type unified_name:
48
50
  :param pressure_name:
49
- :type pressure_name:
50
51
  :param icon:
51
- :type icon:
52
52
  :param text:
53
- :type text:
54
53
  :param slider:
55
- :type slider:
56
54
  :param header:
57
- :type header:
58
55
  """
59
56
  ...
60
57
 
@@ -62,15 +59,10 @@ class UnifiedPaintPanel:
62
59
  """
63
60
 
64
61
  :param parent:
65
- :type parent:
66
62
  :param context:
67
- :type context:
68
63
  :param brush:
69
- :type brush:
70
64
  :param prop_name:
71
- :type prop_name:
72
65
  :param text:
73
- :type text:
74
66
  """
75
67
  ...
76
68
 
@@ -80,143 +72,30 @@ class UnifiedPaintPanel:
80
72
  """
81
73
 
82
74
  :param parent:
83
- :type parent:
84
75
  :param context:
85
- :type context:
86
76
  :param brush:
87
- :type brush:
88
77
  :param prop_name:
89
- :type prop_name:
90
78
  :param value_slider:
91
- :type value_slider:
92
79
  """
93
80
  ...
94
81
 
95
- class VIEW3D_MT_tools_projectpaint_clone(bpy_types.Menu, bpy_types._GenericUI):
96
- bl_label: typing.Any
97
- bl_rna: typing.Any
98
- id_data: typing.Any
82
+ class BrushSelectPanel(UnifiedPaintPanel):
83
+ """ """
99
84
 
100
- def append(self, draw_func):
101
- """
102
-
103
- :param draw_func:
104
- :type draw_func:
105
- """
106
- ...
85
+ bl_label: typing.Any
86
+ """ """
107
87
 
108
- def as_pointer(self): ...
109
- def bl_rna_get_subclass(self): ...
110
- def bl_rna_get_subclass_py(self): ...
111
88
  def draw(self, context):
112
89
  """
113
90
 
114
- :param self:
115
- :type self:
116
- :param context:
117
- :type context:
118
- """
119
- ...
120
-
121
- def draw_collapsible(self, context, layout):
122
- """
123
-
124
91
  :param context:
125
- :type context:
126
- :param layout:
127
- :type layout:
128
- """
129
- ...
130
-
131
- def draw_preset(self, _context):
132
- """
133
-
134
- :param self:
135
- :type self:
136
- :param _context:
137
- :type _context:
138
- """
139
- ...
140
-
141
- def driver_add(self): ...
142
- def driver_remove(self): ...
143
- def get(self): ...
144
- def id_properties_clear(self): ...
145
- def id_properties_ensure(self): ...
146
- def id_properties_ui(self): ...
147
- def is_extended(self): ...
148
- def is_property_hidden(self): ...
149
- def is_property_overridable_library(self): ...
150
- def is_property_readonly(self): ...
151
- def is_property_set(self): ...
152
- def items(self): ...
153
- def keyframe_delete(self): ...
154
- def keyframe_insert(self): ...
155
- def keys(self): ...
156
- def path_from_id(self): ...
157
- def path_menu(
158
- self,
159
- searchpaths,
160
- operator,
161
- props_default,
162
- prop_filepath,
163
- filter_ext,
164
- filter_path,
165
- display_name,
166
- add_operator,
167
- ):
168
- """
169
-
170
- :param self:
171
- :type self:
172
- :param searchpaths:
173
- :type searchpaths:
174
- :param operator:
175
- :type operator:
176
- :param props_default:
177
- :type props_default:
178
- :param prop_filepath:
179
- :type prop_filepath:
180
- :param filter_ext:
181
- :type filter_ext:
182
- :param filter_path:
183
- :type filter_path:
184
- :param display_name:
185
- :type display_name:
186
- :param add_operator:
187
- :type add_operator:
188
- """
189
- ...
190
-
191
- def path_resolve(self): ...
192
- def pop(self): ...
193
- def prepend(self, draw_func):
194
- """
195
-
196
- :param draw_func:
197
- :type draw_func:
198
- """
199
- ...
200
-
201
- def property_overridable_library_set(self): ...
202
- def property_unset(self): ...
203
- def remove(self, draw_func):
204
- """
205
-
206
- :param draw_func:
207
- :type draw_func:
208
92
  """
209
93
  ...
210
94
 
211
- def type_recast(self): ...
212
- def values(self): ...
213
-
214
- class BrushPanel(UnifiedPaintPanel):
215
95
  def get_brush_mode(self, context):
216
96
  """
217
97
 
218
98
  :param context:
219
- :type context:
220
99
  """
221
100
  ...
222
101
 
@@ -224,7 +103,6 @@ class BrushPanel(UnifiedPaintPanel):
224
103
  """
225
104
 
226
105
  :param context:
227
- :type context:
228
106
  """
229
107
  ...
230
108
 
@@ -232,7 +110,6 @@ class BrushPanel(UnifiedPaintPanel):
232
110
  """
233
111
 
234
112
  :param context:
235
- :type context:
236
113
  """
237
114
  ...
238
115
 
@@ -252,25 +129,15 @@ class BrushPanel(UnifiedPaintPanel):
252
129
  """
253
130
 
254
131
  :param layout:
255
- :type layout:
256
132
  :param context:
257
- :type context:
258
133
  :param brush:
259
- :type brush:
260
134
  :param prop_name:
261
- :type prop_name:
262
135
  :param unified_name:
263
- :type unified_name:
264
136
  :param pressure_name:
265
- :type pressure_name:
266
137
  :param icon:
267
- :type icon:
268
138
  :param text:
269
- :type text:
270
139
  :param slider:
271
- :type slider:
272
140
  :param header:
273
- :type header:
274
141
  """
275
142
  ...
276
143
 
@@ -278,15 +145,10 @@ class BrushPanel(UnifiedPaintPanel):
278
145
  """
279
146
 
280
147
  :param parent:
281
- :type parent:
282
148
  :param context:
283
- :type context:
284
149
  :param brush:
285
- :type brush:
286
150
  :param prop_name:
287
- :type prop_name:
288
151
  :param text:
289
- :type text:
290
152
  """
291
153
  ...
292
154
 
@@ -296,28 +158,33 @@ class BrushPanel(UnifiedPaintPanel):
296
158
  """
297
159
 
298
160
  :param parent:
299
- :type parent:
300
161
  :param context:
301
- :type context:
302
162
  :param brush:
303
- :type brush:
304
163
  :param prop_name:
305
- :type prop_name:
306
164
  :param value_slider:
307
- :type value_slider:
308
165
  """
309
166
  ...
310
167
 
311
- class BrushSelectPanel(BrushPanel, UnifiedPaintPanel):
168
+ class ClonePanel(UnifiedPaintPanel):
169
+ """ """
170
+
312
171
  bl_label: typing.Any
172
+ """ """
173
+
174
+ bl_options: typing.Any
175
+ """ """
313
176
 
314
177
  def draw(self, context):
315
178
  """
316
179
 
317
- :param self:
318
- :type self:
319
180
  :param context:
320
- :type context:
181
+ """
182
+ ...
183
+
184
+ def draw_header(self, context):
185
+ """
186
+
187
+ :param context:
321
188
  """
322
189
  ...
323
190
 
@@ -325,7 +192,6 @@ class BrushSelectPanel(BrushPanel, UnifiedPaintPanel):
325
192
  """
326
193
 
327
194
  :param context:
328
- :type context:
329
195
  """
330
196
  ...
331
197
 
@@ -333,7 +199,6 @@ class BrushSelectPanel(BrushPanel, UnifiedPaintPanel):
333
199
  """
334
200
 
335
201
  :param context:
336
- :type context:
337
202
  """
338
203
  ...
339
204
 
@@ -341,7 +206,6 @@ class BrushSelectPanel(BrushPanel, UnifiedPaintPanel):
341
206
  """
342
207
 
343
208
  :param context:
344
- :type context:
345
209
  """
346
210
  ...
347
211
 
@@ -361,25 +225,15 @@ class BrushSelectPanel(BrushPanel, UnifiedPaintPanel):
361
225
  """
362
226
 
363
227
  :param layout:
364
- :type layout:
365
228
  :param context:
366
- :type context:
367
229
  :param brush:
368
- :type brush:
369
230
  :param prop_name:
370
- :type prop_name:
371
231
  :param unified_name:
372
- :type unified_name:
373
232
  :param pressure_name:
374
- :type pressure_name:
375
233
  :param icon:
376
- :type icon:
377
234
  :param text:
378
- :type text:
379
235
  :param slider:
380
- :type slider:
381
236
  :param header:
382
- :type header:
383
237
  """
384
238
  ...
385
239
 
@@ -387,15 +241,10 @@ class BrushSelectPanel(BrushPanel, UnifiedPaintPanel):
387
241
  """
388
242
 
389
243
  :param parent:
390
- :type parent:
391
244
  :param context:
392
- :type context:
393
245
  :param brush:
394
- :type brush:
395
246
  :param prop_name:
396
- :type prop_name:
397
247
  :param text:
398
- :type text:
399
248
  """
400
249
  ...
401
250
 
@@ -405,39 +254,26 @@ class BrushSelectPanel(BrushPanel, UnifiedPaintPanel):
405
254
  """
406
255
 
407
256
  :param parent:
408
- :type parent:
409
257
  :param context:
410
- :type context:
411
258
  :param brush:
412
- :type brush:
413
259
  :param prop_name:
414
- :type prop_name:
415
260
  :param value_slider:
416
- :type value_slider:
417
261
  """
418
262
  ...
419
263
 
420
- class ClonePanel(BrushPanel, UnifiedPaintPanel):
264
+ class ColorPalettePanel(UnifiedPaintPanel):
265
+ """ """
266
+
421
267
  bl_label: typing.Any
268
+ """ """
269
+
422
270
  bl_options: typing.Any
271
+ """ """
423
272
 
424
273
  def draw(self, context):
425
274
  """
426
275
 
427
- :param self:
428
- :type self:
429
276
  :param context:
430
- :type context:
431
- """
432
- ...
433
-
434
- def draw_header(self, context):
435
- """
436
-
437
- :param self:
438
- :type self:
439
- :param context:
440
- :type context:
441
277
  """
442
278
  ...
443
279
 
@@ -445,7 +281,6 @@ class ClonePanel(BrushPanel, UnifiedPaintPanel):
445
281
  """
446
282
 
447
283
  :param context:
448
- :type context:
449
284
  """
450
285
  ...
451
286
 
@@ -453,7 +288,6 @@ class ClonePanel(BrushPanel, UnifiedPaintPanel):
453
288
  """
454
289
 
455
290
  :param context:
456
- :type context:
457
291
  """
458
292
  ...
459
293
 
@@ -461,7 +295,6 @@ class ClonePanel(BrushPanel, UnifiedPaintPanel):
461
295
  """
462
296
 
463
297
  :param context:
464
- :type context:
465
298
  """
466
299
  ...
467
300
 
@@ -481,25 +314,15 @@ class ClonePanel(BrushPanel, UnifiedPaintPanel):
481
314
  """
482
315
 
483
316
  :param layout:
484
- :type layout:
485
317
  :param context:
486
- :type context:
487
318
  :param brush:
488
- :type brush:
489
319
  :param prop_name:
490
- :type prop_name:
491
320
  :param unified_name:
492
- :type unified_name:
493
321
  :param pressure_name:
494
- :type pressure_name:
495
322
  :param icon:
496
- :type icon:
497
323
  :param text:
498
- :type text:
499
324
  :param slider:
500
- :type slider:
501
325
  :param header:
502
- :type header:
503
326
  """
504
327
  ...
505
328
 
@@ -507,15 +330,10 @@ class ClonePanel(BrushPanel, UnifiedPaintPanel):
507
330
  """
508
331
 
509
332
  :param parent:
510
- :type parent:
511
333
  :param context:
512
- :type context:
513
334
  :param brush:
514
- :type brush:
515
335
  :param prop_name:
516
- :type prop_name:
517
336
  :param text:
518
- :type text:
519
337
  """
520
338
  ...
521
339
 
@@ -525,29 +343,33 @@ class ClonePanel(BrushPanel, UnifiedPaintPanel):
525
343
  """
526
344
 
527
345
  :param parent:
528
- :type parent:
529
346
  :param context:
530
- :type context:
531
347
  :param brush:
532
- :type brush:
533
348
  :param prop_name:
534
- :type prop_name:
535
349
  :param value_slider:
536
- :type value_slider:
537
350
  """
538
351
  ...
539
352
 
540
- class ColorPalettePanel(BrushPanel, UnifiedPaintPanel):
353
+ class DisplayPanel(UnifiedPaintPanel):
354
+ """ """
355
+
541
356
  bl_label: typing.Any
357
+ """ """
358
+
542
359
  bl_options: typing.Any
360
+ """ """
543
361
 
544
362
  def draw(self, context):
545
363
  """
546
364
 
547
- :param self:
548
- :type self:
549
365
  :param context:
550
- :type context:
366
+ """
367
+ ...
368
+
369
+ def draw_header(self, context):
370
+ """
371
+
372
+ :param context:
551
373
  """
552
374
  ...
553
375
 
@@ -555,7 +377,6 @@ class ColorPalettePanel(BrushPanel, UnifiedPaintPanel):
555
377
  """
556
378
 
557
379
  :param context:
558
- :type context:
559
380
  """
560
381
  ...
561
382
 
@@ -563,7 +384,6 @@ class ColorPalettePanel(BrushPanel, UnifiedPaintPanel):
563
384
  """
564
385
 
565
386
  :param context:
566
- :type context:
567
387
  """
568
388
  ...
569
389
 
@@ -571,7 +391,6 @@ class ColorPalettePanel(BrushPanel, UnifiedPaintPanel):
571
391
  """
572
392
 
573
393
  :param context:
574
- :type context:
575
394
  """
576
395
  ...
577
396
 
@@ -591,25 +410,15 @@ class ColorPalettePanel(BrushPanel, UnifiedPaintPanel):
591
410
  """
592
411
 
593
412
  :param layout:
594
- :type layout:
595
413
  :param context:
596
- :type context:
597
414
  :param brush:
598
- :type brush:
599
415
  :param prop_name:
600
- :type prop_name:
601
416
  :param unified_name:
602
- :type unified_name:
603
417
  :param pressure_name:
604
- :type pressure_name:
605
418
  :param icon:
606
- :type icon:
607
419
  :param text:
608
- :type text:
609
420
  :param slider:
610
- :type slider:
611
421
  :param header:
612
- :type header:
613
422
  """
614
423
  ...
615
424
 
@@ -617,15 +426,10 @@ class ColorPalettePanel(BrushPanel, UnifiedPaintPanel):
617
426
  """
618
427
 
619
428
  :param parent:
620
- :type parent:
621
429
  :param context:
622
- :type context:
623
430
  :param brush:
624
- :type brush:
625
431
  :param prop_name:
626
- :type prop_name:
627
432
  :param text:
628
- :type text:
629
433
  """
630
434
  ...
631
435
 
@@ -635,39 +439,26 @@ class ColorPalettePanel(BrushPanel, UnifiedPaintPanel):
635
439
  """
636
440
 
637
441
  :param parent:
638
- :type parent:
639
442
  :param context:
640
- :type context:
641
443
  :param brush:
642
- :type brush:
643
444
  :param prop_name:
644
- :type prop_name:
645
445
  :param value_slider:
646
- :type value_slider:
647
446
  """
648
447
  ...
649
448
 
650
- class DisplayPanel(BrushPanel, UnifiedPaintPanel):
449
+ class FalloffPanel(UnifiedPaintPanel):
450
+ """ """
451
+
651
452
  bl_label: typing.Any
453
+ """ """
454
+
652
455
  bl_options: typing.Any
456
+ """ """
653
457
 
654
458
  def draw(self, context):
655
459
  """
656
460
 
657
- :param self:
658
- :type self:
659
461
  :param context:
660
- :type context:
661
- """
662
- ...
663
-
664
- def draw_header(self, context):
665
- """
666
-
667
- :param self:
668
- :type self:
669
- :param context:
670
- :type context:
671
462
  """
672
463
  ...
673
464
 
@@ -675,7 +466,6 @@ class DisplayPanel(BrushPanel, UnifiedPaintPanel):
675
466
  """
676
467
 
677
468
  :param context:
678
- :type context:
679
469
  """
680
470
  ...
681
471
 
@@ -683,7 +473,6 @@ class DisplayPanel(BrushPanel, UnifiedPaintPanel):
683
473
  """
684
474
 
685
475
  :param context:
686
- :type context:
687
476
  """
688
477
  ...
689
478
 
@@ -691,7 +480,6 @@ class DisplayPanel(BrushPanel, UnifiedPaintPanel):
691
480
  """
692
481
 
693
482
  :param context:
694
- :type context:
695
483
  """
696
484
  ...
697
485
 
@@ -711,25 +499,15 @@ class DisplayPanel(BrushPanel, UnifiedPaintPanel):
711
499
  """
712
500
 
713
501
  :param layout:
714
- :type layout:
715
502
  :param context:
716
- :type context:
717
503
  :param brush:
718
- :type brush:
719
504
  :param prop_name:
720
- :type prop_name:
721
505
  :param unified_name:
722
- :type unified_name:
723
506
  :param pressure_name:
724
- :type pressure_name:
725
507
  :param icon:
726
- :type icon:
727
508
  :param text:
728
- :type text:
729
509
  :param slider:
730
- :type slider:
731
510
  :param header:
732
- :type header:
733
511
  """
734
512
  ...
735
513
 
@@ -737,15 +515,10 @@ class DisplayPanel(BrushPanel, UnifiedPaintPanel):
737
515
  """
738
516
 
739
517
  :param parent:
740
- :type parent:
741
518
  :param context:
742
- :type context:
743
519
  :param brush:
744
- :type brush:
745
520
  :param prop_name:
746
- :type prop_name:
747
521
  :param text:
748
- :type text:
749
522
  """
750
523
  ...
751
524
 
@@ -755,29 +528,33 @@ class DisplayPanel(BrushPanel, UnifiedPaintPanel):
755
528
  """
756
529
 
757
530
  :param parent:
758
- :type parent:
759
531
  :param context:
760
- :type context:
761
532
  :param brush:
762
- :type brush:
763
533
  :param prop_name:
764
- :type prop_name:
765
534
  :param value_slider:
766
- :type value_slider:
767
535
  """
768
536
  ...
769
537
 
770
- class FalloffPanel(BrushPanel, UnifiedPaintPanel):
538
+ class SmoothStrokePanel(UnifiedPaintPanel):
539
+ """ """
540
+
771
541
  bl_label: typing.Any
542
+ """ """
543
+
772
544
  bl_options: typing.Any
545
+ """ """
773
546
 
774
547
  def draw(self, context):
775
548
  """
776
549
 
777
- :param self:
778
- :type self:
779
550
  :param context:
780
- :type context:
551
+ """
552
+ ...
553
+
554
+ def draw_header(self, context):
555
+ """
556
+
557
+ :param context:
781
558
  """
782
559
  ...
783
560
 
@@ -785,7 +562,6 @@ class FalloffPanel(BrushPanel, UnifiedPaintPanel):
785
562
  """
786
563
 
787
564
  :param context:
788
- :type context:
789
565
  """
790
566
  ...
791
567
 
@@ -793,7 +569,6 @@ class FalloffPanel(BrushPanel, UnifiedPaintPanel):
793
569
  """
794
570
 
795
571
  :param context:
796
- :type context:
797
572
  """
798
573
  ...
799
574
 
@@ -801,7 +576,6 @@ class FalloffPanel(BrushPanel, UnifiedPaintPanel):
801
576
  """
802
577
 
803
578
  :param context:
804
- :type context:
805
579
  """
806
580
  ...
807
581
 
@@ -821,25 +595,15 @@ class FalloffPanel(BrushPanel, UnifiedPaintPanel):
821
595
  """
822
596
 
823
597
  :param layout:
824
- :type layout:
825
598
  :param context:
826
- :type context:
827
599
  :param brush:
828
- :type brush:
829
600
  :param prop_name:
830
- :type prop_name:
831
601
  :param unified_name:
832
- :type unified_name:
833
602
  :param pressure_name:
834
- :type pressure_name:
835
603
  :param icon:
836
- :type icon:
837
604
  :param text:
838
- :type text:
839
605
  :param slider:
840
- :type slider:
841
606
  :param header:
842
- :type header:
843
607
  """
844
608
  ...
845
609
 
@@ -847,15 +611,10 @@ class FalloffPanel(BrushPanel, UnifiedPaintPanel):
847
611
  """
848
612
 
849
613
  :param parent:
850
- :type parent:
851
614
  :param context:
852
- :type context:
853
615
  :param brush:
854
- :type brush:
855
616
  :param prop_name:
856
- :type prop_name:
857
617
  :param text:
858
- :type text:
859
618
  """
860
619
  ...
861
620
 
@@ -865,39 +624,29 @@ class FalloffPanel(BrushPanel, UnifiedPaintPanel):
865
624
  """
866
625
 
867
626
  :param parent:
868
- :type parent:
869
627
  :param context:
870
- :type context:
871
628
  :param brush:
872
- :type brush:
873
629
  :param prop_name:
874
- :type prop_name:
875
630
  :param value_slider:
876
- :type value_slider:
877
631
  """
878
632
  ...
879
633
 
880
- class SmoothStrokePanel(BrushPanel, UnifiedPaintPanel):
634
+ class StrokePanel(UnifiedPaintPanel):
635
+ """ """
636
+
881
637
  bl_label: typing.Any
882
- bl_options: typing.Any
638
+ """ """
883
639
 
884
- def draw(self, context):
885
- """
640
+ bl_options: typing.Any
641
+ """ """
886
642
 
887
- :param self:
888
- :type self:
889
- :param context:
890
- :type context:
891
- """
892
- ...
643
+ bl_ui_units_x: typing.Any
644
+ """ """
893
645
 
894
- def draw_header(self, context):
646
+ def draw(self, context):
895
647
  """
896
648
 
897
- :param self:
898
- :type self:
899
649
  :param context:
900
- :type context:
901
650
  """
902
651
  ...
903
652
 
@@ -905,7 +654,6 @@ class SmoothStrokePanel(BrushPanel, UnifiedPaintPanel):
905
654
  """
906
655
 
907
656
  :param context:
908
- :type context:
909
657
  """
910
658
  ...
911
659
 
@@ -913,7 +661,6 @@ class SmoothStrokePanel(BrushPanel, UnifiedPaintPanel):
913
661
  """
914
662
 
915
663
  :param context:
916
- :type context:
917
664
  """
918
665
  ...
919
666
 
@@ -921,7 +668,6 @@ class SmoothStrokePanel(BrushPanel, UnifiedPaintPanel):
921
668
  """
922
669
 
923
670
  :param context:
924
- :type context:
925
671
  """
926
672
  ...
927
673
 
@@ -941,25 +687,15 @@ class SmoothStrokePanel(BrushPanel, UnifiedPaintPanel):
941
687
  """
942
688
 
943
689
  :param layout:
944
- :type layout:
945
690
  :param context:
946
- :type context:
947
691
  :param brush:
948
- :type brush:
949
692
  :param prop_name:
950
- :type prop_name:
951
693
  :param unified_name:
952
- :type unified_name:
953
694
  :param pressure_name:
954
- :type pressure_name:
955
695
  :param icon:
956
- :type icon:
957
696
  :param text:
958
- :type text:
959
697
  :param slider:
960
- :type slider:
961
698
  :param header:
962
- :type header:
963
699
  """
964
700
  ...
965
701
 
@@ -967,15 +703,10 @@ class SmoothStrokePanel(BrushPanel, UnifiedPaintPanel):
967
703
  """
968
704
 
969
705
  :param parent:
970
- :type parent:
971
706
  :param context:
972
- :type context:
973
707
  :param brush:
974
- :type brush:
975
708
  :param prop_name:
976
- :type prop_name:
977
709
  :param text:
978
- :type text:
979
710
  """
980
711
  ...
981
712
 
@@ -985,30 +716,26 @@ class SmoothStrokePanel(BrushPanel, UnifiedPaintPanel):
985
716
  """
986
717
 
987
718
  :param parent:
988
- :type parent:
989
719
  :param context:
990
- :type context:
991
720
  :param brush:
992
- :type brush:
993
721
  :param prop_name:
994
- :type prop_name:
995
722
  :param value_slider:
996
- :type value_slider:
997
723
  """
998
724
  ...
999
725
 
1000
- class StrokePanel(BrushPanel, UnifiedPaintPanel):
726
+ class TextureMaskPanel(UnifiedPaintPanel):
727
+ """ """
728
+
1001
729
  bl_label: typing.Any
730
+ """ """
731
+
1002
732
  bl_options: typing.Any
1003
- bl_ui_units_x: typing.Any
733
+ """ """
1004
734
 
1005
735
  def draw(self, context):
1006
736
  """
1007
737
 
1008
- :param self:
1009
- :type self:
1010
738
  :param context:
1011
- :type context:
1012
739
  """
1013
740
  ...
1014
741
 
@@ -1016,7 +743,6 @@ class StrokePanel(BrushPanel, UnifiedPaintPanel):
1016
743
  """
1017
744
 
1018
745
  :param context:
1019
- :type context:
1020
746
  """
1021
747
  ...
1022
748
 
@@ -1024,7 +750,6 @@ class StrokePanel(BrushPanel, UnifiedPaintPanel):
1024
750
  """
1025
751
 
1026
752
  :param context:
1027
- :type context:
1028
753
  """
1029
754
  ...
1030
755
 
@@ -1032,7 +757,6 @@ class StrokePanel(BrushPanel, UnifiedPaintPanel):
1032
757
  """
1033
758
 
1034
759
  :param context:
1035
- :type context:
1036
760
  """
1037
761
  ...
1038
762
 
@@ -1052,25 +776,15 @@ class StrokePanel(BrushPanel, UnifiedPaintPanel):
1052
776
  """
1053
777
 
1054
778
  :param layout:
1055
- :type layout:
1056
779
  :param context:
1057
- :type context:
1058
780
  :param brush:
1059
- :type brush:
1060
781
  :param prop_name:
1061
- :type prop_name:
1062
782
  :param unified_name:
1063
- :type unified_name:
1064
783
  :param pressure_name:
1065
- :type pressure_name:
1066
784
  :param icon:
1067
- :type icon:
1068
785
  :param text:
1069
- :type text:
1070
786
  :param slider:
1071
- :type slider:
1072
787
  :param header:
1073
- :type header:
1074
788
  """
1075
789
  ...
1076
790
 
@@ -1078,15 +792,10 @@ class StrokePanel(BrushPanel, UnifiedPaintPanel):
1078
792
  """
1079
793
 
1080
794
  :param parent:
1081
- :type parent:
1082
795
  :param context:
1083
- :type context:
1084
796
  :param brush:
1085
- :type brush:
1086
797
  :param prop_name:
1087
- :type prop_name:
1088
798
  :param text:
1089
- :type text:
1090
799
  """
1091
800
  ...
1092
801
 
@@ -1096,53 +805,206 @@ class StrokePanel(BrushPanel, UnifiedPaintPanel):
1096
805
  """
1097
806
 
1098
807
  :param parent:
1099
- :type parent:
1100
808
  :param context:
1101
- :type context:
1102
809
  :param brush:
1103
- :type brush:
1104
810
  :param prop_name:
1105
- :type prop_name:
1106
811
  :param value_slider:
1107
- :type value_slider:
1108
812
  """
1109
813
  ...
1110
814
 
1111
- class TextureMaskPanel(BrushPanel, UnifiedPaintPanel):
815
+ class VIEW3D_MT_tools_projectpaint_clone(bpy_types._GenericUI):
816
+ """ """
817
+
1112
818
  bl_label: typing.Any
1113
- bl_options: typing.Any
819
+ """ """
820
+
821
+ bl_rna: typing.Any
822
+ """ """
823
+
824
+ id_data: typing.Any
825
+ """ """
826
+
827
+ def append(self, draw_func):
828
+ """
829
+
830
+ :param draw_func:
831
+ """
832
+ ...
833
+
834
+ def as_pointer(self):
835
+ """ """
836
+ ...
837
+
838
+ def bl_rna_get_subclass(self):
839
+ """ """
840
+ ...
841
+
842
+ def bl_rna_get_subclass_py(self):
843
+ """ """
844
+ ...
1114
845
 
1115
846
  def draw(self, context):
1116
847
  """
1117
848
 
1118
- :param self:
1119
- :type self:
1120
849
  :param context:
1121
- :type context:
1122
850
  """
1123
851
  ...
1124
852
 
1125
- def get_brush_mode(self, context):
853
+ def draw_collapsible(self, context, layout):
1126
854
  """
1127
855
 
1128
856
  :param context:
1129
- :type context:
857
+ :param layout:
1130
858
  """
1131
859
  ...
1132
860
 
1133
- def paint_settings(self, context):
861
+ def draw_preset(self, _context):
862
+ """
863
+
864
+ :param _context:
865
+ """
866
+ ...
867
+
868
+ def driver_add(self):
869
+ """ """
870
+ ...
871
+
872
+ def driver_remove(self):
873
+ """ """
874
+ ...
875
+
876
+ def get(self):
877
+ """ """
878
+ ...
879
+
880
+ def id_properties_clear(self):
881
+ """ """
882
+ ...
883
+
884
+ def id_properties_ensure(self):
885
+ """ """
886
+ ...
887
+
888
+ def id_properties_ui(self):
889
+ """ """
890
+ ...
891
+
892
+ def is_extended(self):
893
+ """ """
894
+ ...
895
+
896
+ def is_property_hidden(self):
897
+ """ """
898
+ ...
899
+
900
+ def is_property_overridable_library(self):
901
+ """ """
902
+ ...
903
+
904
+ def is_property_readonly(self):
905
+ """ """
906
+ ...
907
+
908
+ def is_property_set(self):
909
+ """ """
910
+ ...
911
+
912
+ def items(self):
913
+ """ """
914
+ ...
915
+
916
+ def keyframe_delete(self):
917
+ """ """
918
+ ...
919
+
920
+ def keyframe_insert(self):
921
+ """ """
922
+ ...
923
+
924
+ def keys(self):
925
+ """ """
926
+ ...
927
+
928
+ def path_from_id(self):
929
+ """ """
930
+ ...
931
+
932
+ def path_menu(
933
+ self,
934
+ searchpaths,
935
+ operator,
936
+ props_default,
937
+ prop_filepath,
938
+ filter_ext,
939
+ filter_path,
940
+ display_name,
941
+ add_operator,
942
+ ):
943
+ """
944
+
945
+ :param searchpaths:
946
+ :param operator:
947
+ :param props_default:
948
+ :param prop_filepath:
949
+ :param filter_ext:
950
+ :param filter_path:
951
+ :param display_name:
952
+ :param add_operator:
953
+ """
954
+ ...
955
+
956
+ def path_resolve(self):
957
+ """ """
958
+ ...
959
+
960
+ def pop(self):
961
+ """ """
962
+ ...
963
+
964
+ def prepend(self, draw_func):
965
+ """
966
+
967
+ :param draw_func:
968
+ """
969
+ ...
970
+
971
+ def property_overridable_library_set(self):
972
+ """ """
973
+ ...
974
+
975
+ def property_unset(self):
976
+ """ """
977
+ ...
978
+
979
+ def remove(self, draw_func):
980
+ """
981
+
982
+ :param draw_func:
983
+ """
984
+ ...
985
+
986
+ def type_recast(self):
987
+ """ """
988
+ ...
989
+
990
+ def values(self):
991
+ """ """
992
+ ...
993
+
994
+ class UnifiedPaintPanel:
995
+ """ """
996
+
997
+ def get_brush_mode(self, context):
1134
998
  """
1135
999
 
1136
1000
  :param context:
1137
- :type context:
1138
1001
  """
1139
1002
  ...
1140
1003
 
1141
- def poll(self, context):
1004
+ def paint_settings(self, context):
1142
1005
  """
1143
1006
 
1144
1007
  :param context:
1145
- :type context:
1146
1008
  """
1147
1009
  ...
1148
1010
 
@@ -1162,25 +1024,15 @@ class TextureMaskPanel(BrushPanel, UnifiedPaintPanel):
1162
1024
  """
1163
1025
 
1164
1026
  :param layout:
1165
- :type layout:
1166
1027
  :param context:
1167
- :type context:
1168
1028
  :param brush:
1169
- :type brush:
1170
1029
  :param prop_name:
1171
- :type prop_name:
1172
1030
  :param unified_name:
1173
- :type unified_name:
1174
1031
  :param pressure_name:
1175
- :type pressure_name:
1176
1032
  :param icon:
1177
- :type icon:
1178
1033
  :param text:
1179
- :type text:
1180
1034
  :param slider:
1181
- :type slider:
1182
1035
  :param header:
1183
- :type header:
1184
1036
  """
1185
1037
  ...
1186
1038
 
@@ -1188,15 +1040,10 @@ class TextureMaskPanel(BrushPanel, UnifiedPaintPanel):
1188
1040
  """
1189
1041
 
1190
1042
  :param parent:
1191
- :type parent:
1192
1043
  :param context:
1193
- :type context:
1194
1044
  :param brush:
1195
- :type brush:
1196
1045
  :param prop_name:
1197
- :type prop_name:
1198
1046
  :param text:
1199
- :type text:
1200
1047
  """
1201
1048
  ...
1202
1049
 
@@ -1206,28 +1053,74 @@ class TextureMaskPanel(BrushPanel, UnifiedPaintPanel):
1206
1053
  """
1207
1054
 
1208
1055
  :param parent:
1209
- :type parent:
1210
1056
  :param context:
1211
- :type context:
1212
1057
  :param brush:
1213
- :type brush:
1214
1058
  :param prop_name:
1215
- :type prop_name:
1216
1059
  :param value_slider:
1217
- :type value_slider:
1218
- """
1219
- ...
1220
-
1221
- def brush_basic__draw_color_selector(context, layout, brush, gp_settings, props): ...
1222
- def brush_basic_gpencil_paint_settings(layout, context, brush, compact): ...
1223
- def brush_basic_gpencil_sculpt_settings(layout, _context, brush, compact): ...
1224
- def brush_basic_gpencil_vertex_settings(layout, _context, brush, compact): ...
1225
- def brush_basic_gpencil_weight_settings(layout, _context, brush, compact): ...
1226
- def brush_basic_grease_pencil_paint_settings(layout, context, brush, compact): ...
1227
- def brush_basic_texpaint_settings(layout, context, brush, compact): ...
1228
- def brush_mask_texture_settings(layout, brush): ...
1229
- def brush_settings(layout, context, brush, popover): ...
1230
- def brush_settings_advanced(layout, context, brush, popover): ...
1231
- def brush_shared_settings(layout, context, brush, popover): ...
1232
- def brush_texture_settings(layout, brush, sculpt): ...
1233
- def draw_color_settings(context, layout, brush, color_type): ...
1060
+ """
1061
+ ...
1062
+
1063
+ def brush_basic__draw_color_selector(context, layout, brush, gp_settings, props):
1064
+ """ """
1065
+
1066
+ ...
1067
+
1068
+ def brush_basic_gpencil_paint_settings(layout, context, brush, compact):
1069
+ """ """
1070
+
1071
+ ...
1072
+
1073
+ def brush_basic_gpencil_sculpt_settings(layout, _context, brush, compact):
1074
+ """ """
1075
+
1076
+ ...
1077
+
1078
+ def brush_basic_gpencil_vertex_settings(layout, _context, brush, compact):
1079
+ """ """
1080
+
1081
+ ...
1082
+
1083
+ def brush_basic_gpencil_weight_settings(layout, _context, brush, compact):
1084
+ """ """
1085
+
1086
+ ...
1087
+
1088
+ def brush_basic_grease_pencil_paint_settings(layout, context, brush, compact):
1089
+ """ """
1090
+
1091
+ ...
1092
+
1093
+ def brush_basic_texpaint_settings(layout, context, brush, compact):
1094
+ """ """
1095
+
1096
+ ...
1097
+
1098
+ def brush_mask_texture_settings(layout, brush):
1099
+ """ """
1100
+
1101
+ ...
1102
+
1103
+ def brush_settings(layout, context, brush, popover):
1104
+ """ """
1105
+
1106
+ ...
1107
+
1108
+ def brush_settings_advanced(layout, context, brush, popover):
1109
+ """ """
1110
+
1111
+ ...
1112
+
1113
+ def brush_shared_settings(layout, context, brush, popover):
1114
+ """ """
1115
+
1116
+ ...
1117
+
1118
+ def brush_texture_settings(layout, brush, sculpt):
1119
+ """ """
1120
+
1121
+ ...
1122
+
1123
+ def draw_color_settings(context, layout, brush, color_type):
1124
+ """ """
1125
+
1126
+ ...