fake-bpy-module 20240224__py3-none-any.whl → 20240326__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 (293) hide show
  1. addon_utils/__init__.pyi +54 -10
  2. animsys_refactor/__init__.pyi +36 -6
  3. aud/__init__.pyi +132 -125
  4. bgl/__init__.pyi +2545 -546
  5. bl_app_override/__init__.pyi +14 -3
  6. bl_app_override/helpers/__init__.pyi +24 -2
  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 +53 -6
  15. bl_i18n_utils/utils/__init__.pyi +332 -44
  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 +171 -37
  27. bl_operators/anim/__init__.pyi +1065 -226
  28. bl_operators/assets/__init__.pyi +427 -92
  29. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -9
  30. bl_operators/clip/__init__.pyi +1342 -287
  31. bl_operators/console/__init__.pyi +647 -140
  32. bl_operators/constraint/__init__.pyi +524 -112
  33. bl_operators/file/__init__.pyi +396 -84
  34. bl_operators/freestyle/__init__.pyi +532 -113
  35. bl_operators/geometry_nodes/__init__.pyi +2412 -596
  36. bl_operators/image/__init__.pyi +380 -82
  37. bl_operators/mesh/__init__.pyi +401 -85
  38. bl_operators/node/__init__.pyi +1756 -384
  39. bl_operators/object/__init__.pyi +2022 -552
  40. bl_operators/object_align/__init__.pyi +145 -31
  41. bl_operators/object_quick_effects/__init__.pyi +555 -124
  42. bl_operators/object_randomize_transform/__init__.pyi +136 -32
  43. bl_operators/presets/__init__.pyi +3516 -708
  44. bl_operators/rigidbody/__init__.pyi +401 -85
  45. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -29
  46. bl_operators/sequencer/__init__.pyi +731 -149
  47. bl_operators/spreadsheet/__init__.pyi +145 -30
  48. bl_operators/userpref/__init__.pyi +3416 -824
  49. bl_operators/uvcalc_follow_active/__init__.pyi +149 -32
  50. bl_operators/uvcalc_lightmap/__init__.pyi +187 -34
  51. bl_operators/uvcalc_transform/__init__.pyi +344 -73
  52. bl_operators/vertexpaint_dirt/__init__.pyi +140 -30
  53. bl_operators/view3d/__init__.pyi +697 -146
  54. bl_operators/wm/__init__.pyi +6287 -1533
  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 +504 -106
  59. bl_ui/anim/__init__.pyi +164 -33
  60. bl_ui/asset_shelf/__init__.pyi +146 -31
  61. bl_ui/generic_ui_list/__init__.pyi +471 -99
  62. bl_ui/node_add_menu/__init__.pyi +196 -40
  63. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -621
  64. bl_ui/node_add_menu_geometry/__init__.pyi +8060 -1625
  65. bl_ui/node_add_menu_shader/__init__.pyi +1709 -348
  66. bl_ui/node_add_menu_texture/__init__.pyi +1502 -305
  67. bl_ui/properties_animviz/__init__.pyi +32 -2
  68. bl_ui/properties_collection/__init__.pyi +787 -179
  69. bl_ui/properties_constraint/__init__.pyi +28635 -5523
  70. bl_ui/properties_data_armature/__init__.pyi +1905 -448
  71. bl_ui/properties_data_bone/__init__.pyi +1560 -336
  72. bl_ui/properties_data_camera/__init__.pyi +2269 -494
  73. bl_ui/properties_data_curve/__init__.pyi +2362 -534
  74. bl_ui/properties_data_curves/__init__.pyi +951 -203
  75. bl_ui/properties_data_empty/__init__.pyi +317 -69
  76. bl_ui/properties_data_gpencil/__init__.pyi +2924 -734
  77. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -188
  78. bl_ui/properties_data_lattice/__init__.pyi +472 -104
  79. bl_ui/properties_data_light/__init__.pyi +1570 -337
  80. bl_ui/properties_data_lightprobe/__init__.pyi +938 -208
  81. bl_ui/properties_data_mesh/__init__.pyi +3205 -767
  82. bl_ui/properties_data_metaball/__init__.pyi +774 -170
  83. bl_ui/properties_data_modifier/__init__.pyi +1554 -328
  84. bl_ui/properties_data_pointcloud/__init__.pyi +821 -194
  85. bl_ui/properties_data_shaderfx/__init__.pyi +154 -34
  86. bl_ui/properties_data_speaker/__init__.pyi +782 -168
  87. bl_ui/properties_data_volume/__init__.pyi +1243 -281
  88. bl_ui/properties_freestyle/__init__.pyi +4071 -1030
  89. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -483
  90. bl_ui/properties_mask_common/__init__.pyi +1256 -249
  91. bl_ui/properties_material/__init__.pyi +2351 -542
  92. bl_ui/properties_material_gpencil/__init__.pyi +1590 -365
  93. bl_ui/properties_object/__init__.pyi +2179 -512
  94. bl_ui/properties_output/__init__.pyi +2956 -705
  95. bl_ui/properties_paint_common/__init__.pyi +947 -140
  96. bl_ui/properties_particle/__init__.pyi +8322 -1970
  97. bl_ui/properties_physics_cloth/__init__.pyi +2254 -508
  98. bl_ui/properties_physics_common/__init__.pyi +200 -44
  99. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -965
  100. bl_ui/properties_physics_field/__init__.pyi +1695 -364
  101. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1280
  102. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -32
  103. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -278
  104. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -483
  105. bl_ui/properties_physics_softbody/__init__.pyi +2394 -542
  106. bl_ui/properties_render/__init__.pyi +8312 -1933
  107. bl_ui/properties_scene/__init__.pyi +2211 -539
  108. bl_ui/properties_texture/__init__.pyi +4185 -1013
  109. bl_ui/properties_view_layer/__init__.pyi +2803 -664
  110. bl_ui/properties_workspace/__init__.pyi +626 -148
  111. bl_ui/properties_world/__init__.pyi +1092 -234
  112. bl_ui/space_clip/__init__.pyi +11475 -2805
  113. bl_ui/space_console/__init__.pyi +967 -202
  114. bl_ui/space_dopesheet/__init__.pyi +4260 -966
  115. bl_ui/space_filebrowser/__init__.pyi +4852 -1187
  116. bl_ui/space_graph/__init__.pyi +3251 -702
  117. bl_ui/space_image/__init__.pyi +12219 -2968
  118. bl_ui/space_info/__init__.pyi +964 -200
  119. bl_ui/space_nla/__init__.pyi +2756 -584
  120. bl_ui/space_node/__init__.pyi +5661 -1265
  121. bl_ui/space_outliner/__init__.pyi +2294 -478
  122. bl_ui/space_properties/__init__.pyi +417 -92
  123. bl_ui/space_sequencer/__init__.pyi +12436 -3009
  124. bl_ui/space_spreadsheet/__init__.pyi +184 -36
  125. bl_ui/space_statusbar/__init__.pyi +135 -30
  126. bl_ui/space_text/__init__.pyi +2556 -542
  127. bl_ui/space_time/__init__.pyi +1151 -243
  128. bl_ui/space_toolsystem_common/__init__.pyi +368 -66
  129. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -228
  130. bl_ui/space_topbar/__init__.pyi +4214 -887
  131. bl_ui/space_userpref/__init__.pyi +13920 -3468
  132. bl_ui/space_view3d/__init__.pyi +43701 -10599
  133. bl_ui/space_view3d_toolbar/__init__.pyi +16380 -3860
  134. bl_ui/utils/__init__.pyi +42 -4
  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 +268 -262
  143. bmesh/utils/__init__.pyi +55 -55
  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 +350 -305
  152. bpy/ops/anim/__init__.pyi +464 -426
  153. bpy/ops/armature/__init__.pyi +392 -360
  154. bpy/ops/asset/__init__.pyi +166 -129
  155. bpy/ops/boid/__init__.pyi +64 -37
  156. bpy/ops/brush/__init__.pyi +78 -72
  157. bpy/ops/buttons/__init__.pyi +136 -122
  158. bpy/ops/cachefile/__init__.pyi +128 -123
  159. bpy/ops/camera/__init__.pyi +22 -24
  160. bpy/ops/clip/__init__.pyi +844 -735
  161. bpy/ops/cloth/__init__.pyi +10 -11
  162. bpy/ops/collection/__init__.pyi +38 -38
  163. bpy/ops/console/__init__.pyi +170 -141
  164. bpy/ops/constraint/__init__.pyi +156 -159
  165. bpy/ops/curve/__init__.pyi +518 -461
  166. bpy/ops/curves/__init__.pyi +188 -159
  167. bpy/ops/cycles/__init__.pyi +20 -18
  168. bpy/ops/dpaint/__init__.pyi +40 -30
  169. bpy/ops/ed/__init__.pyi +136 -107
  170. bpy/ops/export_anim/__init__.pyi +18 -19
  171. bpy/ops/export_mesh/__init__.pyi +26 -27
  172. bpy/ops/export_scene/__init__.pyi +313 -334
  173. bpy/ops/file/__init__.pyi +394 -304
  174. bpy/ops/fluid/__init__.pyi +114 -63
  175. bpy/ops/font/__init__.pyi +272 -245
  176. bpy/ops/geometry/__init__.pyi +92 -87
  177. bpy/ops/gizmogroup/__init__.pyi +24 -21
  178. bpy/ops/gpencil/__init__.pyi +1530 -1476
  179. bpy/ops/graph/__init__.pyi +680 -659
  180. bpy/ops/grease_pencil/__init__.pyi +510 -390
  181. bpy/ops/image/__init__.pyi +650 -603
  182. bpy/ops/import_anim/__init__.pyi +26 -27
  183. bpy/ops/import_curve/__init__.pyi +6 -7
  184. bpy/ops/import_mesh/__init__.pyi +18 -21
  185. bpy/ops/import_scene/__init__.pyi +86 -95
  186. bpy/ops/info/__init__.pyi +68 -55
  187. bpy/ops/lattice/__init__.pyi +70 -63
  188. bpy/ops/marker/__init__.pyi +110 -111
  189. bpy/ops/mask/__init__.pyi +352 -308
  190. bpy/ops/material/__init__.pyi +24 -12
  191. bpy/ops/mball/__init__.pyi +72 -75
  192. bpy/ops/mesh/__init__.pyi +2052 -2088
  193. bpy/ops/nla/__init__.pyi +369 -313
  194. bpy/ops/node/__init__.pyi +944 -805
  195. bpy/ops/object/__init__.pyi +2662 -2461
  196. bpy/ops/outliner/__init__.pyi +582 -431
  197. bpy/ops/paint/__init__.pyi +605 -516
  198. bpy/ops/paintcurve/__init__.pyi +72 -60
  199. bpy/ops/palette/__init__.pyi +54 -46
  200. bpy/ops/particle/__init__.pyi +302 -245
  201. bpy/ops/pose/__init__.pyi +366 -330
  202. bpy/ops/poselib/__init__.pyi +78 -64
  203. bpy/ops/preferences/__init__.pyi +361 -341
  204. bpy/ops/ptcache/__init__.pyi +56 -38
  205. bpy/ops/render/__init__.pyi +120 -117
  206. bpy/ops/rigidbody/__init__.pyi +114 -97
  207. bpy/ops/scene/__init__.pyi +302 -240
  208. bpy/ops/screen/__init__.pyi +414 -363
  209. bpy/ops/script/__init__.pyi +20 -18
  210. bpy/ops/sculpt/__init__.pyi +414 -452
  211. bpy/ops/sculpt_curves/__init__.pyi +42 -43
  212. bpy/ops/sequencer/__init__.pyi +1094 -1053
  213. bpy/ops/sound/__init__.pyi +214 -206
  214. bpy/ops/spreadsheet/__init__.pyi +34 -28
  215. bpy/ops/surface/__init__.pyi +108 -114
  216. bpy/ops/text/__init__.pyi +432 -350
  217. bpy/ops/text_editor/__init__.pyi +10 -11
  218. bpy/ops/texture/__init__.pyi +32 -21
  219. bpy/ops/transform/__init__.pyi +801 -854
  220. bpy/ops/ui/__init__.pyi +254 -185
  221. bpy/ops/uilist/__init__.pyi +20 -23
  222. bpy/ops/uv/__init__.pyi +618 -626
  223. bpy/ops/view2d/__init__.pyi +162 -161
  224. bpy/ops/view3d/__init__.pyi +669 -658
  225. bpy/ops/wm/__init__.pyi +2433 -2415
  226. bpy/ops/workspace/__init__.pyi +54 -31
  227. bpy/ops/world/__init__.pyi +8 -4
  228. bpy/path/__init__.pyi +111 -68
  229. bpy/props/__init__.pyi +263 -267
  230. bpy/types/__init__.pyi +86789 -85719
  231. bpy/utils/__init__.pyi +265 -123
  232. bpy/utils/previews/__init__.pyi +103 -17
  233. bpy/utils/units/__init__.pyi +19 -22
  234. bpy_extras/__init__.pyi +0 -4
  235. bpy_extras/anim_utils/__init__.pyi +11 -46
  236. bpy_extras/asset_utils/__init__.pyi +3 -12
  237. bpy_extras/id_map_utils/__init__.pyi +0 -2
  238. bpy_extras/image_utils/__init__.pyi +2 -2
  239. bpy_extras/io_utils/__init__.pyi +30 -27
  240. bpy_extras/keyconfig_utils/__init__.pyi +4 -1
  241. bpy_extras/mesh_utils/__init__.pyi +18 -18
  242. bpy_extras/node_utils/__init__.pyi +4 -3
  243. bpy_extras/object_utils/__init__.pyi +25 -26
  244. bpy_extras/view3d_utils/__init__.pyi +33 -38
  245. bpy_restrict_state/__init__.pyi +14 -1
  246. bpy_types/__init__.pyi +3873 -997
  247. console_python/__init__.pyi +41 -7
  248. console_shell/__init__.pyi +24 -5
  249. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  250. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  251. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  252. freestyle/chainingiterators/__init__.pyi +50 -52
  253. freestyle/functions/__init__.pyi +303 -207
  254. freestyle/predicates/__init__.pyi +299 -115
  255. freestyle/shaders/__init__.pyi +49 -80
  256. freestyle/types/__init__.pyi +465 -472
  257. freestyle/utils/ContextFunctions/__init__.pyi +9 -9
  258. freestyle/utils/__init__.pyi +28 -18
  259. gpu/capabilities/__init__.pyi +27 -19
  260. gpu/matrix/__init__.pyi +14 -16
  261. gpu/platform/__init__.pyi +5 -5
  262. gpu/shader/__init__.pyi +2 -5
  263. gpu/state/__init__.pyi +1 -1
  264. gpu/texture/__init__.pyi +3 -3
  265. gpu/types/__init__.pyi +54 -85
  266. gpu_extras/batch/__init__.pyi +27 -5
  267. gpu_extras/presets/__init__.pyi +52 -14
  268. graphviz_export/__init__.pyi +9 -2
  269. idprop/types/__init__.pyi +36 -12
  270. imbuf/__init__.pyi +8 -9
  271. imbuf/types/__init__.pyi +8 -15
  272. keyingsets_builtins/__init__.pyi +3149 -701
  273. keyingsets_utils/__init__.pyi +69 -14
  274. mathutils/__init__.pyi +502 -427
  275. mathutils/bvhtree/__init__.pyi +28 -32
  276. mathutils/geometry/__init__.pyi +177 -186
  277. mathutils/kdtree/__init__.pyi +16 -18
  278. mathutils/noise/__init__.pyi +47 -48
  279. nodeitems_builtins/__init__.pyi +50 -10
  280. nodeitems_utils/__init__.pyi +58 -10
  281. rna_info/__init__.pyi +230 -26
  282. rna_keymap_ui/__init__.pyi +29 -6
  283. rna_prop_ui/__init__.pyi +69 -12
  284. rna_xml/__init__.pyi +29 -6
  285. sys_info/__init__.pyi +4 -1
  286. bpy_extras/bmesh_utils/__init__.pyi +0 -6
  287. bpy_extras/extensions/__init__.pyi +0 -4
  288. bpy_extras/extensions/junction_module/__init__.pyi +0 -12
  289. bpy_extras/node_shader_utils/__init__.pyi +0 -131
  290. bpy_extras/wm_utils/__init__.pyi +0 -4
  291. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -29
  292. fake_bpy_module-20240224.dist-info/RECORD +0 -349
  293. {fake_bpy_module-20240224.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
@@ -1,39 +1,125 @@
1
1
  import typing
2
- import bl_ui.properties_grease_pencil_common
3
- import bl_ui.utils
4
2
  import bpy_types
5
- import rna_prop_ui
6
3
 
7
4
  GenericType = typing.TypeVar("GenericType")
8
5
 
9
- class GPENCIL_MT_material_context_menu(bpy_types.Menu, bpy_types._GenericUI):
6
+ class GPENCIL_MT_material_context_menu(bpy_types._GenericUI):
7
+ """ """
8
+
10
9
  bl_label: typing.Any
10
+ """ """
11
+
11
12
  bl_rna: typing.Any
13
+ """ """
14
+
12
15
  id_data: typing.Any
16
+ """ """
17
+
18
+ def append(self, draw_func):
19
+ """
20
+
21
+ :param draw_func:
22
+ """
23
+ ...
24
+
25
+ def as_pointer(self):
26
+ """ """
27
+ ...
28
+
29
+ def bl_rna_get_subclass(self):
30
+ """ """
31
+ ...
32
+
33
+ def bl_rna_get_subclass_py(self):
34
+ """ """
35
+ ...
36
+
37
+ def draw(self, context):
38
+ """
39
+
40
+ :param context:
41
+ """
42
+ ...
43
+
44
+ def draw_collapsible(self, context, layout):
45
+ """
46
+
47
+ :param context:
48
+ :param layout:
49
+ """
50
+ ...
51
+
52
+ def draw_preset(self, _context):
53
+ """
54
+
55
+ :param _context:
56
+ """
57
+ ...
58
+
59
+ def driver_add(self):
60
+ """ """
61
+ ...
62
+
63
+ def driver_remove(self):
64
+ """ """
65
+ ...
66
+
67
+ def get(self):
68
+ """ """
69
+ ...
70
+
71
+ def id_properties_clear(self):
72
+ """ """
73
+ ...
74
+
75
+ def id_properties_ensure(self):
76
+ """ """
77
+ ...
78
+
79
+ def id_properties_ui(self):
80
+ """ """
81
+ ...
82
+
83
+ def is_extended(self):
84
+ """ """
85
+ ...
86
+
87
+ def is_property_hidden(self):
88
+ """ """
89
+ ...
90
+
91
+ def is_property_overridable_library(self):
92
+ """ """
93
+ ...
94
+
95
+ def is_property_readonly(self):
96
+ """ """
97
+ ...
98
+
99
+ def is_property_set(self):
100
+ """ """
101
+ ...
102
+
103
+ def items(self):
104
+ """ """
105
+ ...
106
+
107
+ def keyframe_delete(self):
108
+ """ """
109
+ ...
110
+
111
+ def keyframe_insert(self):
112
+ """ """
113
+ ...
114
+
115
+ def keys(self):
116
+ """ """
117
+ ...
118
+
119
+ def path_from_id(self):
120
+ """ """
121
+ ...
13
122
 
14
- def append(self, draw_func): ...
15
- def as_pointer(self): ...
16
- def bl_rna_get_subclass(self): ...
17
- def bl_rna_get_subclass_py(self): ...
18
- def draw(self, context): ...
19
- def draw_collapsible(self, context, layout): ...
20
- def draw_preset(self, _context): ...
21
- def driver_add(self): ...
22
- def driver_remove(self): ...
23
- def get(self): ...
24
- def id_properties_clear(self): ...
25
- def id_properties_ensure(self): ...
26
- def id_properties_ui(self): ...
27
- def is_extended(self): ...
28
- def is_property_hidden(self): ...
29
- def is_property_overridable_library(self): ...
30
- def is_property_readonly(self): ...
31
- def is_property_set(self): ...
32
- def items(self): ...
33
- def keyframe_delete(self): ...
34
- def keyframe_insert(self): ...
35
- def keys(self): ...
36
- def path_from_id(self): ...
37
123
  def path_menu(
38
124
  self,
39
125
  searchpaths,
@@ -44,24 +130,86 @@ class GPENCIL_MT_material_context_menu(bpy_types.Menu, bpy_types._GenericUI):
44
130
  filter_path,
45
131
  display_name,
46
132
  add_operator,
47
- ): ...
48
- def path_resolve(self): ...
49
- def pop(self): ...
50
- def prepend(self, draw_func): ...
51
- def property_overridable_library_set(self): ...
52
- def property_unset(self): ...
53
- def remove(self, draw_func): ...
54
- def type_recast(self): ...
55
- def values(self): ...
56
-
57
- class GPENCIL_UL_matslots(bpy_types.UIList, bpy_types._GenericUI):
133
+ ):
134
+ """
135
+
136
+ :param searchpaths:
137
+ :param operator:
138
+ :param props_default:
139
+ :param prop_filepath:
140
+ :param filter_ext:
141
+ :param filter_path:
142
+ :param display_name:
143
+ :param add_operator:
144
+ """
145
+ ...
146
+
147
+ def path_resolve(self):
148
+ """ """
149
+ ...
150
+
151
+ def pop(self):
152
+ """ """
153
+ ...
154
+
155
+ def prepend(self, draw_func):
156
+ """
157
+
158
+ :param draw_func:
159
+ """
160
+ ...
161
+
162
+ def property_overridable_library_set(self):
163
+ """ """
164
+ ...
165
+
166
+ def property_unset(self):
167
+ """ """
168
+ ...
169
+
170
+ def remove(self, draw_func):
171
+ """
172
+
173
+ :param draw_func:
174
+ """
175
+ ...
176
+
177
+ def type_recast(self):
178
+ """ """
179
+ ...
180
+
181
+ def values(self):
182
+ """ """
183
+ ...
184
+
185
+ class GPENCIL_UL_matslots(bpy_types._GenericUI):
186
+ """ """
187
+
58
188
  bl_rna: typing.Any
