fake-bpy-module 20240721__py3-none-any.whl → 20240722__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_operators/add_mesh_torus/__init__.pyi +1 -2
- bl_operators/assets/__init__.pyi +2 -2
- bl_operators/bone_selection_sets/__init__.pyi +16 -28
- bl_operators/connect_to_output/__init__.pyi +1 -4
- bl_operators/image_as_planes/__init__.pyi +2 -12
- bl_operators/node/__init__.pyi +14 -16
- bl_operators/object_quick_effects/__init__.pyi +3 -3
- bl_operators/presets/__init__.pyi +22 -25
- bl_operators/sequencer/__init__.pyi +76 -76
- bl_ui/generic_ui_list/__init__.pyi +3 -3
- bl_ui/properties_collection/__init__.pyi +5 -19
- bl_ui/properties_constraint/__init__.pyi +79 -289
- bl_ui/properties_data_armature/__init__.pyi +9 -33
- bl_ui/properties_data_bone/__init__.pyi +10 -17
- bl_ui/properties_data_camera/__init__.pyi +14 -32
- bl_ui/properties_data_curve/__init__.pyi +69 -88
- bl_ui/properties_data_curves/__init__.pyi +4 -9
- bl_ui/properties_data_empty/__init__.pyi +2 -2
- bl_ui/properties_data_gpencil/__init__.pyi +15 -50
- bl_ui/properties_data_grease_pencil/__init__.pyi +10 -36
- bl_ui/properties_data_lattice/__init__.pyi +3 -6
- bl_ui/properties_data_light/__init__.pyi +12 -25
- bl_ui/properties_data_lightprobe/__init__.pyi +13 -35
- bl_ui/properties_data_mesh/__init__.pyi +63 -72
- bl_ui/properties_data_metaball/__init__.pyi +5 -10
- bl_ui/properties_data_modifier/__init__.pyi +9 -23
- bl_ui/properties_data_pointcloud/__init__.pyi +3 -10
- bl_ui/properties_data_shaderfx/__init__.pyi +1 -1
- bl_ui/properties_data_speaker/__init__.pyi +5 -8
- bl_ui/properties_data_volume/__init__.pyi +7 -14
- bl_ui/properties_freestyle/__init__.pyi +9 -42
- bl_ui/properties_material/__init__.pyi +14 -40
- bl_ui/properties_material_gpencil/__init__.pyi +8 -32
- bl_ui/properties_object/__init__.pyi +13 -31
- bl_ui/properties_output/__init__.pyi +16 -43
- bl_ui/properties_paint_common/__init__.pyi +17 -17
- bl_ui/properties_particle/__init__.pyi +50 -135
- bl_ui/properties_physics_cloth/__init__.pyi +14 -35
- bl_ui/properties_physics_common/__init__.pyi +1 -1
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +21 -57
- bl_ui/properties_physics_field/__init__.pyi +10 -26
- bl_ui/properties_physics_fluid/__init__.pyi +28 -51
- bl_ui/properties_physics_rigidbody/__init__.pyi +8 -18
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +13 -25
- bl_ui/properties_physics_softbody/__init__.pyi +15 -43
- bl_ui/properties_render/__init__.pyi +54 -150
- bl_ui/properties_scene/__init__.pyi +29 -42
- bl_ui/properties_texture/__init__.pyi +26 -58
- bl_ui/properties_view_layer/__init__.pyi +16 -43
- bl_ui/properties_workspace/__init__.pyi +3 -9
- bl_ui/properties_world/__init__.pyi +10 -19
- bl_ui/space_clip/__init__.pyi +31 -93
- bl_ui/space_dopesheet/__init__.pyi +13 -66
- bl_ui/space_filebrowser/__init__.pyi +17 -38
- bl_ui/space_graph/__init__.pyi +1 -6
- bl_ui/space_image/__init__.pyi +190 -235
- bl_ui/space_nla/__init__.pyi +2 -11
- bl_ui/space_node/__init__.pyi +3 -16
- bl_ui/space_sequencer/__init__.pyi +34 -104
- bl_ui/space_time/__init__.pyi +3 -7
- bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -21
- bl_ui/space_userpref/__init__.pyi +76 -215
- bl_ui/space_view3d/__init__.pyi +91 -147
- bl_ui/space_view3d_toolbar/__init__.pyi +435 -543
- bpy_extras/node_shader_utils/__init__.pyi +118 -118
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/RECORD +71 -71
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/WHEEL +1 -1
- keyingsets_builtins/__init__.pyi +2 -2
- nodeitems_builtins/__init__.pyi +3 -3
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.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.utils
|
|
5
4
|
import bpy.types
|
|
6
5
|
import bpy_types
|
|
7
6
|
|
|
@@ -31,9 +30,7 @@ class RENDER_MT_framerate_presets(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
31
30
|
"""
|
|
32
31
|
...
|
|
33
32
|
|
|
34
|
-
class RENDER_PT_encoding(
|
|
35
|
-
bpy.types.Panel, RenderOutputButtonsPanel, bpy_types._GenericUI
|
|
36
|
-
):
|
|
33
|
+
class RENDER_PT_encoding(bpy.types.Panel, bpy_types._GenericUI):
|
|
37
34
|
COMPAT_ENGINES: typing.Any
|
|
38
35
|
bl_context: typing.Any
|
|
39
36
|
bl_label: typing.Any
|
|
@@ -82,9 +79,7 @@ class RENDER_PT_encoding(
|
|
|
82
79
|
"""
|
|
83
80
|
...
|
|
84
81
|
|
|
85
|
-
class RENDER_PT_encoding_audio(
|
|
86
|
-
bpy.types.Panel, RenderOutputButtonsPanel, bpy_types._GenericUI
|
|
87
|
-
):
|
|
82
|
+
class RENDER_PT_encoding_audio(bpy.types.Panel, bpy_types._GenericUI):
|
|
88
83
|
COMPAT_ENGINES: typing.Any
|
|
89
84
|
bl_context: typing.Any
|
|
90
85
|
bl_label: typing.Any
|
|
@@ -125,9 +120,7 @@ class RENDER_PT_encoding_audio(
|
|
|
125
120
|
"""
|
|
126
121
|
...
|
|
127
122
|
|
|
128
|
-
class RENDER_PT_encoding_video(
|
|
129
|
-
bpy.types.Panel, RenderOutputButtonsPanel, bpy_types._GenericUI
|
|
130
|
-
):
|
|
123
|
+
class RENDER_PT_encoding_video(bpy.types.Panel, bpy_types._GenericUI):
|
|
131
124
|
COMPAT_ENGINES: typing.Any
|
|
132
125
|
bl_context: typing.Any
|
|
133
126
|
bl_label: typing.Any
|
|
@@ -175,9 +168,7 @@ class RENDER_PT_encoding_video(
|
|
|
175
168
|
"""
|
|
176
169
|
...
|
|
177
170
|
|
|
178
|
-
class RENDER_PT_ffmpeg_presets(
|
|
179
|
-
bpy.types.Panel, bl_ui.utils.PresetPanel, bpy_types._GenericUI
|
|
180
|
-
):
|
|
171
|
+
class RENDER_PT_ffmpeg_presets(bpy.types.Panel, bpy_types._GenericUI):
|
|
181
172
|
bl_label: typing.Any
|
|
182
173
|
bl_region_type: typing.Any
|
|
183
174
|
bl_rna: typing.Any
|
|
@@ -202,7 +193,7 @@ class RENDER_PT_ffmpeg_presets(
|
|
|
202
193
|
"""
|
|
203
194
|
...
|
|
204
195
|
|
|
205
|
-
class RENDER_PT_format(bpy.types.Panel,
|
|
196
|
+
class RENDER_PT_format(bpy.types.Panel, bpy_types._GenericUI):
|
|
206
197
|
COMPAT_ENGINES: typing.Any
|
|
207
198
|
bl_context: typing.Any
|
|
208
199
|
bl_label: typing.Any
|
|
@@ -250,9 +241,7 @@ class RENDER_PT_format(bpy.types.Panel, RenderOutputButtonsPanel, bpy_types._Gen
|
|
|
250
241
|
"""
|
|
251
242
|
...
|
|
252
243
|
|
|
253
|
-
class RENDER_PT_format_presets(
|
|
254
|
-
bpy.types.Panel, bl_ui.utils.PresetPanel, bpy_types._GenericUI
|
|
255
|
-
):
|
|
244
|
+
class RENDER_PT_format_presets(bpy.types.Panel, bpy_types._GenericUI):
|
|
256
245
|
bl_label: typing.Any
|
|
257
246
|
bl_region_type: typing.Any
|
|
258
247
|
bl_rna: typing.Any
|
|
@@ -278,9 +267,7 @@ class RENDER_PT_format_presets(
|
|
|
278
267
|
"""
|
|
279
268
|
...
|
|
280
269
|
|
|
281
|
-
class RENDER_PT_frame_range(
|
|
282
|
-
bpy.types.Panel, RenderOutputButtonsPanel, bpy_types._GenericUI
|
|
283
|
-
):
|
|
270
|
+
class RENDER_PT_frame_range(bpy.types.Panel, bpy_types._GenericUI):
|
|
284
271
|
COMPAT_ENGINES: typing.Any
|
|
285
272
|
bl_context: typing.Any
|
|
286
273
|
bl_label: typing.Any
|
|
@@ -312,7 +299,7 @@ class RENDER_PT_frame_range(
|
|
|
312
299
|
"""
|
|
313
300
|
...
|
|
314
301
|
|
|
315
|
-
class RENDER_PT_output(bpy.types.Panel,
|
|
302
|
+
class RENDER_PT_output(bpy.types.Panel, bpy_types._GenericUI):
|
|
316
303
|
COMPAT_ENGINES: typing.Any
|
|
317
304
|
bl_context: typing.Any
|
|
318
305
|
bl_label: typing.Any
|
|
@@ -344,9 +331,7 @@ class RENDER_PT_output(bpy.types.Panel, RenderOutputButtonsPanel, bpy_types._Gen
|
|
|
344
331
|
"""
|
|
345
332
|
...
|
|
346
333
|
|
|
347
|
-
class RENDER_PT_output_color_management(
|
|
348
|
-
bpy.types.Panel, RenderOutputButtonsPanel, bpy_types._GenericUI
|
|
349
|
-
):
|
|
334
|
+
class RENDER_PT_output_color_management(bpy.types.Panel, bpy_types._GenericUI):
|
|
350
335
|
COMPAT_ENGINES: typing.Any
|
|
351
336
|
bl_context: typing.Any
|
|
352
337
|
bl_label: typing.Any
|
|
@@ -380,9 +365,7 @@ class RENDER_PT_output_color_management(
|
|
|
380
365
|
"""
|
|
381
366
|
...
|
|
382
367
|
|
|
383
|
-
class RENDER_PT_output_views(
|
|
384
|
-
bpy.types.Panel, RenderOutputButtonsPanel, bpy_types._GenericUI
|
|
385
|
-
):
|
|
368
|
+
class RENDER_PT_output_views(bpy.types.Panel, bpy_types._GenericUI):
|
|
386
369
|
COMPAT_ENGINES: typing.Any
|
|
387
370
|
bl_context: typing.Any
|
|
388
371
|
bl_label: typing.Any
|
|
@@ -423,9 +406,7 @@ class RENDER_PT_output_views(
|
|
|
423
406
|
"""
|
|
424
407
|
...
|
|
425
408
|
|
|
426
|
-
class RENDER_PT_post_processing(
|
|
427
|
-
bpy.types.Panel, RenderOutputButtonsPanel, bpy_types._GenericUI
|
|
428
|
-
):
|
|
409
|
+
class RENDER_PT_post_processing(bpy.types.Panel, bpy_types._GenericUI):
|
|
429
410
|
COMPAT_ENGINES: typing.Any
|
|
430
411
|
bl_context: typing.Any
|
|
431
412
|
bl_label: typing.Any
|
|
@@ -458,7 +439,7 @@ class RENDER_PT_post_processing(
|
|
|
458
439
|
"""
|
|
459
440
|
...
|
|
460
441
|
|
|
461
|
-
class RENDER_PT_stamp(bpy.types.Panel,
|
|
442
|
+
class RENDER_PT_stamp(bpy.types.Panel, bpy_types._GenericUI):
|
|
462
443
|
COMPAT_ENGINES: typing.Any
|
|
463
444
|
bl_context: typing.Any
|
|
464
445
|
bl_label: typing.Any
|
|
@@ -491,9 +472,7 @@ class RENDER_PT_stamp(bpy.types.Panel, RenderOutputButtonsPanel, bpy_types._Gene
|
|
|
491
472
|
"""
|
|
492
473
|
...
|
|
493
474
|
|
|
494
|
-
class RENDER_PT_stamp_burn(
|
|
495
|
-
bpy.types.Panel, RenderOutputButtonsPanel, bpy_types._GenericUI
|
|
496
|
-
):
|
|
475
|
+
class RENDER_PT_stamp_burn(bpy.types.Panel, bpy_types._GenericUI):
|
|
497
476
|
COMPAT_ENGINES: typing.Any
|
|
498
477
|
bl_context: typing.Any
|
|
499
478
|
bl_label: typing.Any
|
|
@@ -534,9 +513,7 @@ class RENDER_PT_stamp_burn(
|
|
|
534
513
|
"""
|
|
535
514
|
...
|
|
536
515
|
|
|
537
|
-
class RENDER_PT_stamp_note(
|
|
538
|
-
bpy.types.Panel, RenderOutputButtonsPanel, bpy_types._GenericUI
|
|
539
|
-
):
|
|
516
|
+
class RENDER_PT_stamp_note(bpy.types.Panel, bpy_types._GenericUI):
|
|
540
517
|
COMPAT_ENGINES: typing.Any
|
|
541
518
|
bl_context: typing.Any
|
|
542
519
|
bl_label: typing.Any
|
|
@@ -577,9 +554,7 @@ class RENDER_PT_stamp_note(
|
|
|
577
554
|
"""
|
|
578
555
|
...
|
|
579
556
|
|
|
580
|
-
class RENDER_PT_stereoscopy(
|
|
581
|
-
bpy.types.Panel, RenderOutputButtonsPanel, bpy_types._GenericUI
|
|
582
|
-
):
|
|
557
|
+
class RENDER_PT_stereoscopy(bpy.types.Panel, bpy_types._GenericUI):
|
|
583
558
|
COMPAT_ENGINES: typing.Any
|
|
584
559
|
bl_context: typing.Any
|
|
585
560
|
bl_label: typing.Any
|
|
@@ -619,9 +594,7 @@ class RENDER_PT_stereoscopy(
|
|
|
619
594
|
"""
|
|
620
595
|
...
|
|
621
596
|
|
|
622
|
-
class RENDER_PT_time_stretching(
|
|
623
|
-
bpy.types.Panel, RenderOutputButtonsPanel, bpy_types._GenericUI
|
|
624
|
-
):
|
|
597
|
+
class RENDER_PT_time_stretching(bpy.types.Panel, bpy_types._GenericUI):
|
|
625
598
|
COMPAT_ENGINES: typing.Any
|
|
626
599
|
bl_context: typing.Any
|
|
627
600
|
bl_label: typing.Any
|
|
@@ -59,6 +59,15 @@ class BrushAssetShelf:
|
|
|
59
59
|
"""
|
|
60
60
|
...
|
|
61
61
|
|
|
62
|
+
class BrushPanel:
|
|
63
|
+
@classmethod
|
|
64
|
+
def poll(cls, context):
|
|
65
|
+
"""
|
|
66
|
+
|
|
67
|
+
:param context:
|
|
68
|
+
"""
|
|
69
|
+
...
|
|
70
|
+
|
|
62
71
|
class UnifiedPaintPanel:
|
|
63
72
|
@staticmethod
|
|
64
73
|
def get_brush_mode(context):
|
|
@@ -158,16 +167,7 @@ class VIEW3D_MT_tools_projectpaint_clone(bpy.types.Menu, bpy_types._GenericUI):
|
|
|
158
167
|
"""
|
|
159
168
|
...
|
|
160
169
|
|
|
161
|
-
class
|
|
162
|
-
@classmethod
|
|
163
|
-
def poll(cls, context):
|
|
164
|
-
"""
|
|
165
|
-
|
|
166
|
-
:param context:
|
|
167
|
-
"""
|
|
168
|
-
...
|
|
169
|
-
|
|
170
|
-
class BrushSelectPanel(BrushPanel, UnifiedPaintPanel):
|
|
170
|
+
class BrushSelectPanel(UnifiedPaintPanel):
|
|
171
171
|
bl_label: typing.Any
|
|
172
172
|
|
|
173
173
|
def draw(self, context):
|
|
@@ -177,7 +177,7 @@ class BrushSelectPanel(BrushPanel, UnifiedPaintPanel):
|
|
|
177
177
|
"""
|
|
178
178
|
...
|
|
179
179
|
|
|
180
|
-
class ClonePanel(
|
|
180
|
+
class ClonePanel(UnifiedPaintPanel):
|
|
181
181
|
bl_label: typing.Any
|
|
182
182
|
bl_options: typing.Any
|
|
183
183
|
|
|
@@ -203,7 +203,7 @@ class ClonePanel(BrushPanel, UnifiedPaintPanel):
|
|
|
203
203
|
"""
|
|
204
204
|
...
|
|
205
205
|
|
|
206
|
-
class ColorPalettePanel(
|
|
206
|
+
class ColorPalettePanel(UnifiedPaintPanel):
|
|
207
207
|
bl_label: typing.Any
|
|
208
208
|
bl_options: typing.Any
|
|
209
209
|
|
|
@@ -222,7 +222,7 @@ class ColorPalettePanel(BrushPanel, UnifiedPaintPanel):
|
|
|
222
222
|
"""
|
|
223
223
|
...
|
|
224
224
|
|
|
225
|
-
class DisplayPanel(
|
|
225
|
+
class DisplayPanel(UnifiedPaintPanel):
|
|
226
226
|
bl_label: typing.Any
|
|
227
227
|
bl_options: typing.Any
|
|
228
228
|
|
|
@@ -240,7 +240,7 @@ class DisplayPanel(BrushPanel, UnifiedPaintPanel):
|
|
|
240
240
|
"""
|
|
241
241
|
...
|
|
242
242
|
|
|
243
|
-
class FalloffPanel(
|
|
243
|
+
class FalloffPanel(UnifiedPaintPanel):
|
|
244
244
|
bl_label: typing.Any
|
|
245
245
|
bl_options: typing.Any
|
|
246
246
|
|
|
@@ -259,7 +259,7 @@ class FalloffPanel(BrushPanel, UnifiedPaintPanel):
|
|
|
259
259
|
"""
|
|
260
260
|
...
|
|
261
261
|
|
|
262
|
-
class SmoothStrokePanel(
|
|
262
|
+
class SmoothStrokePanel(UnifiedPaintPanel):
|
|
263
263
|
bl_label: typing.Any
|
|
264
264
|
bl_options: typing.Any
|
|
265
265
|
|
|
@@ -285,7 +285,7 @@ class SmoothStrokePanel(BrushPanel, UnifiedPaintPanel):
|
|
|
285
285
|
"""
|
|
286
286
|
...
|
|
287
287
|
|
|
288
|
-
class StrokePanel(
|
|
288
|
+
class StrokePanel(UnifiedPaintPanel):
|
|
289
289
|
bl_label: typing.Any
|
|
290
290
|
bl_options: typing.Any
|
|
291
291
|
bl_ui_units_x: typing.Any
|
|
@@ -297,7 +297,7 @@ class StrokePanel(BrushPanel, UnifiedPaintPanel):
|
|
|
297
297
|
"""
|
|
298
298
|
...
|
|
299
299
|
|
|
300
|
-
class TextureMaskPanel(
|
|
300
|
+
class TextureMaskPanel(UnifiedPaintPanel):
|
|
301
301
|
bl_label: typing.Any
|
|
302
302
|
bl_options: typing.Any
|
|
303
303
|
|