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
@@ -4,58 +4,209 @@ import bpy_types
4
4
  GenericType = typing.TypeVar("GenericType")
5
5
 
6
6
  class AnnotationDataPanel:
7
+ """ """
8
+
7
9
  bl_label: typing.Any
10
+ """ """
11
+
8
12
  bl_options: typing.Any
13
+ """ """
14
+
9
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
+ """
10
27
 
11
- def draw(self, context): ...
12
- def draw_header(self, context): ...
13
- 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
+ ...
14
40
 
15
41
  class AnnotationDrawingToolsPanel:
42
+ """ """
43
+
16
44
  bl_category: typing.Any
45
+ """ """
46
+
17
47
  bl_label: typing.Any
48
+ """ """
49
+
18
50
  bl_region_type: typing.Any
51
+ """ """
52
+
53
+ def draw(self, context):
54
+ """
19
55
 
20
- def draw(self, context): ...
56
+ :param context:
57
+ """
58
+ ...
21
59
 
22
60
  class AnnotationOnionSkin:
61
+ """ """
62
+
23
63
  bl_label: typing.Any
64
+ """ """
65
+
24
66
  bl_options: typing.Any
67
+ """ """
68
+
25
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
+ """
26
81
 
27
- def draw(self, context): ...
28
- def draw_header(self, context): ...
29
- 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
+ """ """
30
95
 
31
- class GPENCIL_MT_cleanup(bpy_types.Menu, bpy_types._GenericUI):
32
96
  bl_label: typing.Any
97
+ """ """
98
+
33
99
  bl_rna: typing.Any
100
+ """ """
101
+
34
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
+ ...
35
209
 
36
- def append(self, draw_func): ...
37
- def as_pointer(self): ...
38
- def bl_rna_get_subclass(self): ...
39
- def bl_rna_get_subclass_py(self): ...
40
- def draw(self, context): ...
41
- def draw_collapsible(self, context, layout): ...
42
- def draw_preset(self, _context): ...
43
- def driver_add(self): ...
44
- def driver_remove(self): ...
45
- def get(self): ...
46
- def id_properties_clear(self): ...
47
- def id_properties_ensure(self): ...
48
- def id_properties_ui(self): ...
49
- def is_extended(self): ...
50
- def is_property_hidden(self): ...
51
- def is_property_overridable_library(self): ...
52
- def is_property_readonly(self): ...
53
- def is_property_set(self): ...
54
- def items(self): ...
55
- def keyframe_delete(self): ...
56
- def keyframe_insert(self): ...
57
- def keys(self): ...
58
- def path_from_id(self): ...
59
210
  def path_menu(
60
211
  self,
61
212
  searchpaths,
@@ -66,44 +217,175 @@ class GPENCIL_MT_cleanup(bpy_types.Menu, bpy_types._GenericUI):
66
217
  filter_path,
67
218
  display_name,
68
219
  add_operator,
69
- ): ...
70
- def path_resolve(self): ...
71
- def pop(self): ...
72
- def prepend(self, draw_func): ...
73
- def property_overridable_library_set(self): ...
74
- def property_unset(self): ...
75
- def remove(self, draw_func): ...
76
- def type_recast(self): ...
77
- def values(self): ...
78
-
79
- 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
+
80
275
  bl_label: typing.Any
276
+ """ """
277
+
81
278
  bl_rna: typing.Any
279
+ """ """
280
+
82
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
+ ...
83
388
 