189
+ """ """
190
+
59
191
  id_data: typing.Any
192
+ """ """
193
+
194
+ def append(self, draw_func):
195
+ """
196
+
197
+ :param draw_func:
198
+ """
199
+ ...
200
+
201
+ def as_pointer(self):
202
+ """ """
203
+ ...
204
+
205
+ def bl_rna_get_subclass(self):
206
+ """ """
207
+ ...
208
+
209
+ def bl_rna_get_subclass_py(self):
210
+ """ """
211
+ ...
60
212
 
61
- def append(self, draw_func): ...
62
- def as_pointer(self): ...
63
- def bl_rna_get_subclass(self): ...
64
- def bl_rna_get_subclass_py(self): ...
65
213
  def draw_item(
66
214
  self,
67
215
  _context,
@@ -72,74 +220,604 @@ class GPENCIL_UL_matslots(bpy_types.UIList, bpy_types._GenericUI):
72
220
  _active_data,
73
221
  _active_propname,
74
222
  _index,
75
- ): ...
76
- def driver_add(self): ...
77
- def driver_remove(self): ...
78
- def get(self): ...
79
- def id_properties_clear(self): ...
80
- def id_properties_ensure(self): ...
81
- def id_properties_ui(self): ...
82
- def is_extended(self): ...
83
- def is_property_hidden(self): ...
84
- def is_property_overridable_library(self): ...
85
- def is_property_readonly(self): ...
86
- def is_property_set(self): ...
87
- def items(self): ...
88
- def keyframe_delete(self): ...
89
- def keyframe_insert(self): ...
90
- def keys(self): ...
91
- def path_from_id(self): ...
92
- def path_resolve(self): ...
93
- def pop(self): ...
94
- def prepend(self, draw_func): ...
95
- def property_overridable_library_set(self): ...
96
- def property_unset(self): ...
97
- def remove(self, draw_func): ...
98
- def type_recast(self): ...
99
- def values(self): ...
223
+ ):
224
+ """
225
+
226
+ :param _context:
227
+ :param layout:
228
+ :param _data:
229
+ :param item:
230
+ :param icon:
231
+ :param _active_data:
232
+ :param _active_propname:
233
+ :param _index:
234
+ """
235
+ ...
236
+
237
+ def driver_add(self):
238
+ """ """
239
+ ...
240
+
241
+ def driver_remove(self):
242
+ """ """
243
+ ...
244
+
245
+ def get(self):
246
+ """ """
247
+ ...
248
+
249
+ def id_properties_clear(self):
250
+ """ """
251
+ ...
252
+
253
+ def id_properties_ensure(self):
254
+ """ """
255
+ ...
256
+
257
+ def id_properties_ui(self):
258
+ """ """
259
+ ...
260
+
261
+ def is_extended(self):
262
+ """ """
263
+ ...
264
+
265
+ def is_property_hidden(self):
266
+ """ """
267
+ ...
268
+
269
+ def is_property_overridable_library(self):
270
+ """ """
271
+ ...
272
+
273
+ def is_property_readonly(self):
274
+ """ """
275
+ ...
276
+
277
+ def is_property_set(self):
278
+ """ """
279
+ ...
280
+
281
+ def items(self):
282
+ """ """
283
+ ...
284
+
285
+ def keyframe_delete(self):
286
+ """ """
287
+ ...
288
+
289
+ def keyframe_insert(self):
290
+ """ """
291
+ ...
292
+
293
+ def keys(self):
294
+ """ """
295
+ ...
296
+
297
+ def path_from_id(self):
298
+ """ """
299
+ ...
300
+
301
+ def path_resolve(self):
302
+ """ """
303
+ ...
304
+
305
+ def pop(self):
306
+ """ """
307
+ ...
308
+
309
+ def prepend(self, draw_func):
310
+ """
311
+
312
+ :param draw_func:
313
+ """
314
+ ...
315
+
316
+ def property_overridable_library_set(self):
317
+ """ """
318
+ ...
319
+
320
+ def property_unset(self):
321
+ """ """
322
+ ...
323
+
324
+ def remove(self, draw_func):
325
+ """
326
+
327
+ :param draw_func:
328
+ """
329
+ ...
330
+
331
+ def type_recast(self):
332
+ """ """
333
+ ...
334
+
335
+ def values(self):
336
+ """ """
337
+ ...
100
338
 
