fake-bpy-module 20240803__py3-none-any.whl → 20240804__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.
- aud/__init__.pyi +77 -77
- bmesh/ops/__init__.pyi +54 -36
- bmesh/types/__init__.pyi +24 -24
- bpy/ops/action/__init__.pyi +55 -32
- bpy/ops/anim/__init__.pyi +22 -22
- bpy/ops/armature/__init__.pyi +47 -20
- bpy/ops/asset/__init__.pyi +5 -2
- bpy/ops/boid/__init__.pyi +12 -2
- bpy/ops/brush/__init__.pyi +18 -12
- bpy/ops/buttons/__init__.pyi +10 -4
- bpy/ops/cachefile/__init__.pyi +12 -6
- bpy/ops/clip/__init__.pyi +54 -38
- bpy/ops/console/__init__.pyi +17 -6
- bpy/ops/constraint/__init__.pyi +28 -28
- bpy/ops/curve/__init__.pyi +72 -34
- bpy/ops/curves/__init__.pyi +16 -16
- bpy/ops/dpaint/__init__.pyi +4 -4
- bpy/ops/ed/__init__.pyi +5 -2
- bpy/ops/export_anim/__init__.pyi +3 -2
- bpy/ops/export_scene/__init__.pyi +55 -45
- bpy/ops/file/__init__.pyi +40 -16
- bpy/ops/font/__init__.pyi +59 -16
- bpy/ops/geometry/__init__.pyi +55 -20
- bpy/ops/gpencil/__init__.pyi +155 -122
- bpy/ops/graph/__init__.pyi +131 -52
- bpy/ops/grease_pencil/__init__.pyi +78 -58
- bpy/ops/image/__init__.pyi +77 -54
- bpy/ops/import_anim/__init__.pyi +11 -8
- bpy/ops/import_scene/__init__.pyi +20 -18
- bpy/ops/info/__init__.pyi +4 -4
- bpy/ops/lattice/__init__.pyi +8 -8
- bpy/ops/marker/__init__.pyi +6 -6
- bpy/ops/mask/__init__.pyi +13 -12
- bpy/ops/mball/__init__.pyi +6 -6
- bpy/ops/mesh/__init__.pyi +290 -150
- bpy/ops/nla/__init__.pyi +28 -20
- bpy/ops/node/__init__.pyi +43 -32
- bpy/ops/object/__init__.pyi +651 -210
- bpy/ops/outliner/__init__.pyi +113 -32
- bpy/ops/paint/__init__.pyi +65 -56
- bpy/ops/palette/__init__.pyi +4 -4
- bpy/ops/particle/__init__.pyi +14 -14
- bpy/ops/pose/__init__.pyi +121 -44
- bpy/ops/preferences/__init__.pyi +9 -6
- bpy/ops/render/__init__.pyi +3 -2
- bpy/ops/rigidbody/__init__.pyi +45 -14
- bpy/ops/scene/__init__.pyi +69 -22
- bpy/ops/screen/__init__.pyi +78 -16
- bpy/ops/sculpt/__init__.pyi +131 -74
- bpy/ops/sculpt_curves/__init__.pyi +2 -2
- bpy/ops/sequencer/__init__.pyi +156 -60
- bpy/ops/sound/__init__.pyi +40 -16
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +65 -20
- bpy/ops/texture/__init__.pyi +2 -2
- bpy/ops/transform/__init__.pyi +344 -72
- bpy/ops/ui/__init__.pyi +9 -6
- bpy/ops/uilist/__init__.pyi +2 -2
- bpy/ops/uv/__init__.pyi +90 -66
- bpy/ops/view3d/__init__.pyi +36 -30
- bpy/ops/wm/__init__.pyi +443 -156
- bpy/types/__init__.pyi +28064 -2857
- {fake_bpy_module-20240803.dist-info → fake_bpy_module-20240804.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240803.dist-info → fake_bpy_module-20240804.dist-info}/RECORD +72 -72
- freestyle/chainingiterators/__init__.pyi +4 -4
- freestyle/types/__init__.pyi +76 -63
- idprop/types/__init__.pyi +2 -2
- imbuf/types/__init__.pyi +2 -2
- mathutils/__init__.pyi +1004 -970
- mathutils/bvhtree/__init__.pyi +2 -2
- {fake_bpy_module-20240803.dist-info → fake_bpy_module-20240804.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240803.dist-info → fake_bpy_module-20240804.dist-info}/top_level.txt +0 -0
bpy/ops/lattice/__init__.pyi
CHANGED
|
@@ -11,7 +11,7 @@ def flip(
|
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
*,
|
|
14
|
-
axis:
|
|
14
|
+
axis: typing.Literal["U", "V", "W"] | None = "U",
|
|
15
15
|
):
|
|
16
16
|
"""Mirror all control points without inverting the lattice deform
|
|
17
17
|
|
|
@@ -19,7 +19,7 @@ def flip(
|
|
|
19
19
|
:type execution_context: int | str | None
|
|
20
20
|
:type undo: bool | None
|
|
21
21
|
:param axis: Flip Axis, Coordinates along this axis get flipped
|
|
22
|
-
:type axis:
|
|
22
|
+
:type axis: typing.Literal['U','V','W'] | None
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
25
|
...
|
|
@@ -43,7 +43,7 @@ def select_all(
|
|
|
43
43
|
execution_context: int | str | None = None,
|
|
44
44
|
undo: bool | None = None,
|
|
45
45
|
*,
|
|
46
|
-
action:
|
|
46
|
+
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
47
47
|
):
|
|
48
48
|
"""Change selection of all UVW control points
|
|
49
49
|
|
|
@@ -63,7 +63,7 @@ def select_all(
|
|
|
63
63
|
|
|
64
64
|
INVERT
|
|
65
65
|
Invert -- Invert selection of all elements.
|
|
66
|
-
:type action:
|
|
66
|
+
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
67
67
|
"""
|
|
68
68
|
|
|
69
69
|
...
|
|
@@ -87,7 +87,7 @@ def select_mirror(
|
|
|
87
87
|
execution_context: int | str | None = None,
|
|
88
88
|
undo: bool | None = None,
|
|
89
89
|
*,
|
|
90
|
-
axis: set[
|
|
90
|
+
axis: set[typing.Literal["X", "Y", "Z"]] | None = {"X"},
|
|
91
91
|
extend: bool | None = False,
|
|
92
92
|
):
|
|
93
93
|
"""Select mirrored lattice points
|
|
@@ -96,7 +96,7 @@ def select_mirror(
|
|
|
96
96
|
:type execution_context: int | str | None
|
|
97
97
|
:type undo: bool | None
|
|
98
98
|
:param axis: Axis
|
|
99
|
-
:type axis: set[
|
|
99
|
+
:type axis: set[typing.Literal['X', 'Y', 'Z']] | None
|
|
100
100
|
:param extend: Extend, Extend the selection
|
|
101
101
|
:type extend: bool | None
|
|
102
102
|
"""
|
|
@@ -124,7 +124,7 @@ def select_random(
|
|
|
124
124
|
*,
|
|
125
125
|
ratio: float | None = 0.5,
|
|
126
126
|
seed: int | None = 0,
|
|
127
|
-
action:
|
|
127
|
+
action: typing.Literal["SELECT", "DESELECT"] | None = "SELECT",
|
|
128
128
|
):
|
|
129
129
|
"""Randomly select UVW control points
|
|
130
130
|
|
|
@@ -142,7 +142,7 @@ def select_random(
|
|
|
142
142
|
|
|
143
143
|
DESELECT
|
|
144
144
|
Deselect -- Deselect all elements.
|
|
145
|
-
:type action:
|
|
145
|
+
:type action: typing.Literal['SELECT','DESELECT'] | None
|
|
146
146
|
"""
|
|
147
147
|
|
|
148
148
|
...
|
bpy/ops/marker/__init__.pyi
CHANGED
|
@@ -162,7 +162,7 @@ def select_all(
|
|
|
162
162
|
execution_context: int | str | None = None,
|
|
163
163
|
undo: bool | None = None,
|
|
164
164
|
*,
|
|
165
|
-
action:
|
|
165
|
+
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
166
166
|
):
|
|
167
167
|
"""Change selection of all time markers
|
|
168
168
|
|
|
@@ -182,7 +182,7 @@ def select_all(
|
|
|
182
182
|
|
|
183
183
|
INVERT
|
|
184
184
|
Invert -- Invert selection of all elements.
|
|
185
|
-
:type action:
|
|
185
|
+
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
186
186
|
"""
|
|
187
187
|
|
|
188
188
|
...
|
|
@@ -197,7 +197,7 @@ def select_box(
|
|
|
197
197
|
ymin: int | None = 0,
|
|
198
198
|
ymax: int | None = 0,
|
|
199
199
|
wait_for_input: bool | None = True,
|
|
200
|
-
mode:
|
|
200
|
+
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
201
201
|
tweak: bool | None = False,
|
|
202
202
|
):
|
|
203
203
|
"""Select all time markers using box selection
|
|
@@ -225,7 +225,7 @@ def select_box(
|
|
|
225
225
|
|
|
226
226
|
SUB
|
|
227
227
|
Subtract -- Subtract existing selection.
|
|
228
|
-
:type mode:
|
|
228
|
+
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
229
229
|
:param tweak: Tweak, Operator has been activated using a click-drag event
|
|
230
230
|
:type tweak: bool | None
|
|
231
231
|
"""
|
|
@@ -237,7 +237,7 @@ def select_leftright(
|
|
|
237
237
|
execution_context: int | str | None = None,
|
|
238
238
|
undo: bool | None = None,
|
|
239
239
|
*,
|
|
240
|
-
mode:
|
|
240
|
+
mode: typing.Literal["LEFT", "RIGHT"] | None = "LEFT",
|
|
241
241
|
extend: bool | None = False,
|
|
242
242
|
):
|
|
243
243
|
"""Select markers on and left/right of the current frame
|
|
@@ -246,7 +246,7 @@ def select_leftright(
|
|
|
246
246
|
:type execution_context: int | str | None
|
|
247
247
|
:type undo: bool | None
|
|
248
248
|
:param mode: Mode
|
|
249
|
-
:type mode:
|
|
249
|
+
:type mode: typing.Literal['LEFT','RIGHT'] | None
|
|
250
250
|
:param extend: Extend Select
|
|
251
251
|
:type extend: bool | None
|
|
252
252
|
"""
|
bpy/ops/mask/__init__.pyi
CHANGED
|
@@ -186,7 +186,8 @@ def handle_type_set(
|
|
|
186
186
|
execution_context: int | str | None = None,
|
|
187
187
|
undo: bool | None = None,
|
|
188
188
|
*,
|
|
189
|
-
type:
|
|
189
|
+
type: typing.Literal["AUTO", "VECTOR", "ALIGNED", "ALIGNED_DOUBLESIDE", "FREE"]
|
|
190
|
+
| None = "AUTO",
|
|
190
191
|
):
|
|
191
192
|
"""Set type of handles for selected control points
|
|
192
193
|
|
|
@@ -194,7 +195,7 @@ def handle_type_set(
|
|
|
194
195
|
:type execution_context: int | str | None
|
|
195
196
|
:type undo: bool | None
|
|
196
197
|
:param type: Type, Spline type
|
|
197
|
-
:type type:
|
|
198
|
+
:type type: typing.Literal['AUTO','VECTOR','ALIGNED','ALIGNED_DOUBLESIDE','FREE'] | None
|
|
198
199
|
"""
|
|
199
200
|
|
|
200
201
|
...
|
|
@@ -240,7 +241,7 @@ def layer_move(
|
|
|
240
241
|
execution_context: int | str | None = None,
|
|
241
242
|
undo: bool | None = None,
|
|
242
243
|
*,
|
|
243
|
-
direction:
|
|
244
|
+
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
244
245
|
):
|
|
245
246
|
"""Move the active layer up/down in the list
|
|
246
247
|
|
|
@@ -248,7 +249,7 @@ def layer_move(
|
|
|
248
249
|
:type execution_context: int | str | None
|
|
249
250
|
:type undo: bool | None
|
|
250
251
|
:param direction: Direction, Direction to move the active layer
|
|
251
|
-
:type direction:
|
|
252
|
+
:type direction: typing.Literal['UP','DOWN'] | None
|
|
252
253
|
"""
|
|
253
254
|
|
|
254
255
|
...
|
|
@@ -439,7 +440,7 @@ def select_all(
|
|
|
439
440
|
execution_context: int | str | None = None,
|
|
440
441
|
undo: bool | None = None,
|
|
441
442
|
*,
|
|
442
|
-
action:
|
|
443
|
+
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
443
444
|
):
|
|
444
445
|
"""Change selection of all curve points
|
|
445
446
|
|
|
@@ -459,7 +460,7 @@ def select_all(
|
|
|
459
460
|
|
|
460
461
|
INVERT
|
|
461
462
|
Invert -- Invert selection of all elements.
|
|
462
|
-
:type action:
|
|
463
|
+
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
463
464
|
"""
|
|
464
465
|
|
|
465
466
|
...
|
|
@@ -474,7 +475,7 @@ def select_box(
|
|
|
474
475
|
ymin: int | None = 0,
|
|
475
476
|
ymax: int | None = 0,
|
|
476
477
|
wait_for_input: bool | None = True,
|
|
477
|
-
mode:
|
|
478
|
+
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
478
479
|
):
|
|
479
480
|
"""Select curve points using box selection
|
|
480
481
|
|
|
@@ -501,7 +502,7 @@ def select_box(
|
|
|
501
502
|
|
|
502
503
|
SUB
|
|
503
504
|
Subtract -- Subtract existing selection.
|
|
504
|
-
:type mode:
|
|
505
|
+
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
505
506
|
"""
|
|
506
507
|
|
|
507
508
|
...
|
|
@@ -515,7 +516,7 @@ def select_circle(
|
|
|
515
516
|
y: int | None = 0,
|
|
516
517
|
radius: int | None = 25,
|
|
517
518
|
wait_for_input: bool | None = True,
|
|
518
|
-
mode:
|
|
519
|
+
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
519
520
|
):
|
|
520
521
|
"""Select curve points using circle selection
|
|
521
522
|
|
|
@@ -540,7 +541,7 @@ def select_circle(
|
|
|
540
541
|
|
|
541
542
|
SUB
|
|
542
543
|
Subtract -- Subtract existing selection.
|
|
543
|
-
:type mode:
|
|
544
|
+
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
544
545
|
"""
|
|
545
546
|
|
|
546
547
|
...
|
|
@@ -554,7 +555,7 @@ def select_lasso(
|
|
|
554
555
|
use_smooth_stroke: bool | None = False,
|
|
555
556
|
smooth_stroke_factor: float | None = 0.75,
|
|
556
557
|
smooth_stroke_radius: int | None = 35,
|
|
557
|
-
mode:
|
|
558
|
+
mode: typing.Literal["SET", "ADD", "SUB"] | None = "SET",
|
|
558
559
|
):
|
|
559
560
|
"""Select curve points using lasso selection
|
|
560
561
|
|
|
@@ -579,7 +580,7 @@ def select_lasso(
|
|
|
579
580
|
|
|
580
581
|
SUB
|
|
581
582
|
Subtract -- Subtract existing selection.
|
|
582
|
-
:type mode:
|
|
583
|
+
:type mode: typing.Literal['SET','ADD','SUB'] | None
|
|
583
584
|
"""
|
|
584
585
|
|
|
585
586
|
...
|
bpy/ops/mball/__init__.pyi
CHANGED
|
@@ -101,7 +101,7 @@ def select_all(
|
|
|
101
101
|
execution_context: int | str | None = None,
|
|
102
102
|
undo: bool | None = None,
|
|
103
103
|
*,
|
|
104
|
-
action:
|
|
104
|
+
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
105
105
|
):
|
|
106
106
|
"""Change selection of all metaball elements
|
|
107
107
|
|
|
@@ -121,7 +121,7 @@ def select_all(
|
|
|
121
121
|
|
|
122
122
|
INVERT
|
|
123
123
|
Invert -- Invert selection of all elements.
|
|
124
|
-
:type action:
|
|
124
|
+
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
125
125
|
"""
|
|
126
126
|
|
|
127
127
|
...
|
|
@@ -133,7 +133,7 @@ def select_random_metaelems(
|
|
|
133
133
|
*,
|
|
134
134
|
ratio: float | None = 0.5,
|
|
135
135
|
seed: int | None = 0,
|
|
136
|
-
action:
|
|
136
|
+
action: typing.Literal["SELECT", "DESELECT"] | None = "SELECT",
|
|
137
137
|
):
|
|
138
138
|
"""Randomly select metaball elements
|
|
139
139
|
|
|
@@ -151,7 +151,7 @@ def select_random_metaelems(
|
|
|
151
151
|
|
|
152
152
|
DESELECT
|
|
153
153
|
Deselect -- Deselect all elements.
|
|
154
|
-
:type action:
|
|
154
|
+
:type action: typing.Literal['SELECT','DESELECT'] | None
|
|
155
155
|
"""
|
|
156
156
|
|
|
157
157
|
...
|
|
@@ -161,7 +161,7 @@ def select_similar(
|
|
|
161
161
|
execution_context: int | str | None = None,
|
|
162
162
|
undo: bool | None = None,
|
|
163
163
|
*,
|
|
164
|
-
type:
|
|
164
|
+
type: typing.Literal["TYPE", "RADIUS", "STIFFNESS", "ROTATION"] | None = "TYPE",
|
|
165
165
|
threshold: float | None = 0.1,
|
|
166
166
|
):
|
|
167
167
|
"""Select similar metaballs by property types
|
|
@@ -170,7 +170,7 @@ def select_similar(
|
|
|
170
170
|
:type execution_context: int | str | None
|
|
171
171
|
:type undo: bool | None
|
|
172
172
|
:param type: Type
|
|
173
|
-
:type type:
|
|
173
|
+
:type type: typing.Literal['TYPE','RADIUS','STIFFNESS','ROTATION'] | None
|
|
174
174
|
:param threshold: Threshold
|
|
175
175
|
:type threshold: float | None
|
|
176
176
|
"""
|