fake-bpy-module 20240210__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 (309) hide show
  1. addon_utils/__init__.pyi +54 -11
  2. animsys_refactor/__init__.pyi +36 -7
  3. aud/__init__.pyi +307 -321
  4. bgl/__init__.pyi +2926 -865
  5. bl_app_override/__init__.pyi +14 -4
  6. bl_app_override/helpers/__init__.pyi +24 -3
  7. bl_app_template_utils/__init__.pyi +19 -5
  8. bl_console_utils/__init__.pyi +0 -1
  9. bl_console_utils/autocomplete/__init__.pyi +2 -3
  10. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +24 -6
  11. bl_console_utils/autocomplete/complete_import/__init__.pyi +14 -4
  12. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +24 -6
  13. bl_console_utils/autocomplete/intellisense/__init__.pyi +9 -3
  14. bl_i18n_utils/__init__.pyi +2 -3
  15. bl_i18n_utils/bl_extract_messages/__init__.pyi +74 -16
  16. bl_i18n_utils/merge_po/__init__.pyi +4 -2
  17. bl_i18n_utils/settings/__init__.pyi +53 -7
  18. bl_i18n_utils/utils/__init__.pyi +332 -45
  19. bl_i18n_utils/utils_cli/__init__.pyi +29 -7
  20. bl_i18n_utils/utils_languages_menu/__init__.pyi +4 -2
  21. bl_i18n_utils/utils_rtl/__init__.pyi +9 -3
  22. bl_keymap_utils/__init__.pyi +2 -3
  23. bl_keymap_utils/io/__init__.pyi +44 -10
  24. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +4 -2
  25. bl_keymap_utils/keymap_hierarchy/__init__.pyi +4 -2
  26. bl_keymap_utils/platform_helpers/__init__.pyi +9 -3
  27. bl_keymap_utils/versioning/__init__.pyi +4 -2
  28. bl_math/__init__.pyi +21 -22
  29. bl_operators/__init__.pyi +30 -24
  30. bl_operators/add_mesh_torus/__init__.pyi +171 -38
  31. bl_operators/anim/__init__.pyi +1065 -227
  32. bl_operators/assets/__init__.pyi +427 -93
  33. bl_operators/bmesh/__init__.pyi +0 -1
  34. bl_operators/bmesh/find_adjacent/__init__.pyi +44 -10
  35. bl_operators/clip/__init__.pyi +1342 -288
  36. bl_operators/console/__init__.pyi +647 -141
  37. bl_operators/constraint/__init__.pyi +524 -113
  38. bl_operators/file/__init__.pyi +396 -85
  39. bl_operators/freestyle/__init__.pyi +532 -114
  40. bl_operators/geometry_nodes/__init__.pyi +2412 -597
  41. bl_operators/image/__init__.pyi +380 -83
  42. bl_operators/mesh/__init__.pyi +401 -86
  43. bl_operators/node/__init__.pyi +1756 -385
  44. bl_operators/object/__init__.pyi +2022 -553
  45. bl_operators/object_align/__init__.pyi +145 -32
  46. bl_operators/object_quick_effects/__init__.pyi +555 -125
  47. bl_operators/object_randomize_transform/__init__.pyi +136 -33
  48. bl_operators/presets/__init__.pyi +3516 -709
  49. bl_operators/rigidbody/__init__.pyi +401 -86
  50. bl_operators/screen_play_rendered_anim/__init__.pyi +129 -30
  51. bl_operators/sequencer/__init__.pyi +731 -150
  52. bl_operators/spreadsheet/__init__.pyi +145 -31
  53. bl_operators/userpref/__init__.pyi +3416 -825
  54. bl_operators/uvcalc_follow_active/__init__.pyi +149 -33
  55. bl_operators/uvcalc_lightmap/__init__.pyi +187 -35
  56. bl_operators/uvcalc_transform/__init__.pyi +344 -74
  57. bl_operators/vertexpaint_dirt/__init__.pyi +140 -31
  58. bl_operators/view3d/__init__.pyi +697 -147
  59. bl_operators/wm/__init__.pyi +6287 -1534
  60. bl_previews_utils/__init__.pyi +0 -1
  61. bl_previews_utils/bl_previews_render/__init__.pyi +34 -8
  62. bl_rna_utils/__init__.pyi +0 -1
  63. bl_rna_utils/data_path/__init__.pyi +12 -3
  64. bl_text_utils/__init__.pyi +0 -1
  65. bl_text_utils/external_editor/__init__.pyi +4 -2
  66. bl_ui/__init__.pyi +567 -170
  67. bl_ui/anim/__init__.pyi +164 -34
  68. bl_ui/asset_shelf/__init__.pyi +146 -32
  69. bl_ui/generic_ui_list/__init__.pyi +471 -100
  70. bl_ui/node_add_menu/__init__.pyi +196 -41
  71. bl_ui/node_add_menu_compositor/__init__.pyi +3017 -622
  72. bl_ui/node_add_menu_geometry/__init__.pyi +8075 -1592
  73. bl_ui/node_add_menu_shader/__init__.pyi +1709 -349
  74. bl_ui/node_add_menu_texture/__init__.pyi +1502 -306
  75. bl_ui/properties_animviz/__init__.pyi +32 -3
  76. bl_ui/properties_collection/__init__.pyi +787 -180
  77. bl_ui/properties_constraint/__init__.pyi +28635 -5524
  78. bl_ui/properties_data_armature/__init__.pyi +1905 -449
  79. bl_ui/properties_data_bone/__init__.pyi +1560 -337
  80. bl_ui/properties_data_camera/__init__.pyi +2269 -495
  81. bl_ui/properties_data_curve/__init__.pyi +2362 -535
  82. bl_ui/properties_data_curves/__init__.pyi +951 -204
  83. bl_ui/properties_data_empty/__init__.pyi +317 -70
  84. bl_ui/properties_data_gpencil/__init__.pyi +2924 -735
  85. bl_ui/properties_data_grease_pencil/__init__.pyi +1631 -189
  86. bl_ui/properties_data_lattice/__init__.pyi +472 -105
  87. bl_ui/properties_data_light/__init__.pyi +1570 -338
  88. bl_ui/properties_data_lightprobe/__init__.pyi +938 -209
  89. bl_ui/properties_data_mesh/__init__.pyi +3205 -768
  90. bl_ui/properties_data_metaball/__init__.pyi +774 -171
  91. bl_ui/properties_data_modifier/__init__.pyi +1554 -329
  92. bl_ui/properties_data_pointcloud/__init__.pyi +821 -195
  93. bl_ui/properties_data_shaderfx/__init__.pyi +154 -35
  94. bl_ui/properties_data_speaker/__init__.pyi +782 -169
  95. bl_ui/properties_data_volume/__init__.pyi +1243 -282
  96. bl_ui/properties_freestyle/__init__.pyi +4071 -1031
  97. bl_ui/properties_grease_pencil_common/__init__.pyi +2399 -484
  98. bl_ui/properties_mask_common/__init__.pyi +1256 -250
  99. bl_ui/properties_material/__init__.pyi +2351 -543
  100. bl_ui/properties_material_gpencil/__init__.pyi +1590 -366
  101. bl_ui/properties_object/__init__.pyi +2179 -513
  102. bl_ui/properties_output/__init__.pyi +2956 -706
  103. bl_ui/properties_paint_common/__init__.pyi +947 -141
  104. bl_ui/properties_particle/__init__.pyi +8322 -1971
  105. bl_ui/properties_physics_cloth/__init__.pyi +2254 -509
  106. bl_ui/properties_physics_common/__init__.pyi +200 -45
  107. bl_ui/properties_physics_dynamicpaint/__init__.pyi +4454 -966
  108. bl_ui/properties_physics_field/__init__.pyi +1695 -365
  109. bl_ui/properties_physics_fluid/__init__.pyi +6127 -1281
  110. bl_ui/properties_physics_geometry_nodes/__init__.pyi +157 -33
  111. bl_ui/properties_physics_rigidbody/__init__.pyi +1254 -279
  112. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +2053 -484
  113. bl_ui/properties_physics_softbody/__init__.pyi +2394 -543
  114. bl_ui/properties_render/__init__.pyi +8312 -1934
  115. bl_ui/properties_scene/__init__.pyi +2211 -540
  116. bl_ui/properties_texture/__init__.pyi +4185 -1014
  117. bl_ui/properties_view_layer/__init__.pyi +2803 -665
  118. bl_ui/properties_workspace/__init__.pyi +626 -149
  119. bl_ui/properties_world/__init__.pyi +1092 -235
  120. bl_ui/space_clip/__init__.pyi +11475 -2806
  121. bl_ui/space_console/__init__.pyi +967 -203
  122. bl_ui/space_dopesheet/__init__.pyi +4260 -967
  123. bl_ui/space_filebrowser/__init__.pyi +4852 -1188
  124. bl_ui/space_graph/__init__.pyi +3251 -703
  125. bl_ui/space_image/__init__.pyi +12218 -2968
  126. bl_ui/space_info/__init__.pyi +964 -201
  127. bl_ui/space_nla/__init__.pyi +2756 -585
  128. bl_ui/space_node/__init__.pyi +5661 -1266
  129. bl_ui/space_outliner/__init__.pyi +2294 -479
  130. bl_ui/space_properties/__init__.pyi +417 -93
  131. bl_ui/space_sequencer/__init__.pyi +12436 -3010
  132. bl_ui/space_spreadsheet/__init__.pyi +184 -37
  133. bl_ui/space_statusbar/__init__.pyi +135 -31
  134. bl_ui/space_text/__init__.pyi +2556 -543
  135. bl_ui/space_time/__init__.pyi +1151 -244
  136. bl_ui/space_toolsystem_common/__init__.pyi +368 -67
  137. bl_ui/space_toolsystem_toolbar/__init__.pyi +1378 -229
  138. bl_ui/space_topbar/__init__.pyi +4214 -888
  139. bl_ui/space_userpref/__init__.pyi +13920 -3468
  140. bl_ui/space_view3d/__init__.pyi +42751 -9613
  141. bl_ui/space_view3d_toolbar/__init__.pyi +16379 -3860
  142. bl_ui/utils/__init__.pyi +42 -5
  143. bl_ui_utils/__init__.pyi +0 -1
  144. bl_ui_utils/bug_report_url/__init__.pyi +4 -2
  145. bl_ui_utils/layout/__init__.pyi +4 -2
  146. blend_render_info/__init__.pyi +13 -4
  147. blf/__init__.pyi +15 -18
  148. bmesh/__init__.pyi +18 -18
  149. bmesh/geometry/__init__.pyi +5 -6
  150. bmesh/ops/__init__.pyi +1337 -1158
  151. bmesh/types/__init__.pyi +464 -374
  152. bmesh/utils/__init__.pyi +64 -70
  153. bpy/__init__.pyi +6 -7
  154. bpy/app/__init__.pyi +36 -38
  155. bpy/app/handlers/__init__.pyi +37 -38
  156. bpy/app/icons/__init__.pyi +8 -11
  157. bpy/app/timers/__init__.pyi +18 -17
  158. bpy/app/translations/__init__.pyi +32 -30
  159. bpy/msgbus/__init__.pyi +25 -20
  160. bpy/ops/__init__.pyi +63 -64
  161. bpy/ops/action/__init__.pyi +408 -436
  162. bpy/ops/anim/__init__.pyi +459 -577
  163. bpy/ops/armature/__init__.pyi +396 -498
  164. bpy/ops/asset/__init__.pyi +187 -213
  165. bpy/ops/boid/__init__.pyi +50 -68
  166. bpy/ops/brush/__init__.pyi +72 -97
  167. bpy/ops/buttons/__init__.pyi +202 -193
  168. bpy/ops/cachefile/__init__.pyi +198 -188
  169. bpy/ops/camera/__init__.pyi +24 -31
  170. bpy/ops/clip/__init__.pyi +1021 -1082
  171. bpy/ops/cloth/__init__.pyi +11 -15
  172. bpy/ops/collection/__init__.pyi +36 -51
  173. bpy/ops/console/__init__.pyi +155 -209
  174. bpy/ops/constraint/__init__.pyi +286 -254
  175. bpy/ops/curve/__init__.pyi +597 -659
  176. bpy/ops/curves/__init__.pyi +191 -225
  177. bpy/ops/cycles/__init__.pyi +21 -30
  178. bpy/ops/dpaint/__init__.pyi +34 -47
  179. bpy/ops/ed/__init__.pyi +160 -176
  180. bpy/ops/export_anim/__init__.pyi +51 -34
  181. bpy/ops/export_mesh/__init__.pyi +47 -45
  182. bpy/ops/export_scene/__init__.pyi +659 -504
  183. bpy/ops/file/__init__.pyi +469 -474
  184. bpy/ops/fluid/__init__.pyi +89 -119
  185. bpy/ops/font/__init__.pyi +325 -361
  186. bpy/ops/geometry/__init__.pyi +86 -114
  187. bpy/ops/gizmogroup/__init__.pyi +22 -28
  188. bpy/ops/gpencil/__init__.pyi +1900 -1976
  189. bpy/ops/graph/__init__.pyi +875 -894
  190. bpy/ops/grease_pencil/__init__.pyi +572 -508
  191. bpy/ops/image/__init__.pyi +805 -855
  192. bpy/ops/import_anim/__init__.pyi +66 -46
  193. bpy/ops/import_curve/__init__.pyi +7 -11
  194. bpy/ops/import_mesh/__init__.pyi +19 -25
  195. bpy/ops/import_scene/__init__.pyi +164 -147
  196. bpy/ops/info/__init__.pyi +88 -85
  197. bpy/ops/lattice/__init__.pyi +86 -90
  198. bpy/ops/marker/__init__.pyi +135 -146
  199. bpy/ops/mask/__init__.pyi +372 -436
  200. bpy/ops/material/__init__.pyi +18 -25
  201. bpy/ops/mball/__init__.pyi +93 -99
  202. bpy/ops/mesh/__init__.pyi +2525 -2664
  203. bpy/ops/nla/__init__.pyi +398 -455
  204. bpy/ops/node/__init__.pyi +1015 -1207
  205. bpy/ops/object/__init__.pyi +3423 -3390
  206. bpy/ops/outliner/__init__.pyi +667 -685
  207. bpy/ops/paint/__init__.pyi +719 -672
  208. bpy/ops/paintcurve/__init__.pyi +64 -85
  209. bpy/ops/palette/__init__.pyi +48 -67
  210. bpy/ops/particle/__init__.pyi +323 -367
  211. bpy/ops/pose/__init__.pyi +569 -474
  212. bpy/ops/poselib/__init__.pyi +77 -100
  213. bpy/ops/preferences/__init__.pyi +460 -512
  214. bpy/ops/ptcache/__init__.pyi +46 -63
  215. bpy/ops/render/__init__.pyi +121 -155
  216. bpy/ops/rigidbody/__init__.pyi +148 -143
  217. bpy/ops/scene/__init__.pyi +336 -380
  218. bpy/ops/screen/__init__.pyi +454 -530
  219. bpy/ops/script/__init__.pyi +19 -28
  220. bpy/ops/sculpt/__init__.pyi +734 -587
  221. bpy/ops/sculpt_curves/__init__.pyi +51 -56
  222. bpy/ops/sequencer/__init__.pyi +1617 -1500
  223. bpy/ops/sound/__init__.pyi +392 -315
  224. bpy/ops/spreadsheet/__init__.pyi +31 -42
  225. bpy/ops/surface/__init__.pyi +198 -163
  226. bpy/ops/text/__init__.pyi +479 -545
  227. bpy/ops/text_editor/__init__.pyi +11 -15
  228. bpy/ops/texture/__init__.pyi +26 -36
  229. bpy/ops/transform/__init__.pyi +825 -941
  230. bpy/ops/ui/__init__.pyi +246 -295
  231. bpy/ops/uilist/__init__.pyi +34 -38
  232. bpy/ops/uv/__init__.pyi +912 -824
  233. bpy/ops/view2d/__init__.pyi +157 -197
  234. bpy/ops/view3d/__init__.pyi +777 -878
  235. bpy/ops/wm/__init__.pyi +4102 -3595
  236. bpy/ops/workspace/__init__.pyi +42 -58
  237. bpy/ops/world/__init__.pyi +6 -9
  238. bpy/path/__init__.pyi +166 -109
  239. bpy/props/__init__.pyi +478 -395
  240. bpy/types/__init__.pyi +87194 -81467
  241. bpy/utils/__init__.pyi +325 -169
  242. bpy/utils/previews/__init__.pyi +108 -21
  243. bpy/utils/units/__init__.pyi +37 -39
  244. bpy_extras/__init__.pyi +4 -9
  245. bpy_extras/anim_utils/__init__.pyi +25 -55
  246. bpy_extras/asset_utils/__init__.pyi +3 -13
  247. bpy_extras/id_map_utils/__init__.pyi +1 -4
  248. bpy_extras/image_utils/__init__.pyi +33 -23
  249. bpy_extras/io_utils/__init__.pyi +116 -66
  250. bpy_extras/keyconfig_utils/__init__.pyi +5 -3
  251. bpy_extras/mesh_utils/__init__.pyi +42 -34
  252. bpy_extras/node_utils/__init__.pyi +4 -4
  253. bpy_extras/object_utils/__init__.pyi +58 -43
  254. bpy_extras/view3d_utils/__init__.pyi +64 -63
  255. bpy_restrict_state/__init__.pyi +14 -2
  256. bpy_types/__init__.pyi +3873 -998
  257. console_python/__init__.pyi +41 -8
  258. console_shell/__init__.pyi +24 -6
  259. {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240326.dist-info}/METADATA +1 -1
  260. fake_bpy_module-20240326.dist-info/RECORD +343 -0
  261. {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240326.dist-info}/WHEEL +1 -1
  262. freestyle/__init__.pyi +4 -5
  263. freestyle/chainingiterators/__init__.pyi +229 -73
  264. freestyle/functions/__init__.pyi +624 -402
  265. freestyle/predicates/__init__.pyi +381 -169
  266. freestyle/shaders/__init__.pyi +424 -155
  267. freestyle/types/__init__.pyi +1572 -726
  268. freestyle/utils/ContextFunctions/__init__.pyi +54 -43
  269. freestyle/utils/__init__.pyi +67 -31
  270. gpu/__init__.pyi +3 -4
  271. gpu/capabilities/__init__.pyi +57 -37
  272. gpu/matrix/__init__.pyi +14 -17
  273. gpu/platform/__init__.pyi +5 -6
  274. gpu/select/__init__.pyi +2 -5
  275. gpu/shader/__init__.pyi +14 -12
  276. gpu/state/__init__.pyi +48 -62
  277. gpu/texture/__init__.pyi +7 -7
  278. gpu/types/__init__.pyi +670 -229
  279. gpu_extras/__init__.pyi +1 -2
  280. gpu_extras/batch/__init__.pyi +27 -6
  281. gpu_extras/presets/__init__.pyi +67 -27
  282. graphviz_export/__init__.pyi +9 -3
  283. idprop/__init__.pyi +0 -1
  284. idprop/types/__init__.pyi +42 -13
  285. imbuf/__init__.pyi +6 -10
  286. imbuf/types/__init__.pyi +8 -16
  287. keyingsets_builtins/__init__.pyi +3149 -702
  288. keyingsets_utils/__init__.pyi +69 -15
  289. mathutils/__init__.pyi +951 -876
  290. mathutils/bvhtree/__init__.pyi +47 -48
  291. mathutils/geometry/__init__.pyi +237 -242
  292. mathutils/interpolate/__init__.pyi +3 -6
  293. mathutils/kdtree/__init__.pyi +23 -26
  294. mathutils/noise/__init__.pyi +50 -51
  295. nodeitems_builtins/__init__.pyi +50 -11
  296. nodeitems_utils/__init__.pyi +58 -11
  297. rna_info/__init__.pyi +230 -27
  298. rna_keymap_ui/__init__.pyi +29 -7
  299. rna_prop_ui/__init__.pyi +69 -13
  300. rna_xml/__init__.pyi +29 -7
  301. sys_info/__init__.pyi +4 -2
  302. bpy_extras/bmesh_utils/__init__.pyi +0 -7
  303. bpy_extras/extensions/__init__.pyi +0 -5
  304. bpy_extras/extensions/junction_module/__init__.pyi +0 -13
  305. bpy_extras/node_shader_utils/__init__.pyi +0 -132
  306. bpy_extras/wm_utils/__init__.pyi +0 -5
  307. bpy_extras/wm_utils/progress_report/__init__.pyi +0 -30
  308. fake_bpy_module-20240210.dist-info/RECORD +0 -349
  309. {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240326.dist-info}/top_level.txt +0 -0