101
339
  class GPMaterialButtonsPanel:
340
+ """ """
341
+
342
+ bl_context: typing.Any
343
+ """ """
344
+
345
+ bl_region_type: typing.Any
346
+ """ """
347
+
348
+ bl_space_type: typing.Any
349
+ """ """
350
+
351
+ def poll(self, context):
352
+ """
353
+
354
+ :param context:
355
+ """
356
+ ...
357
+
358
+ class MATERIAL_PT_gpencil_custom_props(bpy_types._GenericUI):
359
+ """ """
360
+
361
+ COMPAT_ENGINES: typing.Any
362
+ """ """
363
+
364
+ bl_context: typing.Any
365
+ """ """
366
+
367
+ bl_label: typing.Any
368
+ """ """
369
+
370
+ bl_options: typing.Any
371
+ """ """
372
+
373
+ bl_order: typing.Any
374
+ """ """
375
+
376
+ bl_region_type: typing.Any
377
+ """ """
378
+
379
+ bl_rna: typing.Any
380
+ """ """
381
+
382
+ bl_space_type: typing.Any
383
+ """ """
384
+
385
+ id_data: typing.Any
386
+ """ """
387
+
388
+ def append(self, draw_func):
389
+ """
390
+
391
+ :param draw_func:
392
+ """
393
+ ...
394
+
395
+ def as_pointer(self):
396
+ """ """
397
+ ...
398
+
399
+ def bl_rna_get_subclass(self):
400
+ """ """
401
+ ...
402
+
403
+ def bl_rna_get_subclass_py(self):
404
+ """ """
405
+ ...
406
+
407
+ def draw(self, context):
408
+ """
409
+
410
+ :param context:
411
+ """
412
+ ...
413
+
414
+ def driver_add(self):
415
+ """ """
416
+ ...
417
+
418
+ def driver_remove(self):
419
+ """ """
420
+ ...
421
+
422
+ def get(self):
423
+ """ """
424
+ ...
425
+
426
+ def id_properties_clear(self):
427
+ """ """
428
+ ...
429
+
430
+ def id_properties_ensure(self):
431
+ """ """
432
+ ...
433
+
434
+ def id_properties_ui(self):
435
+ """ """
436
+ ...
437
+
438
+ def is_extended(self):
439
+ """ """
440
+ ...
441
+
442
+ def is_property_hidden(self):
443
+ """ """
444
+ ...
445
+
446
+ def is_property_overridable_library(self):
447
+ """ """
448
+ ...
449
+
450
+ def is_property_readonly(self):
451
+ """ """
452
+ ...
453
+
454
+ def is_property_set(self):
455
+ """ """
456
+ ...
457
+
458
+ def items(self):
459
+ """ """
460
+ ...
461
+
462
+ def keyframe_delete(self):
463
+ """ """
464
+ ...
465
+
466
+ def keyframe_insert(self):
467
+ """ """
468
+ ...
469
+
470
+ def keys(self):
471
+ """ """
472
+ ...
473
+
474
+ def path_from_id(self):
475
+ """ """
476
+ ...
477
+
478
+ def path_resolve(self):
479
+ """ """
480
+ ...
481
+
482
+ def poll(self, context):
483
+ """
484
+
485
+ :param context:
486
+ """
487
+ ...
488
+
489
+ def pop(self):
490
+ """ """
491
+ ...
492
+
493
+ def prepend(self, draw_func):
494
+ """
495
+
496
+ :param draw_func:
497
+ """
498
+ ...
499
+
500
+ def property_overridable_library_set(self):
501
+ """ """
502
+ ...
503
+
504
+ def property_unset(self):
505
+ """ """
506
+ ...
507
+
508
+ def remove(self, draw_func):
509
+ """
510
+
511
+ :param draw_func:
512
+ """
513
+ ...
514
+
515
+ def type_recast(self):
516
+ """ """
517
+ ...
518
+
519
+ def values(self):
520
+ """ """
521
+ ...
522
+
523
+ class MATERIAL_PT_gpencil_fillcolor(bpy_types._GenericUI):
524
+ """ """
525
+
102
526
  bl_context: typing.Any
