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
bpy/ops/ed/__init__.pyi
CHANGED
|
@@ -4,55 +4,55 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def flush_edits(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
7
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
):
|
|
11
11
|
"""Flush edit data from active editing modes
|
|
12
12
|
|
|
13
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
13
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
14
14
|
:type execution_context: int | str | None
|
|
15
15
|
:type undo: bool | None
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
18
|
def lib_id_fake_user_toggle(
|
|
19
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
19
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
20
20
|
execution_context: int | str | None = None,
|
|
21
21
|
undo: bool | None = None,
|
|
22
22
|
):
|
|
23
23
|
"""Save this data-block even if it has no users
|
|
24
24
|
|
|
25
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
25
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
26
26
|
:type execution_context: int | str | None
|
|
27
27
|
:type undo: bool | None
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
30
|
def lib_id_generate_preview(
|
|
31
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
31
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
32
32
|
execution_context: int | str | None = None,
|
|
33
33
|
undo: bool | None = None,
|
|
34
34
|
):
|
|
35
35
|
"""Create an automatic preview for the selected data-block
|
|
36
36
|
|
|
37
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
37
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
38
38
|
:type execution_context: int | str | None
|
|
39
39
|
:type undo: bool | None
|
|
40
40
|
"""
|
|
41
41
|
|
|
42
42
|
def lib_id_generate_preview_from_object(
|
|
43
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
43
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
44
44
|
execution_context: int | str | None = None,
|
|
45
45
|
undo: bool | None = None,
|
|
46
46
|
):
|
|
47
47
|
"""Create a preview for this asset by rendering the active object
|
|
48
48
|
|
|
49
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
49
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
50
50
|
:type execution_context: int | str | None
|
|
51
51
|
:type undo: bool | None
|
|
52
52
|
"""
|
|
53
53
|
|
|
54
54
|
def lib_id_load_custom_preview(
|
|
55
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
55
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
56
56
|
execution_context: int | str | None = None,
|
|
57
57
|
undo: bool | None = None,
|
|
58
58
|
*,
|
|
@@ -87,7 +87,7 @@ def lib_id_load_custom_preview(
|
|
|
87
87
|
):
|
|
88
88
|
"""Choose an image to help identify the data-block visually
|
|
89
89
|
|
|
90
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
90
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
91
91
|
:type execution_context: int | str | None
|
|
92
92
|
:type undo: bool | None
|
|
93
93
|
:param filepath: File Path, Path to file
|
|
@@ -155,55 +155,55 @@ def lib_id_load_custom_preview(
|
|
|
155
155
|
"""
|
|
156
156
|
|
|
157
157
|
def lib_id_override_editable_toggle(
|
|
158
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
158
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
159
159
|
execution_context: int | str | None = None,
|
|
160
160
|
undo: bool | None = None,
|
|
161
161
|
):
|
|
162
162
|
"""Set if this library override data-block can be edited
|
|
163
163
|
|
|
164
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
164
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
165
165
|
:type execution_context: int | str | None
|
|
166
166
|
:type undo: bool | None
|
|
167
167
|
"""
|
|
168
168
|
|
|
169
169
|
def lib_id_unlink(
|
|
170
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
170
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
171
171
|
execution_context: int | str | None = None,
|
|
172
172
|
undo: bool | None = None,
|
|
173
173
|
):
|
|
174
174
|
"""Remove a usage of a data-block, clearing the assignment
|
|
175
175
|
|
|
176
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
176
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
177
177
|
:type execution_context: int | str | None
|
|
178
178
|
:type undo: bool | None
|
|
179
179
|
"""
|
|
180
180
|
|
|
181
181
|
def redo(
|
|
182
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
182
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
183
183
|
execution_context: int | str | None = None,
|
|
184
184
|
undo: bool | None = None,
|
|
185
185
|
):
|
|
186
186
|
"""Redo previous action
|
|
187
187
|
|
|
188
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
188
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
189
189
|
:type execution_context: int | str | None
|
|
190
190
|
:type undo: bool | None
|
|
191
191
|
"""
|
|
192
192
|
|
|
193
193
|
def undo(
|
|
194
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
194
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
195
195
|
execution_context: int | str | None = None,
|
|
196
196
|
undo: bool | None = None,
|
|
197
197
|
):
|
|
198
198
|
"""Undo previous action
|
|
199
199
|
|
|
200
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
200
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
201
201
|
:type execution_context: int | str | None
|
|
202
202
|
:type undo: bool | None
|
|
203
203
|
"""
|
|
204
204
|
|
|
205
205
|
def undo_history(
|
|
206
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
206
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
207
207
|
execution_context: int | str | None = None,
|
|
208
208
|
undo: bool | None = None,
|
|
209
209
|
*,
|
|
@@ -211,7 +211,7 @@ def undo_history(
|
|
|
211
211
|
):
|
|
212
212
|
"""Redo specific action in history
|
|
213
213
|
|
|
214
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
214
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
215
215
|
:type execution_context: int | str | None
|
|
216
216
|
:type undo: bool | None
|
|
217
217
|
:param item: Item
|
|
@@ -219,7 +219,7 @@ def undo_history(
|
|
|
219
219
|
"""
|
|
220
220
|
|
|
221
221
|
def undo_push(
|
|
222
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
222
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
223
223
|
execution_context: int | str | None = None,
|
|
224
224
|
undo: bool | None = None,
|
|
225
225
|
*,
|
|
@@ -227,7 +227,7 @@ def undo_push(
|
|
|
227
227
|
):
|
|
228
228
|
"""Add an undo state (internal use only)
|
|
229
229
|
|
|
230
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
230
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
231
231
|
:type execution_context: int | str | None
|
|
232
232
|
:type undo: bool | None
|
|
233
233
|
:param message: Undo Message
|
|
@@ -235,13 +235,13 @@ def undo_push(
|
|
|
235
235
|
"""
|
|
236
236
|
|
|
237
237
|
def undo_redo(
|
|
238
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
238
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
239
239
|
execution_context: int | str | None = None,
|
|
240
240
|
undo: bool | None = None,
|
|
241
241
|
):
|
|
242
242
|
"""Undo and redo previous action
|
|
243
243
|
|
|
244
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
244
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
245
245
|
:type execution_context: int | str | None
|
|
246
246
|
:type undo: bool | None
|
|
247
247
|
"""
|
bpy/ops/export_anim/__init__.pyi
CHANGED
|
@@ -4,7 +4,7 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def bvh(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
7
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
*,
|
|
@@ -20,7 +20,7 @@ def bvh(
|
|
|
20
20
|
):
|
|
21
21
|
"""Save a BVH motion capture file from an armature
|
|
22
22
|
|
|
23
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
23
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
24
24
|
:type execution_context: int | str | None
|
|
25
25
|
:type undo: bool | None
|
|
26
26
|
:param filepath: File Path, Filepath used for exporting the file
|
|
@@ -4,7 +4,7 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def fbx(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
7
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
8
|
execution_context: int | str | None = None,
|
|
9
9
|
undo: bool | None = None,
|
|
10
10
|
*,
|
|
@@ -63,7 +63,7 @@ def fbx(
|
|
|
63
63
|
):
|
|
64
64
|
"""Write a FBX file
|
|
65
65
|
|
|
66
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
66
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
67
67
|
:type execution_context: int | str | None
|
|
68
68
|
:type undo: bool | None
|
|
69
69
|
:param filepath: File Path, Filepath used for exporting the file
|
|
@@ -243,7 +243,7 @@ def fbx(
|
|
|
243
243
|
"""
|
|
244
244
|
|
|
245
245
|
def gltf(
|
|
246
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
246
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
247
247
|
execution_context: int | str | None = None,
|
|
248
248
|
undo: bool | None = None,
|
|
249
249
|
*,
|
|
@@ -360,7 +360,7 @@ def gltf(
|
|
|
360
360
|
):
|
|
361
361
|
"""Export scene as glTF 2.0 file
|
|
362
362
|
|
|
363
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
363
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
364
364
|
:type execution_context: int | str | None
|
|
365
365
|
:type undo: bool | None
|
|
366
366
|
:param filepath: File Path, Filepath used for exporting the file
|