@@ -1,62 +1,212 @@
1
- import sys
2
1
  import typing
3
2
  import bpy_types
4
3
 
5
4
  GenericType = typing.TypeVar("GenericType")
6
5
 
7
6
  class AnnotationDataPanel:
7
+ """ """
8
+
8
9
  bl_label: typing.Any
10
+ """ """
11
+
9
12
  bl_options: typing.Any
13
+ """ """
14
+
10
15
  bl_region_type: typing.Any
16
+ """ """
17
+
18
+ def draw(self, context):
19
+ """
20
+
21
+ :param context:
22
+ """
23
+ ...
24
+
25
+ def draw_header(self, context):
26
+ """
11
27
 
12
- def draw(self, context): ...
13
- def draw_header(self, context): ...
14
- def draw_layers(self, context, layout, gpd): ...
28
+ :param context:
29
+ """
30
+ ...
31
+
32
+ def draw_layers(self, context, layout, gpd):
33
+ """
34
+
35
+ :param context:
36
+ :param layout:
37
+ :param gpd:
38
+ """
39
+ ...
15
40
 
16
41
  class AnnotationDrawingToolsPanel:
42
+ """ """
43
+
17
44
  bl_category: typing.Any
45
+ """ """
46
+
18
47
  bl_label: typing.Any
48
+ """ """
49
+
19
50
  bl_region_type: typing.Any
51
+ """ """
52
+
53
+ def draw(self, context):
54
+ """
20
55
 
21
- def draw(self, context): ...
56
+ :param context:
57
+ """
58
+ ...
22
59
 
23
60
  class AnnotationOnionSkin:
61
+ """ """
62
+
24
63
  bl_label: typing.Any
64
+ """ """
65
+
25
66
  bl_options: typing.Any
67
+ """ """
68
+
26
69
  bl_region_type: typing.Any
70
+ """ """
71
+
72
+ def draw(self, context):
73
+ """
74
+
75
+ :param context:
76
+ """
77
+ ...
78
+
79
+ def draw_header(self, context):
80
+ """
27
81
 
28
- def draw(self, context): ...
29
- def draw_header(self, context): ...
30
- def poll(self, context): ...
82
+ :param context:
83
+ """
84
+ ...
85
+
86
+ def poll(self, context):
87
+ """
88
+
89
+ :param context:
90
+ """
91
+ ...
92
+
93
+ class GPENCIL_MT_cleanup(bpy_types._GenericUI):
94
+ """ """
31
95
 
32
- class GPENCIL_MT_cleanup(bpy_types.Menu, bpy_types._GenericUI):
33
96
  bl_label: typing.Any
97
+ """ """
98
+
34
99
  bl_rna: typing.Any
100
+ """ """
101
+
35
102
  id_data: typing.Any
103
+ """ """
104
+
105
+ def append(self, draw_func):
106
+ """
107
+
108
+ :param draw_func:
109
+ """
110
+ ...
111
+
112
+ def as_pointer(self):
113
+ """ """
114
+ ...
115
+
116
+ def bl_rna_get_subclass(self):
117
+ """ """
118
+ ...
119
+
120
+ def bl_rna_get_subclass_py(self):
121
+ """ """
122
+ ...
123
+
124
+ def draw(self, context):
125
+ """
126
+
127
+ :param context:
128
+ """
129
+ ...
130
+
131
+ def draw_collapsible(self, context, layout):
132
+ """
133
+
134
+ :param context:
135
+ :param layout:
136
+ """
137
+ ...
138
+
139
+ def draw_preset(self, _context):
140
+ """
141
+
142
+ :param _context:
143
+ """
144
+ ...
145
+
146
+ def driver_add(self):
147
+ """ """
148
+ ...
149
+
150
+ def driver_remove(self):
151
+ """ """
152
+ ...
153
+
154
+ def get(self):
155
+ """ """
156
+ ...
157
+
158
+ def id_properties_clear(self):
159
+ """ """
160
+ ...
161
+
162
+ def id_properties_ensure(self):
163
+ """ """
164
+ ...
165
+
166
+ def id_properties_ui(self):
167
+ """ """
168
+ ...
169
+
170
+ def is_extended(self):
171
+ """ """
172
+ ...
173
+
174
+ def is_property_hidden(self):
175
+ """ """
176
+ ...
177
+
178
+ def is_property_overridable_library(self):
179
+ """ """
180
+ ...
181
+
182
+ def is_property_readonly(self):
183
+ """ """
184
+ ...
185
+
186
+ def is_property_set(self):
187
+ """ """
188
+ ...
189
+
190
+ def items(self):
191
+ """ """
192
+ ...
193
+
194
+ def keyframe_delete(self):
195
+ """ """
196
+ ...
197
+
198
+ def keyframe_insert(self):
199
+ """ """
200
+ ...
201
+
202
+ def keys(self):
203
+ """ """
204
+ ...
205
+
206
+ def path_from_id(self):
207
+ """ """
208
+ ...
36
209
 