527
+ """ """
528
+
529
+ bl_label: typing.Any
530
+ """ """
531
+
532
+ bl_parent_id: typing.Any
533
+ """ """
534
+
103
535
  bl_region_type: typing.Any
536
+ """ """
537
+
538
+ bl_rna: typing.Any
539
+ """ """
540
+
104
541
  bl_space_type: typing.Any
542
+ """ """
543
+
544
+ id_data: typing.Any
545
+ """ """
546
+
547
+ def append(self, draw_func):
548
+ """
549
+
550
+ :param draw_func:
551
+ """
552
+ ...
553
+
554
+ def as_pointer(self):
555
+ """ """
556
+ ...
557
+
558
+ def bl_rna_get_subclass(self):
559
+ """ """
560
+ ...
561
+
562
+ def bl_rna_get_subclass_py(self):
563
+ """ """
564
+ ...
565
+
566
+ def draw(self, context):
567
+ """
568
+
569
+ :param context:
570
+ """
571
+ ...
572
+
573
+ def draw_header(self, context):
574
+ """
575
+
576
+ :param context:
577
+ """
578
+ ...
579
+
580
+ def driver_add(self):
581
+ """ """
582
+ ...
583
+
584
+ def driver_remove(self):
585
+ """ """
586
+ ...
587
+
588
+ def get(self):
589
+ """ """
590
+ ...
591
+
592
+ def id_properties_clear(self):
593
+ """ """
594
+ ...
595
+
596
+ def id_properties_ensure(self):
597
+ """ """
598
+ ...
599
+
600
+ def id_properties_ui(self):
601
+ """ """
602
+ ...
603
+
604
+ def is_extended(self):
605
+ """ """
606
+ ...
607
+
608
+ def is_property_hidden(self):
609
+ """ """
610
+ ...
611
+
612
+ def is_property_overridable_library(self):
613
+ """ """
614
+ ...
615
+
616
+ def is_property_readonly(self):
617
+ """ """
618
+ ...
619
+
620
+ def is_property_set(self):
621
+ """ """
622
+ ...
623
+
624
+ def items(self):
625
+ """ """
626
+ ...
627
+
628
+ def keyframe_delete(self):
629
+ """ """
630
+ ...
631
+
632
+ def keyframe_insert(self):
633
+ """ """
634
+ ...
105
635
 
106
- def poll(self, context): ...
636
+ def keys(self):
637
+ """ """
638
+ ...
639
+
640
+ def path_from_id(self):
641
+ """ """
642
+ ...
643
+
644
+ def path_resolve(self):
645
+ """ """
646
+ ...
647
+
648
+ def poll(self, context):
649
+ """
650
+
651
+ :param context:
652
+ """
653
+ ...
654
+
655
+ def pop(self):
656
+ """ """
657
+ ...
658
+
659
+ def prepend(self, draw_func):
660
+ """
661
+
662
+ :param draw_func:
663
+ """
664
+ ...
665
+
666
+ def property_overridable_library_set(self):
667
+ """ """
668
+ ...
669
+
670
+ def property_unset(self):
671
+ """ """
672
+ ...
673
+
674
+ def remove(self, draw_func):
675
+ """
676
+
677
+ :param draw_func:
678
+ """
679
+ ...
680
+
681
+ def type_recast(self):
682
+ """ """
683
+ ...
684
+
685
+ def values(self):
686
+ """ """
687
+ ...
688
+
689
+ class MATERIAL_PT_gpencil_material_presets(bpy_types._GenericUI):
690
+ """ """
107
691
 