84
- def append(self, draw_func): ...
85
- def as_pointer(self): ...
86
- def bl_rna_get_subclass(self): ...
87
- def bl_rna_get_subclass_py(self): ...
88
- def draw(self, _context): ...
89
- def draw_collapsible(self, context, layout): ...
90
- def draw_preset(self, _context): ...
91
- def driver_add(self): ...
92
- def driver_remove(self): ...
93
- def get(self): ...
94
- def id_properties_clear(self): ...
95
- def id_properties_ensure(self): ...
96
- def id_properties_ui(self): ...
97
- def is_extended(self): ...
98
- def is_property_hidden(self): ...
99
- def is_property_overridable_library(self): ...
100
- def is_property_readonly(self): ...
101
- def is_property_set(self): ...
102
- def items(self): ...
103
- def keyframe_delete(self): ...
104
- def keyframe_insert(self): ...
105
- def keys(self): ...
106
- def path_from_id(self): ...
107
389
  def path_menu(
108
390
  self,
109
391
  searchpaths,
@@ -114,44 +396,175 @@ class GPENCIL_MT_gpencil_draw_delete(bpy_types.Menu, bpy_types._GenericUI):
114
396
  filter_path,
115
397
  display_name,
116
398
  add_operator,
117
- ): ...
118
- def path_resolve(self): ...
119
- def pop(self): ...
120
- def prepend(self, draw_func): ...
121
- def property_overridable_library_set(self): ...
122
- def property_unset(self): ...
123
- def remove(self, draw_func): ...
124
- def type_recast(self): ...
125
- def values(self): ...
126
-
127
- 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
+
128
454
  bl_label: typing.Any
455
+ """ """
456
+
129
457
  bl_rna: typing.Any
458
+ """ """
459
+
130
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
+ ...
131
567
 
132
- def append(self, draw_func): ...
133
- def as_pointer(self): ...
134
- def bl_rna_get_subclass(self): ...
135
- def bl_rna_get_subclass_py(self): ...
136
- def draw(self, context): ...
137
- def draw_collapsible(self, context, layout): ...
138
- def draw_preset(self, _context): ...
139
- def driver_add(self): ...
140
- def driver_remove(self): ...
141
- def get(self): ...
142
- def id_properties_clear(self): ...
143
- def id_properties_ensure(self): ...
144
- def id_properties_ui(self): ...
145
- def is_extended(self): ...
146
- def is_property_hidden(self): ...
147
- def is_property_overridable_library(self): ...
148
- def is_property_readonly(self): ...
149
- def is_property_set(self): ...
150
- def items(self): ...
151
- def keyframe_delete(self): ...
152
- def keyframe_insert(self): ...
153
- def keys(self): ...
154
- def path_from_id(self): ...
155
568
  def path_menu(
156
569
  self,
157
570
  searchpaths,
@@ -162,44 +575,175 @@ class GPENCIL_MT_layer_active(bpy_types.Menu, bpy_types._GenericUI):
162
575
  filter_path,
163
576
  display_name,
164
577
  add_operator,
165
- ): ...
166
- def path_resolve(self): ...
167
- def pop(self): ...
168
- def prepend(self, draw_func): ...
169
- def property_overridable_library_set(self): ...
170
- def property_unset(self): ...
171
- def remove(self, draw_func): ...
172
- def type_recast(self): ...
173
- def values(self): ...
174
-
175
- 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
+
176
633
  bl_label: typing.Any
634
+ """ """
635
+
177
636
  bl_rna: typing.Any
637
+ """ """
638
+
178
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
+ ...
179
746
 
180
- def append(self, draw_func): ...
181
- def as_pointer(self): ...
182
- def bl_rna_get_subclass(self): ...
183
- def bl_rna_get_subclass_py(self): ...
184
- def draw(self, context): ...
185
- def draw_collapsible(self, context, layout): ...
186
- def draw_preset(self, _context): ...
187
- def driver_add(self): ...
188
- def driver_remove(self): ...
189
- def get(self): ...
190
- def id_properties_clear(self): ...
191
- def id_properties_ensure(self): ...
192
- def id_properties_ui(self): ...
193
- def is_extended(self): ...
194
- def is_property_hidden(self): ...
195
- def is_property_overridable_library(self): ...
196
- def is_property_readonly(self): ...
197
- def is_property_set(self): ...
198
- def items(self): ...
199
- def keyframe_delete(self): ...
200
- def keyframe_insert(self): ...
201
- def keys(self): ...
202
- def path_from_id(self): ...
203
747
  def path_menu(
204
748
  self,
205
749
  searchpaths,
@@ -210,44 +754,175 @@ class GPENCIL_MT_layer_mask_menu(bpy_types.Menu, bpy_types._GenericUI):
210
754
  filter_path,
211
755
  display_name,
212
756
  add_operator,
213
- ): ...
214
- def path_resolve(self): ...
215
- def pop(self): ...
216
- def prepend(self, draw_func): ...
217
- def property_overridable_library_set(self): ...
218
- def property_unset(self): ...
219
- def remove(self, draw_func): ...
220
- def type_recast(self): ...
221
- def values(self): ...
222
-
223
- 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
+
224
812
  bl_label: typing.Any