37
- def append(self, draw_func): ...
38
- def as_pointer(self): ...
39
- def bl_rna_get_subclass(self): ...
40
- def bl_rna_get_subclass_py(self): ...
41
- def draw(self, context): ...
42
- def draw_collapsible(self, context, layout): ...
43
- def draw_preset(self, _context): ...
44
- def driver_add(self): ...
45
- def driver_remove(self): ...
46
- def get(self): ...
47
- def id_properties_clear(self): ...
48
- def id_properties_ensure(self): ...
49
- def id_properties_ui(self): ...
50
- def is_extended(self): ...
51
- def is_property_hidden(self): ...
52
- def is_property_overridable_library(self): ...
53
- def is_property_readonly(self): ...
54
- def is_property_set(self): ...
55
- def items(self): ...
56
- def keyframe_delete(self): ...
57
- def keyframe_insert(self): ...
58
- def keys(self): ...
59
- def path_from_id(self): ...
60
210
  def path_menu(
61
211
  self,
62
212
  searchpaths,
@@ -67,44 +217,175 @@ class GPENCIL_MT_cleanup(bpy_types.Menu, bpy_types._GenericUI):
67
217
  filter_path,
68
218
  display_name,
69
219
  add_operator,
70
- ): ...
71
- def path_resolve(self): ...
72
- def pop(self): ...
73
- def prepend(self, draw_func): ...
74
- def property_overridable_library_set(self): ...
75
- def property_unset(self): ...
76
- def remove(self, draw_func): ...
77
- def type_recast(self): ...
78
- def values(self): ...
79
-
80
- class GPENCIL_MT_gpencil_draw_delete(bpy_types.Menu, bpy_types._GenericUI):
220
+ ):
221
+ """
222
+
223
+ :param searchpaths:
224
+ :param operator:
225
+ :param props_default:
226
+ :param prop_filepath:
227
+ :param filter_ext:
228
+ :param filter_path:
229
+ :param display_name:
230
+ :param add_operator:
231
+ """
232
+ ...
233
+
234
+ def path_resolve(self):
235
+ """ """
236
+ ...
237
+
238
+ def pop(self):
239
+ """ """
240
+ ...
241
+
242
+ def prepend(self, draw_func):
243
+ """
244
+
245
+ :param draw_func:
246
+ """
247
+ ...
248
+
249
+ def property_overridable_library_set(self):
250
+ """ """
251
+ ...
252
+
253
+ def property_unset(self):
254
+ """ """
255
+ ...
256
+
257
+ def remove(self, draw_func):
258
+ """
259
+
260
+ :param draw_func:
261
+ """
262
+ ...
263
+
264
+ def type_recast(self):
265
+ """ """
266
+ ...
267
+
268
+ def values(self):
269
+ """ """
270
+ ...
271
+
272
+ class GPENCIL_MT_gpencil_draw_delete(bpy_types._GenericUI):
273
+ """ """
274
+
81
275
  bl_label: typing.Any
276
+ """ """
277
+
82
278
  bl_rna: typing.Any
279
+ """ """
280
+
83
281
  id_data: typing.Any
282
+ """ """
283
+
284
+ def append(self, draw_func):
285
+ """
286
+
287
+ :param draw_func:
288
+ """
289
+ ...
290
+
291
+ def as_pointer(self):
292
+ """ """
293
+ ...
294
+
295
+ def bl_rna_get_subclass(self):
296
+ """ """
297
+ ...
298
+
299
+ def bl_rna_get_subclass_py(self):
300
+ """ """
301
+ ...
302
+
303
+ def draw(self, _context):
304
+ """
305
+
306
+ :param _context:
307
+ """
308
+ ...
309
+
310
+ def draw_collapsible(self, context, layout):
311
+ """
312
+
313
+ :param context:
314
+ :param layout:
315
+ """
316
+ ...
317
+
318
+ def draw_preset(self, _context):
319
+ """
320
+
321
+ :param _context:
322
+ """
323
+ ...
324
+
325
+ def driver_add(self):
326
+ """ """
327
+ ...
328
+
329
+ def driver_remove(self):
330
+ """ """
331
+ ...
332
+
333
+ def get(self):
334
+ """ """
335
+ ...
336
+
337
+ def id_properties_clear(self):
338
+ """ """
339
+ ...
340
+
341
+ def id_properties_ensure(self):
342
+ """ """
343
+ ...
344
+
345
+ def id_properties_ui(self):
346
+ """ """
347
+ ...
348
+
349
+ def is_extended(self):
350
+ """ """
351
+ ...
352
+
353
+ def is_property_hidden(self):
354
+ """ """
355
+ ...
356
+
357
+ def is_property_overridable_library(self):
358
+ """ """
359
+ ...
360
+
361
+ def is_property_readonly(self):
362
+ """ """
363
+ ...
364
+
365
+ def is_property_set(self):
366
+ """ """
367
+ ...
368
+
369
+ def items(self):
370
+ """ """
371
+ ...
372
+
373
+ def keyframe_delete(self):
374
+ """ """
375
+ ...
376
+
377
+ def keyframe_insert(self):
378
+ """ """
379
+ ...
380
+
381
+ def keys(self):
382
+ """ """
383
+ ...
384
+
385
+ def path_from_id(self):
386
+ """ """
387
+ ...
84
388
 
85
- def append(self, draw_func): ...
86
- def as_pointer(self): ...
87
- def bl_rna_get_subclass(self): ...
88
- def bl_rna_get_subclass_py(self): ...
89
- def draw(self, _context): ...
90
- def draw_collapsible(self, context, layout): ...
91
- def draw_preset(self, _context): ...
92
- def driver_add(self): ...
93
- def driver_remove(self): ...
94
- def get(self): ...
95
- def id_properties_clear(self): ...
96
- def id_properties_ensure(self): ...
97
- def id_properties_ui(self): ...
98
- def is_extended(self): ...
99
- def is_property_hidden(self): ...
100
- def is_property_overridable_library(self): ...
101
- def is_property_readonly(self): ...
102
- def is_property_set(self): ...
103
- def items(self): ...
104
- def keyframe_delete(self): ...
105
- def keyframe_insert(self): ...
106
- def keys(self): ...
107
- def path_from_id(self): ...
108
389
  def path_menu(
109
390
  self,
110
391
  searchpaths,
@@ -115,44 +396,175 @@ class GPENCIL_MT_gpencil_draw_delete(bpy_types.Menu, bpy_types._GenericUI):
115
396
  filter_path,
116
397
  display_name,
117
398
  add_operator,
118
- ): ...
119
- def path_resolve(self): ...
120
- def pop(self): ...
121
- def prepend(self, draw_func): ...
122
- def property_overridable_library_set(self): ...
123
- def property_unset(self): ...
124
- def remove(self, draw_func): ...
125
- def type_recast(self): ...
126
- def values(self): ...
127
-
128
- class GPENCIL_MT_layer_active(bpy_types.Menu, bpy_types._GenericUI):
399
+ ):
400
+ """
401
+
402
+ :param searchpaths:
403
+ :param operator:
404
+ :param props_default:
405
+ :param prop_filepath:
406
+ :param filter_ext:
407
+ :param filter_path:
408
+ :param display_name:
409
+ :param add_operator:
410
+ """
411
+ ...
412
+
413
+ def path_resolve(self):
414
+ """ """
415
+ ...
416
+
417
+ def pop(self):
418
+ """ """
419
+ ...
420
+
421
+ def prepend(self, draw_func):
422
+ """
423
+
424
+ :param draw_func:
425
+ """
426
+ ...
427
+
428
+ def property_overridable_library_set(self):
429
+ """ """
430
+ ...
431
+
432
+ def property_unset(self):
433
+ """ """
434
+ ...
435
+
436
+ def remove(self, draw_func):
437
+ """
438
+
439
+ :param draw_func:
440
+ """
441
+ ...
442
+
443
+ def type_recast(self):
444
+ """ """
445
+ ...
446
+
447
+ def values(self):
448
+ """ """
449
+ ...
450
+
451
+ class GPENCIL_MT_layer_active(bpy_types._GenericUI):
452
+ """ """
453
+
129
454
  bl_label: typing.Any
455
+ """ """
456
+
130
457
  bl_rna: typing.Any
458
+ """ """
459
+
131
460
  id_data: typing.Any
461
+ """ """
462
+
463
+ def append(self, draw_func):
464
+ """
465
+
466
+ :param draw_func:
467
+ """
468
+ ...
469
+
470
+ def as_pointer(self):
471
+ """ """
472
+ ...
473
+
474
+ def bl_rna_get_subclass(self):
475
+ """ """
476
+ ...
477
+
478
+ def bl_rna_get_subclass_py(self):
479
+ """ """
480
+ ...
481
+
482
+ def draw(self, context):
483
+ """
484
+
485
+ :param context:
486
+ """
487
+ ...
488
+
489
+ def draw_collapsible(self, context, layout):
490
+ """
491
+
492
+ :param context:
493
+ :param layout:
494
+ """
495
+ ...
496
+
497
+ def draw_preset(self, _context):
498
+ """
499
+
500
+ :param _context:
501
+ """
502
+ ...
503
+
504
+ def driver_add(self):
505
+ """ """
506
+ ...
507
+
508
+ def driver_remove(self):
509
+ """ """
510
+ ...
511
+
512
+ def get(self):
513
+ """ """
514
+ ...
515
+
516
+ def id_properties_clear(self):
517
+ """ """
518
+ ...
519
+
520
+ def id_properties_ensure(self):
521
+ """ """
522
+ ...
523
+
524
+ def id_properties_ui(self):
525
+ """ """
526
+ ...
527
+
528
+ def is_extended(self):
529
+ """ """
530
+ ...
531
+
532
+ def is_property_hidden(self):
533
+ """ """
534
+ ...
535
+
536
+ def is_property_overridable_library(self):
537
+ """ """
538
+ ...
539
+
540
+ def is_property_readonly(self):
541
+ """ """
542
+ ...
543
+
544
+ def is_property_set(self):
545
+ """ """
546
+ ...
547
+
548
+ def items(self):
549
+ """ """
550
+ ...
551
+
552
+ def keyframe_delete(self):
553
+ """ """
554
+ ...
555
+
556
+ def keyframe_insert(self):
557
+ """ """
558
+ ...
559
+
560
+ def keys(self):
561
+ """ """
562
+ ...
563
+
564
+ def path_from_id(self):
565
+ """ """
566
+ ...
132
567
 
133
- def append(self, draw_func): ...
134
- def as_pointer(self): ...
135
- def bl_rna_get_subclass(self): ...
136
- def bl_rna_get_subclass_py(self): ...
137
- def draw(self, context): ...
138
- def draw_collapsible(self, context, layout): ...
139
- def draw_preset(self, _context): ...
140
- def driver_add(self): ...
141
- def driver_remove(self): ...
142
- def get(self): ...
143
- def id_properties_clear(self): ...
144
- def id_properties_ensure(self): ...
145
- def id_properties_ui(self): ...
146
- def is_extended(self): ...
147
- def is_property_hidden(self): ...
148
- def is_property_overridable_library(self): ...
149
- def is_property_readonly(self): ...
150
- def is_property_set(self): ...
151
- def items(self): ...
152
- def keyframe_delete(self): ...
153
- def keyframe_insert(self): ...
154
- def keys(self): ...
155
- def path_from_id(self): ...
156
568
  def path_menu(
157
569
  self,
158
570
  searchpaths,
@@ -163,44 +575,175 @@ class GPENCIL_MT_layer_active(bpy_types.Menu, bpy_types._GenericUI):
163
575
  filter_path,
164
576
  display_name,
165
577
  add_operator,
166
- ): ...
167
- def path_resolve(self): ...
168
- def pop(self): ...
169
- def prepend(self, draw_func): ...
170
- def property_overridable_library_set(self): ...
171
- def property_unset(self): ...
172
- def remove(self, draw_func): ...
173
- def type_recast(self): ...
174
- def values(self): ...
175
-
176
- class GPENCIL_MT_layer_mask_menu(bpy_types.Menu, bpy_types._GenericUI):
578
+ ):
579
+ """
580
+
581
+ :param searchpaths:
582
+ :param operator:
583
+ :param props_default:
584
+ :param prop_filepath:
585
+ :param filter_ext:
586
+ :param filter_path:
587
+ :param display_name:
588
+ :param add_operator:
589
+ """
590
+ ...
591
+
592
+ def path_resolve(self):
593
+ """ """
594
+ ...
595
+
596
+ def pop(self):
597
+ """ """
598
+ ...
599
+
600
+ def prepend(self, draw_func):
601
+ """
602
+
603
+ :param draw_func:
604
+ """
605
+ ...
606
+
607
+ def property_overridable_library_set(self):
608
+ """ """
609
+ ...
610
+
611
+ def property_unset(self):
612
+ """ """
613
+ ...
614
+
615
+ def remove(self, draw_func):
616
+ """
617
+
618
+ :param draw_func:
619
+ """
620
+ ...
621
+
622
+ def type_recast(self):
623
+ """ """
624
+ ...
625
+
626
+ def values(self):
627
+ """ """
628
+ ...
629
+
630
+ class GPENCIL_MT_layer_mask_menu(bpy_types._GenericUI):
631
+ """ """
632
+
177
633
  bl_label: typing.Any
