fake-bpy-module 20240927__py3-none-any.whl → 20240929__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/generic_ui_list/__init__.pyi +2 -2
- bl_ui/space_dopesheet/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +36 -0
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +144 -120
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +220 -200
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +68 -68
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +449 -226
- bpy/typing/__init__.pyi +1 -0
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
|
@@ -118,7 +118,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, bpy.types.Operator):
|
|
|
118
118
|
|
|
119
119
|
def draw_ui_list(
|
|
120
120
|
layout: bpy.types.UILayout,
|
|
121
|
-
context: bpy.types.Context,
|
|
121
|
+
context: bpy.types.Context | None,
|
|
122
122
|
class_name: str = "UI_UL_list",
|
|
123
123
|
*,
|
|
124
124
|
unique_id: str,
|
|
@@ -134,7 +134,7 @@ def draw_ui_list(
|
|
|
134
134
|
:param layout: UILayout to draw the list in.
|
|
135
135
|
:type layout: bpy.types.UILayout
|
|
136
136
|
:param context: Blender context to get the list data from.
|
|
137
|
-
:type context: bpy.types.Context
|
|
137
|
+
:type context: bpy.types.Context | None
|
|
138
138
|
:param class_name: Name of the UIList class to draw. The default is the UIList class that ships with Blender.
|
|
139
139
|
:type class_name: str
|
|
140
140
|
:param unique_id: Unique identifier to differentiate this from other UI lists.
|
|
@@ -40,6 +40,31 @@ class DOPESHEET_HT_header(bpy.types.Header):
|
|
|
40
40
|
:param context:
|
|
41
41
|
"""
|
|
42
42
|
|
|
43
|
+
class DOPESHEET_MT_action(bpy.types.Menu):
|
|
44
|
+
bl_label: typing.Any
|
|
45
|
+
bl_rna: typing.Any
|
|
46
|
+
id_data: typing.Any
|
|
47
|
+
|
|
48
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
:return: The RNA type or default when not found.
|
|
52
|
+
:rtype: bpy.types.Struct
|
|
53
|
+
"""
|
|
54
|
+
|
|
55
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
56
|
+
"""
|
|
57
|
+
|
|
58
|
+
:return: The class or default when not found.
|
|
59
|
+
:rtype: typing.Any
|
|
60
|
+
"""
|
|
61
|
+
|
|
62
|
+
def draw(self, context):
|
|
63
|
+
"""
|
|
64
|
+
|
|
65
|
+
:param context:
|
|
66
|
+
"""
|
|
67
|
+
|
|
43
68
|
class DOPESHEET_MT_channel(bpy.types.Menu):
|
|
44
69
|
bl_label: typing.Any
|
|
45
70
|
bl_rna: typing.Any
|
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -6508,6 +6508,42 @@ class VIEW3D_PT_overlay_gpencil_options(bpy.types.Panel):
|
|
|
6508
6508
|
:param context:
|
|
6509
6509
|
"""
|
|
6510
6510
|
|
|
6511
|
+
class VIEW3D_PT_overlay_grease_pencil_canvas_options(bpy.types.Panel):
|
|
6512
|
+
bl_label: typing.Any
|
|
6513
|
+
bl_parent_id: typing.Any
|
|
6514
|
+
bl_region_type: typing.Any
|
|
6515
|
+
bl_rna: typing.Any
|
|
6516
|
+
bl_space_type: typing.Any
|
|
6517
|
+
bl_ui_units_x: typing.Any
|
|
6518
|
+
id_data: typing.Any
|
|
6519
|
+
|
|
6520
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
6521
|
+
"""
|
|
6522
|
+
|
|
6523
|
+
:return: The RNA type or default when not found.
|
|
6524
|
+
:rtype: bpy.types.Struct
|
|
6525
|
+
"""
|
|
6526
|
+
|
|
6527
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
6528
|
+
"""
|
|
6529
|
+
|
|
6530
|
+
:return: The class or default when not found.
|
|
6531
|
+
:rtype: typing.Any
|
|
6532
|
+
"""
|
|
6533
|
+
|
|
6534
|
+
def draw(self, context):
|
|
6535
|
+
"""
|
|
6536
|
+
|
|
6537
|
+
:param context:
|
|
6538
|
+
"""
|
|
6539
|
+
|
|
6540
|
+
@classmethod
|
|
6541
|
+
def poll(cls, context):
|
|
6542
|
+
"""
|
|
6543
|
+
|
|
6544
|
+
:param context:
|
|
6545
|
+
"""
|
|
6546
|
+
|
|
6511
6547
|
class VIEW3D_PT_overlay_grease_pencil_options(bpy.types.Panel):
|
|
6512
6548
|
bl_label: typing.Any
|
|
6513
6549
|
bl_region_type: typing.Any
|
bpy/__init__.pyi
CHANGED