fake-bpy-module 20240507__py3-none-any.whl → 20240509__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.
- bpy/ops/action/__init__.pyi +152 -76
- bpy/ops/anim/__init__.pyi +212 -106
- bpy/ops/armature/__init__.pyi +192 -96
- bpy/ops/asset/__init__.pyi +64 -32
- bpy/ops/boid/__init__.pyi +32 -16
- bpy/ops/brush/__init__.pyi +36 -18
- bpy/ops/buttons/__init__.pyi +24 -12
- bpy/ops/cachefile/__init__.pyi +20 -10
- bpy/ops/camera/__init__.pyi +8 -4
- bpy/ops/clip/__init__.pyi +368 -184
- bpy/ops/cloth/__init__.pyi +4 -2
- bpy/ops/collection/__init__.pyi +36 -18
- bpy/ops/console/__init__.pyi +84 -42
- bpy/ops/constraint/__init__.pyi +72 -36
- bpy/ops/curve/__init__.pyi +204 -102
- bpy/ops/curves/__init__.pyi +108 -54
- bpy/ops/cycles/__init__.pyi +12 -6
- bpy/ops/dpaint/__init__.pyi +20 -10
- bpy/ops/ed/__init__.pyi +48 -24
- bpy/ops/export_anim/__init__.pyi +4 -2
- bpy/ops/export_mesh/__init__.pyi +4 -2
- bpy/ops/export_scene/__init__.pyi +14 -8
- bpy/ops/file/__init__.pyi +160 -80
- bpy/ops/fluid/__init__.pyi +56 -28
- bpy/ops/font/__init__.pyi +92 -46
- bpy/ops/geometry/__init__.pyi +40 -20
- bpy/ops/gizmogroup/__init__.pyi +8 -4
- bpy/ops/gpencil/__init__.pyi +600 -300
- bpy/ops/graph/__init__.pyi +260 -130
- bpy/ops/grease_pencil/__init__.pyi +268 -134
- bpy/ops/image/__init__.pyi +188 -94
- bpy/ops/import_anim/__init__.pyi +4 -2
- bpy/ops/import_curve/__init__.pyi +4 -2
- bpy/ops/import_mesh/__init__.pyi +4 -2
- bpy/ops/import_scene/__init__.pyi +12 -6
- bpy/ops/info/__init__.pyi +28 -14
- bpy/ops/lattice/__init__.pyi +32 -16
- bpy/ops/marker/__init__.pyi +44 -22
- bpy/ops/mask/__init__.pyi +156 -78
- bpy/ops/material/__init__.pyi +12 -6
- bpy/ops/mball/__init__.pyi +32 -16
- bpy/ops/mesh/__init__.pyi +652 -326
- bpy/ops/nla/__init__.pyi +158 -80
- bpy/ops/node/__init__.pyi +404 -202
- bpy/ops/object/__init__.pyi +1002 -490
- bpy/ops/outliner/__init__.pyi +276 -138
- bpy/ops/paint/__init__.pyi +212 -106
- bpy/ops/paintcurve/__init__.pyi +32 -16
- bpy/ops/palette/__init__.pyi +28 -14
- bpy/ops/particle/__init__.pyi +144 -72
- bpy/ops/pose/__init__.pyi +156 -78
- bpy/ops/poselib/__init__.pyi +36 -18
- bpy/ops/preferences/__init__.pyi +152 -76
- bpy/ops/ptcache/__init__.pyi +28 -14
- bpy/ops/render/__init__.pyi +48 -24
- bpy/ops/rigidbody/__init__.pyi +52 -26
- bpy/ops/scene/__init__.pyi +156 -78
- bpy/ops/screen/__init__.pyi +156 -78
- bpy/ops/script/__init__.pyi +12 -6
- bpy/ops/sculpt/__init__.pyi +134 -68
- bpy/ops/sculpt_curves/__init__.pyi +16 -8
- bpy/ops/sequencer/__init__.pyi +340 -170
- bpy/ops/sound/__init__.pyi +28 -14
- bpy/ops/spreadsheet/__init__.pyi +16 -8
- bpy/ops/surface/__init__.pyi +24 -12
- bpy/ops/text/__init__.pyi +172 -86
- bpy/ops/text_editor/__init__.pyi +4 -2
- bpy/ops/texture/__init__.pyi +16 -8
- bpy/ops/transform/__init__.pyi +108 -54
- bpy/ops/ui/__init__.pyi +132 -66
- bpy/ops/uilist/__init__.pyi +12 -6
- bpy/ops/uv/__init__.pyi +196 -98
- bpy/ops/view2d/__init__.pyi +56 -28
- bpy/ops/view3d/__init__.pyi +268 -134
- bpy/ops/wm/__init__.pyi +493 -224
- bpy/ops/workspace/__init__.pyi +28 -14
- bpy/ops/world/__init__.pyi +4 -2
- bpy/types/__init__.pyi +1250 -631
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/RECORD +83 -83
- mathutils/__init__.pyi +20 -0
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240507.dist-info → fake_bpy_module-20240509.dist-info}/top_level.txt +0 -0
bpy/ops/poselib/__init__.pyi
CHANGED
|
@@ -4,7 +4,9 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def apply_pose_asset(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
blend_factor: typing.Optional[typing.Any] = 1.0,
|
|
@@ -12,7 +14,7 @@ def apply_pose_asset(
|
|
|
12
14
|
):
|
|
13
15
|
"""Apply the given Pose Action to the rig
|
|
14
16
|
|
|
15
|
-
:type override_context: typing.Optional[typing.Union[
|
|
17
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
16
18
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
17
19
|
:type undo: typing.Optional[bool]
|
|
18
20
|
:param blend_factor: Blend Factor, Amount that the pose is applied on top of the existing poses. A negative value will subtract the pose instead of adding it
|
|
@@ -24,7 +26,9 @@ def apply_pose_asset(
|
|
|
24
26
|
...
|
|
25
27
|
|
|
26
28
|
def blend_pose_asset(
|
|
27
|
-
override_context: typing.Optional[
|
|
29
|
+
override_context: typing.Optional[
|
|
30
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
31
|
+
] = None,
|
|
28
32
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
29
33
|
undo: typing.Optional[bool] = None,
|
|
30
34
|
blend_factor: typing.Optional[typing.Any] = 0.0,
|
|
@@ -33,7 +37,7 @@ def blend_pose_asset(
|
|
|
33
37
|
):
|
|
34
38
|
"""Blend the given Pose Action to the rig
|
|
35
39
|
|
|
36
|
-
:type override_context: typing.Optional[typing.Union[
|
|
40
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
37
41
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
38
42
|
:type undo: typing.Optional[bool]
|
|
39
43
|
:param blend_factor: Blend Factor, Amount that the pose is applied on top of the existing poses. A negative value will subtract the pose instead of adding it
|
|
@@ -47,13 +51,15 @@ def blend_pose_asset(
|
|
|
47
51
|
...
|
|
48
52
|
|
|
49
53
|
def convert_old_object_poselib(
|
|
50
|
-
override_context: typing.Optional[
|
|
54
|
+
override_context: typing.Optional[
|
|
55
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
56
|
+
] = None,
|
|
51
57
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
52
58
|
undo: typing.Optional[bool] = None,
|
|
53
59
|
):
|
|
54
60
|
"""Create a pose asset for each pose marker in this legacy pose library data-block
|
|
55
61
|
|
|
56
|
-
:type override_context: typing.Optional[typing.Union[
|
|
62
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
57
63
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
58
64
|
:type undo: typing.Optional[bool]
|
|
59
65
|
"""
|
|
@@ -61,13 +67,15 @@ def convert_old_object_poselib(
|
|
|
61
67
|
...
|
|
62
68
|
|
|
63
69
|
def convert_old_poselib(
|
|
64
|
-
override_context: typing.Optional[
|
|
70
|
+
override_context: typing.Optional[
|
|
71
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
72
|
+
] = None,
|
|
65
73
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
66
74
|
undo: typing.Optional[bool] = None,
|
|
67
75
|
):
|
|
68
76
|
"""Create a pose asset for each pose marker in the current action
|
|
69
77
|
|
|
70
|
-
:type override_context: typing.Optional[typing.Union[
|
|
78
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
71
79
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
72
80
|
:type undo: typing.Optional[bool]
|
|
73
81
|
"""
|
|
@@ -75,13 +83,15 @@ def convert_old_poselib(
|
|
|
75
83
|
...
|
|
76
84
|
|
|
77
85
|
def copy_as_asset(
|
|
78
|
-
override_context: typing.Optional[
|
|
86
|
+
override_context: typing.Optional[
|
|
87
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
88
|
+
] = None,
|
|
79
89
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
80
90
|
undo: typing.Optional[bool] = None,
|
|
81
91
|
):
|
|
82
92
|
"""Create a new pose asset on the clipboard, to be pasted into an Asset Browser
|
|
83
93
|
|
|
84
|
-
:type override_context: typing.Optional[typing.Union[
|
|
94
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
85
95
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
86
96
|
:type undo: typing.Optional[bool]
|
|
87
97
|
"""
|
|
@@ -89,7 +99,9 @@ def copy_as_asset(
|
|
|
89
99
|
...
|
|
90
100
|
|
|
91
101
|
def create_pose_asset(
|
|
92
|
-
override_context: typing.Optional[
|
|
102
|
+
override_context: typing.Optional[
|
|
103
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
104
|
+
] = None,
|
|
93
105
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
94
106
|
undo: typing.Optional[bool] = None,
|
|
95
107
|
pose_name: typing.Union[str, typing.Any] = "",
|
|
@@ -97,7 +109,7 @@ def create_pose_asset(
|
|
|
97
109
|
):
|
|
98
110
|
"""Create a new Action that contains the pose of the selected bones, and mark it as Asset. The asset will be stored in the current blend file
|
|
99
111
|
|
|
100
|
-
:type override_context: typing.Optional[typing.Union[
|
|
112
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
101
113
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
102
114
|
:type undo: typing.Optional[bool]
|
|
103
115
|
:param pose_name: Pose Name
|
|
@@ -109,13 +121,15 @@ def create_pose_asset(
|
|
|
109
121
|
...
|
|
110
122
|
|
|
111
123
|
def paste_asset(
|
|
112
|
-
override_context: typing.Optional[
|
|
124
|
+
override_context: typing.Optional[
|
|
125
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
126
|
+
] = None,
|
|
113
127
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
114
128
|
undo: typing.Optional[bool] = None,
|
|
115
129
|
):
|
|
116
130
|
"""Paste the Asset that was previously copied using Copy As Asset
|
|
117
131
|
|
|
118
|
-
:type override_context: typing.Optional[typing.Union[
|
|
132
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
119
133
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
120
134
|
:type undo: typing.Optional[bool]
|
|
121
135
|
"""
|
|
@@ -123,7 +137,9 @@ def paste_asset(
|
|
|
123
137
|
...
|
|
124
138
|
|
|
125
139
|
def pose_asset_select_bones(
|
|
126
|
-
override_context: typing.Optional[
|
|
140
|
+
override_context: typing.Optional[
|
|
141
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
142
|
+
] = None,
|
|
127
143
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
128
144
|
undo: typing.Optional[bool] = None,
|
|
129
145
|
select: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -131,7 +147,7 @@ def pose_asset_select_bones(
|
|
|
131
147
|
):
|
|
132
148
|
"""Select those bones that are used in this pose
|
|
133
149
|
|
|
134
|
-
:type override_context: typing.Optional[typing.Union[
|
|
150
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
135
151
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
136
152
|
:type undo: typing.Optional[bool]
|
|
137
153
|
:param select: Select
|
|
@@ -143,13 +159,15 @@ def pose_asset_select_bones(
|
|
|
143
159
|
...
|
|
144
160
|
|
|
145
161
|
def restore_previous_action(
|
|
146
|
-
override_context: typing.Optional[
|
|
162
|
+
override_context: typing.Optional[
|
|
163
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
164
|
+
] = None,
|
|
147
165
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
148
166
|
undo: typing.Optional[bool] = None,
|
|
149
167
|
):
|
|
150
168
|
"""Switch back to the previous Action, after creating a pose asset
|
|
151
169
|
|
|
152
|
-
:type override_context: typing.Optional[typing.Union[
|
|
170
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
153
171
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
154
172
|
:type undo: typing.Optional[bool]
|
|
155
173
|
"""
|