634
+ """ """
635
+
178
636
  bl_rna: typing.Any
637
+ """ """
638
+
179
639
  id_data: typing.Any
640
+ """ """
641
+
642
+ def append(self, draw_func):
643
+ """
644
+
645
+ :param draw_func:
646
+ """
647
+ ...
648
+
649
+ def as_pointer(self):
650
+ """ """
651
+ ...
652
+
653
+ def bl_rna_get_subclass(self):
654
+ """ """
655
+ ...
656
+
657
+ def bl_rna_get_subclass_py(self):
658
+ """ """
659
+ ...
660
+
661
+ def draw(self, context):
662
+ """
663
+
664
+ :param context:
665
+ """
666
+ ...
667
+
668
+ def draw_collapsible(self, context, layout):
669
+ """
670
+
671
+ :param context:
672
+ :param layout:
673
+ """
674
+ ...
675
+
676
+ def draw_preset(self, _context):
677
+ """
678
+
679
+ :param _context:
680
+ """
681
+ ...
682
+
683
+ def driver_add(self):
684
+ """ """
685
+ ...
686
+
687
+ def driver_remove(self):
688
+ """ """
689
+ ...
690
+
691
+ def get(self):
692
+ """ """
693
+ ...
694
+
695
+ def id_properties_clear(self):
696
+ """ """
697
+ ...
698
+
699
+ def id_properties_ensure(self):
700
+ """ """
701
+ ...
702
+
703
+ def id_properties_ui(self):
704
+ """ """
705
+ ...
706
+
707
+ def is_extended(self):
708
+ """ """
709
+ ...
710
+
711
+ def is_property_hidden(self):
712
+ """ """
713
+ ...
714
+
715
+ def is_property_overridable_library(self):
716
+ """ """
717
+ ...
718
+
719
+ def is_property_readonly(self):
720
+ """ """
721
+ ...
722
+
723
+ def is_property_set(self):
724
+ """ """
725
+ ...
726
+
727
+ def items(self):
728
+ """ """
729
+ ...
730
+
731
+ def keyframe_delete(self):
732
+ """ """
733
+ ...
734
+
735
+ def keyframe_insert(self):
736
+ """ """
737
+ ...
738
+
739
+ def keys(self):
740
+ """ """
741
+ ...
742
+
743
+ def path_from_id(self):
744
+ """ """
745
+ ...
180
746
 
181
- def append(self, draw_func): ...
182
- def as_pointer(self): ...
183
- def bl_rna_get_subclass(self): ...
184
- def bl_rna_get_subclass_py(self): ...
185
- def draw(self, context): ...
186
- def draw_collapsible(self, context, layout): ...
187
- def draw_preset(self, _context): ...
188
- def driver_add(self): ...
189
- def driver_remove(self): ...
190
- def get(self): ...
191
- def id_properties_clear(self): ...
192
- def id_properties_ensure(self): ...
193
- def id_properties_ui(self): ...
194
- def is_extended(self): ...
195
- def is_property_hidden(self): ...
196
- def is_property_overridable_library(self): ...
197
- def is_property_readonly(self): ...
198
- def is_property_set(self): ...
199
- def items(self): ...
200
- def keyframe_delete(self): ...
201
- def keyframe_insert(self): ...
202
- def keys(self): ...
203
- def path_from_id(self): ...
204
747
  def path_menu(
205
748
  self,
206
749
  searchpaths,
@@ -211,44 +754,175 @@ class GPENCIL_MT_layer_mask_menu(bpy_types.Menu, bpy_types._GenericUI):
211
754
  filter_path,
212
755
  display_name,
213
756
  add_operator,
214
- ): ...
215
- def path_resolve(self): ...
216
- def pop(self): ...
217
- def prepend(self, draw_func): ...
218
- def property_overridable_library_set(self): ...
219
- def property_unset(self): ...
220
- def remove(self, draw_func): ...
221
- def type_recast(self): ...
222
- def values(self): ...
223
-
224
- class GPENCIL_MT_material_active(bpy_types.Menu, bpy_types._GenericUI):
757
+ ):
758
+ """
759
+
760
+ :param searchpaths:
761
+ :param operator:
762
+ :param props_default:
763
+ :param prop_filepath:
764
+ :param filter_ext:
765
+ :param filter_path:
766
+ :param display_name:
767
+ :param add_operator:
768
+ """
769
+ ...
770
+
771
+ def path_resolve(self):
772
+ """ """
773
+ ...
774
+
775
+ def pop(self):
776
+ """ """
777
+ ...
778
+
779
+ def prepend(self, draw_func):
780
+ """
781
+
782
+ :param draw_func:
783
+ """
784
+ ...
785
+
786
+ def property_overridable_library_set(self):
787
+ """ """
788
+ ...
789
+
790
+ def property_unset(self):
791
+ """ """
792
+ ...
793
+
794
+ def remove(self, draw_func):
795
+ """
796
+
797
+ :param draw_func:
798
+ """
799
+ ...
800
+
801
+ def type_recast(self):
802
+ """ """
803
+ ...
804
+
805
+ def values(self):
806
+ """ """
807
+ ...
808
+
809
+ class GPENCIL_MT_material_active(bpy_types._GenericUI):
810
+ """ """
811
+
225
812
  bl_label: typing.Any
813
+ """ """
814
+
226
815
  bl_rna: typing.Any
816
+ """ """
817
+
227
818
  id_data: typing.Any
819
+ """ """
820
+
821
+ def append(self, draw_func):
822
+ """
823
+
824
+ :param draw_func:
825
+ """
826
+ ...
827
+
828
+ def as_pointer(self):
829
+ """ """
830
+ ...
831
+
832
+ def bl_rna_get_subclass(self):
833
+ """ """
834
+ ...
835
+
836
+ def bl_rna_get_subclass_py(self):
837
+ """ """
838
+ ...
839
+
840
+ def draw(self, context):
841
+ """
842
+
843
+ :param context:
844
+ """
845
+ ...
846
+
847
+ def draw_collapsible(self, context, layout):
848
+ """
849
+
850
+ :param context:
851
+ :param layout:
852
+ """
853
+ ...
854
+
855
+ def draw_preset(self, _context):
856
+ """
857
+
858
+ :param _context:
859
+ """
860
+ ...
861
+
862
+ def driver_add(self):
863
+ """ """
864
+ ...
865
+
866
+ def driver_remove(self):
867
+ """ """
868
+ ...
869
+
870
+ def get(self):
871
+ """ """
872
+ ...
873
+
874
+ def id_properties_clear(self):
875
+ """ """
876
+ ...
877
+
878
+ def id_properties_ensure(self):
879
+ """ """
880
+ ...
881
+
882
+ def id_properties_ui(self):
883
+ """ """
884
+ ...
885
+
886
+ def is_extended(self):
887
+ """ """
888
+ ...
889
+
890
+ def is_property_hidden(self):
891
+ """ """
892
+ ...
893
+
894
+ def is_property_overridable_library(self):
895
+ """ """
896
+ ...
897
+
898
+ def is_property_readonly(self):
899
+ """ """
900
+ ...
901
+
902
+ def is_property_set(self):
903
+ """ """
904
+ ...
905
+
906
+ def items(self):
907
+ """ """
908
+ ...
909
+
910
+ def keyframe_delete(self):
911
+ """ """
912
+ ...
913
+
914
+ def keyframe_insert(self):
915
+ """ """
916
+ ...
917
+
918
+ def keys(self):
919
+ """ """
920
+ ...
921
+
922
+ def path_from_id(self):
923
+ """ """
924
+ ...
228
925
 
229
- def append(self, draw_func): ...
230
- def as_pointer(self): ...
231
- def bl_rna_get_subclass(self): ...
232
- def bl_rna_get_subclass_py(self): ...
233
- def draw(self, context): ...
234
- def draw_collapsible(self, context, layout): ...
235
- def draw_preset(self, _context): ...
236
- def driver_add(self): ...
237
- def driver_remove(self): ...
238
- def get(self): ...
239
- def id_properties_clear(self): ...
240
- def id_properties_ensure(self): ...
241
- def id_properties_ui(self): ...
242
- def is_extended(self): ...
243
- def is_property_hidden(self): ...
244
- def is_property_overridable_library(self): ...
245
- def is_property_readonly(self): ...
246
- def is_property_set(self): ...
247
- def items(self): ...
248
- def keyframe_delete(self): ...
249
- def keyframe_insert(self): ...
250
- def keys(self): ...
251
- def path_from_id(self): ...
252
926
  def path_menu(
253
927
  self,
254
928
  searchpaths,
@@ -259,45 +933,182 @@ class GPENCIL_MT_material_active(bpy_types.Menu, bpy_types._GenericUI):
259
933
  filter_path,
260
934
  display_name,
261
935
  add_operator,
262
- ): ...
263
- def path_resolve(self): ...
264
- def poll(self, context): ...
265
- def pop(self): ...
266
- def prepend(self, draw_func): ...
267
- def property_overridable_library_set(self): ...
268
- def property_unset(self): ...
269
- def remove(self, draw_func): ...
270
- def type_recast(self): ...
271
- def values(self): ...
272
-
273
- class GPENCIL_MT_move_to_layer(bpy_types.Menu, bpy_types._GenericUI):
936
+ ):
937
+ """
938
+
939
+ :param searchpaths:
940
+ :param operator:
941
+ :param props_default:
942
+ :param prop_filepath:
943
+ :param filter_ext:
944
+ :param filter_path:
945
+ :param display_name:
946
+ :param add_operator:
947
+ """
948
+ ...
949
+
950
+ def path_resolve(self):
951
+ """ """
952
+ ...
953
+
954
+ def poll(self, context):
955
+ """
956
+
957
+ :param context:
958
+ """
959
+ ...
960
+
961
+ def pop(self):
962
+ """ """
963
+ ...
964
+
965
+ def prepend(self, draw_func):
966
+ """
967
+
968
+ :param draw_func:
969
+ """
970
+ ...
971
+
972
+ def property_overridable_library_set(self):
973
+ """ """
974
+ ...
975
+
976
+ def property_unset(self):
977
+ """ """
978
+ ...
979
+
980
+ def remove(self, draw_func):
981
+ """
982
+
983
+ :param draw_func:
984
+ """
985
+ ...
986
+
987
+ def type_recast(self):
988
+ """ """
989
+ ...
990
+
991
+ def values(self):
992
+ """ """
993
+ ...
994
+
995
+ class GPENCIL_MT_move_to_layer(bpy_types._GenericUI):
996
+ """ """
997
+
274
998
  bl_label: typing.Any
999
+ """ """
1000
+
275
1001
  bl_rna: typing.Any
1002
+ """ """
1003
+
276
1004
  id_data: typing.Any