813
+ """ """
814
+
225
815
  bl_rna: typing.Any
816
+ """ """
817
+
226
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
+ ...
227
925
 
228
- def append(self, draw_func): ...
229
- def as_pointer(self): ...
230
- def bl_rna_get_subclass(self): ...
231
- def bl_rna_get_subclass_py(self): ...
232
- def draw(self, context): ...
233
- def draw_collapsible(self, context, layout): ...
234
- def draw_preset(self, _context): ...
235
- def driver_add(self): ...
236
- def driver_remove(self): ...
237
- def get(self): ...
238
- def id_properties_clear(self): ...
239
- def id_properties_ensure(self): ...
240
- def id_properties_ui(self): ...
241
- def is_extended(self): ...
242
- def is_property_hidden(self): ...
243
- def is_property_overridable_library(self): ...
244
- def is_property_readonly(self): ...
245
- def is_property_set(self): ...
246
- def items(self): ...
247
- def keyframe_delete(self): ...
248
- def keyframe_insert(self): ...
249
- def keys(self): ...
250
- def path_from_id(self): ...
251
926
  def path_menu(
252
927
  self,
253
928
  searchpaths,
@@ -258,45 +933,182 @@ class GPENCIL_MT_material_active(bpy_types.Menu, bpy_types._GenericUI):
258
933
  filter_path,
259
934
  display_name,
260
935
  add_operator,
261
- ): ...
262
- def path_resolve(self): ...
263
- def poll(self, context): ...
264
- def pop(self): ...
265
- def prepend(self, draw_func): ...
266
- def property_overridable_library_set(self): ...
267
- def property_unset(self): ...
268
- def remove(self, draw_func): ...
269
- def type_recast(self): ...
270
- def values(self): ...
271
-
272
- 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
+
273
998
  bl_label: typing.Any
999
+ """ """
1000
+
274
1001
  bl_rna: typing.Any
1002
+ """ """
1003
+
275
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
+ ...
276
1111
 
277
- def append(self, draw_func): ...
278
- def as_pointer(self): ...
279
- def bl_rna_get_subclass(self): ...
280
- def bl_rna_get_subclass_py(self): ...
281
- def draw(self, context): ...
282
- def draw_collapsible(self, context, layout): ...
283
- def draw_preset(self, _context): ...
284
- def driver_add(self): ...
285
- def driver_remove(self): ...
286
- def get(self): ...
287
- def id_properties_clear(self): ...
288
- def id_properties_ensure(self): ...
289
- def id_properties_ui(self): ...
290
- def is_extended(self): ...
291
- def is_property_hidden(self): ...
292
- def is_property_overridable_library(self): ...
293
- def is_property_readonly(self): ...
294
- def is_property_set(self): ...
295
- def items(self): ...
296
- def keyframe_delete(self): ...
297
- def keyframe_insert(self): ...
298
- def keys(self): ...
299
- def path_from_id(self): ...
300
1112
  def path_menu(
301
1113
  self,
302
1114
  searchpaths,
@@ -307,44 +1119,175 @@ class GPENCIL_MT_move_to_layer(bpy_types.Menu, bpy_types._GenericUI):
307
1119
  filter_path,
308
1120
  display_name,
309
1121
  add_operator,
310
- ): ...
311
- def path_resolve(self): ...
312
- def pop(self): ...
313
- def prepend(self, draw_func): ...
314
- def property_overridable_library_set(self): ...
315
- def property_unset(self): ...
316
- def remove(self, draw_func): ...
317
- def type_recast(self): ...
318
- def values(self): ...
319
-
320
- 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
+
321
1177
  bl_label: typing.Any
1178
+ """ """
1179
+
322
1180
  bl_rna: typing.Any
