fake-bpy-module 20240224__py3-none-any.whl → 20240326__py3-none-any.whl

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

Potentially problematic release.


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

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