fake-bpy-module 20241004__py3-none-any.whl → 20241009__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.
- bl_ui/properties_data_gpencil/__init__.pyi +0 -256
- bl_ui/properties_grease_pencil_common/__init__.pyi +0 -220
- bl_ui/space_dopesheet/__init__.pyi +0 -194
- bl_ui/space_toolsystem_toolbar/__init__.pyi +0 -56
- bl_ui/space_topbar/__init__.pyi +0 -43
- bl_ui/space_view3d/__init__.pyi +43 -718
- bl_ui/space_view3d_toolbar/__init__.pyi +0 -28
- bpy/ops/anim/__init__.pyi +0 -12
- bpy/ops/file/__init__.pyi +3 -0
- bpy/ops/gpencil/__init__.pyi +9 -2857
- bpy/ops/grease_pencil/__init__.pyi +16 -0
- bpy/ops/mesh/__init__.pyi +25 -0
- bpy/ops/object/__init__.pyi +3 -66
- bpy/ops/wm/__init__.pyi +0 -357
- bpy/types/__init__.pyi +29827 -30071
- bpy/typing/__init__.pyi +8 -8
- {fake_bpy_module-20241004.dist-info → fake_bpy_module-20241009.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241004.dist-info → fake_bpy_module-20241009.dist-info}/RECORD +21 -21
- mathutils/__init__.pyi +13 -0
- {fake_bpy_module-20241004.dist-info → fake_bpy_module-20241009.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241004.dist-info → fake_bpy_module-20241009.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bl_ui.properties_grease_pencil_common
|
|
5
4
|
import bl_ui.space_properties
|
|
6
5
|
import bpy.types
|
|
7
6
|
import rna_prop_ui
|
|
@@ -157,182 +156,6 @@ class DATA_PT_gpencil_display(DataButtonsPanel, bpy.types.Panel):
|
|
|
157
156
|
:param context:
|
|
158
157
|
"""
|
|
159
158
|
|
|
160
|
-
class DATA_PT_gpencil_layer_adjustments(
|
|
161
|
-
bl_ui.properties_grease_pencil_common.GreasePencilLayerAdjustmentsPanel,
|
|
162
|
-
LayerDataButtonsPanel,
|
|
163
|
-
bpy.types.Panel,
|
|
164
|
-
):
|
|
165
|
-
bl_context: typing.Any
|
|
166
|
-
bl_label: typing.Any
|
|
167
|
-
bl_options: typing.Any
|
|
168
|
-
bl_parent_id: typing.Any
|
|
169
|
-
bl_region_type: typing.Any
|
|
170
|
-
bl_rna: typing.Any
|
|
171
|
-
bl_space_type: typing.Any
|
|
172
|
-
id_data: typing.Any
|
|
173
|
-
|
|
174
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
175
|
-
"""
|
|
176
|
-
|
|
177
|
-
:return: The RNA type or default when not found.
|
|
178
|
-
:rtype: bpy.types.Struct
|
|
179
|
-
"""
|
|
180
|
-
|
|
181
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
182
|
-
"""
|
|
183
|
-
|
|
184
|
-
:return: The class or default when not found.
|
|
185
|
-
:rtype: typing.Any
|
|
186
|
-
"""
|
|
187
|
-
|
|
188
|
-
class DATA_PT_gpencil_layer_display(
|
|
189
|
-
bl_ui.properties_grease_pencil_common.GreasePencilLayerDisplayPanel,
|
|
190
|
-
LayerDataButtonsPanel,
|
|
191
|
-
bpy.types.Panel,
|
|
192
|
-
):
|
|
193
|
-
bl_context: typing.Any
|
|
194
|
-
bl_label: typing.Any
|
|
195
|
-
bl_options: typing.Any
|
|
196
|
-
bl_parent_id: typing.Any
|
|
197
|
-
bl_region_type: typing.Any
|
|
198
|
-
bl_rna: typing.Any
|
|
199
|
-
bl_space_type: typing.Any
|
|
200
|
-
id_data: typing.Any
|
|
201
|
-
|
|
202
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
203
|
-
"""
|
|
204
|
-
|
|
205
|
-
:return: The RNA type or default when not found.
|
|
206
|
-
:rtype: bpy.types.Struct
|
|
207
|
-
"""
|
|
208
|
-
|
|
209
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
210
|
-
"""
|
|
211
|
-
|
|
212
|
-
:return: The class or default when not found.
|
|
213
|
-
:rtype: typing.Any
|
|
214
|
-
"""
|
|
215
|
-
|
|
216
|
-
class DATA_PT_gpencil_layer_masks(
|
|
217
|
-
bl_ui.properties_grease_pencil_common.GreasePencilLayerMasksPanel,
|
|
218
|
-
LayerDataButtonsPanel,
|
|
219
|
-
bpy.types.Panel,
|
|
220
|
-
):
|
|
221
|
-
bl_context: typing.Any
|
|
222
|
-
bl_label: typing.Any
|
|
223
|
-
bl_options: typing.Any
|
|
224
|
-
bl_parent_id: typing.Any
|
|
225
|
-
bl_region_type: typing.Any
|
|
226
|
-
bl_rna: typing.Any
|
|
227
|
-
bl_space_type: typing.Any
|
|
228
|
-
id_data: typing.Any
|
|
229
|
-
|
|
230
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
231
|
-
"""
|
|
232
|
-
|
|
233
|
-
:return: The RNA type or default when not found.
|
|
234
|
-
:rtype: bpy.types.Struct
|
|
235
|
-
"""
|
|
236
|
-
|
|
237
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
238
|
-
"""
|
|
239
|
-
|
|
240
|
-
:return: The class or default when not found.
|
|
241
|
-
:rtype: typing.Any
|
|
242
|
-
"""
|
|
243
|
-
|
|
244
|
-
class DATA_PT_gpencil_layer_relations(
|
|
245
|
-
bl_ui.properties_grease_pencil_common.GreasePencilLayerRelationsPanel,
|
|
246
|
-
LayerDataButtonsPanel,
|
|
247
|
-
bpy.types.Panel,
|
|
248
|
-
):
|
|
249
|
-
bl_context: typing.Any
|
|
250
|
-
bl_label: typing.Any
|
|
251
|
-
bl_options: typing.Any
|
|
252
|
-
bl_parent_id: typing.Any
|
|
253
|
-
bl_region_type: typing.Any
|
|
254
|
-
bl_rna: typing.Any
|
|
255
|
-
bl_space_type: typing.Any
|
|
256
|
-
id_data: typing.Any
|
|
257
|
-
|
|
258
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
259
|
-
"""
|
|
260
|
-
|
|
261
|
-
:return: The RNA type or default when not found.
|
|
262
|
-
:rtype: bpy.types.Struct
|
|
263
|
-
"""
|
|
264
|
-
|
|
265
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
266
|
-
"""
|
|
267
|
-
|
|
268
|
-
:return: The class or default when not found.
|
|
269
|
-
:rtype: typing.Any
|
|
270
|
-
"""
|
|
271
|
-
|
|
272
|
-
class DATA_PT_gpencil_layer_transform(
|
|
273
|
-
bl_ui.properties_grease_pencil_common.GreasePencilLayerTransformPanel,
|
|
274
|
-
LayerDataButtonsPanel,
|
|
275
|
-
bpy.types.Panel,
|
|
276
|
-
):
|
|
277
|
-
bl_context: typing.Any
|
|
278
|
-
bl_label: typing.Any
|
|
279
|
-
bl_options: typing.Any
|
|
280
|
-
bl_parent_id: typing.Any
|
|
281
|
-
bl_region_type: typing.Any
|
|
282
|
-
bl_rna: typing.Any
|
|
283
|
-
bl_space_type: typing.Any
|
|
284
|
-
id_data: typing.Any
|
|
285
|
-
|
|
286
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
287
|
-
"""
|
|
288
|
-
|
|
289
|
-
:return: The RNA type or default when not found.
|
|
290
|
-
:rtype: bpy.types.Struct
|
|
291
|
-
"""
|
|
292
|
-
|
|
293
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
294
|
-
"""
|
|
295
|
-
|
|
296
|
-
:return: The class or default when not found.
|
|
297
|
-
:rtype: typing.Any
|
|
298
|
-
"""
|
|
299
|
-
|
|
300
|
-
class DATA_PT_gpencil_layers(DataButtonsPanel, bpy.types.Panel):
|
|
301
|
-
bl_context: typing.Any
|
|
302
|
-
bl_label: typing.Any
|
|
303
|
-
bl_region_type: typing.Any
|
|
304
|
-
bl_rna: typing.Any
|
|
305
|
-
bl_space_type: typing.Any
|
|
306
|
-
id_data: typing.Any
|
|
307
|
-
|
|
308
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
309
|
-
"""
|
|
310
|
-
|
|
311
|
-
:return: The RNA type or default when not found.
|
|
312
|
-
:rtype: bpy.types.Struct
|
|
313
|
-
"""
|
|
314
|
-
|
|
315
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
316
|
-
"""
|
|
317
|
-
|
|
318
|
-
:return: The class or default when not found.
|
|
319
|
-
:rtype: typing.Any
|
|
320
|
-
"""
|
|
321
|
-
|
|
322
|
-
def draw(self, context):
|
|
323
|
-
"""
|
|
324
|
-
|
|
325
|
-
:param context:
|
|
326
|
-
"""
|
|
327
|
-
|
|
328
|
-
def draw_layers(self, _context, layout, gpd):
|
|
329
|
-
"""
|
|
330
|
-
|
|
331
|
-
:param _context:
|
|
332
|
-
:param layout:
|
|
333
|
-
:param gpd:
|
|
334
|
-
"""
|
|
335
|
-
|
|
336
159
|
class DATA_PT_gpencil_onion_skinning(DataButtonsPanel, bpy.types.Panel):
|
|
337
160
|
bl_context: typing.Any
|
|
338
161
|
bl_label: typing.Any
|
|
@@ -456,35 +279,6 @@ class DATA_PT_gpencil_strokes(DataButtonsPanel, bpy.types.Panel):
|
|
|
456
279
|
:param context:
|
|
457
280
|
"""
|
|
458
281
|
|
|
459
|
-
class DATA_PT_gpencil_vertex_groups(ObjectButtonsPanel, bpy.types.Panel):
|
|
460
|
-
bl_context: typing.Any
|
|
461
|
-
bl_label: typing.Any
|
|
462
|
-
bl_options: typing.Any
|
|
463
|
-
bl_region_type: typing.Any
|
|
464
|
-
bl_rna: typing.Any
|
|
465
|
-
bl_space_type: typing.Any
|
|
466
|
-
id_data: typing.Any
|
|
467
|
-
|
|
468
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
469
|
-
"""
|
|
470
|
-
|
|
471
|
-
:return: The RNA type or default when not found.
|
|
472
|
-
:rtype: bpy.types.Struct
|
|
473
|
-
"""
|
|
474
|
-
|
|
475
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
476
|
-
"""
|
|
477
|
-
|
|
478
|
-
:return: The class or default when not found.
|
|
479
|
-
:rtype: typing.Any
|
|
480
|
-
"""
|
|
481
|
-
|
|
482
|
-
def draw(self, context):
|
|
483
|
-
"""
|
|
484
|
-
|
|
485
|
-
:param context:
|
|
486
|
-
"""
|
|
487
|
-
|
|
488
282
|
class DataButtonsPanel:
|
|
489
283
|
bl_context: typing.Any
|
|
490
284
|
bl_region_type: typing.Any
|
|
@@ -497,56 +291,6 @@ class DataButtonsPanel:
|
|
|
497
291
|
:param context:
|
|
498
292
|
"""
|
|
499
293
|
|
|
500
|
-
class GPENCIL_MT_gpencil_vertex_group(bpy.types.Menu):
|
|
501
|
-
bl_label: typing.Any
|
|
502
|
-
bl_rna: typing.Any
|
|
503
|
-
id_data: typing.Any
|
|
504
|
-
|
|
505
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
506
|
-
"""
|
|
507
|
-
|
|
508
|
-
:return: The RNA type or default when not found.
|
|
509
|
-
:rtype: bpy.types.Struct
|
|
510
|
-
"""
|
|
511
|
-
|
|
512
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
513
|
-
"""
|
|
514
|
-
|
|
515
|
-
:return: The class or default when not found.
|
|
516
|
-
:rtype: typing.Any
|
|
517
|
-
"""
|
|
518
|
-
|
|
519
|
-
def draw(self, context):
|
|
520
|
-
"""
|
|
521
|
-
|
|
522
|
-
:param context:
|
|
523
|
-
"""
|
|
524
|
-
|
|
525
|
-
class GPENCIL_MT_layer_context_menu(bpy.types.Menu):
|
|
526
|
-
bl_label: typing.Any
|
|
527
|
-
bl_rna: typing.Any
|
|
528
|
-
id_data: typing.Any
|
|
529
|
-
|
|
530
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
531
|
-
"""
|
|
532
|
-
|
|
533
|
-
:return: The RNA type or default when not found.
|
|
534
|
-
:rtype: bpy.types.Struct
|
|
535
|
-
"""
|
|
536
|
-
|
|
537
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
538
|
-
"""
|
|
539
|
-
|
|
540
|
-
:return: The class or default when not found.
|
|
541
|
-
:rtype: typing.Any
|
|
542
|
-
"""
|
|
543
|
-
|
|
544
|
-
def draw(self, context):
|
|
545
|
-
"""
|
|
546
|
-
|
|
547
|
-
:param context:
|
|
548
|
-
"""
|
|
549
|
-
|
|
550
294
|
class GPENCIL_UL_vgroups(bpy.types.UIList):
|
|
551
295
|
bl_rna: typing.Any
|
|
552
296
|
id_data: typing.Any
|
|
@@ -63,213 +63,6 @@ class AnnotationOnionSkin:
|
|
|
63
63
|
:param context:
|
|
64
64
|
"""
|
|
65
65
|
|
|
66
|
-
class GPENCIL_MT_cleanup(bpy.types.Menu):
|
|
67
|
-
bl_label: typing.Any
|
|
68
|
-
bl_rna: typing.Any
|
|
69
|
-
id_data: typing.Any
|
|
70
|
-
|
|
71
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
72
|
-
"""
|
|
73
|
-
|
|
74
|
-
:return: The RNA type or default when not found.
|
|
75
|
-
:rtype: bpy.types.Struct
|
|
76
|
-
"""
|
|
77
|
-
|
|
78
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
79
|
-
"""
|
|
80
|
-
|
|
81
|
-
:return: The class or default when not found.
|
|
82
|
-
:rtype: typing.Any
|
|
83
|
-
"""
|
|
84
|
-
|
|
85
|
-
def draw(self, context):
|
|
86
|
-
"""
|
|
87
|
-
|
|
88
|
-
:param context:
|
|
89
|
-
"""
|
|
90
|
-
|
|
91
|
-
class GPENCIL_MT_gpencil_draw_delete(bpy.types.Menu):
|
|
92
|
-
bl_label: typing.Any
|
|
93
|
-
bl_rna: typing.Any
|
|
94
|
-
id_data: typing.Any
|
|
95
|
-
|
|
96
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
97
|
-
"""
|
|
98
|
-
|
|
99
|
-
:return: The RNA type or default when not found.
|
|
100
|
-
:rtype: bpy.types.Struct
|
|
101
|
-
"""
|
|
102
|
-
|
|
103
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
104
|
-
"""
|
|
105
|
-
|
|
106
|
-
:return: The class or default when not found.
|
|
107
|
-
:rtype: typing.Any
|
|
108
|
-
"""
|
|
109
|
-
|
|
110
|
-
def draw(self, _context):
|
|
111
|
-
"""
|
|
112
|
-
|
|
113
|
-
:param _context:
|
|
114
|
-
"""
|
|
115
|
-
|
|
116
|
-
class GPENCIL_MT_layer_active(bpy.types.Menu):
|
|
117
|
-
bl_label: typing.Any
|
|
118
|
-
bl_rna: typing.Any
|
|
119
|
-
id_data: typing.Any
|
|
120
|
-
|
|
121
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
122
|
-
"""
|
|
123
|
-
|
|
124
|
-
:return: The RNA type or default when not found.
|
|
125
|
-
:rtype: bpy.types.Struct
|
|
126
|
-
"""
|
|
127
|
-
|
|
128
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
129
|
-
"""
|
|
130
|
-
|
|
131
|
-
:return: The class or default when not found.
|
|
132
|
-
:rtype: typing.Any
|
|
133
|
-
"""
|
|
134
|
-
|
|
135
|
-
def draw(self, context):
|
|
136
|
-
"""
|
|
137
|
-
|
|
138
|
-
:param context:
|
|
139
|
-
"""
|
|
140
|
-
|
|
141
|
-
class GPENCIL_MT_layer_mask_menu(bpy.types.Menu):
|
|
142
|
-
bl_label: typing.Any
|
|
143
|
-
bl_rna: typing.Any
|
|
144
|
-
id_data: typing.Any
|
|
145
|
-
|
|
146
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
147
|
-
"""
|
|
148
|
-
|
|
149
|
-
:return: The RNA type or default when not found.
|
|
150
|
-
:rtype: bpy.types.Struct
|
|
151
|
-
"""
|
|
152
|
-
|
|
153
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
154
|
-
"""
|
|
155
|
-
|
|
156
|
-
:return: The class or default when not found.
|
|
157
|
-
:rtype: typing.Any
|
|
158
|
-
"""
|
|
159
|
-
|
|
160
|
-
def draw(self, context):
|
|
161
|
-
"""
|
|
162
|
-
|
|
163
|
-
:param context:
|
|
164
|
-
"""
|
|
165
|
-
|
|
166
|
-
class GPENCIL_MT_material_active(bpy.types.Menu):
|
|
167
|
-
bl_label: typing.Any
|
|
168
|
-
bl_rna: typing.Any
|
|
169
|
-
id_data: typing.Any
|
|
170
|
-
|
|
171
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
172
|
-
"""
|
|
173
|
-
|
|
174
|
-
:return: The RNA type or default when not found.
|
|
175
|
-
:rtype: bpy.types.Struct
|
|
176
|
-
"""
|
|
177
|
-
|
|
178
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
179
|
-
"""
|
|
180
|
-
|
|
181
|
-
:return: The class or default when not found.
|
|
182
|
-
:rtype: typing.Any
|
|
183
|
-
"""
|
|
184
|
-
|
|
185
|
-
def draw(self, context):
|
|
186
|
-
"""
|
|
187
|
-
|
|
188
|
-
:param context:
|
|
189
|
-
"""
|
|
190
|
-
|
|
191
|
-
@classmethod
|
|
192
|
-
def poll(cls, context):
|
|
193
|
-
"""
|
|
194
|
-
|
|
195
|
-
:param context:
|
|
196
|
-
"""
|
|
197
|
-
|
|
198
|
-
class GPENCIL_MT_move_to_layer(bpy.types.Menu):
|
|
199
|
-
bl_label: typing.Any
|
|
200
|
-
bl_rna: typing.Any
|
|
201
|
-
id_data: typing.Any
|
|
202
|
-
|
|
203
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
204
|
-
"""
|
|
205
|
-
|
|
206
|
-
:return: The RNA type or default when not found.
|
|
207
|
-
:rtype: bpy.types.Struct
|
|
208
|
-
"""
|
|
209
|
-
|
|
210
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
211
|
-
"""
|
|
212
|
-
|
|
213
|
-
:return: The class or default when not found.
|
|
214
|
-
:rtype: typing.Any
|
|
215
|
-
"""
|
|
216
|
-
|
|
217
|
-
def draw(self, context):
|
|
218
|
-
"""
|
|
219
|
-
|
|
220
|
-
:param context:
|
|
221
|
-
"""
|
|
222
|
-
|
|
223
|
-
class GPENCIL_MT_snap(bpy.types.Menu):
|
|
224
|
-
bl_label: typing.Any
|
|
225
|
-
bl_rna: typing.Any
|
|
226
|
-
id_data: typing.Any
|
|
227
|
-
|
|
228
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
229
|
-
"""
|
|
230
|
-
|
|
231
|
-
:return: The RNA type or default when not found.
|
|
232
|
-
:rtype: bpy.types.Struct
|
|
233
|
-
"""
|
|
234
|
-
|
|
235
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
236
|
-
"""
|
|
237
|
-
|
|
238
|
-
:return: The class or default when not found.
|
|
239
|
-
:rtype: typing.Any
|
|
240
|
-
"""
|
|
241
|
-
|
|
242
|
-
def draw(self, _context):
|
|
243
|
-
"""
|
|
244
|
-
|
|
245
|
-
:param _context:
|
|
246
|
-
"""
|
|
247
|
-
|
|
248
|
-
class GPENCIL_MT_snap_pie(bpy.types.Menu):
|
|
249
|
-
bl_label: typing.Any
|
|
250
|
-
bl_rna: typing.Any
|
|
251
|
-
id_data: typing.Any
|
|
252
|
-
|
|
253
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
254
|
-
"""
|
|
255
|
-
|
|
256
|
-
:return: The RNA type or default when not found.
|
|
257
|
-
:rtype: bpy.types.Struct
|
|
258
|
-
"""
|
|
259
|
-
|
|
260
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
261
|
-
"""
|
|
262
|
-
|
|
263
|
-
:return: The class or default when not found.
|
|
264
|
-
:rtype: typing.Any
|
|
265
|
-
"""
|
|
266
|
-
|
|
267
|
-
def draw(self, _context):
|
|
268
|
-
"""
|
|
269
|
-
|
|
270
|
-
:param _context:
|
|
271
|
-
"""
|
|
272
|
-
|
|
273
66
|
class GPENCIL_UL_annotation_layer(bpy.types.UIList):
|
|
274
67
|
bl_rna: typing.Any
|
|
275
68
|
id_data: typing.Any
|
|
@@ -575,19 +368,6 @@ class GreasePencilLayerDisplayPanel:
|
|
|
575
368
|
:param context:
|
|
576
369
|
"""
|
|
577
370
|
|
|
578
|
-
class GreasePencilLayerMasksPanel:
|
|
579
|
-
def draw(self, context):
|
|
580
|
-
"""
|
|
581
|
-
|
|
582
|
-
:param context:
|
|
583
|
-
"""
|
|
584
|
-
|
|
585
|
-
def draw_header(self, context):
|
|
586
|
-
"""
|
|
587
|
-
|
|
588
|
-
:param context:
|
|
589
|
-
"""
|
|
590
|
-
|
|
591
371
|
class GreasePencilLayerRelationsPanel:
|
|
592
372
|
def draw(self, context):
|
|
593
373
|
"""
|
|
@@ -2,7 +2,6 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bl_ui.properties_data_grease_pencil
|
|
5
|
-
import bl_ui.properties_grease_pencil_common
|
|
6
5
|
import bpy.types
|
|
7
6
|
import rna_prop_ui
|
|
8
7
|
|
|
@@ -216,31 +215,6 @@ class DOPESHEET_MT_gpencil_channel(bpy.types.Menu):
|
|
|
216
215
|
:param _context:
|
|
217
216
|
"""
|
|
218
217
|
|
|
219
|
-
class DOPESHEET_MT_gpencil_key(bpy.types.Menu):
|
|
220
|
-
bl_label: typing.Any
|
|
221
|
-
bl_rna: typing.Any
|
|
222
|
-
id_data: typing.Any
|
|
223
|
-
|
|
224
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
225
|
-
"""
|
|
226
|
-
|
|
227
|
-
:return: The RNA type or default when not found.
|
|
228
|
-
:rtype: bpy.types.Struct
|
|
229
|
-
"""
|
|
230
|
-
|
|
231
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
232
|
-
"""
|
|
233
|
-
|
|
234
|
-
:return: The class or default when not found.
|
|
235
|
-
:rtype: typing.Any
|
|
236
|
-
"""
|
|
237
|
-
|
|
238
|
-
def draw(self, _context):
|
|
239
|
-
"""
|
|
240
|
-
|
|
241
|
-
:param _context:
|
|
242
|
-
"""
|
|
243
|
-
|
|
244
218
|
class DOPESHEET_MT_key(bpy.types.Menu):
|
|
245
219
|
bl_label: typing.Any
|
|
246
220
|
bl_rna: typing.Any
|
|
@@ -549,174 +523,6 @@ class DOPESHEET_PT_filters(DopesheetFilterPopoverBase, bpy.types.Panel):
|
|
|
549
523
|
:param context:
|
|
550
524
|
"""
|
|
551
525
|
|
|
552
|
-
class DOPESHEET_PT_gpencil_layer_adjustments(
|
|
553
|
-
bl_ui.properties_grease_pencil_common.GreasePencilLayerAdjustmentsPanel,
|
|
554
|
-
LayersDopeSheetPanel,
|
|
555
|
-
bpy.types.Panel,
|
|
556
|
-
):
|
|
557
|
-
bl_category: typing.Any
|
|
558
|
-
bl_label: typing.Any
|
|
559
|
-
bl_options: typing.Any
|
|
560
|
-
bl_parent_id: typing.Any
|
|
561
|
-
bl_region_type: typing.Any
|
|
562
|
-
bl_rna: typing.Any
|
|
563
|
-
bl_space_type: typing.Any
|
|
564
|
-
id_data: typing.Any
|
|
565
|
-
|
|
566
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
567
|
-
"""
|
|
568
|
-
|
|
569
|
-
:return: The RNA type or default when not found.
|
|
570
|
-
:rtype: bpy.types.Struct
|
|
571
|
-
"""
|
|
572
|
-
|
|
573
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
574
|
-
"""
|
|
575
|
-
|
|
576
|
-
:return: The class or default when not found.
|
|
577
|
-
:rtype: typing.Any
|
|
578
|
-
"""
|
|
579
|
-
|
|
580
|
-
class DOPESHEET_PT_gpencil_layer_display(
|
|
581
|
-
bl_ui.properties_grease_pencil_common.GreasePencilLayerDisplayPanel,
|
|
582
|
-
LayersDopeSheetPanel,
|
|
583
|
-
bpy.types.Panel,
|
|
584
|
-
):
|
|
585
|
-
bl_category: typing.Any
|
|
586
|
-
bl_label: typing.Any
|
|
587
|
-
bl_options: typing.Any
|
|
588
|
-
bl_parent_id: typing.Any
|
|
589
|
-
bl_region_type: typing.Any
|
|
590
|
-
bl_rna: typing.Any
|
|
591
|
-
bl_space_type: typing.Any
|
|
592
|
-
id_data: typing.Any
|
|
593
|
-
|
|
594
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
595
|
-
"""
|
|
596
|
-
|
|
597
|
-
:return: The RNA type or default when not found.
|
|
598
|
-
:rtype: bpy.types.Struct
|
|
599
|
-
"""
|
|
600
|
-
|
|
601
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
602
|
-
"""
|
|
603
|
-
|
|
604
|
-
:return: The class or default when not found.
|
|
605
|
-
:rtype: typing.Any
|
|
606
|
-
"""
|
|
607
|
-
|
|
608
|
-
class DOPESHEET_PT_gpencil_layer_masks(
|
|
609
|
-
bl_ui.properties_grease_pencil_common.GreasePencilLayerMasksPanel,
|
|
610
|
-
LayersDopeSheetPanel,
|
|
611
|
-
bpy.types.Panel,
|
|
612
|
-
):
|
|
613
|
-
bl_category: typing.Any
|
|
614
|
-
bl_label: typing.Any
|
|
615
|
-
bl_options: typing.Any
|
|
616
|
-
bl_parent_id: typing.Any
|
|
617
|
-
bl_region_type: typing.Any
|
|
618
|
-
bl_rna: typing.Any
|
|
619
|
-
bl_space_type: typing.Any
|
|
620
|
-
id_data: typing.Any
|
|
621
|
-
|
|
622
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
623
|
-
"""
|
|
624
|
-
|
|
625
|
-
:return: The RNA type or default when not found.
|
|
626
|
-
:rtype: bpy.types.Struct
|
|
627
|
-
"""
|
|
628
|
-
|
|
629
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
630
|
-
"""
|
|
631
|
-
|
|
632
|
-
:return: The class or default when not found.
|
|
633
|
-
:rtype: typing.Any
|
|
634
|
-
"""
|
|
635
|
-
|
|
636
|
-
class DOPESHEET_PT_gpencil_layer_relations(
|
|
637
|
-
bl_ui.properties_grease_pencil_common.GreasePencilLayerRelationsPanel,
|
|
638
|
-
LayersDopeSheetPanel,
|
|
639
|
-
bpy.types.Panel,
|
|
640
|
-
):
|
|
641
|
-
bl_category: typing.Any
|
|
642
|
-
bl_label: typing.Any
|
|
643
|
-
bl_options: typing.Any
|
|
644
|
-
bl_parent_id: typing.Any
|
|
645
|
-
bl_region_type: typing.Any
|
|
646
|
-
bl_rna: typing.Any
|
|
647
|
-
bl_space_type: typing.Any
|
|
648
|
-
id_data: typing.Any
|
|
649
|
-
|
|
650
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
651
|
-
"""
|
|
652
|
-
|
|
653
|
-
:return: The RNA type or default when not found.
|
|
654
|
-
:rtype: bpy.types.Struct
|
|
655
|
-
"""
|
|
656
|
-
|
|
657
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
658
|
-
"""
|
|
659
|
-
|
|
660
|
-
:return: The class or default when not found.
|
|
661
|
-
:rtype: typing.Any
|
|
662
|
-
"""
|
|
663
|
-
|
|
664
|
-
class DOPESHEET_PT_gpencil_layer_transform(
|
|
665
|
-
bl_ui.properties_grease_pencil_common.GreasePencilLayerTransformPanel,
|
|
666
|
-
LayersDopeSheetPanel,
|
|
667
|
-
bpy.types.Panel,
|
|
668
|
-
):
|
|
669
|
-
bl_category: typing.Any
|
|
670
|
-
bl_label: typing.Any
|
|
671
|
-
bl_options: typing.Any
|
|
672
|
-
bl_parent_id: typing.Any
|
|
673
|
-
bl_region_type: typing.Any
|
|
674
|
-
bl_rna: typing.Any
|
|
675
|
-
bl_space_type: typing.Any
|
|
676
|
-
id_data: typing.Any
|
|
677
|
-
|
|
678
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
679
|
-
"""
|
|
680
|
-
|
|
681
|
-
:return: The RNA type or default when not found.
|
|
682
|
-
:rtype: bpy.types.Struct
|
|
683
|
-
"""
|
|
684
|
-
|
|
685
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
686
|
-
"""
|
|
687
|
-
|
|
688
|
-
:return: The class or default when not found.
|
|
689
|
-
:rtype: typing.Any
|
|
690
|
-
"""
|
|
691
|
-
|
|
692
|
-
class DOPESHEET_PT_gpencil_mode(LayersDopeSheetPanel, bpy.types.Panel):
|
|
693
|
-
bl_category: typing.Any
|
|
694
|
-
bl_label: typing.Any
|
|
695
|
-
bl_region_type: typing.Any
|
|
696
|
-
bl_rna: typing.Any
|
|
697
|
-
bl_space_type: typing.Any
|
|
698
|
-
id_data: typing.Any
|
|
699
|
-
|
|
700
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
701
|
-
"""
|
|
702
|
-
|
|
703
|
-
:return: The RNA type or default when not found.
|
|
704
|
-
:rtype: bpy.types.Struct
|
|
705
|
-
"""
|
|
706
|
-
|
|
707
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
708
|
-
"""
|
|
709
|
-
|
|
710
|
-
:return: The class or default when not found.
|
|
711
|
-
:rtype: typing.Any
|
|
712
|
-
"""
|
|
713
|
-
|
|
714
|
-
def draw(self, context):
|
|
715
|
-
"""
|
|
716
|
-
|
|
717
|
-
:param context:
|
|
718
|
-
"""
|
|
719
|
-
|
|
720
526
|
class DOPESHEET_PT_grease_pencil_layer_masks(
|
|
721
527
|
bl_ui.properties_data_grease_pencil.GreasePencil_LayerMaskPanel,
|
|
722
528
|
GreasePencilLayersDopeSheetPanel,
|