1181
+ """ """
1182
+
323
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
+ ...
324
1290
 
325
- def append(self, draw_func): ...
326
- def as_pointer(self): ...
327
- def bl_rna_get_subclass(self): ...
328
- def bl_rna_get_subclass_py(self): ...
329
- def draw(self, _context): ...
330
- def draw_collapsible(self, context, layout): ...
331
- def draw_preset(self, _context): ...
332
- def driver_add(self): ...
333
- def driver_remove(self): ...
334
- def get(self): ...
335
- def id_properties_clear(self): ...
336
- def id_properties_ensure(self): ...
337
- def id_properties_ui(self): ...
338
- def is_extended(self): ...
339
- def is_property_hidden(self): ...
340
- def is_property_overridable_library(self): ...
341
- def is_property_readonly(self): ...
342
- def is_property_set(self): ...
343
- def items(self): ...
344
- def keyframe_delete(self): ...
345
- def keyframe_insert(self): ...
346
- def keys(self): ...
347
- def path_from_id(self): ...
348
1291
  def path_menu(
349
1292
  self,
350
1293
  searchpaths,
@@ -355,44 +1298,175 @@ class GPENCIL_MT_snap(bpy_types.Menu, bpy_types._GenericUI):
355
1298
  filter_path,
356
1299
  display_name,
357
1300
  add_operator,
358
- ): ...
359
- def path_resolve(self): ...
360
- def pop(self): ...
361
- def prepend(self, draw_func): ...
362
- def property_overridable_library_set(self): ...
363
- def property_unset(self): ...
364
- def remove(self, draw_func): ...
365
- def type_recast(self): ...
366
- def values(self): ...
367
-
368
- 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
+
369
1356
  bl_label: typing.Any
1357
+ """ """
1358
+
370
1359
  bl_rna: typing.Any
1360
+ """ """
1361
+
371
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
+ ...
372
1469
 
373
- def append(self, draw_func): ...
374
- def as_pointer(self): ...
375
- def bl_rna_get_subclass(self): ...
376
- def bl_rna_get_subclass_py(self): ...
377
- def draw(self, _context): ...
378
- def draw_collapsible(self, context, layout): ...
379
- def draw_preset(self, _context): ...
380
- def driver_add(self): ...
381
- def driver_remove(self): ...
382
- def get(self): ...
383
- def id_properties_clear(self): ...
384
- def id_properties_ensure(self): ...
385
- def id_properties_ui(self): ...
386
- def is_extended(self): ...
387
- def is_property_hidden(self): ...
388
- def is_property_overridable_library(self): ...
389
- def is_property_readonly(self): ...
390
- def is_property_set(self): ...
391
- def items(self): ...
392
- def keyframe_delete(self): ...
393
- def keyframe_insert(self): ...
394
- def keys(self): ...
395
- def path_from_id(self): ...
396
1470
  def path_menu(
397
1471
  self,
398
1472
  searchpaths,
@@ -403,24 +1477,86 @@ class GPENCIL_MT_snap_pie(bpy_types.Menu, bpy_types._GenericUI):
403
1477
  filter_path,
404
1478
  display_name,
405
1479
  add_operator,
406
- ): ...
407
- def path_resolve(self): ...
408
- def pop(self): ...
409
- def prepend(self, draw_func): ...
410
- def property_overridable_library_set(self): ...
411
- def property_unset(self): ...
412
- def remove(self, draw_func): ...
413
- def type_recast(self): ...
414
- def values(self): ...
415
-
416
- 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
+
417
1535
  bl_rna: typing.Any
1536
+ """ """
1537
+
418
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
+ ...
419
1559
 
