fake-bpy-module 20241003__py3-none-any.whl → 20241008__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/properties_object/__init__.pyi +149 -0
- bl_ui/properties_paint_common/__init__.pyi +43 -0
- 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 +45 -721
- bl_ui/space_view3d_toolbar/__init__.pyi +0 -28
- 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/node/__init__.pyi +24 -24
- bpy/ops/object/__init__.pyi +3 -66
- bpy/ops/wm/__init__.pyi +13 -357
- bpy/types/__init__.pyi +126 -250
- bpy/typing/__init__.pyi +8 -8
- {fake_bpy_module-20241003.dist-info → fake_bpy_module-20241008.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241003.dist-info → fake_bpy_module-20241008.dist-info}/RECORD +22 -22
- {fake_bpy_module-20241003.dist-info → fake_bpy_module-20241008.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241003.dist-info → fake_bpy_module-20241008.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
|
"""
|
|
@@ -31,6 +31,56 @@ class COLLECTION_MT_context_menu(bpy.types.Menu):
|
|
|
31
31
|
:param _context:
|
|
32
32
|
"""
|
|
33
33
|
|
|
34
|
+
class OBJECT_MT_light_linking_context_menu(bpy.types.Menu):
|
|
35
|
+
bl_label: typing.Any
|
|
36
|
+
bl_rna: typing.Any
|
|
37
|
+
id_data: typing.Any
|
|
38
|
+
|
|
39
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
40
|
+
"""
|
|
41
|
+
|
|
42
|
+
:return: The RNA type or default when not found.
|
|
43
|
+
:rtype: bpy.types.Struct
|
|
44
|
+
"""
|
|
45
|
+
|
|
46
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
47
|
+
"""
|
|
48
|
+
|
|
49
|
+
:return: The class or default when not found.
|
|
50
|
+
:rtype: typing.Any
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
def draw(self, _context):
|
|
54
|
+
"""
|
|
55
|
+
|
|
56
|
+
:param _context:
|
|
57
|
+
"""
|
|
58
|
+
|
|
59
|
+
class OBJECT_MT_shadow_linking_context_menu(bpy.types.Menu):
|
|
60
|
+
bl_label: typing.Any
|
|
61
|
+
bl_rna: typing.Any
|
|
62
|
+
id_data: typing.Any
|
|
63
|
+
|
|
64
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
65
|
+
"""
|
|
66
|
+
|
|
67
|
+
:return: The RNA type or default when not found.
|
|
68
|
+
:rtype: bpy.types.Struct
|
|
69
|
+
"""
|
|
70
|
+
|
|
71
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
72
|
+
"""
|
|
73
|
+
|
|
74
|
+
:return: The class or default when not found.
|
|
75
|
+
:rtype: typing.Any
|
|
76
|
+
"""
|
|
77
|
+
|
|
78
|
+
def draw(self, _context):
|
|
79
|
+
"""
|
|
80
|
+
|
|
81
|
+
:param _context:
|
|
82
|
+
"""
|
|
83
|
+
|
|
34
84
|
class OBJECT_PT_animation(
|
|
35
85
|
rna_prop_ui.PropertyPanel,
|
|
36
86
|
ObjectButtonsPanel,
|
|
@@ -291,6 +341,36 @@ class OBJECT_PT_instancing_size(ObjectButtonsPanel, bpy.types.Panel):
|
|
|
291
341
|
:param context:
|
|
292
342
|
"""
|
|
293
343
|
|
|
344
|
+
class OBJECT_PT_light_linking(ObjectButtonsPanel, bpy.types.Panel):
|
|
345
|
+
bl_context: typing.Any
|
|
346
|
+
bl_label: typing.Any
|
|
347
|
+
bl_options: typing.Any
|
|
348
|
+
bl_parent_id: typing.Any
|
|
349
|
+
bl_region_type: typing.Any
|
|
350
|
+
bl_rna: typing.Any
|
|
351
|
+
bl_space_type: typing.Any
|
|
352
|
+
id_data: typing.Any
|
|
353
|
+
|
|
354
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
355
|
+
"""
|
|
356
|
+
|
|
357
|
+
:return: The RNA type or default when not found.
|
|
358
|
+
:rtype: bpy.types.Struct
|
|
359
|
+
"""
|
|
360
|
+
|
|
361
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
362
|
+
"""
|
|
363
|
+
|
|
364
|
+
:return: The class or default when not found.
|
|
365
|
+
:rtype: typing.Any
|
|
366
|
+
"""
|
|
367
|
+
|
|
368
|
+
def draw(self, context):
|
|
369
|
+
"""
|
|
370
|
+
|
|
371
|
+
:param context:
|
|
372
|
+
"""
|
|
373
|
+
|
|
294
374
|
class OBJECT_PT_lineart(ObjectButtonsPanel, bpy.types.Panel):
|
|
295
375
|
bl_context: typing.Any
|
|
296
376
|
bl_label: typing.Any
|
|
@@ -434,6 +514,73 @@ class OBJECT_PT_relations(ObjectButtonsPanel, bpy.types.Panel):
|
|
|
434
514
|
:param context:
|
|
435
515
|
"""
|
|
436
516
|
|
|
517
|
+
class OBJECT_PT_shading(ObjectButtonsPanel, bpy.types.Panel):
|
|
518
|
+
COMPAT_ENGINES: typing.Any
|
|
519
|
+
bl_context: typing.Any
|
|
520
|
+
bl_label: typing.Any
|
|
521
|
+
bl_options: typing.Any
|
|
522
|
+
bl_region_type: typing.Any
|
|
523
|
+
bl_rna: typing.Any
|
|
524
|
+
bl_space_type: typing.Any
|
|
525
|
+
id_data: typing.Any
|
|
526
|
+
|
|
527
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
528
|
+
"""
|
|
529
|
+
|
|
530
|
+
:return: The RNA type or default when not found.
|
|
531
|
+
:rtype: bpy.types.Struct
|
|
532
|
+
"""
|
|
533
|
+
|
|
534
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
535
|
+
"""
|
|
536
|
+
|
|
537
|
+
:return: The class or default when not found.
|
|
538
|
+
:rtype: typing.Any
|
|
539
|
+
"""
|
|
540
|
+
|
|
541
|
+
def draw(self, context):
|
|
542
|
+
"""
|
|
543
|
+
|
|
544
|
+
:param context:
|
|
545
|
+
"""
|
|
546
|
+
|
|
547
|
+
@classmethod
|
|
548
|
+
def poll(cls, context):
|
|
549
|
+
"""
|
|
550
|
+
|
|
551
|
+
:param context:
|
|
552
|
+
"""
|
|
553
|
+
|
|
554
|
+
class OBJECT_PT_shadow_linking(ObjectButtonsPanel, bpy.types.Panel):
|
|
555
|
+
bl_context: typing.Any
|
|
556
|
+
bl_label: typing.Any
|
|
557
|
+
bl_options: typing.Any
|
|
558
|
+
bl_parent_id: typing.Any
|
|
559
|
+
bl_region_type: typing.Any
|
|
560
|
+
bl_rna: typing.Any
|
|
561
|
+
bl_space_type: typing.Any
|
|
562
|
+
id_data: typing.Any
|
|
563
|
+
|
|
564
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
565
|
+
"""
|
|
566
|
+
|
|
567
|
+
:return: The RNA type or default when not found.
|
|
568
|
+
:rtype: bpy.types.Struct
|
|
569
|
+
"""
|
|
570
|
+
|
|
571
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
572
|
+
"""
|
|
573
|
+
|
|
574
|
+
:return: The class or default when not found.
|
|
575
|
+
:rtype: typing.Any
|
|
576
|
+
"""
|
|
577
|
+
|
|
578
|
+
def draw(self, context):
|
|
579
|
+
"""
|
|
580
|
+
|
|
581
|
+
:param context:
|
|
582
|
+
"""
|
|
583
|
+
|
|
437
584
|
class OBJECT_PT_transform(ObjectButtonsPanel, bpy.types.Panel):
|
|
438
585
|
bl_context: typing.Any
|
|
439
586
|
bl_label: typing.Any
|
|
@@ -503,3 +650,5 @@ class ObjectButtonsPanel:
|
|
|
503
650
|
bl_context: typing.Any
|
|
504
651
|
bl_region_type: typing.Any
|
|
505
652
|
bl_space_type: typing.Any
|
|
653
|
+
|
|
654
|
+
def has_geometry_visibility(ob): ...
|