108
- class MATERIAL_PT_gpencil_material_presets(
109
- bl_ui.utils.PresetPanel, bpy_types.Panel, bpy_types._GenericUI
110
- ):
111
692
  bl_label: typing.Any
693
+ """ """
694
+
112
695
  bl_region_type: typing.Any
696
+ """ """
697
+
113
698
  bl_rna: typing.Any
699
+ """ """
700
+
114
701
  bl_space_type: typing.Any
702
+ """ """
703
+
115
704
  id_data: typing.Any
705
+ """ """
706
+
116
707
  preset_add_operator: typing.Any
708
+ """ """
709
+
117
710
  preset_operator: typing.Any
711
+ """ """
712
+
118
713
  preset_subdir: typing.Any
714
+ """ """
715
+
716
+ def append(self, draw_func):
717
+ """
718
+
719
+ :param draw_func:
720
+ """
721
+ ...
722
+
723
+ def as_pointer(self):
724
+ """ """
725
+ ...
726
+
727
+ def bl_rna_get_subclass(self):
728
+ """ """
729
+ ...
730
+
731
+ def bl_rna_get_subclass_py(self):
732
+ """ """
733
+ ...
734
+
735
+ def draw(self, context):
736
+ """
737
+
738
+ :param context:
739
+ """
740
+ ...
741
+
742
+ def draw_menu(self, layout, text):
743
+ """
744
+
745
+ :param layout:
746
+ :param text:
747
+ """
748
+ ...
749
+
750
+ def draw_panel_header(self, layout):
751
+ """
752
+
753
+ :param layout:
754
+ """
755
+ ...
756
+
757
+ def driver_add(self):
758
+ """ """
759
+ ...
760
+
761
+ def driver_remove(self):
762
+ """ """
763
+ ...
764
+
765
+ def get(self):
766
+ """ """
767
+ ...
768
+
769
+ def id_properties_clear(self):
770
+ """ """
771
+ ...
772
+
773
+ def id_properties_ensure(self):
774
+ """ """
775
+ ...
776
+
777
+ def id_properties_ui(self):
778
+ """ """
779
+ ...
780
+
781
+ def is_extended(self):
782
+ """ """
783
+ ...
784
+
785
+ def is_property_hidden(self):
786
+ """ """
787
+ ...
788
+
789
+ def is_property_overridable_library(self):
790
+ """ """
791
+ ...
792
+
793
+ def is_property_readonly(self):
794
+ """ """
795
+ ...
796
+
797
+ def is_property_set(self):
798
+ """ """
799
+ ...
800
+
801
+ def items(self):
802
+ """ """
803
+ ...
804
+
805
+ def keyframe_delete(self):
806
+ """ """
807
+ ...
808
+
809
+ def keyframe_insert(self):
810
+ """ """
811
+ ...
812
+
813
+ def keys(self):
814
+ """ """
815
+ ...
816
+
817
+ def path_from_id(self):
818
+ """ """
819
+ ...
119
820
 
120
- def append(self, draw_func): ...
121
- def as_pointer(self): ...
122
- def bl_rna_get_subclass(self): ...
123
- def bl_rna_get_subclass_py(self): ...
124
- def draw(self, context): ...
125
- def draw_menu(self, layout, text): ...
126
- def draw_panel_header(self, layout): ...
127
- def driver_add(self): ...
128
- def driver_remove(self): ...
129
- def get(self): ...
130
- def id_properties_clear(self): ...
131
- def id_properties_ensure(self): ...
132
- def id_properties_ui(self): ...
133
- def is_extended(self): ...
134
- def is_property_hidden(self): ...
135
- def is_property_overridable_library(self): ...
136
- def is_property_readonly(self): ...
137
- def is_property_set(self): ...
138
- def items(self): ...
139
- def keyframe_delete(self): ...
140
- def keyframe_insert(self): ...
141
- def keys(self): ...
142
- def path_from_id(self): ...
143
821
  def path_menu(
144
822
  self,
145
823
  searchpaths,
@@ -150,316 +828,863 @@ class MATERIAL_PT_gpencil_material_presets(
150
828
  filter_path,
151
829
  display_name,
152
830
  add_operator,
153
- ): ...
154
- def path_resolve(self): ...
155
- def pop(self): ...
156
- def prepend(self, draw_func): ...
157
- def property_overridable_library_set(self): ...
158
- def property_unset(self): ...
159
- def remove(self, draw_func): ...
160
- def type_recast(self): ...
161
- def values(self): ...
162
-
163
- class MATERIAL_PT_gpencil_slots(
164
- bl_ui.properties_grease_pencil_common.GreasePencilMaterialsPanel,
165
- bpy_types.Panel,
166
- bpy_types._GenericUI,
167
- ):
168
- bl_context: typing.Any
169
- bl_label: typing.Any
170
- bl_options: typing.Any
171
- bl_region_type: typing.Any
172
- bl_rna: typing.Any
173
- bl_space_type: typing.Any
174
- id_data: typing.Any
831
+ ):
832
+ """
833
+
834
+ :param searchpaths:
835
+ :param operator:
836
+ :param props_default:
837
+ :param prop_filepath:
838
+ :param filter_ext:
839
+ :param filter_path:
840
+ :param display_name:
841
+ :param add_operator:
842
+ """
843
+ ...
844
+
845
+ def path_resolve(self):
846
+ """ """
847
+ ...
848
+
849
+ def pop(self):
850
+ """ """
851
+ ...
852
+
853
+ def prepend(self, draw_func):
854
+ """
855
+
856
+ :param draw_func:
857
+ """
858
+ ...
859
+
860
+ def property_overridable_library_set(self):
861
+ """ """
862
+ ...
863
+
864
+ def property_unset(self):
865
+ """ """
866
+ ...
867
+
868
+ def remove(self, draw_func):
869
+ """
870
+
871
+ :param draw_func:
872
+ """
873
+ ...
874
+
875
+ def type_recast(self):
876
+ """ """
877
+ ...
878
+
879
+ def values(self):
880
+ """ """
881
+ ...
882
+
883
+ class MATERIAL_PT_gpencil_preview(bpy_types._GenericUI):
884
+ """ """
175
885
 
176
- def append(self, draw_func): ...
177
- def as_pointer(self): ...
178
- def bl_rna_get_subclass(self): ...
179
- def bl_rna_get_subclass_py(self): ...
180
- def draw(self, context): ...
181
- def driver_add(self): ...
182
- def driver_remove(self): ...
183
- def get(self): ...
184
- def id_properties_clear(self): ...
185
- def id_properties_ensure(self): ...
186
- def id_properties_ui(self): ...
187
- def is_extended(self): ...
188
- def is_property_hidden(self): ...
189
- def is_property_overridable_library(self): ...
190
- def is_property_readonly(self): ...
191
- def is_property_set(self): ...
192
- def items(self): ...
193
- def keyframe_delete(self): ...
194
- def keyframe_insert(self): ...
195
- def keys(self): ...
196
- def path_from_id(self): ...
197
- def path_resolve(self): ...
198
- def poll(self, context): ...
199
- def pop(self): ...
200
- def prepend(self, draw_func): ...
201
- def property_overridable_library_set(self): ...
202
- def property_unset(self): ...
203
- def remove(self, draw_func): ...
204
- def type_recast(self): ...
205
- def values(self): ...
206
-
207
- class MATERIAL_PT_gpencil_custom_props(
208
- GPMaterialButtonsPanel,
209
- rna_prop_ui.PropertyPanel,
210
- bpy_types.Panel,
211
- bpy_types._GenericUI,
212
- ):
213
886
  COMPAT_ENGINES: typing.Any
887
+ """ """
888
+
214
889
  bl_context: typing.Any
890
+ """ """
891
+
215
892
  bl_label: typing.Any
893
+ """ """
894
+
216
895
  bl_options: typing.Any
217
- bl_order: typing.Any
218
- bl_region_type: typing.Any
219
- bl_rna: typing.Any
220
- bl_space_type: typing.Any
221
- id_data: typing.Any
896
+ """ """
222
897
 