1005
+ """ """
1006
+
1007
+ def append(self, draw_func):
1008
+ """
1009
+
1010
+ :param draw_func:
1011
+ """
1012
+ ...
1013
+
1014
+ def as_pointer(self):
1015
+ """ """
1016
+ ...
1017
+
1018
+ def bl_rna_get_subclass(self):
1019
+ """ """
1020
+ ...
1021
+
1022
+ def bl_rna_get_subclass_py(self):
1023
+ """ """
1024
+ ...
1025
+
1026
+ def draw(self, context):
1027
+ """
1028
+
1029
+ :param context:
1030
+ """
1031
+ ...
1032
+
1033
+ def draw_collapsible(self, context, layout):
1034
+ """
1035
+
1036
+ :param context:
1037
+ :param layout:
1038
+ """
1039
+ ...
1040
+
1041
+ def draw_preset(self, _context):
1042
+ """
1043
+
1044
+ :param _context:
1045
+ """
1046
+ ...
1047
+
1048
+ def driver_add(self):
1049
+ """ """
1050
+ ...
1051
+
1052
+ def driver_remove(self):
1053
+ """ """
1054
+ ...
1055
+
1056
+ def get(self):
1057
+ """ """
1058
+ ...
1059
+
1060
+ def id_properties_clear(self):
1061
+ """ """
1062
+ ...
1063
+
1064
+ def id_properties_ensure(self):
1065
+ """ """
1066
+ ...
1067
+
1068
+ def id_properties_ui(self):
1069
+ """ """
1070
+ ...
1071
+
1072
+ def is_extended(self):
1073
+ """ """
1074
+ ...
1075
+
1076
+ def is_property_hidden(self):
1077
+ """ """
1078
+ ...
1079
+
1080
+ def is_property_overridable_library(self):
1081
+ """ """
1082
+ ...
1083
+
1084
+ def is_property_readonly(self):
1085
+ """ """
1086
+ ...
1087
+
1088
+ def is_property_set(self):
1089
+ """ """
1090
+ ...
1091
+
1092
+ def items(self):
1093
+ """ """
1094
+ ...
1095
+
1096
+ def keyframe_delete(self):
1097
+ """ """
1098
+ ...
1099
+
1100
+ def keyframe_insert(self):
1101
+ """ """
1102
+ ...
1103
+
1104
+ def keys(self):
1105
+ """ """
1106
+ ...
1107
+
1108
+ def path_from_id(self):
1109
+ """ """
1110
+ ...
277
1111
 
278
- def append(self, draw_func): ...
279
- def as_pointer(self): ...
280
- def bl_rna_get_subclass(self): ...
281
- def bl_rna_get_subclass_py(self): ...
282
- def draw(self, context): ...
283
- def draw_collapsible(self, context, layout): ...
284
- def draw_preset(self, _context): ...
285
- def driver_add(self): ...
286
- def driver_remove(self): ...
287
- def get(self): ...
288
- def id_properties_clear(self): ...
289
- def id_properties_ensure(self): ...
290
- def id_properties_ui(self): ...
291
- def is_extended(self): ...
292
- def is_property_hidden(self): ...
293
- def is_property_overridable_library(self): ...
294
- def is_property_readonly(self): ...
295
- def is_property_set(self): ...
296
- def items(self): ...
297
- def keyframe_delete(self): ...
298
- def keyframe_insert(self): ...
299
- def keys(self): ...
300
- def path_from_id(self): ...
301
1112
  def path_menu(
302
1113
  self,
303
1114
  searchpaths,
@@ -308,44 +1119,175 @@ class GPENCIL_MT_move_to_layer(bpy_types.Menu, bpy_types._GenericUI):
308
1119
  filter_path,
309
1120
  display_name,
310
1121
  add_operator,
311
- ): ...
312
- def path_resolve(self): ...
313
- def pop(self): ...
314
- def prepend(self, draw_func): ...
315
- def property_overridable_library_set(self): ...
316
- def property_unset(self): ...
317
- def remove(self, draw_func): ...
318
- def type_recast(self): ...
319
- def values(self): ...
320
-
321
- class GPENCIL_MT_snap(bpy_types.Menu, bpy_types._GenericUI):
1122
+ ):
1123
+ """
1124
+
1125
+ :param searchpaths:
1126
+ :param operator:
1127
+ :param props_default:
1128
+ :param prop_filepath:
1129
+ :param filter_ext:
1130
+ :param filter_path:
1131
+ :param display_name:
1132
+ :param add_operator:
1133
+ """
1134
+ ...
1135
+
1136
+ def path_resolve(self):
1137
+ """ """
1138
+ ...
1139
+
1140
+ def pop(self):
1141
+ """ """
1142
+ ...
1143
+
1144
+ def prepend(self, draw_func):
1145
+ """
1146
+
1147
+ :param draw_func:
1148
+ """
1149
+ ...
1150
+
1151
+ def property_overridable_library_set(self):
1152
+ """ """
1153
+ ...
1154
+
1155
+ def property_unset(self):
1156
+ """ """
1157
+ ...
1158
+
1159
+ def remove(self, draw_func):
1160
+ """
1161
+
1162
+ :param draw_func:
1163
+ """
1164
+ ...
1165
+
1166
+ def type_recast(self):
1167
+ """ """
1168
+ ...
1169
+
1170
+ def values(self):
1171
+ """ """
1172
+ ...
1173
+
1174
+ class GPENCIL_MT_snap(bpy_types._GenericUI):
1175
+ """ """
1176
+
322
1177
  bl_label: typing.Any
1178
+ """ """
1179
+
323
1180
  bl_rna: typing.Any
1181
+ """ """
1182
+
324
1183
  id_data: typing.Any
1184
+ """ """
1185
+
1186
+ def append(self, draw_func):
1187
+ """
1188
+
1189
+ :param draw_func:
1190
+ """
1191
+ ...
1192
+
1193
+ def as_pointer(self):
1194
+ """ """
1195
+ ...
1196
+
1197
+ def bl_rna_get_subclass(self):
1198
+ """ """
1199
+ ...
1200
+
1201
+ def bl_rna_get_subclass_py(self):
1202
+ """ """
1203
+ ...
1204
+
1205
+ def draw(self, _context):
1206
+ """
1207
+
1208
+ :param _context:
1209
+ """
1210
+ ...
1211
+
1212
+ def draw_collapsible(self, context, layout):
1213
+ """
1214
+
1215
+ :param context:
1216
+ :param layout:
1217
+ """
1218
+ ...
1219
+
1220
+ def draw_preset(self, _context):
1221
+ """
1222
+
1223
+ :param _context:
1224
+ """
1225
+ ...
1226
+
1227
+ def driver_add(self):
1228
+ """ """
1229
+ ...
1230
+
1231
+ def driver_remove(self):
1232
+ """ """
1233
+ ...
1234
+
1235
+ def get(self):
1236
+ """ """
1237
+ ...
1238
+
1239
+ def id_properties_clear(self):
1240
+ """ """
1241
+ ...
1242
+
1243
+ def id_properties_ensure(self):
1244
+ """ """
1245
+ ...
1246
+
1247
+ def id_properties_ui(self):
1248
+ """ """
1249
+ ...
1250
+
1251
+ def is_extended(self):
1252
+ """ """
1253
+ ...
1254
+
1255
+ def is_property_hidden(self):
1256
+ """ """
1257
+ ...
1258
+
1259
+ def is_property_overridable_library(self):
1260
+ """ """
1261
+ ...
1262
+
1263
+ def is_property_readonly(self):
1264
+ """ """
1265
+ ...
1266
+
1267
+ def is_property_set(self):
1268
+ """ """
1269
+ ...
1270
+
1271
+ def items(self):
1272
+ """ """
1273
+ ...
1274
+
1275
+ def keyframe_delete(self):
1276
+ """ """
1277
+ ...
1278
+
1279
+ def keyframe_insert(self):
1280
+ """ """
1281
+ ...
1282
+
1283
+ def keys(self):
1284
+ """ """
1285
+ ...
1286
+
1287
+ def path_from_id(self):
1288
+ """ """
1289
+ ...
325
1290
 
326
- def append(self, draw_func): ...
327
- def as_pointer(self): ...
328
- def bl_rna_get_subclass(self): ...
329
- def bl_rna_get_subclass_py(self): ...
330
- def draw(self, _context): ...
331
- def draw_collapsible(self, context, layout): ...
332
- def draw_preset(self, _context): ...
333
- def driver_add(self): ...
334
- def driver_remove(self): ...
335
- def get(self): ...
336
- def id_properties_clear(self): ...
337
- def id_properties_ensure(self): ...
338
- def id_properties_ui(self): ...
339
- def is_extended(self): ...
340
- def is_property_hidden(self): ...
341
- def is_property_overridable_library(self): ...
342
- def is_property_readonly(self): ...
343
- def is_property_set(self): ...
344
- def items(self): ...
345
- def keyframe_delete(self): ...
346
- def keyframe_insert(self): ...
347
- def keys(self): ...
348
- def path_from_id(self): ...
349
1291
  def path_menu(
350
1292
  self,
351
1293
  searchpaths,
@@ -356,44 +1298,175 @@ class GPENCIL_MT_snap(bpy_types.Menu, bpy_types._GenericUI):
356
1298
  filter_path,
357
1299
  display_name,
358
1300
  add_operator,
359
- ): ...
360
- def path_resolve(self): ...
361
- def pop(self): ...
362
- def prepend(self, draw_func): ...
363
- def property_overridable_library_set(self): ...
364
- def property_unset(self): ...
365
- def remove(self, draw_func): ...
366
- def type_recast(self): ...
367
- def values(self): ...
368
-
369
- class GPENCIL_MT_snap_pie(bpy_types.Menu, bpy_types._GenericUI):
1301
+ ):
1302
+ """
1303
+
1304
+ :param searchpaths:
1305
+ :param operator:
1306
+ :param props_default:
1307
+ :param prop_filepath:
1308
+ :param filter_ext:
1309
+ :param filter_path:
1310
+ :param display_name:
1311
+ :param add_operator:
1312
+ """
1313
+ ...
1314
+
1315
+ def path_resolve(self):
1316
+ """ """
1317
+ ...
1318
+
1319
+ def pop(self):
1320
+ """ """
1321
+ ...
1322
+
1323
+ def prepend(self, draw_func):
1324
+ """
1325
+
1326
+ :param draw_func:
1327
+ """
1328
+ ...
1329
+
1330
+ def property_overridable_library_set(self):
1331
+ """ """
1332
+ ...
1333
+
1334
+ def property_unset(self):
1335
+ """ """
1336
+ ...
1337
+
1338
+ def remove(self, draw_func):
1339
+ """
1340
+
1341
+ :param draw_func:
1342
+ """
1343
+ ...
1344
+
1345
+ def type_recast(self):
1346
+ """ """
1347
+ ...
1348
+
1349
+ def values(self):
1350
+ """ """
1351
+ ...
1352
+
1353
+ class GPENCIL_MT_snap_pie(bpy_types._GenericUI):
1354
+ """ """
1355
+
370
1356
  bl_label: typing.Any
1357
+ """ """
1358
+
371
1359
  bl_rna: typing.Any
1360
+ """ """
1361
+
372
1362
  id_data: typing.Any
1363
+ """ """
1364
+
1365
+ def append(self, draw_func):
1366
+ """
1367
+
1368
+ :param draw_func:
1369
+ """
1370
+ ...
1371
+
1372
+ def as_pointer(self):
1373
+ """ """
1374
+ ...
1375
+
1376
+ def bl_rna_get_subclass(self):
1377
+ """ """
1378
+ ...
1379
+
1380
+ def bl_rna_get_subclass_py(self):
1381
+ """ """
1382
+ ...
1383
+
1384
+ def draw(self, _context):
1385
+ """
1386
+
1387
+ :param _context:
1388
+ """
1389
+ ...
1390
+
1391
+ def draw_collapsible(self, context, layout):
1392
+ """
1393
+
1394
+ :param context:
1395
+ :param layout:
1396
+ """
1397
+ ...
1398
+
1399
+ def draw_preset(self, _context):
1400
+ """
1401
+
1402
+ :param _context:
1403
+ """
1404
+ ...
1405
+
1406
+ def driver_add(self):
1407
+ """ """
1408
+ ...
1409
+
1410
+ def driver_remove(self):
1411
+ """ """
1412
+ ...
1413
+
1414
+ def get(self):
1415
+ """ """
1416
+ ...
1417
+
1418
+ def id_properties_clear(self):
1419
+ """ """
1420
+ ...
1421
+
1422
+ def id_properties_ensure(self):
1423
+ """ """
1424
+ ...
1425
+
1426
+ def id_properties_ui(self):
1427
+ """ """
1428
+ ...
1429
+
1430
+ def is_extended(self):
1431
+ """ """
1432
+ ...
1433
+
1434
+ def is_property_hidden(self):
1435
+ """ """
1436
+ ...
1437
+
1438
+ def is_property_overridable_library(self):
1439
+ """ """
1440
+ ...
1441
+
1442
+ def is_property_readonly(self):
1443
+ """ """
1444
+ ...
1445
+
1446
+ def is_property_set(self):
1447
+ """ """
1448
+ ...
1449
+
1450
+ def items(self):
1451
+ """ """
1452
+ ...
1453
+
1454
+ def keyframe_delete(self):
1455
+ """ """
1456
+ ...
1457
+
1458
+ def keyframe_insert(self):
1459
+ """ """
1460
+ ...
1461
+
1462
+ def keys(self):
1463
+ """ """
1464
+ ...
1465
+
1466
+ def path_from_id(self):
1467
+ """ """
1468
+ ...
373
1469
 