420
- def append(self, draw_func): ...
421
- def as_pointer(self): ...
422
- def bl_rna_get_subclass(self): ...
423
- def bl_rna_get_subclass_py(self): ...
424
1560
  def draw_item(
425
1561
  self,
426
1562
  _context,
@@ -431,40 +1567,150 @@ class GPENCIL_UL_annotation_layer(bpy_types.UIList, bpy_types._GenericUI):
431
1567
  _active_data,
432
1568
  _active_propname,
433
1569
  _index,
434
- ): ...
435
- def driver_add(self): ...
436
- def driver_remove(self): ...
437
- def get(self): ...
438
- def id_properties_clear(self): ...
439
- def id_properties_ensure(self): ...
440
- def id_properties_ui(self): ...
441
- def is_extended(self): ...
442
- def is_property_hidden(self): ...
443
- def is_property_overridable_library(self): ...
444
- def is_property_readonly(self): ...
445
- def is_property_set(self): ...
446
- def items(self): ...
447
- def keyframe_delete(self): ...
448
- def keyframe_insert(self): ...
449
- def keys(self): ...
450
- def path_from_id(self): ...
451
- def path_resolve(self): ...
452
- def pop(self): ...
453
- def prepend(self, draw_func): ...
454
- def property_overridable_library_set(self): ...
455
- def property_unset(self): ...
456
- def remove(self, draw_func): ...
457
- def type_recast(self): ...
458
- def values(self): ...
459
-
460
- 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
+
461
1689
  bl_rna: typing.Any
1690
+ """ """
1691
+
462
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
+ ...
463
1713
 
464
- def append(self, draw_func): ...
465
- def as_pointer(self): ...
466
- def bl_rna_get_subclass(self): ...
467
- def bl_rna_get_subclass_py(self): ...
468
1714
  def draw_item(
469
1715
  self,
470
1716
  _context,
@@ -475,40 +1721,150 @@ class GPENCIL_UL_layer(bpy_types.UIList, bpy_types._GenericUI):
475
1721
  _active_data,
476
1722
  _active_propname,
477
1723
  _index,
478
- ): ...
479
- def driver_add(self): ...
480
- def driver_remove(self): ...
481
- def get(self): ...
482
- def id_properties_clear(self): ...
483
- def id_properties_ensure(self): ...
484
- def id_properties_ui(self): ...
485
- def is_extended(self): ...
486
- def is_property_hidden(self): ...
487
- def is_property_overridable_library(self): ...
488
- def is_property_readonly(self): ...
489
- def is_property_set(self): ...
490
- def items(self): ...
491
- def keyframe_delete(self): ...
492
- def keyframe_insert(self): ...
493
- def keys(self): ...
494
- def path_from_id(self): ...
495
- def path_resolve(self): ...
496
- def pop(self): ...
497
- def prepend(self, draw_func): ...
498
- def property_overridable_library_set(self): ...
499
- def property_unset(self): ...
500
- def remove(self, draw_func): ...
501
- def type_recast(self): ...
502
- def values(self): ...
503
-
504
- 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
+
505
1843
  bl_rna: typing.Any
1844
+ """ """
1845
+
506
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
+ ...
507
1867
 
508
- def append(self, draw_func): ...
509
- def as_pointer(self): ...
510
- def bl_rna_get_subclass(self): ...
511
- def bl_rna_get_subclass_py(self): ...
512
1868
  def draw_item(
513
1869
  self,
514
1870
  _context,
@@ -519,60 +1875,239 @@ class GPENCIL_UL_masks(bpy_types.UIList, bpy_types._GenericUI):
519
1875
  _active_data,
520
1876
  _active_propname,
521
1877
  _index,
522
- ): ...
523
- def driver_add(self): ...
524
- def driver_remove(self): ...
525
- def get(self): ...
526
- def id_properties_clear(self): ...
527
- def id_properties_ensure(self): ...
528
- def id_properties_ui(self): ...
529
- def is_extended(self): ...
530
- def is_property_hidden(self): ...
531
- def is_property_overridable_library(self): ...
532
- def is_property_readonly(self): ...
533
- def is_property_set(self): ...
534
- def items(self): ...
535
- def keyframe_delete(self): ...
536
- def keyframe_insert(self): ...
537
- def keys(self): ...
538
- def path_from_id(self): ...
539
- def path_resolve(self): ...
540
- def pop(self): ...
541
- def prepend(self, draw_func): ...
542
- def property_overridable_library_set(self): ...
543
- def property_unset(self): ...
544
- def remove(self, draw_func): ...
545
- def type_recast(self): ...
546
- def values(self): ...
547
-
548
- 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
+
549
1997
  bl_label: typing.Any