223
- def append(self, draw_func): ...
224
- def as_pointer(self): ...
225
- def bl_rna_get_subclass(self): ...
226
- def bl_rna_get_subclass_py(self): ...
227
- def draw(self, context): ...
228
- def driver_add(self): ...
229
- def driver_remove(self): ...
230
- def get(self): ...
231
- def id_properties_clear(self): ...
232
- def id_properties_ensure(self): ...
233
- def id_properties_ui(self): ...
234
- def is_extended(self): ...
235
- def is_property_hidden(self): ...
236
- def is_property_overridable_library(self): ...
237
- def is_property_readonly(self): ...
238
- def is_property_set(self): ...
239
- def items(self): ...
240
- def keyframe_delete(self): ...
241
- def keyframe_insert(self): ...
242
- def keys(self): ...
243
- def path_from_id(self): ...
244
- def path_resolve(self): ...
245
- def poll(self, context): ...
246
- def pop(self): ...
247
- def prepend(self, draw_func): ...
248
- def property_overridable_library_set(self): ...
249
- def property_unset(self): ...
250
- def remove(self, draw_func): ...
251
- def type_recast(self): ...
252
- def values(self): ...
253
-
254
- class MATERIAL_PT_gpencil_fillcolor(
255
- GPMaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
256
- ):
257
- bl_context: typing.Any
258
- bl_label: typing.Any
259
- bl_parent_id: typing.Any
260
898
  bl_region_type: typing.Any
899
+ """ """
900
+
261
901
  bl_rna: typing.Any
902
+ """ """
903
+
262
904
  bl_space_type: typing.Any
905
+ """ """
906
+
263
907
  id_data: typing.Any
908
+ """ """
909
+
910
+ def append(self, draw_func):
911
+ """
912
+
913
+ :param draw_func:
914
+ """
915
+ ...
916
+
917
+ def as_pointer(self):
918
+ """ """
919
+ ...
920
+
921
+ def bl_rna_get_subclass(self):
922
+ """ """
923
+ ...
924
+
925
+ def bl_rna_get_subclass_py(self):
926
+ """ """
927
+ ...
928
+
929
+ def draw(self, context):
930
+ """
931
+
932
+ :param context:
933
+ """
934
+ ...
935
+
936
+ def driver_add(self):
937
+ """ """
938
+ ...
939
+
940
+ def driver_remove(self):
941
+ """ """
942
+ ...
943
+
944
+ def get(self):
945
+ """ """
946
+ ...
947
+
948
+ def id_properties_clear(self):
949
+ """ """
950
+ ...
951
+
952
+ def id_properties_ensure(self):
953
+ """ """
954
+ ...
955
+
956
+ def id_properties_ui(self):
957
+ """ """
958
+ ...
959
+
960
+ def is_extended(self):
961
+ """ """
962
+ ...
963
+
964
+ def is_property_hidden(self):
965
+ """ """
966
+ ...
967
+
968
+ def is_property_overridable_library(self):
969
+ """ """
970
+ ...
971
+
972
+ def is_property_readonly(self):
973
+ """ """
974
+ ...
975
+
976
+ def is_property_set(self):
977
+ """ """
978
+ ...
979
+
980
+ def items(self):
981
+ """ """
982
+ ...
983
+
984
+ def keyframe_delete(self):
985
+ """ """
986
+ ...
987
+
988
+ def keyframe_insert(self):
989
+ """ """
990
+ ...
991
+
992
+ def keys(self):
993
+ """ """
994
+ ...
995
+
996
+ def path_from_id(self):
997
+ """ """
998
+ ...
999
+
1000
+ def path_resolve(self):
1001
+ """ """
1002
+ ...
1003
+
1004
+ def poll(self, context):
1005
+ """
1006
+
1007
+ :param context:
1008
+ """
1009
+ ...
1010
+
1011
+ def pop(self):
1012
+ """ """
1013
+ ...
1014
+
1015
+ def prepend(self, draw_func):
1016
+ """
1017
+
1018
+ :param draw_func:
1019
+ """
1020
+ ...
1021
+
1022
+ def property_overridable_library_set(self):
1023
+ """ """
1024
+ ...
1025
+
1026
+ def property_unset(self):
1027
+ """ """
1028
+ ...
1029
+
1030
+ def remove(self, draw_func):
1031
+ """
1032
+
1033
+ :param draw_func:
1034
+ """
1035
+ ...
1036
+
1037
+ def type_recast(self):
1038
+ """ """
1039
+ ...
1040
+
1041
+ def values(self):
1042
+ """ """
1043
+ ...
1044
+
1045
+ class MATERIAL_PT_gpencil_settings(bpy_types._GenericUI):
1046
+ """ """
264
1047
 
265
- def append(self, draw_func): ...
266
- def as_pointer(self): ...
267
- def bl_rna_get_subclass(self): ...
268
- def bl_rna_get_subclass_py(self): ...
269
- def draw(self, context): ...
270
- def draw_header(self, context): ...
271
- def driver_add(self): ...
272
- def driver_remove(self): ...
273
- def get(self): ...
274
- def id_properties_clear(self): ...
275
- def id_properties_ensure(self): ...
276
- def id_properties_ui(self): ...
277
- def is_extended(self): ...
278
- def is_property_hidden(self): ...
279
- def is_property_overridable_library(self): ...
280
- def is_property_readonly(self): ...
281
- def is_property_set(self): ...
282
- def items(self): ...
283
- def keyframe_delete(self): ...
284
- def keyframe_insert(self): ...
285
- def keys(self): ...
286
- def path_from_id(self): ...
287
- def path_resolve(self): ...
288
- def poll(self, context): ...
289
- def pop(self): ...
290
- def prepend(self, draw_func): ...
291
- def property_overridable_library_set(self): ...
292
- def property_unset(self): ...
293
- def remove(self, draw_func): ...
294
- def type_recast(self): ...
295
- def values(self): ...
296
-
297
- class MATERIAL_PT_gpencil_preview(
298
- GPMaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
299
- ):
300
- COMPAT_ENGINES: typing.Any
301
1048
  bl_context: typing.Any
1049
+ """ """
1050
+
302
1051
  bl_label: typing.Any
1052
+ """ """
1053
+
303
1054
  bl_options: typing.Any
1055
+ """ """
1056
+
304
1057
  bl_region_type: typing.Any
1058
+ """ """
1059
+
305
1060
  bl_rna: typing.Any
1061
+ """ """
1062
+
306
1063
  bl_space_type: typing.Any
1064
+ """ """
1065
+
307
1066
  id_data: typing.Any
1067
+ """ """
1068
+
1069
+ def append(self, draw_func):
1070
+ """
1071
+
1072
+ :param draw_func:
1073
+ """
1074
+ ...
1075
+
1076
+ def as_pointer(self):
1077
+ """ """
1078
+ ...
1079
+
1080
+ def bl_rna_get_subclass(self):
1081
+ """ """
1082
+ ...
1083
+
1084
+ def bl_rna_get_subclass_py(self):
1085
+ """ """
1086
+ ...
1087
+
1088
+ def draw(self, context):
1089
+ """
1090
+
1091
+ :param context:
1092
+ """
1093
+ ...
1094
+
1095
+ def driver_add(self):
1096
+ """ """
1097
+ ...
1098
+
1099
+ def driver_remove(self):
1100
+ """ """
1101
+ ...
1102
+
1103
+ def get(self):
1104
+ """ """
1105
+ ...
1106
+
1107
+ def id_properties_clear(self):
1108
+ """ """
1109
+ ...
1110
+
1111
+ def id_properties_ensure(self):
1112
+ """ """
1113
+ ...
1114
+
1115
+ def id_properties_ui(self):
1116
+ """ """
1117
+ ...
1118
+
1119
+ def is_extended(self):
1120
+ """ """
1121
+ ...
1122
+
1123
+ def is_property_hidden(self):
1124
+ """ """
1125
+ ...
1126
+
1127
+ def is_property_overridable_library(self):
1128
+ """ """
1129
+ ...
1130
+
1131
+ def is_property_readonly(self):
1132
+ """ """
1133
+ ...
1134
+
1135
+ def is_property_set(self):
1136
+ """ """
1137
+ ...
1138
+
1139
+ def items(self):
1140
+ """ """
1141
+ ...
1142
+
1143
+ def keyframe_delete(self):
1144
+ """ """
1145
+ ...
1146
+
1147
+ def keyframe_insert(self):
1148
+ """ """
1149
+ ...
1150
+
1151
+ def keys(self):
1152
+ """ """
1153
+ ...
1154
+
1155
+ def path_from_id(self):
1156
+ """ """
1157
+ ...
1158
+
1159
+ def path_resolve(self):
1160
+ """ """
1161
+ ...
1162
+
1163
+ def poll(self, context):
1164
+ """
1165
+
1166
+ :param context:
1167
+ """
1168
+ ...
1169
+
1170
+ def pop(self):
1171
+ """ """
1172
+ ...
1173
+
1174
+ def prepend(self, draw_func):
1175
+ """
1176
+
1177
+ :param draw_func:
1178
+ """
1179
+ ...
1180
+
1181
+ def property_overridable_library_set(self):
1182
+ """ """
1183
+ ...
1184
+
1185
+ def property_unset(self):
1186
+ """ """
1187
+ ...
1188
+
1189
+ def remove(self, draw_func):
1190
+ """
1191
+
1192
+ :param draw_func:
1193
+ """
1194
+ ...
1195
+
1196
+ def type_recast(self):
1197
+ """ """
1198
+ ...
1199
+
1200
+ def values(self):
1201
+ """ """
1202
+ ...
1203
+
1204
+ class MATERIAL_PT_gpencil_slots(bpy_types._GenericUI):
1205
+ """ """
308
1206
 