374
- def append(self, draw_func): ...
375
- def as_pointer(self): ...
376
- def bl_rna_get_subclass(self): ...
377
- def bl_rna_get_subclass_py(self): ...
378
- def draw(self, _context): ...
379
- def draw_collapsible(self, context, layout): ...
380
- def draw_preset(self, _context): ...
381
- def driver_add(self): ...
382
- def driver_remove(self): ...
383
- def get(self): ...
384
- def id_properties_clear(self): ...
385
- def id_properties_ensure(self): ...
386
- def id_properties_ui(self): ...
387
- def is_extended(self): ...
388
- def is_property_hidden(self): ...
389
- def is_property_overridable_library(self): ...
390
- def is_property_readonly(self): ...
391
- def is_property_set(self): ...
392
- def items(self): ...
393
- def keyframe_delete(self): ...
394
- def keyframe_insert(self): ...
395
- def keys(self): ...
396
- def path_from_id(self): ...
397
1470
  def path_menu(
398
1471
  self,
399
1472
  searchpaths,
@@ -404,24 +1477,86 @@ class GPENCIL_MT_snap_pie(bpy_types.Menu, bpy_types._GenericUI):
404
1477
  filter_path,
405
1478
  display_name,
406
1479
  add_operator,
407
- ): ...
408
- def path_resolve(self): ...
409
- def pop(self): ...
410
- def prepend(self, draw_func): ...
411
- def property_overridable_library_set(self): ...
412
- def property_unset(self): ...
413
- def remove(self, draw_func): ...
414
- def type_recast(self): ...
415
- def values(self): ...
416
-
417
- class GPENCIL_UL_annotation_layer(bpy_types.UIList, bpy_types._GenericUI):
1480
+ ):
1481
+ """
1482
+
1483
+ :param searchpaths:
1484
+ :param operator:
1485
+ :param props_default:
1486
+ :param prop_filepath:
1487
+ :param filter_ext:
1488
+ :param filter_path:
1489
+ :param display_name:
1490
+ :param add_operator:
1491
+ """
1492
+ ...
1493
+
1494
+ def path_resolve(self):
1495
+ """ """
1496
+ ...
1497
+
1498
+ def pop(self):
1499
+ """ """
1500
+ ...
1501
+
1502
+ def prepend(self, draw_func):
1503
+ """
1504
+
1505
+ :param draw_func:
1506
+ """
1507
+ ...
1508
+
1509
+ def property_overridable_library_set(self):
1510
+ """ """
1511
+ ...
1512
+
1513
+ def property_unset(self):
1514
+ """ """
1515
+ ...
1516
+
1517
+ def remove(self, draw_func):
1518
+ """
1519
+
1520
+ :param draw_func:
1521
+ """
1522
+ ...
1523
+
1524
+ def type_recast(self):
1525
+ """ """
1526
+ ...
1527
+
1528
+ def values(self):
1529
+ """ """
1530
+ ...
1531
+
1532
+ class GPENCIL_UL_annotation_layer(bpy_types._GenericUI):
1533
+ """ """
1534
+
418
1535
  bl_rna: typing.Any
1536
+ """ """
1537
+
419
1538
  id_data: typing.Any
1539
+ """ """
1540
+
1541
+ def append(self, draw_func):
1542
+ """
1543
+
1544
+ :param draw_func:
1545
+ """
1546
+ ...
1547
+
1548
+ def as_pointer(self):
1549
+ """ """
1550
+ ...
1551
+
1552
+ def bl_rna_get_subclass(self):
1553
+ """ """
1554
+ ...
1555
+
1556
+ def bl_rna_get_subclass_py(self):
1557
+ """ """
1558
+ ...
420
1559
 
421
- def append(self, draw_func): ...
422
- def as_pointer(self): ...
423
- def bl_rna_get_subclass(self): ...
424
- def bl_rna_get_subclass_py(self): ...
425
1560
  def draw_item(
426
1561
  self,
427
1562
  _context,
@@ -432,40 +1567,150 @@ class GPENCIL_UL_annotation_layer(bpy_types.UIList, bpy_types._GenericUI):
432
1567
  _active_data,
433
1568
  _active_propname,
434
1569
  _index,
435
- ): ...
436
- def driver_add(self): ...
437
- def driver_remove(self): ...
438
- def get(self): ...
439
- def id_properties_clear(self): ...
440
- def id_properties_ensure(self): ...
441
- def id_properties_ui(self): ...
442
- def is_extended(self): ...
443
- def is_property_hidden(self): ...
444
- def is_property_overridable_library(self): ...
445
- def is_property_readonly(self): ...
446
- def is_property_set(self): ...
447
- def items(self): ...
448
- def keyframe_delete(self): ...
449
- def keyframe_insert(self): ...
450
- def keys(self): ...
451
- def path_from_id(self): ...
452
- def path_resolve(self): ...
453
- def pop(self): ...
454
- def prepend(self, draw_func): ...
455
- def property_overridable_library_set(self): ...
456
- def property_unset(self): ...
457
- def remove(self, draw_func): ...
458
- def type_recast(self): ...
459
- def values(self): ...
460
-
461
- class GPENCIL_UL_layer(bpy_types.UIList, bpy_types._GenericUI):
1570
+ ):
1571
+ """
1572
+
1573
+ :param _context:
1574
+ :param layout:
1575
+ :param _data:
1576
+ :param item:
1577
+ :param icon:
1578
+ :param _active_data:
1579
+ :param _active_propname:
1580
+ :param _index:
1581
+ """
1582
+ ...
1583
+
1584
+ def driver_add(self):
1585
+ """ """
1586
+ ...
1587
+
1588
+ def driver_remove(self):
1589
+ """ """
1590
+ ...
1591
+
1592
+ def get(self):
1593
+ """ """
1594
+ ...
1595
+
1596
+ def id_properties_clear(self):
1597
+ """ """
1598
+ ...
1599
+
1600
+ def id_properties_ensure(self):
1601
+ """ """
1602
+ ...
1603
+
1604
+ def id_properties_ui(self):
1605
+ """ """
1606
+ ...
1607
+
1608
+ def is_extended(self):
1609
+ """ """
1610
+ ...
1611
+
1612
+ def is_property_hidden(self):
1613
+ """ """
1614
+ ...
1615
+
1616
+ def is_property_overridable_library(self):
1617
+ """ """
1618
+ ...
1619
+
1620
+ def is_property_readonly(self):
1621
+ """ """
1622
+ ...
1623
+
1624
+ def is_property_set(self):
1625
+ """ """
1626
+ ...
1627
+
1628
+ def items(self):
1629
+ """ """
1630
+ ...
1631
+
1632
+ def keyframe_delete(self):
1633
+ """ """
1634
+ ...
1635
+
1636
+ def keyframe_insert(self):
1637
+ """ """
1638
+ ...
1639
+
1640
+ def keys(self):
1641
+ """ """
1642
+ ...
1643
+
1644
+ def path_from_id(self):
1645
+ """ """
1646
+ ...
1647
+
1648
+ def path_resolve(self):
1649
+ """ """
1650
+ ...
1651
+
1652
+ def pop(self):
1653
+ """ """
1654
+ ...
1655
+
1656
+ def prepend(self, draw_func):
1657
+ """
1658
+
1659
+ :param draw_func:
1660
+ """
1661
+ ...
1662
+
1663
+ def property_overridable_library_set(self):
1664
+ """ """
1665
+ ...
1666
+
1667
+ def property_unset(self):
1668
+ """ """
1669
+ ...
1670
+
1671
+ def remove(self, draw_func):
1672
+ """
1673
+
1674
+ :param draw_func:
1675
+ """
1676
+ ...
1677
+
1678
+ def type_recast(self):
1679
+ """ """
1680
+ ...
1681
+
1682
+ def values(self):
1683
+ """ """
1684
+ ...
1685
+
1686
+ class GPENCIL_UL_layer(bpy_types._GenericUI):
1687
+ """ """
1688
+
462
1689
  bl_rna: typing.Any
1690
+ """ """
1691
+
463
1692
  id_data: typing.Any
1693
+ """ """
1694
+
1695
+ def append(self, draw_func):
1696
+ """
1697
+
1698
+ :param draw_func:
1699
+ """
1700
+ ...
1701
+
1702
+ def as_pointer(self):
1703
+ """ """
1704
+ ...
1705
+
1706
+ def bl_rna_get_subclass(self):
1707
+ """ """
1708
+ ...
1709
+
1710
+ def bl_rna_get_subclass_py(self):
1711
+ """ """
1712
+ ...
464
1713
 
465
- def append(self, draw_func): ...
466
- def as_pointer(self): ...
467
- def bl_rna_get_subclass(self): ...
468
- def bl_rna_get_subclass_py(self): ...
469
1714
  def draw_item(
470
1715
  self,
471
1716
  _context,
@@ -476,40 +1721,150 @@ class GPENCIL_UL_layer(bpy_types.UIList, bpy_types._GenericUI):
476
1721
  _active_data,
477
1722
  _active_propname,
478
1723
  _index,
479
- ): ...
480
- def driver_add(self): ...
481
- def driver_remove(self): ...
482
- def get(self): ...
483
- def id_properties_clear(self): ...
484
- def id_properties_ensure(self): ...
485
- def id_properties_ui(self): ...
486
- def is_extended(self): ...
487
- def is_property_hidden(self): ...
488
- def is_property_overridable_library(self): ...
489
- def is_property_readonly(self): ...
490
- def is_property_set(self): ...
491
- def items(self): ...
492
- def keyframe_delete(self): ...
493
- def keyframe_insert(self): ...
494
- def keys(self): ...
495
- def path_from_id(self): ...
496
- def path_resolve(self): ...
497
- def pop(self): ...
498
- def prepend(self, draw_func): ...
499
- def property_overridable_library_set(self): ...
500
- def property_unset(self): ...
501
- def remove(self, draw_func): ...
502
- def type_recast(self): ...
503
- def values(self): ...
504
-
505
- class GPENCIL_UL_masks(bpy_types.UIList, bpy_types._GenericUI):
1724
+ ):
1725
+ """
1726
+
1727
+ :param _context:
1728
+ :param layout:
1729
+ :param _data:
1730
+ :param item:
1731
+ :param icon:
1732
+ :param _active_data:
1733
+ :param _active_propname:
1734
+ :param _index:
1735
+ """
1736
+ ...
1737
+
1738
+ def driver_add(self):
1739
+ """ """
1740
+ ...
1741
+
1742
+ def driver_remove(self):
1743
+ """ """
1744
+ ...
1745
+
1746
+ def get(self):
1747
+ """ """
1748
+ ...
1749
+
1750
+ def id_properties_clear(self):
1751
+ """ """
1752
+ ...
1753
+
1754
+ def id_properties_ensure(self):
1755
+ """ """
1756
+ ...
1757
+
1758
+ def id_properties_ui(self):
1759
+ """ """
1760
+ ...
1761
+
1762
+ def is_extended(self):
1763
+ """ """
1764
+ ...
1765
+
1766
+ def is_property_hidden(self):
1767
+ """ """
1768
+ ...
1769
+
1770
+ def is_property_overridable_library(self):
1771
+ """ """
1772
+ ...
1773
+
1774
+ def is_property_readonly(self):
1775
+ """ """
1776
+ ...
1777
+
1778
+ def is_property_set(self):
1779
+ """ """
1780
+ ...
1781
+
1782
+ def items(self):
1783
+ """ """
1784
+ ...
1785
+
1786
+ def keyframe_delete(self):
1787
+ """ """
1788
+ ...
1789
+
1790
+ def keyframe_insert(self):
1791
+ """ """
1792
+ ...
1793
+
1794
+ def keys(self):
1795
+ """ """
1796
+ ...
1797
+
1798
+ def path_from_id(self):
1799
+ """ """
1800
+ ...
1801
+
1802
+ def path_resolve(self):
1803
+ """ """
1804
+ ...
1805
+
1806
+ def pop(self):
1807
+ """ """
1808
+ ...
1809
+
1810
+ def prepend(self, draw_func):
1811
+ """
1812
+
1813
+ :param draw_func:
1814
+ """
1815
+ ...
1816
+
1817
+ def property_overridable_library_set(self):
1818
+ """ """
1819
+ ...
1820
+
1821
+ def property_unset(self):
1822
+ """ """
1823
+ ...
1824
+
1825
+ def remove(self, draw_func):
1826
+ """
1827
+
1828
+ :param draw_func:
1829
+ """
1830
+ ...
1831
+
1832
+ def type_recast(self):
1833
+ """ """
1834
+ ...
1835
+
1836
+ def values(self):
1837
+ """ """
1838
+ ...
1839
+
1840
+ class GPENCIL_UL_masks(bpy_types._GenericUI):
1841
+ """ """
1842
+
506
1843
  bl_rna: typing.Any
