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/geometry/__init__.pyi
CHANGED
|
@@ -4,7 +4,9 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def attribute_add(
|
|
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
|
name: typing.Union[str, typing.Any] = "",
|
|
@@ -13,7 +15,7 @@ def attribute_add(
|
|
|
13
15
|
):
|
|
14
16
|
"""Add attribute to geometry
|
|
15
17
|
|
|
16
|
-
:type override_context: typing.Optional[typing.Union[
|
|
18
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
17
19
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
18
20
|
:type undo: typing.Optional[bool]
|
|
19
21
|
:param name: Name, Name of new attribute
|
|
@@ -27,7 +29,9 @@ def attribute_add(
|
|
|
27
29
|
...
|
|
28
30
|
|
|
29
31
|
def attribute_convert(
|
|
30
|
-
override_context: typing.Optional[
|
|
32
|
+
override_context: typing.Optional[
|
|
33
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
34
|
+
] = None,
|
|
31
35
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
32
36
|
undo: typing.Optional[bool] = None,
|
|
33
37
|
mode: typing.Optional[typing.Any] = "GENERIC",
|
|
@@ -36,7 +40,7 @@ def attribute_convert(
|
|
|
36
40
|
):
|
|
37
41
|
"""Change how the attribute is stored
|
|
38
42
|
|
|
39
|
-
:type override_context: typing.Optional[typing.Union[
|
|
43
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
40
44
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
41
45
|
:type undo: typing.Optional[bool]
|
|
42
46
|
:param mode: Mode
|
|
@@ -50,13 +54,15 @@ def attribute_convert(
|
|
|
50
54
|
...
|
|
51
55
|
|
|
52
56
|
def attribute_remove(
|
|
53
|
-
override_context: typing.Optional[
|
|
57
|
+
override_context: typing.Optional[
|
|
58
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
59
|
+
] = None,
|
|
54
60
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
55
61
|
undo: typing.Optional[bool] = None,
|
|
56
62
|
):
|
|
57
63
|
"""Remove attribute from geometry
|
|
58
64
|
|
|
59
|
-
:type override_context: typing.Optional[typing.Union[
|
|
65
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
60
66
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
61
67
|
:type undo: typing.Optional[bool]
|
|
62
68
|
"""
|
|
@@ -64,7 +70,9 @@ def attribute_remove(
|
|
|
64
70
|
...
|
|
65
71
|
|
|
66
72
|
def color_attribute_add(
|
|
67
|
-
override_context: typing.Optional[
|
|
73
|
+
override_context: typing.Optional[
|
|
74
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
75
|
+
] = None,
|
|
68
76
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
69
77
|
undo: typing.Optional[bool] = None,
|
|
70
78
|
name: typing.Union[str, typing.Any] = "",
|
|
@@ -74,7 +82,7 @@ def color_attribute_add(
|
|
|
74
82
|
):
|
|
75
83
|
"""Add color attribute to geometry
|
|
76
84
|
|
|
77
|
-
:type override_context: typing.Optional[typing.Union[
|
|
85
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
78
86
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
79
87
|
:type undo: typing.Optional[bool]
|
|
80
88
|
:param name: Name, Name of new color attribute
|
|
@@ -90,7 +98,9 @@ def color_attribute_add(
|
|
|
90
98
|
...
|
|
91
99
|
|
|
92
100
|
def color_attribute_convert(
|
|
93
|
-
override_context: typing.Optional[
|
|
101
|
+
override_context: typing.Optional[
|
|
102
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
103
|
+
] = None,
|
|
94
104
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
95
105
|
undo: typing.Optional[bool] = None,
|
|
96
106
|
domain: typing.Optional[typing.Union[str, int]] = "POINT",
|
|
@@ -98,7 +108,7 @@ def color_attribute_convert(
|
|
|
98
108
|
):
|
|
99
109
|
"""Change how the color attribute is stored
|
|
100
110
|
|
|
101
|
-
:type override_context: typing.Optional[typing.Union[
|
|
111
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
102
112
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
103
113
|
:type undo: typing.Optional[bool]
|
|
104
114
|
:param domain: Domain, Type of element that attribute is stored on
|
|
@@ -110,13 +120,15 @@ def color_attribute_convert(
|
|
|
110
120
|
...
|
|
111
121
|
|
|
112
122
|
def color_attribute_duplicate(
|
|
113
|
-
override_context: typing.Optional[
|
|
123
|
+
override_context: typing.Optional[
|
|
124
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
125
|
+
] = None,
|
|
114
126
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
115
127
|
undo: typing.Optional[bool] = None,
|
|
116
128
|
):
|
|
117
129
|
"""Duplicate color attribute
|
|
118
130
|
|
|
119
|
-
:type override_context: typing.Optional[typing.Union[
|
|
131
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
120
132
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
121
133
|
:type undo: typing.Optional[bool]
|
|
122
134
|
"""
|
|
@@ -124,13 +136,15 @@ def color_attribute_duplicate(
|
|
|
124
136
|
...
|
|
125
137
|
|
|
126
138
|
def color_attribute_remove(
|
|
127
|
-
override_context: typing.Optional[
|
|
139
|
+
override_context: typing.Optional[
|
|
140
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
141
|
+
] = None,
|
|
128
142
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
129
143
|
undo: typing.Optional[bool] = None,
|
|
130
144
|
):
|
|
131
145
|
"""Remove color attribute from geometry
|
|
132
146
|
|
|
133
|
-
:type override_context: typing.Optional[typing.Union[
|
|
147
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
134
148
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
135
149
|
:type undo: typing.Optional[bool]
|
|
136
150
|
"""
|
|
@@ -138,14 +152,16 @@ def color_attribute_remove(
|
|
|
138
152
|
...
|
|
139
153
|
|
|
140
154
|
def color_attribute_render_set(
|
|
141
|
-
override_context: typing.Optional[
|
|
155
|
+
override_context: typing.Optional[
|
|
156
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
157
|
+
] = None,
|
|
142
158
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
143
159
|
undo: typing.Optional[bool] = None,
|
|
144
160
|
name: typing.Union[str, typing.Any] = "Color",
|
|
145
161
|
):
|
|
146
162
|
"""Set default color attribute used for rendering
|
|
147
163
|
|
|
148
|
-
:type override_context: typing.Optional[typing.Union[
|
|
164
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
149
165
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
150
166
|
:type undo: typing.Optional[bool]
|
|
151
167
|
:param name: Name, Name of color attribute
|
|
@@ -155,7 +171,9 @@ def color_attribute_render_set(
|
|
|
155
171
|
...
|
|
156
172
|
|
|
157
173
|
def execute_node_group(
|
|
158
|
-
override_context: typing.Optional[
|
|
174
|
+
override_context: typing.Optional[
|
|
175
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
176
|
+
] = None,
|
|
159
177
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
160
178
|
undo: typing.Optional[bool] = None,
|
|
161
179
|
asset_library_type: typing.Optional[typing.Union[str, int]] = "LOCAL",
|
|
@@ -167,7 +185,7 @@ def execute_node_group(
|
|
|
167
185
|
):
|
|
168
186
|
"""Execute a node group on geometry
|
|
169
187
|
|
|
170
|
-
:type override_context: typing.Optional[typing.Union[
|
|
188
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
171
189
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
172
190
|
:type undo: typing.Optional[bool]
|
|
173
191
|
:param asset_library_type: Asset Library Type
|
|
@@ -187,14 +205,16 @@ def execute_node_group(
|
|
|
187
205
|
...
|
|
188
206
|
|
|
189
207
|
def geometry_randomization(
|
|
190
|
-
override_context: typing.Optional[
|
|
208
|
+
override_context: typing.Optional[
|
|
209
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
210
|
+
] = None,
|
|
191
211
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
192
212
|
undo: typing.Optional[bool] = None,
|
|
193
213
|
value: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
194
214
|
):
|
|
195
215
|
"""Toggle geometry randomization for debugging purposes
|
|
196
216
|
|
|
197
|
-
:type override_context: typing.Optional[typing.Union[
|
|
217
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
198
218
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
199
219
|
:type undo: typing.Optional[bool]
|
|
200
220
|
:param value: Value, Randomize the order of geometry elements (e.g. vertices or edges) after some operations where there are no guarantees about the order. This avoids accidentally depending on something that may change in the future
|
bpy/ops/gizmogroup/__init__.pyi
CHANGED
|
@@ -4,7 +4,9 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def gizmo_select(
|
|
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
|
extend: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
@@ -15,7 +17,7 @@ def gizmo_select(
|
|
|
15
17
|
):
|
|
16
18
|
"""Select the currently highlighted gizmo
|
|
17
19
|
|
|
18
|
-
:type override_context: typing.Optional[typing.Union[
|
|
20
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
19
21
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
20
22
|
:type undo: typing.Optional[bool]
|
|
21
23
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -33,13 +35,15 @@ def gizmo_select(
|
|
|
33
35
|
...
|
|
34
36
|
|
|
35
37
|
def gizmo_tweak(
|
|
36
|
-
override_context: typing.Optional[
|
|
38
|
+
override_context: typing.Optional[
|
|
39
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
40
|
+
] = None,
|
|
37
41
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
38
42
|
undo: typing.Optional[bool] = None,
|
|
39
43
|
):
|
|
40
44
|
"""Tweak the active gizmo
|
|
41
45
|
|
|
42
|
-
:type override_context: typing.Optional[typing.Union[
|
|
46
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
43
47
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
44
48
|
:type undo: typing.Optional[bool]
|
|
45
49
|
"""
|