309
- def append(self, draw_func): ...
310
- def as_pointer(self): ...
311
- def bl_rna_get_subclass(self): ...
312
- def bl_rna_get_subclass_py(self): ...
313
- def draw(self, context): ...
314
- def driver_add(self): ...
315
- def driver_remove(self): ...
316
- def get(self): ...
317
- def id_properties_clear(self): ...
318
- def id_properties_ensure(self): ...
319
- def id_properties_ui(self): ...
320
- def is_extended(self): ...
321
- def is_property_hidden(self): ...
322
- def is_property_overridable_library(self): ...
323
- def is_property_readonly(self): ...
324
- def is_property_set(self): ...
325
- def items(self): ...
326
- def keyframe_delete(self): ...
327
- def keyframe_insert(self): ...
328
- def keys(self): ...
329
- def path_from_id(self): ...
330
- def path_resolve(self): ...
331
- def poll(self, context): ...
332
- def pop(self): ...
333
- def prepend(self, draw_func): ...
334
- def property_overridable_library_set(self): ...
335
- def property_unset(self): ...
336
- def remove(self, draw_func): ...
337
- def type_recast(self): ...
338
- def values(self): ...
339
-
340
- class MATERIAL_PT_gpencil_settings(
341
- GPMaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
342
- ):
343
1207
  bl_context: typing.Any
1208
+ """ """
1209
+
344
1210
  bl_label: typing.Any
1211
+ """ """
1212
+
345
1213
  bl_options: typing.Any
1214
+ """ """
1215
+
346
1216
  bl_region_type: typing.Any
1217
+ """ """
1218
+
347
1219
  bl_rna: typing.Any
1220
+ """ """
1221
+
348
1222
  bl_space_type: typing.Any
1223
+ """ """
1224
+
349
1225
  id_data: typing.Any
1226
+ """ """
1227
+
1228
+ def append(self, draw_func):
1229
+ """
1230
+
1231
+ :param draw_func:
1232
+ """
1233
+ ...
1234
+
1235
+ def as_pointer(self):
1236
+ """ """
1237
+ ...
1238
+
1239
+ def bl_rna_get_subclass(self):
1240
+ """ """
1241
+ ...
1242
+
1243
+ def bl_rna_get_subclass_py(self):
1244
+ """ """
1245
+ ...
1246
+
1247
+ def draw(self, context):
1248
+ """
1249
+
1250
+ :param context:
1251
+ """
1252
+ ...
1253
+
1254
+ def driver_add(self):
1255
+ """ """
1256
+ ...
1257
+
1258
+ def driver_remove(self):
1259
+ """ """
1260
+ ...
1261
+
1262
+ def get(self):
1263
+ """ """
1264
+ ...
1265
+
1266
+ def id_properties_clear(self):
1267
+ """ """
1268
+ ...
1269
+
1270
+ def id_properties_ensure(self):
1271
+ """ """
1272
+ ...
1273
+
1274
+ def id_properties_ui(self):
1275
+ """ """
1276
+ ...
1277
+
1278
+ def is_extended(self):
1279
+ """ """
1280
+ ...
1281
+
1282
+ def is_property_hidden(self):
1283
+ """ """
1284
+ ...
1285
+
1286
+ def is_property_overridable_library(self):
1287
+ """ """
1288
+ ...
1289
+
1290
+ def is_property_readonly(self):
1291
+ """ """
1292
+ ...
1293
+
1294
+ def is_property_set(self):
1295
+ """ """
1296
+ ...
1297
+
1298
+ def items(self):
1299
+ """ """
1300
+ ...
1301
+
1302
+ def keyframe_delete(self):
1303
+ """ """
1304
+ ...
1305
+
1306
+ def keyframe_insert(self):
1307
+ """ """
1308
+ ...
1309
+
1310
+ def keys(self):
1311
+ """ """
1312
+ ...
1313
+
1314
+ def path_from_id(self):
1315
+ """ """
1316
+ ...
1317
+
1318
+ def path_resolve(self):
1319
+ """ """
1320
+ ...
1321
+
1322
+ def poll(self, context):
1323
+ """
1324
+
1325
+ :param context:
1326
+ """
1327
+ ...
1328
+
1329
+ def pop(self):
1330
+ """ """
1331
+ ...
1332
+
1333
+ def prepend(self, draw_func):
1334
+ """
1335
+
1336
+ :param draw_func:
1337
+ """
1338
+ ...
1339
+
1340
+ def property_overridable_library_set(self):
1341
+ """ """
1342
+ ...
1343
+
1344
+ def property_unset(self):
1345
+ """ """
1346
+ ...
1347
+
1348
+ def remove(self, draw_func):
1349
+ """
1350
+
1351
+ :param draw_func:
1352
+ """
1353
+ ...
1354
+
1355
+ def type_recast(self):
1356
+ """ """
1357
+ ...
1358
+
1359
+ def values(self):
1360
+ """ """
1361
+ ...
1362
+
1363
+ class MATERIAL_PT_gpencil_strokecolor(bpy_types._GenericUI):
1364
+ """ """
350
1365
 
351
- def append(self, draw_func): ...
352
- def as_pointer(self): ...
353
- def bl_rna_get_subclass(self): ...
354
- def bl_rna_get_subclass_py(self): ...
355
- def draw(self, context): ...
356
- def driver_add(self): ...
357
- def driver_remove(self): ...
358
- def get(self): ...
359
- def id_properties_clear(self): ...
360
- def id_properties_ensure(self): ...
361
- def id_properties_ui(self): ...
362
- def is_extended(self): ...
363
- def is_property_hidden(self): ...
364
- def is_property_overridable_library(self): ...
365
- def is_property_readonly(self): ...
366
- def is_property_set(self): ...
367
- def items(self): ...
368
- def keyframe_delete(self): ...
369
- def keyframe_insert(self): ...
370
- def keys(self): ...
371
- def path_from_id(self): ...
372
- def path_resolve(self): ...
373
- def poll(self, context): ...
374
- def pop(self): ...
375
- def prepend(self, draw_func): ...
376
- def property_overridable_library_set(self): ...
377
- def property_unset(self): ...
378
- def remove(self, draw_func): ...
379
- def type_recast(self): ...
380
- def values(self): ...
381
-
382
- class MATERIAL_PT_gpencil_strokecolor(
383
- GPMaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
384
- ):
385
1366
  bl_context: typing.Any
1367
+ """ """
1368
+
386
1369
  bl_label: typing.Any
1370
+ """ """
1371
+
387
1372
  bl_parent_id: typing.Any
1373
+ """ """
1374
+
388
1375
  bl_region_type: typing.Any
1376
+ """ """
1377
+
389
1378
  bl_rna: typing.Any
1379
+ """ """
1380
+
390
1381
  bl_space_type: typing.Any
1382
+ """ """
1383
+
391
1384
  id_data: typing.Any