1844
+ """ """
1845
+
507
1846
  id_data: typing.Any
1847
+ """ """
1848
+
1849
+ def append(self, draw_func):
1850
+ """
1851
+
1852
+ :param draw_func:
1853
+ """
1854
+ ...
1855
+
1856
+ def as_pointer(self):
1857
+ """ """
1858
+ ...
1859
+
1860
+ def bl_rna_get_subclass(self):
1861
+ """ """
1862
+ ...
1863
+
1864
+ def bl_rna_get_subclass_py(self):
1865
+ """ """
1866
+ ...
508
1867
 
509
- def append(self, draw_func): ...
510
- def as_pointer(self): ...
511
- def bl_rna_get_subclass(self): ...
512
- def bl_rna_get_subclass_py(self): ...
513
1868
  def draw_item(
514
1869
  self,
515
1870
  _context,
@@ -520,60 +1875,239 @@ class GPENCIL_UL_masks(bpy_types.UIList, bpy_types._GenericUI):
520
1875
  _active_data,
521
1876
  _active_propname,
522
1877
  _index,
523
- ): ...
524
- def driver_add(self): ...
525
- def driver_remove(self): ...
526
- def get(self): ...
527
- def id_properties_clear(self): ...
528
- def id_properties_ensure(self): ...
529
- def id_properties_ui(self): ...
530
- def is_extended(self): ...
531
- def is_property_hidden(self): ...
532
- def is_property_overridable_library(self): ...
533
- def is_property_readonly(self): ...
534
- def is_property_set(self): ...
535
- def items(self): ...
536
- def keyframe_delete(self): ...
537
- def keyframe_insert(self): ...
538
- def keys(self): ...
539
- def path_from_id(self): ...
540
- def path_resolve(self): ...
541
- def pop(self): ...
542
- def prepend(self, draw_func): ...
543
- def property_overridable_library_set(self): ...
544
- def property_unset(self): ...
545
- def remove(self, draw_func): ...
546
- def type_recast(self): ...
547
- def values(self): ...
548
-
549
- class GREASE_PENCIL_MT_layer_active(bpy_types.Menu, bpy_types._GenericUI):
1878
+ ):
1879
+ """
1880
+
1881
+ :param _context:
1882
+ :param layout:
1883
+ :param _data:
1884
+ :param item:
1885
+ :param icon:
1886
+ :param _active_data:
1887
+ :param _active_propname:
1888
+ :param _index:
1889
+ """
1890
+ ...
1891
+
1892
+ def driver_add(self):
1893
+ """ """
1894
+ ...
1895
+
1896
+ def driver_remove(self):
1897
+ """ """
1898
+ ...
1899
+
1900
+ def get(self):
1901
+ """ """
1902
+ ...
1903
+
1904
+ def id_properties_clear(self):
1905
+ """ """
1906
+ ...
1907
+
1908
+ def id_properties_ensure(self):
1909
+ """ """
1910
+ ...
1911
+
1912
+ def id_properties_ui(self):
1913
+ """ """
1914
+ ...
1915
+
1916
+ def is_extended(self):
1917
+ """ """
1918
+ ...
1919
+
1920
+ def is_property_hidden(self):
1921
+ """ """
1922
+ ...
1923
+
1924
+ def is_property_overridable_library(self):
1925
+ """ """
1926
+ ...
1927
+
1928
+ def is_property_readonly(self):
1929
+ """ """
1930
+ ...
1931
+
1932
+ def is_property_set(self):
1933
+ """ """
1934
+ ...
1935
+
1936
+ def items(self):
1937
+ """ """
1938
+ ...
1939
+
1940
+ def keyframe_delete(self):
1941
+ """ """
1942
+ ...
1943
+
1944
+ def keyframe_insert(self):
1945
+ """ """
1946
+ ...
1947
+
1948
+ def keys(self):
1949
+ """ """
1950
+ ...
1951
+
1952
+ def path_from_id(self):
1953
+ """ """
1954
+ ...
1955
+
1956
+ def path_resolve(self):
1957
+ """ """
1958
+ ...
1959
+
1960
+ def pop(self):
1961
+ """ """
1962
+ ...
1963
+
1964
+ def prepend(self, draw_func):
1965
+ """
1966
+
1967
+ :param draw_func:
1968
+ """
1969
+ ...
1970
+
1971
+ def property_overridable_library_set(self):
1972
+ """ """
1973
+ ...
1974
+
1975
+ def property_unset(self):
1976
+ """ """
1977
+ ...
1978
+
1979
+ def remove(self, draw_func):
1980
+ """
1981
+
1982
+ :param draw_func:
1983
+ """
1984
+ ...
1985
+
1986
+ def type_recast(self):
1987
+ """ """
1988
+ ...
1989
+
1990
+ def values(self):
1991
+ """ """
1992
+ ...
1993
+
1994
+ class GREASE_PENCIL_MT_layer_active(bpy_types._GenericUI):
1995
+ """ """
1996
+
550
1997
  bl_label: typing.Any
1998
+ """ """
1999
+
551
2000
  bl_rna: typing.Any
2001
+ """ """
2002
+
552
2003
  id_data: typing.Any
2004
+ """ """
2005
+
2006
+ def append(self, draw_func):
2007
+ """
2008
+
2009
+ :param draw_func:
2010
+ """
2011
+ ...
2012
+
2013
+ def as_pointer(self):
2014
+ """ """
2015
+ ...
2016
+
2017
+ def bl_rna_get_subclass(self):
2018
+ """ """
2019
+ ...
2020
+
2021
+ def bl_rna_get_subclass_py(self):
2022
+ """ """
2023
+ ...
2024
+
2025
+ def draw(self, context):
2026
+ """
2027
+
2028
+ :param context:
2029
+ """
2030
+ ...
2031
+
2032
+ def draw_collapsible(self, context, layout):
2033
+ """
2034
+
2035
+ :param context:
2036
+ :param layout:
2037
+ """
2038
+ ...
2039
+
2040
+ def draw_preset(self, _context):
2041
+ """
2042
+
2043
+ :param _context:
2044
+ """
2045
+ ...
2046
+
2047
+ def driver_add(self):
2048
+ """ """
2049
+ ...
2050
+
2051
+ def driver_remove(self):
2052
+ """ """
2053
+ ...
2054
+
2055
+ def get(self):
2056
+ """ """
2057
+ ...
2058
+
2059
+ def id_properties_clear(self):
2060
+ """ """
2061
+ ...
2062
+
2063
+ def id_properties_ensure(self):
2064
+ """ """
2065
+ ...
2066
+
2067
+ def id_properties_ui(self):
2068
+ """ """
2069
+ ...
2070
+
2071
+ def is_extended(self):
2072
+ """ """
2073
+ ...
2074
+
2075
+ def is_property_hidden(self):
2076
+ """ """
2077
+ ...
2078
+
2079
+ def is_property_overridable_library(self):
2080
+ """ """
2081
+ ...
2082
+
2083
+ def is_property_readonly(self):
2084
+ """ """
2085
+ ...
2086
+
2087
+ def is_property_set(self):
2088
+ """ """
2089
+ ...
2090
+
2091
+ def items(self):
2092
+ """ """
2093
+ ...
2094
+
2095
+ def keyframe_delete(self):
2096
+ """ """
2097
+ ...
2098
+
2099
+ def keyframe_insert(self):
2100
+ """ """
2101
+ ...
2102
+
2103
+ def keys(self):
2104
+ """ """
2105
+ ...
2106
+
2107
+ def path_from_id(self):
2108
+ """ """
2109
+ ...
553
2110
 
554
- def append(self, draw_func): ...
555
- def as_pointer(self): ...
556
- def bl_rna_get_subclass(self): ...
557
- def bl_rna_get_subclass_py(self): ...
558
- def draw(self, context): ...
559
- def draw_collapsible(self, context, layout): ...
560
- def draw_preset(self, _context): ...
561
- def driver_add(self): ...
562
- def driver_remove(self): ...
563
- def get(self): ...
564
- def id_properties_clear(self): ...
565
- def id_properties_ensure(self): ...
566
- def id_properties_ui(self): ...
567
- def is_extended(self): ...
568
- def is_property_hidden(self): ...
569
- def is_property_overridable_library(self): ...
570
- def is_property_readonly(self): ...
571
- def is_property_set(self): ...
572
- def items(self): ...
573
- def keyframe_delete(self): ...
574
- def keyframe_insert(self): ...
575
- def keys(self): ...
576
- def path_from_id(self): ...
577
2111
  def path_menu(
578
2112
  self,
579
2113
  searchpaths,
@@ -584,44 +2118,175 @@ class GREASE_PENCIL_MT_layer_active(bpy_types.Menu, bpy_types._GenericUI):
584
2118
  filter_path,
585
2119
  display_name,
586
2120
  add_operator,
587
- ): ...
588
- def path_resolve(self): ...
589
- def pop(self): ...
590
- def prepend(self, draw_func): ...
591
- def property_overridable_library_set(self): ...
592
- def property_unset(self): ...
593
- def remove(self, draw_func): ...
594
- def type_recast(self): ...
595
- def values(self): ...
596
-
597
- class GREASE_PENCIL_MT_move_to_layer(bpy_types.Menu, bpy_types._GenericUI):
2121
+ ):
2122
+ """
2123
+
2124
+ :param searchpaths:
2125
+ :param operator:
2126
+ :param props_default:
2127
+ :param prop_filepath:
2128
+ :param filter_ext:
2129
+ :param filter_path:
2130
+ :param display_name:
2131
+ :param add_operator:
2132
+ """
2133
+ ...
2134
+
2135
+ def path_resolve(self):
2136
+ """ """
2137
+ ...
2138
+
2139
+ def pop(self):
2140
+ """ """
2141
+ ...
2142
+
2143
+ def prepend(self, draw_func):
2144
+ """
2145
+
2146
+ :param draw_func:
2147
+ """
2148
+ ...
2149
+
2150
+ def property_overridable_library_set(self):
2151
+ """ """
2152
+ ...
2153
+
2154
+ def property_unset(self):
2155
+ """ """
2156
+ ...
2157
+
2158
+ def remove(self, draw_func):
2159
+ """
2160
+
2161
+ :param draw_func:
2162
+ """
2163
+ ...
2164
+
2165
+ def type_recast(self):
2166
+ """ """
2167
+ ...
2168
+
2169
+ def values(self):
2170
+ """ """
2171
+ ...
2172
+
2173
+ class GREASE_PENCIL_MT_move_to_layer(bpy_types._GenericUI):
2174
+ """ """
2175
+
598
2176
  bl_label: typing.Any
2177
+ """ """
2178
+
599
2179
  bl_rna: typing.Any
2180
+ """ """
2181
+
600
2182
  id_data: typing.Any
