fake-bpy-module 20240928__py3-none-any.whl → 20240930__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
- bmesh/types/__init__.pyi +2 -2
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +124 -124
- 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 +202 -202
- 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 +333 -298
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/RECORD +85 -85
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240928.dist-info → fake_bpy_module-20240930.dist-info}/top_level.txt +0 -0
bpy/ops/cachefile/__init__.pyi
CHANGED
|
@@ -4,7 +4,7 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def layer_add(
|
|
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
|
*,
|
|
@@ -38,7 +38,7 @@ def layer_add(
|
|
|
38
38
|
):
|
|
39
39
|
"""Add an override layer to the archive
|
|
40
40
|
|
|
41
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
41
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
42
42
|
:type execution_context: int | str | None
|
|
43
43
|
:type undo: bool | None
|
|
44
44
|
:param filepath: File Path, Path to file
|
|
@@ -104,7 +104,7 @@ def layer_add(
|
|
|
104
104
|
"""
|
|
105
105
|
|
|
106
106
|
def layer_move(
|
|
107
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
107
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
108
108
|
execution_context: int | str | None = None,
|
|
109
109
|
undo: bool | None = None,
|
|
110
110
|
*,
|
|
@@ -112,7 +112,7 @@ def layer_move(
|
|
|
112
112
|
):
|
|
113
113
|
"""Move layer in the list, layers further down the list will overwrite data from the layers higher up
|
|
114
114
|
|
|
115
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
115
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
116
116
|
:type execution_context: int | str | None
|
|
117
117
|
:type undo: bool | None
|
|
118
118
|
:param direction: Direction, Direction to move the active vertex group towards
|
|
@@ -120,19 +120,19 @@ def layer_move(
|
|
|
120
120
|
"""
|
|
121
121
|
|
|
122
122
|
def layer_remove(
|
|
123
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
123
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
124
124
|
execution_context: int | str | None = None,
|
|
125
125
|
undo: bool | None = None,
|
|
126
126
|
):
|
|
127
127
|
"""Remove an override layer from the archive
|
|
128
128
|
|
|
129
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
129
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
130
130
|
:type execution_context: int | str | None
|
|
131
131
|
:type undo: bool | None
|
|
132
132
|
"""
|
|
133
133
|
|
|
134
134
|
def open(
|
|
135
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
135
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
136
136
|
execution_context: int | str | None = None,
|
|
137
137
|
undo: bool | None = None,
|
|
138
138
|
*,
|
|
@@ -166,7 +166,7 @@ def open(
|
|
|
166
166
|
):
|
|
167
167
|
"""Load a cache file
|
|
168
168
|
|
|
169
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
169
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
170
170
|
:type execution_context: int | str | None
|
|
171
171
|
:type undo: bool | None
|
|
172
172
|
:param filepath: File Path, Path to file
|
|
@@ -232,13 +232,13 @@ def open(
|
|
|
232
232
|
"""
|
|
233
233
|
|
|
234
234
|
def reload(
|
|
235
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
235
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
236
236
|
execution_context: int | str | None = None,
|
|
237
237
|
undo: bool | None = None,
|
|
238
238
|
):
|
|
239
239
|
"""Update objects paths list with new data from the archive
|
|
240
240
|
|
|
241
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
241
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
242
242
|
:type execution_context: int | str | None
|
|
243
243
|
:type undo: bool | None
|
|
244
244
|
"""
|
bpy/ops/camera/__init__.pyi
CHANGED
|
@@ -4,7 +4,7 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def preset_add(
|
|
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
|
*,
|
|
@@ -15,7 +15,7 @@ def preset_add(
|
|
|
15
15
|
):
|
|
16
16
|
"""Add or remove a Camera Preset
|
|
17
17
|
|
|
18
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
18
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
19
19
|
:type execution_context: int | str | None
|
|
20
20
|
:type undo: bool | None
|
|
21
21
|
:param name: Name, Name of the preset, used to make the path name
|
|
@@ -29,7 +29,7 @@ def preset_add(
|
|
|
29
29
|
"""
|
|
30
30
|
|
|
31
31
|
def safe_areas_preset_add(
|
|
32
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
32
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
33
33
|
execution_context: int | str | None = None,
|
|
34
34
|
undo: bool | None = None,
|
|
35
35
|
*,
|
|
@@ -39,7 +39,7 @@ def safe_areas_preset_add(
|
|
|
39
39
|
):
|
|
40
40
|
"""Add or remove a Safe Areas Preset
|
|
41
41
|
|
|
42
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
42
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
43
43
|
:type execution_context: int | str | None
|
|
44
44
|
:type undo: bool | None
|
|
45
45
|
:param name: Name, Name of the preset, used to make the path name
|