1998
+ """ """
1999
+
550
2000
  bl_rna: typing.Any
2001
+ """ """
2002
+
551
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
+ ...
552
2110
 
553
- def append(self, draw_func): ...
554
- def as_pointer(self): ...
555
- def bl_rna_get_subclass(self): ...
556
- def bl_rna_get_subclass_py(self): ...
557
- def draw(self, context): ...
558
- def draw_collapsible(self, context, layout): ...
559
- def draw_preset(self, _context): ...
560
- def driver_add(self): ...
561
- def driver_remove(self): ...
562
- def get(self): ...
563
- def id_properties_clear(self): ...
564
- def id_properties_ensure(self): ...
565
- def id_properties_ui(self): ...
566
- def is_extended(self): ...
567
- def is_property_hidden(self): ...
568
- def is_property_overridable_library(self): ...
569
- def is_property_readonly(self): ...
570
- def is_property_set(self): ...
571
- def items(self): ...
572
- def keyframe_delete(self): ...
573
- def keyframe_insert(self): ...
574
- def keys(self): ...
575
- def path_from_id(self): ...
576
2111
  def path_menu(
577
2112
  self,
578
2113
  searchpaths,
@@ -583,44 +2118,175 @@ class GREASE_PENCIL_MT_layer_active(bpy_types.Menu, bpy_types._GenericUI):
583
2118
  filter_path,
584
2119
  display_name,
585
2120
  add_operator,
586
- ): ...
587
- def path_resolve(self): ...
588
- def pop(self): ...
589
- def prepend(self, draw_func): ...
590
- def property_overridable_library_set(self): ...
591
- def property_unset(self): ...
592
- def remove(self, draw_func): ...
593
- def type_recast(self): ...
594
- def values(self): ...
595
-
596
- 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
+
597
2176
  bl_label: typing.Any
2177
+ """ """
2178
+
598
2179
  bl_rna: typing.Any
2180
+ """ """
2181
+
599
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
+ ...
600
2289
 
601
- def append(self, draw_func): ...
602
- def as_pointer(self): ...
603
- def bl_rna_get_subclass(self): ...
604
- def bl_rna_get_subclass_py(self): ...
605
- def draw(self, context): ...
606
- def draw_collapsible(self, context, layout): ...
607
- def draw_preset(self, _context): ...
608
- def driver_add(self): ...
609
- def driver_remove(self): ...
610
- def get(self): ...
611
- def id_properties_clear(self): ...
612
- def id_properties_ensure(self): ...
613
- def id_properties_ui(self): ...
614
- def is_extended(self): ...
615
- def is_property_hidden(self): ...
616
- def is_property_overridable_library(self): ...
617
- def is_property_readonly(self): ...
618
- def is_property_set(self): ...
619
- def items(self): ...
620
- def keyframe_delete(self): ...
621
- def keyframe_insert(self): ...
622
- def keys(self): ...
623
- def path_from_id(self): ...
624
2290
  def path_menu(
625
2291
  self,
626
2292
  searchpaths,
@@ -631,90 +2297,340 @@ class GREASE_PENCIL_MT_move_to_layer(bpy_types.Menu, bpy_types._GenericUI):
631
2297
  filter_path,
632
2298
  display_name,
633
2299
  add_operator,
634
- ): ...
635
- def path_resolve(self): ...
636
- def pop(self): ...
637
- def prepend(self, draw_func): ...
638
- def property_overridable_library_set(self): ...
639
- def property_unset(self): ...
640
- def remove(self, draw_func): ...
641
- def type_recast(self): ...
642
- 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
+ ...
643
2351
 
644
2352
  class GreasePencilBrushFalloff:
2353
+ """ """
2354
+
645
2355
  bl_label: typing.Any
2356
+ """ """
2357
+
646
2358
  bl_options: typing.Any
2359
+ """ """
647
2360
 
648
- def draw(self, context): ...
2361
+ def draw(self, context):
2362
+ """
2363
+
2364
+ :param context:
2365
+ """
2366
+ ...
649
2367
 