2183
+ """ """
2184
+
2185
+ def append(self, draw_func):
2186
+ """
2187
+
2188
+ :param draw_func:
2189
+ """
2190
+ ...
2191
+
2192
+ def as_pointer(self):
2193
+ """ """
2194
+ ...
2195
+
2196
+ def bl_rna_get_subclass(self):
2197
+ """ """
2198
+ ...
2199
+
2200
+ def bl_rna_get_subclass_py(self):
2201
+ """ """
2202
+ ...
2203
+
2204
+ def draw(self, context):
2205
+ """
2206
+
2207
+ :param context:
2208
+ """
2209
+ ...
2210
+
2211
+ def draw_collapsible(self, context, layout):
2212
+ """
2213
+
2214
+ :param context:
2215
+ :param layout:
2216
+ """
2217
+ ...
2218
+
2219
+ def draw_preset(self, _context):
2220
+ """
2221
+
2222
+ :param _context:
2223
+ """
2224
+ ...
2225
+
2226
+ def driver_add(self):
2227
+ """ """
2228
+ ...
2229
+
2230
+ def driver_remove(self):
2231
+ """ """
2232
+ ...
2233
+
2234
+ def get(self):
2235
+ """ """
2236
+ ...
2237
+
2238
+ def id_properties_clear(self):
2239
+ """ """
2240
+ ...
2241
+
2242
+ def id_properties_ensure(self):
2243
+ """ """
2244
+ ...
2245
+
2246
+ def id_properties_ui(self):
2247
+ """ """
2248
+ ...
2249
+
2250
+ def is_extended(self):
2251
+ """ """
2252
+ ...
2253
+
2254
+ def is_property_hidden(self):
2255
+ """ """
2256
+ ...
2257
+
2258
+ def is_property_overridable_library(self):
2259
+ """ """
2260
+ ...
2261
+
2262
+ def is_property_readonly(self):
2263
+ """ """
2264
+ ...
2265
+
2266
+ def is_property_set(self):
2267
+ """ """
2268
+ ...
2269
+
2270
+ def items(self):
2271
+ """ """
2272
+ ...
2273
+
2274
+ def keyframe_delete(self):
2275
+ """ """
2276
+ ...
2277
+
2278
+ def keyframe_insert(self):
2279
+ """ """
2280
+ ...
2281
+
2282
+ def keys(self):
2283
+ """ """
2284
+ ...
2285
+
2286
+ def path_from_id(self):
2287
+ """ """
2288
+ ...
601
2289
 
602
- def append(self, draw_func): ...
603
- def as_pointer(self): ...
604
- def bl_rna_get_subclass(self): ...
605
- def bl_rna_get_subclass_py(self): ...
606
- def draw(self, context): ...
607
- def draw_collapsible(self, context, layout): ...
608
- def draw_preset(self, _context): ...
609
- def driver_add(self): ...
610
- def driver_remove(self): ...
611
- def get(self): ...
612
- def id_properties_clear(self): ...
613
- def id_properties_ensure(self): ...
614
- def id_properties_ui(self): ...
615
- def is_extended(self): ...
616
- def is_property_hidden(self): ...
617
- def is_property_overridable_library(self): ...
618
- def is_property_readonly(self): ...
619
- def is_property_set(self): ...
620
- def items(self): ...
621
- def keyframe_delete(self): ...
622
- def keyframe_insert(self): ...
623
- def keys(self): ...
624
- def path_from_id(self): ...
625
2290
  def path_menu(
626
2291
  self,
627
2292
  searchpaths,
@@ -632,90 +2297,340 @@ class GREASE_PENCIL_MT_move_to_layer(bpy_types.Menu, bpy_types._GenericUI):
632
2297
  filter_path,
633
2298
  display_name,
634
2299
  add_operator,
635
- ): ...
636
- def path_resolve(self): ...
637
- def pop(self): ...
638
- def prepend(self, draw_func): ...
639
- def property_overridable_library_set(self): ...
640
- def property_unset(self): ...
641
- def remove(self, draw_func): ...
642
- def type_recast(self): ...
643
- def values(self): ...
2300
+ ):
2301
+ """
2302
+
2303
+ :param searchpaths:
2304
+ :param operator:
2305
+ :param props_default:
2306
+ :param prop_filepath:
2307
+ :param filter_ext:
2308
+ :param filter_path:
2309
+ :param display_name:
2310
+ :param add_operator:
2311
+ """
2312
+ ...
2313
+
2314
+ def path_resolve(self):
2315
+ """ """
2316
+ ...
2317
+
2318
+ def pop(self):
2319
+ """ """
2320
+ ...
2321
+
2322
+ def prepend(self, draw_func):
2323
+ """
2324
+
2325
+ :param draw_func:
2326
+ """
2327
+ ...
2328
+
2329
+ def property_overridable_library_set(self):
2330
+ """ """
2331
+ ...
2332
+
2333
+ def property_unset(self):
2334
+ """ """
2335
+ ...
2336
+
2337
+ def remove(self, draw_func):
2338
+ """
2339
+
2340
+ :param draw_func:
2341
+ """
2342
+ ...
2343
+
2344
+ def type_recast(self):
2345
+ """ """
2346
+ ...
2347
+
2348
+ def values(self):
2349
+ """ """
2350
+ ...
644
2351
 
645
2352
  class GreasePencilBrushFalloff:
2353
+ """ """
2354
+
646
2355
  bl_label: typing.Any
2356
+ """ """
2357
+
647
2358
  bl_options: typing.Any
2359
+ """ """
648
2360
 
649
- def draw(self, context): ...
2361
+ def draw(self, context):
2362
+ """
2363
+
2364
+ :param context:
2365
+ """
2366
+ ...
650
2367
 
651
2368
  class GreasePencilDisplayPanel:
2369
+ """ """
2370
+
652
2371
  bl_label: typing.Any
2372
+ """ """
2373
+
653
2374
  bl_options: typing.Any
2375
+ """ """
2376
+
2377
+ def draw(self, context):
2378
+ """
2379
+
2380
+ :param context:
2381
+ """
2382
+ ...
2383
+
2384
+ def draw_header(self, context):
2385
+ """
2386
+
2387
+ :param context:
2388
+ """
2389
+ ...
2390
+
2391
+ def poll(self, context):
2392
+ """
654
2393
 
655
- def draw(self, context): ...
656
- def draw_header(self, context): ...
657
- def poll(self, context): ...
2394
+ :param context:
2395
+ """
2396
+ ...
658
2397
 
659
2398
  class GreasePencilFlipTintColors(bpy_types.Operator):
2399
+ """ """
2400
+
660
2401
  bl_idname: typing.Any
2402
+ """ """
2403
+
661
2404
  bl_label: typing.Any
2405
+ """ """
2406
+
662
2407
  bl_rna: typing.Any
2408
+ """ """
2409
+
663
2410
  id_data: typing.Any
2411
+ """ """
2412
+
2413
+ def as_keywords(self, ignore):
2414
+ """
2415
+
2416
+ :param ignore:
2417
+ """
2418
+ ...
2419
+
2420
+ def as_pointer(self):
2421
+ """ """
2422
+ ...
2423
+
2424
+ def bl_rna_get_subclass(self):
2425
+ """ """
2426
+ ...
2427
+
2428
+ def bl_rna_get_subclass_py(self):
2429
+ """ """
2430
+ ...
2431
+
2432
+ def driver_add(self):
2433
+ """ """
2434
+ ...
2435
+
2436
+ def driver_remove(self):
2437
+ """ """
2438
+ ...
2439
+
2440
+ def execute(self, context):
2441
+ """
2442
+
2443
+ :param context:
2444
+ """
2445
+ ...
2446
+
2447
+ def get(self):
2448
+ """ """
2449
+ ...
2450
+
2451
+ def id_properties_clear(self):
2452
+ """ """
2453
+ ...
2454
+
2455
+ def id_properties_ensure(self):
2456
+ """ """
2457
+ ...
2458
+
2459
+ def id_properties_ui(self):
2460
+ """ """
2461
+ ...
2462
+
2463
+ def is_property_hidden(self):
2464
+ """ """
2465
+ ...
2466
+
2467
+ def is_property_overridable_library(self):
2468
+ """ """
2469
+ ...
2470
+
2471
+ def is_property_readonly(self):
2472
+ """ """
2473
+ ...
2474
+
2475
+ def is_property_set(self):
2476
+ """ """
2477
+ ...
2478
+
2479
+ def items(self):
2480
+ """ """
2481
+ ...
2482
+
2483
+ def keyframe_delete(self):
2484
+ """ """
2485
+ ...
2486
+
2487
+ def keyframe_insert(self):
2488
+ """ """
2489
+ ...
664
2490
 
665
- def as_keywords(self, ignore): ...
666
- def as_pointer(self): ...
667
- def bl_rna_get_subclass(self): ...
668
- def bl_rna_get_subclass_py(self): ...
669
- def driver_add(self): ...
670
- def driver_remove(self): ...
671
- def execute(self, context): ...
672
- def get(self): ...
673
- def id_properties_clear(self): ...
674
- def id_properties_ensure(self): ...
675
- def id_properties_ui(self): ...
676
- def is_property_hidden(self): ...
677
- def is_property_overridable_library(self): ...
678
- def is_property_readonly(self): ...
679
- def is_property_set(self): ...
680
- def items(self): ...
681
- def keyframe_delete(self): ...
682
- def keyframe_insert(self): ...
683
- def keys(self): ...
684
- def path_from_id(self): ...
685
- def path_resolve(self): ...
686
- def poll(self, context): ...
687
- def poll_message_set(self): ...
688
- def pop(self): ...
689
- def property_overridable_library_set(self): ...
690
- def property_unset(self): ...
691
- def type_recast(self): ...
692
- def values(self): ...
2491
+ def keys(self):
2492
+ """ """
2493
+ ...
2494
+
2495
+ def path_from_id(self):
2496
+ """ """
2497
+ ...
2498
+
2499
+ def path_resolve(self):
2500
+ """ """
2501
+ ...
2502
+
2503
+ def poll(self, context):
2504
+ """
2505
+
2506
+ :param context:
2507
+ """
2508
+ ...
2509
+
2510
+ def poll_message_set(self):
2511
+ """ """
2512
+ ...
2513
+
2514
+ def pop(self):
2515
+ """ """
2516
+ ...
2517
+
2518
+ def property_overridable_library_set(self):
2519
+ """ """
2520
+ ...
2521
+
2522
+ def property_unset(self):
2523
+ """ """
2524
+ ...
2525
+
2526
+ def type_recast(self):
2527
+ """ """
2528
+ ...
2529
+
2530
+ def values(self):
2531
+ """ """
2532
+ ...
693
2533
 
694
2534
  class GreasePencilLayerAdjustmentsPanel:
695
- def draw(self, context): ...
2535
+ """ """
2536
+
2537
+ def draw(self, context):
2538
+ """
2539
+
2540
+ :param context:
2541
+ """
2542
+ ...
696
2543
 
697
2544
  class GreasePencilLayerDisplayPanel:
698
- def draw(self, context): ...
2545
+ """ """
2546
+
2547
+ def draw(self, context):
2548
+ """
2549
+
2550
+ :param context:
2551
+ """
2552
+ ...
699
2553
 
700
2554
  class GreasePencilLayerMasksPanel:
701
- def draw(self, context): ...
702
- def draw_header(self, context): ...
2555
+ """ """
2556
+
2557
+ def draw(self, context):
2558
+ """
2559
+
2560
+ :param context:
2561
+ """
2562
+ ...
2563
+
2564
+ def draw_header(self, context):
2565
+ """
2566
+
2567
+ :param context:
2568
+ """
2569
+ ...
703
2570
 
704
2571
  class GreasePencilLayerRelationsPanel:
705
- def draw(self, context): ...
2572
+ """ """
2573
+
2574
+ def draw(self, context):
2575
+ """
2576
+
2577
+ :param context:
2578
+ """
2579
+ ...
706
2580
 
707
2581
  class GreasePencilLayerTransformPanel:
708
- def draw(self, context): ...
2582
+ """ """
2583
+
2584
+ def draw(self, context):
2585
+ """
2586
+
2587
+ :param context:
2588
+ """
2589
+ ...
709
2590
 
710
2591
  class GreasePencilMaterialsPanel:
711
- def draw(self, context): ...
2592
+ """ """
2593
+
2594
+ def draw(self, context):
2595
+ """
2596
+
2597
+ :param context:
2598
+ """
2599
+ ...
712
2600
 
713
2601
  class GreasePencilSculptAdvancedPanel:
714
- def draw(self, context): ...
2602
+ """ """
2603
+
2604
+ def draw(self, context):
2605
+ """
2606
+
2607
+ :param context:
2608
+ """
2609
+ ...
715
2610
 
716
2611
  class GreasePencilSimplifyPanel:
717
- def draw(self, context): ...
718
- def draw_header(self, context): ...
2612
+ """ """
2613
+
2614
+ def draw(self, context):
2615
+ """
2616
+
2617
+ :param context:
2618
+ """
2619
+ ...
2620
+
2621
+ def draw_header(self, context):
2622
+ """
2623
+
2624
+ :param context:
2625
+ """
2626
+ ...
719
2627
 
720
2628
  class GreasePencilVertexcolorPanel:
721
- def draw(self, context): ...
2629
+ """ """
2630
+
2631
+ def draw(self, context):
2632
+ """
2633
+
2634
+ :param context:
2635
+ """
2636
+ ...