fake-bpy-module 20241208__py3-none-any.whl → 20241209__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 +38 -138
- bpy/ops/anim/__init__.pyi +61 -179
- bpy/ops/armature/__init__.pyi +48 -147
- bpy/ops/asset/__init__.pyi +16 -71
- bpy/ops/boid/__init__.pyi +8 -41
- bpy/ops/brush/__init__.pyi +13 -39
- bpy/ops/buttons/__init__.pyi +6 -29
- bpy/ops/cachefile/__init__.pyi +5 -19
- bpy/ops/camera/__init__.pyi +2 -5
- bpy/ops/clip/__init__.pyi +92 -290
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +9 -25
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +51 -180
- bpy/ops/curves/__init__.pyi +28 -100
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +5 -19
- bpy/ops/ed/__init__.pyi +12 -53
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +2 -5
- bpy/ops/extensions/__init__.pyi +34 -110
- bpy/ops/file/__init__.pyi +40 -167
- bpy/ops/fluid/__init__.pyi +14 -77
- bpy/ops/font/__init__.pyi +23 -85
- bpy/ops/geometry/__init__.pyi +10 -27
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +65 -184
- bpy/ops/grease_pencil/__init__.pyi +108 -290
- bpy/ops/image/__init__.pyi +49 -154
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +2 -4
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +8 -29
- bpy/ops/marker/__init__.pyi +11 -31
- bpy/ops/mask/__init__.pyi +39 -132
- bpy/ops/material/__init__.pyi +3 -19
- bpy/ops/mball/__init__.pyi +8 -19
- bpy/ops/mesh/__init__.pyi +164 -401
- bpy/ops/nla/__init__.pyi +39 -147
- bpy/ops/node/__init__.pyi +115 -390
- bpy/ops/object/__init__.pyi +237 -630
- bpy/ops/outliner/__init__.pyi +71 -263
- bpy/ops/paint/__init__.pyi +54 -140
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +36 -134
- bpy/ops/pose/__init__.pyi +51 -169
- bpy/ops/poselib/__init__.pyi +9 -33
- bpy/ops/preferences/__init__.pyi +35 -94
- bpy/ops/ptcache/__init__.pyi +7 -33
- bpy/ops/render/__init__.pyi +13 -37
- bpy/ops/rigidbody/__init__.pyi +13 -45
- bpy/ops/scene/__init__.pyi +37 -121
- bpy/ops/screen/__init__.pyi +39 -137
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +37 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +89 -284
- bpy/ops/sound/__init__.pyi +7 -23
- bpy/ops/spreadsheet/__init__.pyi +4 -15
- bpy/ops/surface/__init__.pyi +6 -13
- bpy/ops/text/__init__.pyi +43 -175
- bpy/ops/text_editor/__init__.pyi +1 -3
- bpy/ops/texture/__init__.pyi +4 -21
- bpy/ops/transform/__init__.pyi +27 -61
- bpy/ops/ui/__init__.pyi +34 -117
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +49 -134
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +67 -232
- bpy/ops/wm/__init__.pyi +114 -298
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
bpy/ops/geometry/__init__.pyi
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
import bpy.typing
|
|
6
5
|
|
|
7
6
|
def attribute_add(
|
|
8
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
9
7
|
execution_context: int | str | None = None,
|
|
10
8
|
undo: bool | None = None,
|
|
9
|
+
/,
|
|
11
10
|
*,
|
|
12
11
|
name: str = "",
|
|
13
12
|
domain: bpy.typing.AttributeDomainItems | None = "POINT",
|
|
@@ -15,7 +14,6 @@ def attribute_add(
|
|
|
15
14
|
):
|
|
16
15
|
"""Add attribute to geometry
|
|
17
16
|
|
|
18
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
19
17
|
:type execution_context: int | str | None
|
|
20
18
|
:type undo: bool | None
|
|
21
19
|
:param name: Name, Name of new attribute
|
|
@@ -27,9 +25,9 @@ def attribute_add(
|
|
|
27
25
|
"""
|
|
28
26
|
|
|
29
27
|
def attribute_convert(
|
|
30
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
31
28
|
execution_context: int | str | None = None,
|
|
32
29
|
undo: bool | None = None,
|
|
30
|
+
/,
|
|
33
31
|
*,
|
|
34
32
|
mode: typing.Literal["GENERIC", "VERTEX_GROUP"] | None = "GENERIC",
|
|
35
33
|
domain: bpy.typing.AttributeDomainItems | None = "POINT",
|
|
@@ -37,7 +35,6 @@ def attribute_convert(
|
|
|
37
35
|
):
|
|
38
36
|
"""Change how the attribute is stored
|
|
39
37
|
|
|
40
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
41
38
|
:type execution_context: int | str | None
|
|
42
39
|
:type undo: bool | None
|
|
43
40
|
:param mode: Mode
|
|
@@ -49,21 +46,18 @@ def attribute_convert(
|
|
|
49
46
|
"""
|
|
50
47
|
|
|
51
48
|
def attribute_remove(
|
|
52
|
-
|
|
53
|
-
execution_context: int | str | None = None,
|
|
54
|
-
undo: bool | None = None,
|
|
49
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
55
50
|
):
|
|
56
51
|
"""Remove attribute from geometry
|
|
57
52
|
|
|
58
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
59
53
|
:type execution_context: int | str | None
|
|
60
54
|
:type undo: bool | None
|
|
61
55
|
"""
|
|
62
56
|
|
|
63
57
|
def color_attribute_add(
|
|
64
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
65
58
|
execution_context: int | str | None = None,
|
|
66
59
|
undo: bool | None = None,
|
|
60
|
+
/,
|
|
67
61
|
*,
|
|
68
62
|
name: str = "",
|
|
69
63
|
domain: bpy.typing.ColorAttributeDomainItems | None = "POINT",
|
|
@@ -72,7 +66,6 @@ def color_attribute_add(
|
|
|
72
66
|
):
|
|
73
67
|
"""Add color attribute to geometry
|
|
74
68
|
|
|
75
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
76
69
|
:type execution_context: int | str | None
|
|
77
70
|
:type undo: bool | None
|
|
78
71
|
:param name: Name, Name of new color attribute
|
|
@@ -86,16 +79,15 @@ def color_attribute_add(
|
|
|
86
79
|
"""
|
|
87
80
|
|
|
88
81
|
def color_attribute_convert(
|
|
89
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
90
82
|
execution_context: int | str | None = None,
|
|
91
83
|
undo: bool | None = None,
|
|
84
|
+
/,
|
|
92
85
|
*,
|
|
93
86
|
domain: bpy.typing.ColorAttributeDomainItems | None = "POINT",
|
|
94
87
|
data_type: bpy.typing.ColorAttributeTypeItems | None = "FLOAT_COLOR",
|
|
95
88
|
):
|
|
96
89
|
"""Change how the color attribute is stored
|
|
97
90
|
|
|
98
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
99
91
|
:type execution_context: int | str | None
|
|
100
92
|
:type undo: bool | None
|
|
101
93
|
:param domain: Domain, Type of element that attribute is stored on
|
|
@@ -105,39 +97,32 @@ def color_attribute_convert(
|
|
|
105
97
|
"""
|
|
106
98
|
|
|
107
99
|
def color_attribute_duplicate(
|
|
108
|
-
|
|
109
|
-
execution_context: int | str | None = None,
|
|
110
|
-
undo: bool | None = None,
|
|
100
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
111
101
|
):
|
|
112
102
|
"""Duplicate color attribute
|
|
113
103
|
|
|
114
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
115
104
|
:type execution_context: int | str | None
|
|
116
105
|
:type undo: bool | None
|
|
117
106
|
"""
|
|
118
107
|
|
|
119
108
|
def color_attribute_remove(
|
|
120
|
-
|
|
121
|
-
execution_context: int | str | None = None,
|
|
122
|
-
undo: bool | None = None,
|
|
109
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
123
110
|
):
|
|
124
111
|
"""Remove color attribute from geometry
|
|
125
112
|
|
|
126
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
127
113
|
:type execution_context: int | str | None
|
|
128
114
|
:type undo: bool | None
|
|
129
115
|
"""
|
|
130
116
|
|
|
131
117
|
def color_attribute_render_set(
|
|
132
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
133
118
|
execution_context: int | str | None = None,
|
|
134
119
|
undo: bool | None = None,
|
|
120
|
+
/,
|
|
135
121
|
*,
|
|
136
122
|
name: str = "Color",
|
|
137
123
|
):
|
|
138
124
|
"""Set default color attribute used for rendering
|
|
139
125
|
|
|
140
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
141
126
|
:type execution_context: int | str | None
|
|
142
127
|
:type undo: bool | None
|
|
143
128
|
:param name: Name, Name of color attribute
|
|
@@ -145,9 +130,9 @@ def color_attribute_render_set(
|
|
|
145
130
|
"""
|
|
146
131
|
|
|
147
132
|
def execute_node_group(
|
|
148
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
149
133
|
execution_context: int | str | None = None,
|
|
150
134
|
undo: bool | None = None,
|
|
135
|
+
/,
|
|
151
136
|
*,
|
|
152
137
|
asset_library_type: bpy.typing.AssetLibraryTypeItems | None = "LOCAL",
|
|
153
138
|
asset_library_identifier: str = "",
|
|
@@ -198,7 +183,6 @@ def execute_node_group(
|
|
|
198
183
|
):
|
|
199
184
|
"""Execute a node group on geometry
|
|
200
185
|
|
|
201
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
202
186
|
:type execution_context: int | str | None
|
|
203
187
|
:type undo: bool | None
|
|
204
188
|
:param asset_library_type: Asset Library Type
|
|
@@ -228,15 +212,14 @@ def execute_node_group(
|
|
|
228
212
|
"""
|
|
229
213
|
|
|
230
214
|
def geometry_randomization(
|
|
231
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
232
215
|
execution_context: int | str | None = None,
|
|
233
216
|
undo: bool | None = None,
|
|
217
|
+
/,
|
|
234
218
|
*,
|
|
235
219
|
value: bool | None = False,
|
|
236
220
|
):
|
|
237
221
|
"""Toggle geometry randomization for debugging purposes
|
|
238
222
|
|
|
239
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
240
223
|
:type execution_context: int | str | None
|
|
241
224
|
:type undo: bool | None
|
|
242
225
|
: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
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
|
|
6
5
|
def gizmo_select(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
6
|
execution_context: int | str | None = None,
|
|
9
7
|
undo: bool | None = None,
|
|
8
|
+
/,
|
|
10
9
|
*,
|
|
11
10
|
extend: bool | None = False,
|
|
12
11
|
deselect: bool | None = False,
|
|
@@ -16,7 +15,6 @@ def gizmo_select(
|
|
|
16
15
|
):
|
|
17
16
|
"""Select the currently highlighted gizmo
|
|
18
17
|
|
|
19
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
20
18
|
:type execution_context: int | str | None
|
|
21
19
|
:type undo: bool | None
|
|
22
20
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -31,14 +29,9 @@ def gizmo_select(
|
|
|
31
29
|
:type select_passthrough: bool | None
|
|
32
30
|
"""
|
|
33
31
|
|
|
34
|
-
def gizmo_tweak(
|
|
35
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
36
|
-
execution_context: int | str | None = None,
|
|
37
|
-
undo: bool | None = None,
|
|
38
|
-
):
|
|
32
|
+
def gizmo_tweak(execution_context: int | str | None = None, undo: bool | None = None):
|
|
39
33
|
"""Tweak the active gizmo
|
|
40
34
|
|
|
41
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
42
35
|
:type execution_context: int | str | None
|
|
43
36
|
:type undo: bool | None
|
|
44
37
|
"""
|
bpy/ops/gpencil/__init__.pyi
CHANGED
|
@@ -4,9 +4,9 @@ import typing_extensions
|
|
|
4
4
|
import bpy.types
|
|
5
5
|
|
|
6
6
|
def annotate(
|
|
7
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
8
7
|
execution_context: int | str | None = None,
|
|
9
8
|
undo: bool | None = None,
|
|
9
|
+
/,
|
|
10
10
|
*,
|
|
11
11
|
mode: typing.Literal["DRAW", "DRAW_STRAIGHT", "DRAW_POLY", "ERASER"]
|
|
12
12
|
| None = "DRAW",
|
|
@@ -27,7 +27,6 @@ def annotate(
|
|
|
27
27
|
):
|
|
28
28
|
"""Make annotations on the active data
|
|
29
29
|
|
|
30
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
31
30
|
:type execution_context: int | str | None
|
|
32
31
|
:type undo: bool | None
|
|
33
32
|
:param mode: Mode, Way to interpret mouse movements
|
|
@@ -91,63 +90,48 @@ def annotate(
|
|
|
91
90
|
"""
|
|
92
91
|
|
|
93
92
|
def annotation_active_frame_delete(
|
|
94
|
-
|
|
95
|
-
execution_context: int | str | None = None,
|
|
96
|
-
undo: bool | None = None,
|
|
93
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
97
94
|
):
|
|
98
95
|
"""Delete the active frame for the active Annotation Layer
|
|
99
96
|
|
|
100
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
101
97
|
:type execution_context: int | str | None
|
|
102
98
|
:type undo: bool | None
|
|
103
99
|
"""
|
|
104
100
|
|
|
105
101
|
def annotation_add(
|
|
106
|
-
|
|
107
|
-
execution_context: int | str | None = None,
|
|
108
|
-
undo: bool | None = None,
|
|
102
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
109
103
|
):
|
|
110
104
|
"""Add new Annotation data-block
|
|
111
105
|
|
|
112
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
113
106
|
:type execution_context: int | str | None
|
|
114
107
|
:type undo: bool | None
|
|
115
108
|
"""
|
|
116
109
|
|
|
117
|
-
def data_unlink(
|
|
118
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
119
|
-
execution_context: int | str | None = None,
|
|
120
|
-
undo: bool | None = None,
|
|
121
|
-
):
|
|
110
|
+
def data_unlink(execution_context: int | str | None = None, undo: bool | None = None):
|
|
122
111
|
"""Unlink active Annotation data-block
|
|
123
112
|
|
|
124
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
125
113
|
:type execution_context: int | str | None
|
|
126
114
|
:type undo: bool | None
|
|
127
115
|
"""
|
|
128
116
|
|
|
129
117
|
def layer_annotation_add(
|
|
130
|
-
|
|
131
|
-
execution_context: int | str | None = None,
|
|
132
|
-
undo: bool | None = None,
|
|
118
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
133
119
|
):
|
|
134
120
|
"""Add new Annotation layer or note for the active data-block
|
|
135
121
|
|
|
136
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
137
122
|
:type execution_context: int | str | None
|
|
138
123
|
:type undo: bool | None
|
|
139
124
|
"""
|
|
140
125
|
|
|
141
126
|
def layer_annotation_move(
|
|
142
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
143
127
|
execution_context: int | str | None = None,
|
|
144
128
|
undo: bool | None = None,
|
|
129
|
+
/,
|
|
145
130
|
*,
|
|
146
131
|
type: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
147
132
|
):
|
|
148
133
|
"""Move the active Annotation layer up/down in the list
|
|
149
134
|
|
|
150
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
151
135
|
:type execution_context: int | str | None
|
|
152
136
|
:type undo: bool | None
|
|
153
137
|
:param type: Type
|
|
@@ -155,25 +139,17 @@ def layer_annotation_move(
|
|
|
155
139
|
"""
|
|
156
140
|
|
|
157
141
|
def layer_annotation_remove(
|
|
158
|
-
|
|
159
|
-
execution_context: int | str | None = None,
|
|
160
|
-
undo: bool | None = None,
|
|
142
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
161
143
|
):
|
|
162
144
|
"""Remove active Annotation layer
|
|
163
145
|
|
|
164
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
165
146
|
:type execution_context: int | str | None
|
|
166
147
|
:type undo: bool | None
|
|
167
148
|
"""
|
|
168
149
|
|
|
169
|
-
def tint_flip(
|
|
170
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
171
|
-
execution_context: int | str | None = None,
|
|
172
|
-
undo: bool | None = None,
|
|
173
|
-
):
|
|
150
|
+
def tint_flip(execution_context: int | str | None = None, undo: bool | None = None):
|
|
174
151
|
"""Switch tint colors
|
|
175
152
|
|
|
176
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
177
153
|
:type execution_context: int | str | None
|
|
178
154
|
:type undo: bool | None
|
|
179
155
|
"""
|