650
2368
  class GreasePencilDisplayPanel:
2369
+ """ """
2370
+
651
2371
  bl_label: typing.Any
2372
+ """ """
2373
+
652
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
+ """
653
2393
 
654
- def draw(self, context): ...
655
- def draw_header(self, context): ...
656
- def poll(self, context): ...
2394
+ :param context:
2395
+ """
2396
+ ...
657
2397
 
658
2398
  class GreasePencilFlipTintColors(bpy_types.Operator):
2399
+ """ """
2400
+
659
2401
  bl_idname: typing.Any
2402
+ """ """
2403
+
660
2404
  bl_label: typing.Any
2405
+ """ """
2406
+
661
2407
  bl_rna: typing.Any
2408
+ """ """
2409
+
662
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
+ ...
663
2490
 
664
- def as_keywords(self, ignore): ...
665
- def as_pointer(self): ...
666
- def bl_rna_get_subclass(self): ...
667
- def bl_rna_get_subclass_py(self): ...
668
- def driver_add(self): ...
669
- def driver_remove(self): ...
670
- def execute(self, context): ...
671
- def get(self): ...
672
- def id_properties_clear(self): ...
673
- def id_properties_ensure(self): ...
674
- def id_properties_ui(self): ...
675
- def is_property_hidden(self): ...
676
- def is_property_overridable_library(self): ...
677
- def is_property_readonly(self): ...
678
- def is_property_set(self): ...
679
- def items(self): ...
680
- def keyframe_delete(self): ...
681
- def keyframe_insert(self): ...
682
- def keys(self): ...
683
- def path_from_id(self): ...
684
- def path_resolve(self): ...
685
- def poll(self, context): ...
686
- def poll_message_set(self): ...
687
- def pop(self): ...
688
- def property_overridable_library_set(self): ...
689
- def property_unset(self): ...
690
- def type_recast(self): ...
691
- 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
+ ...
692
2533
 
693
2534
  class GreasePencilLayerAdjustmentsPanel:
694
- def draw(self, context): ...
2535
+ """ """
2536
+
2537
+ def draw(self, context):
2538
+ """
2539
+
2540
+ :param context:
2541
+ """
2542
+ ...
695
2543
 
696
2544
  class GreasePencilLayerDisplayPanel:
697
- def draw(self, context): ...
2545
+ """ """
2546
+
2547
+ def draw(self, context):
2548
+ """
2549
+
2550
+ :param context:
2551
+ """
2552
+ ...
698
2553
 
699
2554
  class GreasePencilLayerMasksPanel:
700
- def draw(self, context): ...
701
- 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
+ ...
702
2570
 
703
2571
  class GreasePencilLayerRelationsPanel:
704
- def draw(self, context): ...
2572
+ """ """
2573
+
2574
+ def draw(self, context):
2575
+ """
2576
+
2577
+ :param context:
2578
+ """
2579
+ ...
705
2580
 
706
2581
  class GreasePencilLayerTransformPanel:
707
- def draw(self, context): ...
2582
+ """ """
2583
+
2584
+ def draw(self, context):
2585
+ """
2586
+
2587
+ :param context:
2588
+ """
2589
+ ...
708
2590
 
709
2591
  class GreasePencilMaterialsPanel:
710
- def draw(self, context): ...
2592
+ """ """
2593
+
2594
+ def draw(self, context):
2595
+ """
2596
+
2597
+ :param context:
2598
+ """
2599
+ ...
711
2600
 
712
2601
  class GreasePencilSculptAdvancedPanel:
713
- def draw(self, context): ...
2602
+ """ """
2603
+
2604
+ def draw(self, context):
2605
+ """
2606
+
2607
+ :param context:
2608
+ """
2609
+ ...
714
2610
 
715
2611
  class GreasePencilSimplifyPanel:
716
- def draw(self, context): ...
717
- 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
+ ...
718
2627
 
719
2628
  class GreasePencilVertexcolorPanel:
720
- def draw(self, context): ...
2629
+ """ """
2630
+
2631
+ def draw(self, context):
2632
+ """
2633
+
2634
+ :param context:
2635
+ """
2636
+ ...