1385
+ """ """
1386
+
1387
+ def append(self, draw_func):
1388
+ """
1389
+
1390
+ :param draw_func:
1391
+ """
1392
+ ...
1393
+
1394
+ def as_pointer(self):
1395
+ """ """
1396
+ ...
1397
+
1398
+ def bl_rna_get_subclass(self):
1399
+ """ """
1400
+ ...
1401
+
1402
+ def bl_rna_get_subclass_py(self):
1403
+ """ """
1404
+ ...
1405
+
1406
+ def draw(self, context):
1407
+ """
1408
+
1409
+ :param context:
1410
+ """
1411
+ ...
1412
+
1413
+ def draw_header(self, context):
1414
+ """
1415
+
1416
+ :param context:
1417
+ """
1418
+ ...
1419
+
1420
+ def driver_add(self):
1421
+ """ """
1422
+ ...
1423
+
1424
+ def driver_remove(self):
1425
+ """ """
1426
+ ...
1427
+
1428
+ def get(self):
1429
+ """ """
1430
+ ...
1431
+
1432
+ def id_properties_clear(self):
1433
+ """ """
1434
+ ...
1435
+
1436
+ def id_properties_ensure(self):
1437
+ """ """
1438
+ ...
1439
+
1440
+ def id_properties_ui(self):
1441
+ """ """
1442
+ ...
1443
+
1444
+ def is_extended(self):
1445
+ """ """
1446
+ ...
1447
+
1448
+ def is_property_hidden(self):
1449
+ """ """
1450
+ ...
1451
+
1452
+ def is_property_overridable_library(self):
1453
+ """ """
1454
+ ...
1455
+
1456
+ def is_property_readonly(self):
1457
+ """ """
1458
+ ...
1459
+
1460
+ def is_property_set(self):
1461
+ """ """
1462
+ ...
1463
+
1464
+ def items(self):
1465
+ """ """
1466
+ ...
1467
+
1468
+ def keyframe_delete(self):
1469
+ """ """
1470
+ ...
1471
+
1472
+ def keyframe_insert(self):
1473
+ """ """
1474
+ ...
1475
+
1476
+ def keys(self):
1477
+ """ """
1478
+ ...
1479
+
1480
+ def path_from_id(self):
1481
+ """ """
1482
+ ...
1483
+
1484
+ def path_resolve(self):
1485
+ """ """
1486
+ ...
1487
+
1488
+ def poll(self, context):
1489
+ """
1490
+
1491
+ :param context:
1492
+ """
1493
+ ...
1494
+
1495
+ def pop(self):
1496
+ """ """
1497
+ ...
1498
+
1499
+ def prepend(self, draw_func):
1500
+ """
1501
+
1502
+ :param draw_func:
1503
+ """
1504
+ ...
1505
+
1506
+ def property_overridable_library_set(self):
1507
+ """ """
1508
+ ...
1509
+
1510
+ def property_unset(self):
1511
+ """ """
1512
+ ...
1513
+
1514
+ def remove(self, draw_func):
1515
+ """
1516
+
1517
+ :param draw_func:
1518
+ """
1519
+ ...
1520
+
1521
+ def type_recast(self):
1522
+ """ """
1523
+ ...
1524
+
1525
+ def values(self):
1526
+ """ """
1527
+ ...
1528
+
1529
+ class MATERIAL_PT_gpencil_surface(bpy_types._GenericUI):
1530
+ """ """
392
1531
 
393
- def append(self, draw_func): ...
394
- def as_pointer(self): ...
395
- def bl_rna_get_subclass(self): ...
396
- def bl_rna_get_subclass_py(self): ...
397
- def draw(self, context): ...
398
- def draw_header(self, context): ...
399
- def driver_add(self): ...
400
- def driver_remove(self): ...
401
- def get(self): ...
402
- def id_properties_clear(self): ...
403
- def id_properties_ensure(self): ...
404
- def id_properties_ui(self): ...
405
- def is_extended(self): ...
406
- def is_property_hidden(self): ...
407
- def is_property_overridable_library(self): ...
408
- def is_property_readonly(self): ...
409
- def is_property_set(self): ...
410
- def items(self): ...
411
- def keyframe_delete(self): ...
412
- def keyframe_insert(self): ...
413
- def keys(self): ...
414
- def path_from_id(self): ...
415
- def path_resolve(self): ...
416
- def poll(self, context): ...
417
- def pop(self): ...
418
- def prepend(self, draw_func): ...
419
- def property_overridable_library_set(self): ...
420
- def property_unset(self): ...
421
- def remove(self, draw_func): ...
422
- def type_recast(self): ...
423
- def values(self): ...
424
-
425
- class MATERIAL_PT_gpencil_surface(
426
- GPMaterialButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
427
- ):
428
1532
  bl_context: typing.Any
1533
+ """ """
1534
+
429
1535
  bl_label: typing.Any
1536
+ """ """
1537
+
430
1538
  bl_region_type: typing.Any
1539
+ """ """
1540
+
431
1541
  bl_rna: typing.Any
1542
+ """ """
1543
+
432
1544
  bl_space_type: typing.Any
1545
+ """ """
1546
+
433
1547
  id_data: typing.Any
1548
+ """ """
1549
+
1550
+ def append(self, draw_func):
1551
+ """
1552
+
1553
+ :param draw_func:
1554
+ """
1555
+ ...
1556
+
1557
+ def as_pointer(self):
1558
+ """ """
1559
+ ...
1560
+
1561
+ def bl_rna_get_subclass(self):
1562
+ """ """
1563
+ ...
1564
+
1565
+ def bl_rna_get_subclass_py(self):
1566
+ """ """
1567
+ ...
1568
+
1569
+ def draw(self, _context):
1570
+ """
1571
+
1572
+ :param _context:
1573
+ """
1574
+ ...
1575
+
1576
+ def draw_header_preset(self, _context):
1577
+ """
1578
+
1579
+ :param _context:
1580
+ """
1581
+ ...
1582
+
1583
+ def driver_add(self):
1584
+ """ """
1585
+ ...
1586
+
1587
+ def driver_remove(self):
1588
+ """ """
1589
+ ...
1590
+
1591
+ def get(self):
1592
+ """ """
1593
+ ...
1594
+
1595
+ def id_properties_clear(self):
1596
+ """ """
1597
+ ...
1598
+
1599
+ def id_properties_ensure(self):
1600
+ """ """
1601
+ ...
1602
+
1603
+ def id_properties_ui(self):
1604
+ """ """
1605
+ ...
1606
+
1607
+ def is_extended(self):
1608
+ """ """
1609
+ ...
1610
+
1611
+ def is_property_hidden(self):
1612
+ """ """
1613
+ ...
1614
+
1615
+ def is_property_overridable_library(self):
1616
+ """ """
1617
+ ...
1618
+
1619
+ def is_property_readonly(self):
1620
+ """ """
1621
+ ...
1622
+
1623
+ def is_property_set(self):
1624
+ """ """
1625
+ ...
1626
+
1627
+ def items(self):
1628
+ """ """
1629
+ ...
1630
+
1631
+ def keyframe_delete(self):
1632
+ """ """
1633
+ ...
1634
+
1635
+ def keyframe_insert(self):
1636
+ """ """
1637
+ ...
1638
+
1639
+ def keys(self):
1640
+ """ """
1641
+ ...
1642
+
1643
+ def path_from_id(self):
1644
+ """ """
1645
+ ...
1646
+
1647
+ def path_resolve(self):
1648
+ """ """
1649
+ ...
1650
+
1651
+ def poll(self, context):
1652
+ """
1653
+
1654
+ :param context:
1655
+ """
1656
+ ...
1657
+
1658
+ def pop(self):
1659
+ """ """
1660
+ ...
1661
+
1662
+ def prepend(self, draw_func):
1663
+ """
1664
+
1665
+ :param draw_func:
1666
+ """
1667
+ ...
1668
+
1669
+ def property_overridable_library_set(self):
1670
+ """ """
1671
+ ...
1672
+
1673
+ def property_unset(self):
1674
+ """ """
1675
+ ...
1676
+
1677
+ def remove(self, draw_func):
1678
+ """
1679
+
1680
+ :param draw_func:
1681
+ """
1682
+ ...
1683
+
1684
+ def type_recast(self):
1685
+ """ """
1686
+ ...
434
1687
 
435
- def append(self, draw_func): ...
436
- def as_pointer(self): ...
437
- def bl_rna_get_subclass(self): ...
438
- def bl_rna_get_subclass_py(self): ...
439
- def draw(self, _context): ...
440
- def draw_header_preset(self, _context): ...
441
- def driver_add(self): ...
442
- def driver_remove(self): ...
443
- def get(self): ...
444
- def id_properties_clear(self): ...
445
- def id_properties_ensure(self): ...
446
- def id_properties_ui(self): ...
447
- def is_extended(self): ...
448
- def is_property_hidden(self): ...
449
- def is_property_overridable_library(self): ...
450
- def is_property_readonly(self): ...
451
- def is_property_set(self): ...
452
- def items(self): ...
453
- def keyframe_delete(self): ...
454
- def keyframe_insert(self): ...
455
- def keys(self): ...
456
- def path_from_id(self): ...
457
- def path_resolve(self): ...
458
- def poll(self, context): ...
459
- def pop(self): ...
460
- def prepend(self, draw_func): ...
461
- def property_overridable_library_set(self): ...
462
- def property_unset(self): ...
463
- def remove(self, draw_func): ...
464
- def type_recast(self): ...
465
- def values(self): ...
1688
+ def values(self):
1689
+ """ """
1690
+ ...