fake-bpy-module 20240812__py3-none-any.whl → 20240813__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/space_view3d/__init__.pyi +31 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +110 -110
- 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 +166 -166
- 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 +208 -208
- bpy/ops/object/__init__.pyi +473 -473
- 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 +72 -72
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +174 -174
- 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 +64 -64
- 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 +226 -226
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +44 -34
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/RECORD +83 -83
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/top_level.txt +0 -0
bpy/ops/ed/__init__.pyi
CHANGED
|
@@ -7,13 +7,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def flush_edits(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
):
|
|
14
14
|
"""Flush edit data from active editing modes
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
"""
|
|
@@ -21,13 +21,13 @@ def flush_edits(
|
|
|
21
21
|
...
|
|
22
22
|
|
|
23
23
|
def lib_id_fake_user_toggle(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
24
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
25
25
|
execution_context: int | str | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
27
|
):
|
|
28
28
|
"""Save this data-block even if it has no users
|
|
29
29
|
|
|
30
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
30
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
31
31
|
:type execution_context: int | str | None
|
|
32
32
|
:type undo: bool | None
|
|
33
33
|
"""
|
|
@@ -35,13 +35,13 @@ def lib_id_fake_user_toggle(
|
|
|
35
35
|
...
|
|
36
36
|
|
|
37
37
|
def lib_id_generate_preview(
|
|
38
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
38
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
39
39
|
execution_context: int | str | None = None,
|
|
40
40
|
undo: bool | None = None,
|
|
41
41
|
):
|
|
42
42
|
"""Create an automatic preview for the selected data-block
|
|
43
43
|
|
|
44
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
44
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
45
45
|
:type execution_context: int | str | None
|
|
46
46
|
:type undo: bool | None
|
|
47
47
|
"""
|
|
@@ -49,13 +49,13 @@ def lib_id_generate_preview(
|
|
|
49
49
|
...
|
|
50
50
|
|
|
51
51
|
def lib_id_generate_preview_from_object(
|
|
52
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
52
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
53
53
|
execution_context: int | str | None = None,
|
|
54
54
|
undo: bool | None = None,
|
|
55
55
|
):
|
|
56
56
|
"""Create a preview for this asset by rendering the active object
|
|
57
57
|
|
|
58
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
58
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
59
59
|
:type execution_context: int | str | None
|
|
60
60
|
:type undo: bool | None
|
|
61
61
|
"""
|
|
@@ -63,7 +63,7 @@ def lib_id_generate_preview_from_object(
|
|
|
63
63
|
...
|
|
64
64
|
|
|
65
65
|
def lib_id_load_custom_preview(
|
|
66
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
66
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
67
67
|
execution_context: int | str | None = None,
|
|
68
68
|
undo: bool | None = None,
|
|
69
69
|
*,
|
|
@@ -98,7 +98,7 @@ def lib_id_load_custom_preview(
|
|
|
98
98
|
):
|
|
99
99
|
"""Choose an image to help identify the data-block visually
|
|
100
100
|
|
|
101
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
101
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
102
102
|
:type execution_context: int | str | None
|
|
103
103
|
:type undo: bool | None
|
|
104
104
|
:param filepath: File Path, Path to file
|
|
@@ -168,13 +168,13 @@ def lib_id_load_custom_preview(
|
|
|
168
168
|
...
|
|
169
169
|
|
|
170
170
|
def lib_id_override_editable_toggle(
|
|
171
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
171
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
172
172
|
execution_context: int | str | None = None,
|
|
173
173
|
undo: bool | None = None,
|
|
174
174
|
):
|
|
175
175
|
"""Set if this library override data-block can be edited
|
|
176
176
|
|
|
177
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
177
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
178
178
|
:type execution_context: int | str | None
|
|
179
179
|
:type undo: bool | None
|
|
180
180
|
"""
|
|
@@ -182,13 +182,13 @@ def lib_id_override_editable_toggle(
|
|
|
182
182
|
...
|
|
183
183
|
|
|
184
184
|
def lib_id_unlink(
|
|
185
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
185
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
186
186
|
execution_context: int | str | None = None,
|
|
187
187
|
undo: bool | None = None,
|
|
188
188
|
):
|
|
189
189
|
"""Remove a usage of a data-block, clearing the assignment
|
|
190
190
|
|
|
191
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
191
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
192
192
|
:type execution_context: int | str | None
|
|
193
193
|
:type undo: bool | None
|
|
194
194
|
"""
|
|
@@ -196,13 +196,13 @@ def lib_id_unlink(
|
|
|
196
196
|
...
|
|
197
197
|
|
|
198
198
|
def redo(
|
|
199
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
199
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
200
200
|
execution_context: int | str | None = None,
|
|
201
201
|
undo: bool | None = None,
|
|
202
202
|
):
|
|
203
203
|
"""Redo previous action
|
|
204
204
|
|
|
205
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
205
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
206
206
|
:type execution_context: int | str | None
|
|
207
207
|
:type undo: bool | None
|
|
208
208
|
"""
|
|
@@ -210,13 +210,13 @@ def redo(
|
|
|
210
210
|
...
|
|
211
211
|
|
|
212
212
|
def undo(
|
|
213
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
213
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
214
214
|
execution_context: int | str | None = None,
|
|
215
215
|
undo: bool | None = None,
|
|
216
216
|
):
|
|
217
217
|
"""Undo previous action
|
|
218
218
|
|
|
219
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
219
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
220
220
|
:type execution_context: int | str | None
|
|
221
221
|
:type undo: bool | None
|
|
222
222
|
"""
|
|
@@ -224,7 +224,7 @@ def undo(
|
|
|
224
224
|
...
|
|
225
225
|
|
|
226
226
|
def undo_history(
|
|
227
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
227
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
228
228
|
execution_context: int | str | None = None,
|
|
229
229
|
undo: bool | None = None,
|
|
230
230
|
*,
|
|
@@ -232,7 +232,7 @@ def undo_history(
|
|
|
232
232
|
):
|
|
233
233
|
"""Redo specific action in history
|
|
234
234
|
|
|
235
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
235
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
236
236
|
:type execution_context: int | str | None
|
|
237
237
|
:type undo: bool | None
|
|
238
238
|
:param item: Item
|
|
@@ -242,7 +242,7 @@ def undo_history(
|
|
|
242
242
|
...
|
|
243
243
|
|
|
244
244
|
def undo_push(
|
|
245
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
245
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
246
246
|
execution_context: int | str | None = None,
|
|
247
247
|
undo: bool | None = None,
|
|
248
248
|
*,
|
|
@@ -250,7 +250,7 @@ def undo_push(
|
|
|
250
250
|
):
|
|
251
251
|
"""Add an undo state (internal use only)
|
|
252
252
|
|
|
253
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
253
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
254
254
|
:type execution_context: int | str | None
|
|
255
255
|
:type undo: bool | None
|
|
256
256
|
:param message: Undo Message
|
|
@@ -260,13 +260,13 @@ def undo_push(
|
|
|
260
260
|
...
|
|
261
261
|
|
|
262
262
|
def undo_redo(
|
|
263
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
263
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
264
264
|
execution_context: int | str | None = None,
|
|
265
265
|
undo: bool | None = None,
|
|
266
266
|
):
|
|
267
267
|
"""Undo and redo previous action
|
|
268
268
|
|
|
269
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
269
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
270
270
|
:type execution_context: int | str | None
|
|
271
271
|
:type undo: bool | None
|
|
272
272
|
"""
|
bpy/ops/export_anim/__init__.pyi
CHANGED
|
@@ -7,7 +7,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def bvh(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
*,
|
|
@@ -23,7 +23,7 @@ def bvh(
|
|
|
23
23
|
):
|
|
24
24
|
"""Save a BVH motion capture file from an armature
|
|
25
25
|
|
|
26
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
26
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
27
27
|
:type execution_context: int | str | None
|
|
28
28
|
:type undo: bool | None
|
|
29
29
|
:param filepath: File Path, Filepath used for exporting the file
|
|
@@ -7,7 +7,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def fbx(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
*,
|
|
@@ -66,7 +66,7 @@ def fbx(
|
|
|
66
66
|
):
|
|
67
67
|
"""Write a FBX file
|
|
68
68
|
|
|
69
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
69
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
70
70
|
:type execution_context: int | str | None
|
|
71
71
|
:type undo: bool | None
|
|
72
72
|
:param filepath: File Path, Filepath used for exporting the file
|
|
@@ -248,7 +248,7 @@ def fbx(
|
|
|
248
248
|
...
|
|
249
249
|
|
|
250
250
|
def gltf(
|
|
251
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
251
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
252
252
|
execution_context: int | str | None = None,
|
|
253
253
|
undo: bool | None = None,
|
|
254
254
|
*,
|
|
@@ -365,7 +365,7 @@ def gltf(
|
|
|
365
365
|
):
|
|
366
366
|
"""Export scene as glTF 2.0 file
|
|
367
367
|
|
|
368
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
368
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
369
369
|
:type execution_context: int | str | None
|
|
370
370
|
:type undo: bool | None
|
|
371
371
|
:param filepath: File Path, Filepath used for exporting the file
|