fake-bpy-module 20240508__py3-none-any.whl → 20240510__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.
- bmesh/ops/__init__.pyi +106 -106
- 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 +15 -9
- 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 +496 -227
- bpy/ops/workspace/__init__.pyi +28 -14
- bpy/ops/world/__init__.pyi +4 -2
- bpy/types/__init__.pyi +434 -37
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240510.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240510.dist-info}/RECORD +84 -84
- mathutils/__init__.pyi +20 -0
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240510.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240510.dist-info}/top_level.txt +0 -0
bpy/ops/workspace/__init__.pyi
CHANGED
|
@@ -4,13 +4,15 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def 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
|
):
|
|
11
13
|
"""Add a new workspace by duplicating the current one or appending one from the user configuration
|
|
12
14
|
|
|
13
|
-
:type override_context: typing.Optional[typing.Union[
|
|
15
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
14
16
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
15
17
|
:type undo: typing.Optional[bool]
|
|
16
18
|
"""
|
|
@@ -18,7 +20,9 @@ def add(
|
|
|
18
20
|
...
|
|
19
21
|
|
|
20
22
|
def append_activate(
|
|
21
|
-
override_context: typing.Optional[
|
|
23
|
+
override_context: typing.Optional[
|
|
24
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
25
|
+
] = None,
|
|
22
26
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
23
27
|
undo: typing.Optional[bool] = None,
|
|
24
28
|
idname: typing.Union[str, typing.Any] = "",
|
|
@@ -26,7 +30,7 @@ def append_activate(
|
|
|
26
30
|
):
|
|
27
31
|
"""Append a workspace and make it the active one in the current window
|
|
28
32
|
|
|
29
|
-
:type override_context: typing.Optional[typing.Union[
|
|
33
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
30
34
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
31
35
|
:type undo: typing.Optional[bool]
|
|
32
36
|
:param idname: Identifier, Name of the workspace to append and activate
|
|
@@ -38,13 +42,15 @@ def append_activate(
|
|
|
38
42
|
...
|
|
39
43
|
|
|
40
44
|
def delete(
|
|
41
|
-
override_context: typing.Optional[
|
|
45
|
+
override_context: typing.Optional[
|
|
46
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
47
|
+
] = None,
|
|
42
48
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
43
49
|
undo: typing.Optional[bool] = None,
|
|
44
50
|
):
|
|
45
51
|
"""Delete the active workspace
|
|
46
52
|
|
|
47
|
-
:type override_context: typing.Optional[typing.Union[
|
|
53
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
48
54
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
49
55
|
:type undo: typing.Optional[bool]
|
|
50
56
|
"""
|
|
@@ -52,13 +58,15 @@ def delete(
|
|
|
52
58
|
...
|
|
53
59
|
|
|
54
60
|
def duplicate(
|
|
55
|
-
override_context: typing.Optional[
|
|
61
|
+
override_context: typing.Optional[
|
|
62
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
63
|
+
] = None,
|
|
56
64
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
57
65
|
undo: typing.Optional[bool] = None,
|
|
58
66
|
):
|
|
59
67
|
"""Add a new workspace
|
|
60
68
|
|
|
61
|
-
:type override_context: typing.Optional[typing.Union[
|
|
69
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
62
70
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
63
71
|
:type undo: typing.Optional[bool]
|
|
64
72
|
"""
|
|
@@ -66,13 +74,15 @@ def duplicate(
|
|
|
66
74
|
...
|
|
67
75
|
|
|
68
76
|
def reorder_to_back(
|
|
69
|
-
override_context: typing.Optional[
|
|
77
|
+
override_context: typing.Optional[
|
|
78
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
79
|
+
] = None,
|
|
70
80
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
71
81
|
undo: typing.Optional[bool] = None,
|
|
72
82
|
):
|
|
73
83
|
"""Reorder workspace to be last in the list
|
|
74
84
|
|
|
75
|
-
:type override_context: typing.Optional[typing.Union[
|
|
85
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
76
86
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
77
87
|
:type undo: typing.Optional[bool]
|
|
78
88
|
"""
|
|
@@ -80,13 +90,15 @@ def reorder_to_back(
|
|
|
80
90
|
...
|
|
81
91
|
|
|
82
92
|
def reorder_to_front(
|
|
83
|
-
override_context: typing.Optional[
|
|
93
|
+
override_context: typing.Optional[
|
|
94
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
95
|
+
] = None,
|
|
84
96
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
85
97
|
undo: typing.Optional[bool] = None,
|
|
86
98
|
):
|
|
87
99
|
"""Reorder workspace to be first in the list
|
|
88
100
|
|
|
89
|
-
:type override_context: typing.Optional[typing.Union[
|
|
101
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
90
102
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
91
103
|
:type undo: typing.Optional[bool]
|
|
92
104
|
"""
|
|
@@ -94,13 +106,15 @@ def reorder_to_front(
|
|
|
94
106
|
...
|
|
95
107
|
|
|
96
108
|
def scene_pin_toggle(
|
|
97
|
-
override_context: typing.Optional[
|
|
109
|
+
override_context: typing.Optional[
|
|
110
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
111
|
+
] = None,
|
|
98
112
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
99
113
|
undo: typing.Optional[bool] = None,
|
|
100
114
|
):
|
|
101
115
|
"""Remember the last used scene for the current workspace and switch to it whenever this workspace is activated again
|
|
102
116
|
|
|
103
|
-
:type override_context: typing.Optional[typing.Union[
|
|
117
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
104
118
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
105
119
|
:type undo: typing.Optional[bool]
|
|
106
120
|
"""
|
bpy/ops/world/__init__.pyi
CHANGED
|
@@ -4,13 +4,15 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def new(
|
|
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
|
):
|
|
11
13
|
"""Create a new world Data-Block
|
|
12
14
|
|
|
13
|
-
:type override_context: typing.Optional[typing.Union[
|
|
15
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
14
16
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
15
17
|
:type undo: typing.Optional[bool]
|
|
16
18
|
"""
|