fake-bpy-module 20240620__py3-none-any.whl → 20240621__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_userpref/__init__.pyi +225 -0
- bpy/ops/action/__init__.pyi +50 -50
- bpy/ops/anim/__init__.pyi +94 -94
- bpy/ops/armature/__init__.pyi +54 -54
- bpy/ops/asset/__init__.pyi +50 -50
- bpy/ops/brush/__init__.pyi +10 -10
- bpy/ops/buttons/__init__.pyi +88 -88
- bpy/ops/cachefile/__init__.pyi +88 -88
- bpy/ops/camera/__init__.pyi +14 -14
- bpy/ops/clip/__init__.pyi +175 -174
- bpy/ops/cloth/__init__.pyi +6 -6
- bpy/ops/collection/__init__.pyi +8 -8
- bpy/ops/console/__init__.pyi +26 -26
- bpy/ops/constraint/__init__.pyi +42 -42
- bpy/ops/curve/__init__.pyi +167 -122
- bpy/ops/curves/__init__.pyi +75 -58
- bpy/ops/cycles/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +50 -50
- bpy/ops/export_anim/__init__.pyi +14 -14
- bpy/ops/export_scene/__init__.pyi +250 -250
- bpy/ops/extensions/__init__.pyi +73 -73
- bpy/ops/file/__init__.pyi +94 -94
- bpy/ops/fluid/__init__.pyi +6 -6
- bpy/ops/font/__init__.pyi +100 -100
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +10 -10
- bpy/ops/gpencil/__init__.pyi +411 -410
- bpy/ops/graph/__init__.pyi +194 -194
- bpy/ops/grease_pencil/__init__.pyi +100 -100
- bpy/ops/image/__init__.pyi +399 -390
- bpy/ops/import_anim/__init__.pyi +16 -16
- bpy/ops/import_curve/__init__.pyi +4 -4
- bpy/ops/import_scene/__init__.pyi +56 -56
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +8 -8
- bpy/ops/marker/__init__.pyi +34 -34
- bpy/ops/mask/__init__.pyi +63 -62
- bpy/ops/mball/__init__.pyi +12 -12
- bpy/ops/mesh/__init__.pyi +893 -790
- bpy/ops/nla/__init__.pyi +70 -70
- bpy/ops/node/__init__.pyi +192 -192
- bpy/ops/object/__init__.pyi +1013 -840
- bpy/ops/outliner/__init__.pyi +44 -44
- bpy/ops/paint/__init__.pyi +169 -168
- bpy/ops/paintcurve/__init__.pyi +12 -12
- bpy/ops/palette/__init__.pyi +4 -4
- bpy/ops/particle/__init__.pyi +34 -34
- bpy/ops/pose/__init__.pyi +60 -60
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +150 -150
- bpy/ops/ptcache/__init__.pyi +4 -4
- bpy/ops/render/__init__.pyi +56 -56
- bpy/ops/rigidbody/__init__.pyi +8 -8
- bpy/ops/scene/__init__.pyi +20 -20
- bpy/ops/screen/__init__.pyi +128 -128
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +207 -202
- bpy/ops/sculpt_curves/__init__.pyi +12 -12
- bpy/ops/sequencer/__init__.pyi +465 -464
- bpy/ops/sound/__init__.pyi +154 -154
- bpy/ops/spreadsheet/__init__.pyi +6 -6
- bpy/ops/surface/__init__.pyi +109 -60
- bpy/ops/text/__init__.pyi +110 -110
- bpy/ops/text_editor/__init__.pyi +6 -6
- bpy/ops/transform/__init__.pyi +628 -566
- bpy/ops/ui/__init__.pyi +25 -24
- bpy/ops/uilist/__init__.pyi +12 -12
- bpy/ops/uv/__init__.pyi +235 -234
- bpy/ops/view2d/__init__.pyi +72 -72
- bpy/ops/view3d/__init__.pyi +144 -144
- bpy/ops/wm/__init__.pyi +1813 -1806
- bpy/ops/workspace/__init__.pyi +4 -4
- bpy/types/__init__.pyi +1611 -1802
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/RECORD +77 -77
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/top_level.txt +0 -0
bpy/ops/curves/__init__.pyi
CHANGED
|
@@ -2,6 +2,7 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import bpy.ops.transform
|
|
4
4
|
import bpy.types
|
|
5
|
+
import mathutils
|
|
5
6
|
|
|
6
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
7
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
@@ -11,12 +12,20 @@ def add_bezier(
|
|
|
11
12
|
execution_context: int | str | None = None,
|
|
12
13
|
undo: bool | None = None,
|
|
13
14
|
*,
|
|
14
|
-
radius:
|
|
15
|
-
enter_editmode: bool |
|
|
15
|
+
radius: float | None = 1.0,
|
|
16
|
+
enter_editmode: bool | None = False,
|
|
16
17
|
align: str | None = "WORLD",
|
|
17
|
-
location:
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (
|
|
19
|
+
0.0,
|
|
20
|
+
0.0,
|
|
21
|
+
0.0,
|
|
22
|
+
),
|
|
23
|
+
rotation: collections.abc.Sequence[float] | mathutils.Euler | None = (
|
|
24
|
+
0.0,
|
|
25
|
+
0.0,
|
|
26
|
+
0.0,
|
|
27
|
+
),
|
|
28
|
+
scale: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
|
|
20
29
|
):
|
|
21
30
|
"""Add new bezier curve
|
|
22
31
|
|
|
@@ -24,9 +33,9 @@ def add_bezier(
|
|
|
24
33
|
:type execution_context: int | str | None
|
|
25
34
|
:type undo: bool | None
|
|
26
35
|
:param radius: Radius
|
|
27
|
-
:type radius:
|
|
36
|
+
:type radius: float | None
|
|
28
37
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
29
|
-
:type enter_editmode: bool |
|
|
38
|
+
:type enter_editmode: bool | None
|
|
30
39
|
:param align: Align, The alignment of the new object
|
|
31
40
|
|
|
32
41
|
WORLD
|
|
@@ -39,11 +48,11 @@ def add_bezier(
|
|
|
39
48
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
40
49
|
:type align: str | None
|
|
41
50
|
:param location: Location, Location for the newly added object
|
|
42
|
-
:type location:
|
|
51
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
43
52
|
:param rotation: Rotation, Rotation for the newly added object
|
|
44
|
-
:type rotation:
|
|
53
|
+
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
45
54
|
:param scale: Scale, Scale for the newly added object
|
|
46
|
-
:type scale:
|
|
55
|
+
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
47
56
|
"""
|
|
48
57
|
|
|
49
58
|
...
|
|
@@ -53,12 +62,20 @@ def add_circle(
|
|
|
53
62
|
execution_context: int | str | None = None,
|
|
54
63
|
undo: bool | None = None,
|
|
55
64
|
*,
|
|
56
|
-
radius:
|
|
57
|
-
enter_editmode: bool |
|
|
65
|
+
radius: float | None = 1.0,
|
|
66
|
+
enter_editmode: bool | None = False,
|
|
58
67
|
align: str | None = "WORLD",
|
|
59
|
-
location:
|
|
60
|
-
|
|
61
|
-
|
|
68
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (
|
|
69
|
+
0.0,
|
|
70
|
+
0.0,
|
|
71
|
+
0.0,
|
|
72
|
+
),
|
|
73
|
+
rotation: collections.abc.Sequence[float] | mathutils.Euler | None = (
|
|
74
|
+
0.0,
|
|
75
|
+
0.0,
|
|
76
|
+
0.0,
|
|
77
|
+
),
|
|
78
|
+
scale: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
|
|
62
79
|
):
|
|
63
80
|
"""Add new circle curve
|
|
64
81
|
|
|
@@ -66,9 +83,9 @@ def add_circle(
|
|
|
66
83
|
:type execution_context: int | str | None
|
|
67
84
|
:type undo: bool | None
|
|
68
85
|
:param radius: Radius
|
|
69
|
-
:type radius:
|
|
86
|
+
:type radius: float | None
|
|
70
87
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
71
|
-
:type enter_editmode: bool |
|
|
88
|
+
:type enter_editmode: bool | None
|
|
72
89
|
:param align: Align, The alignment of the new object
|
|
73
90
|
|
|
74
91
|
WORLD
|
|
@@ -81,11 +98,11 @@ def add_circle(
|
|
|
81
98
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
82
99
|
:type align: str | None
|
|
83
100
|
:param location: Location, Location for the newly added object
|
|
84
|
-
:type location:
|
|
101
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
85
102
|
:param rotation: Rotation, Rotation for the newly added object
|
|
86
|
-
:type rotation:
|
|
103
|
+
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
87
104
|
:param scale: Scale, Scale for the newly added object
|
|
88
|
-
:type scale:
|
|
105
|
+
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
89
106
|
"""
|
|
90
107
|
|
|
91
108
|
...
|
|
@@ -95,13 +112,13 @@ def attribute_set(
|
|
|
95
112
|
execution_context: int | str | None = None,
|
|
96
113
|
undo: bool | None = None,
|
|
97
114
|
*,
|
|
98
|
-
value_float:
|
|
99
|
-
value_float_vector_2d:
|
|
100
|
-
value_float_vector_3d:
|
|
101
|
-
value_int:
|
|
102
|
-
value_int_vector_2d:
|
|
103
|
-
value_color:
|
|
104
|
-
value_bool: bool |
|
|
115
|
+
value_float: float | None = 0.0,
|
|
116
|
+
value_float_vector_2d: collections.abc.Iterable[float] | None = (0.0, 0.0),
|
|
117
|
+
value_float_vector_3d: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0),
|
|
118
|
+
value_int: int | None = 0,
|
|
119
|
+
value_int_vector_2d: collections.abc.Iterable[int] | None = (0, 0),
|
|
120
|
+
value_color: collections.abc.Iterable[float] | None = (1.0, 1.0, 1.0, 1.0),
|
|
121
|
+
value_bool: bool | None = False,
|
|
105
122
|
):
|
|
106
123
|
"""Set values of the active attribute for selected elements
|
|
107
124
|
|
|
@@ -109,19 +126,19 @@ def attribute_set(
|
|
|
109
126
|
:type execution_context: int | str | None
|
|
110
127
|
:type undo: bool | None
|
|
111
128
|
:param value_float: Value
|
|
112
|
-
:type value_float:
|
|
129
|
+
:type value_float: float | None
|
|
113
130
|
:param value_float_vector_2d: Value
|
|
114
|
-
:type value_float_vector_2d:
|
|
131
|
+
:type value_float_vector_2d: collections.abc.Iterable[float] | None
|
|
115
132
|
:param value_float_vector_3d: Value
|
|
116
|
-
:type value_float_vector_3d:
|
|
133
|
+
:type value_float_vector_3d: collections.abc.Iterable[float] | None
|
|
117
134
|
:param value_int: Value
|
|
118
|
-
:type value_int:
|
|
135
|
+
:type value_int: int | None
|
|
119
136
|
:param value_int_vector_2d: Value
|
|
120
|
-
:type value_int_vector_2d:
|
|
137
|
+
:type value_int_vector_2d: collections.abc.Iterable[int] | None
|
|
121
138
|
:param value_color: Value
|
|
122
|
-
:type value_color:
|
|
139
|
+
:type value_color: collections.abc.Iterable[float] | None
|
|
123
140
|
:param value_bool: Value
|
|
124
|
-
:type value_bool: bool |
|
|
141
|
+
:type value_bool: bool | None
|
|
125
142
|
"""
|
|
126
143
|
|
|
127
144
|
...
|
|
@@ -160,7 +177,7 @@ def curve_type_set(
|
|
|
160
177
|
undo: bool | None = None,
|
|
161
178
|
*,
|
|
162
179
|
type: str | None = "POLY",
|
|
163
|
-
use_handles: bool |
|
|
180
|
+
use_handles: bool | None = False,
|
|
164
181
|
):
|
|
165
182
|
"""Set type of selected curves
|
|
166
183
|
|
|
@@ -170,7 +187,7 @@ def curve_type_set(
|
|
|
170
187
|
:param type: Type, Curve type
|
|
171
188
|
:type type: str | None
|
|
172
189
|
:param use_handles: Handles, Take handle information into account in the conversion
|
|
173
|
-
:type use_handles: bool |
|
|
190
|
+
:type use_handles: bool | None
|
|
174
191
|
"""
|
|
175
192
|
|
|
176
193
|
...
|
|
@@ -208,15 +225,15 @@ def draw(
|
|
|
208
225
|
execution_context: int | str | None = None,
|
|
209
226
|
undo: bool | None = None,
|
|
210
227
|
*,
|
|
211
|
-
error_threshold:
|
|
228
|
+
error_threshold: float | None = 0.0,
|
|
212
229
|
fit_method: str | None = "REFIT",
|
|
213
|
-
corner_angle:
|
|
214
|
-
use_cyclic: bool |
|
|
230
|
+
corner_angle: float | None = 1.22173,
|
|
231
|
+
use_cyclic: bool | None = True,
|
|
215
232
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
216
233
|
| None = None,
|
|
217
|
-
wait_for_input: bool |
|
|
218
|
-
is_curve_2d: bool |
|
|
219
|
-
bezier_as_nurbs: bool |
|
|
234
|
+
wait_for_input: bool | None = True,
|
|
235
|
+
is_curve_2d: bool | None = False,
|
|
236
|
+
bezier_as_nurbs: bool | None = False,
|
|
220
237
|
):
|
|
221
238
|
"""Draw a freehand curve
|
|
222
239
|
|
|
@@ -224,21 +241,21 @@ def draw(
|
|
|
224
241
|
:type execution_context: int | str | None
|
|
225
242
|
:type undo: bool | None
|
|
226
243
|
:param error_threshold: Error, Error distance threshold (in object units)
|
|
227
|
-
:type error_threshold:
|
|
244
|
+
:type error_threshold: float | None
|
|
228
245
|
:param fit_method: Fit Method
|
|
229
246
|
:type fit_method: str | None
|
|
230
247
|
:param corner_angle: Corner Angle
|
|
231
|
-
:type corner_angle:
|
|
248
|
+
:type corner_angle: float | None
|
|
232
249
|
:param use_cyclic: Cyclic
|
|
233
|
-
:type use_cyclic: bool |
|
|
250
|
+
:type use_cyclic: bool | None
|
|
234
251
|
:param stroke: Stroke
|
|
235
252
|
:type stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement] | None
|
|
236
253
|
:param wait_for_input: Wait for Input
|
|
237
|
-
:type wait_for_input: bool |
|
|
254
|
+
:type wait_for_input: bool | None
|
|
238
255
|
:param is_curve_2d: Curve 2D
|
|
239
|
-
:type is_curve_2d: bool |
|
|
256
|
+
:type is_curve_2d: bool | None
|
|
240
257
|
:param bezier_as_nurbs: As NURBS
|
|
241
|
-
:type bezier_as_nurbs: bool |
|
|
258
|
+
:type bezier_as_nurbs: bool | None
|
|
242
259
|
"""
|
|
243
260
|
|
|
244
261
|
...
|
|
@@ -380,8 +397,8 @@ def select_ends(
|
|
|
380
397
|
execution_context: int | str | None = None,
|
|
381
398
|
undo: bool | None = None,
|
|
382
399
|
*,
|
|
383
|
-
amount_start:
|
|
384
|
-
amount_end:
|
|
400
|
+
amount_start: int | None = 0,
|
|
401
|
+
amount_end: int | None = 1,
|
|
385
402
|
):
|
|
386
403
|
"""Select end points of curves
|
|
387
404
|
|
|
@@ -389,9 +406,9 @@ def select_ends(
|
|
|
389
406
|
:type execution_context: int | str | None
|
|
390
407
|
:type undo: bool | None
|
|
391
408
|
:param amount_start: Amount Front, Number of points to select from the front
|
|
392
|
-
:type amount_start:
|
|
409
|
+
:type amount_start: int | None
|
|
393
410
|
:param amount_end: Amount Back, Number of points to select from the back
|
|
394
|
-
:type amount_end:
|
|
411
|
+
:type amount_end: int | None
|
|
395
412
|
"""
|
|
396
413
|
|
|
397
414
|
...
|
|
@@ -443,8 +460,8 @@ def select_random(
|
|
|
443
460
|
execution_context: int | str | None = None,
|
|
444
461
|
undo: bool | None = None,
|
|
445
462
|
*,
|
|
446
|
-
seed:
|
|
447
|
-
probability:
|
|
463
|
+
seed: int | None = 0,
|
|
464
|
+
probability: float | None = 0.5,
|
|
448
465
|
):
|
|
449
466
|
"""Randomizes existing selection or create new random selection
|
|
450
467
|
|
|
@@ -452,9 +469,9 @@ def select_random(
|
|
|
452
469
|
:type execution_context: int | str | None
|
|
453
470
|
:type undo: bool | None
|
|
454
471
|
:param seed: Seed, Source of randomness
|
|
455
|
-
:type seed:
|
|
472
|
+
:type seed: int | None
|
|
456
473
|
:param probability: Probability, Chance of every point or curve being included in the selection
|
|
457
|
-
:type probability:
|
|
474
|
+
:type probability: float | None
|
|
458
475
|
"""
|
|
459
476
|
|
|
460
477
|
...
|
|
@@ -506,7 +523,7 @@ def subdivide(
|
|
|
506
523
|
execution_context: int | str | None = None,
|
|
507
524
|
undo: bool | None = None,
|
|
508
525
|
*,
|
|
509
|
-
number_cuts:
|
|
526
|
+
number_cuts: int | None = 1,
|
|
510
527
|
):
|
|
511
528
|
"""Subdivide selected curve segments
|
|
512
529
|
|
|
@@ -514,7 +531,7 @@ def subdivide(
|
|
|
514
531
|
:type execution_context: int | str | None
|
|
515
532
|
:type undo: bool | None
|
|
516
533
|
:param number_cuts: Number of Cuts
|
|
517
|
-
:type number_cuts:
|
|
534
|
+
:type number_cuts: int | None
|
|
518
535
|
"""
|
|
519
536
|
|
|
520
537
|
...
|
bpy/ops/cycles/__init__.pyi
CHANGED
|
@@ -10,8 +10,8 @@ def denoise_animation(
|
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
*,
|
|
13
|
-
input_filepath: str
|
|
14
|
-
output_filepath: str
|
|
13
|
+
input_filepath: str = "",
|
|
14
|
+
output_filepath: str = "",
|
|
15
15
|
):
|
|
16
16
|
"""Denoise rendered animation sequence using current scene and view layer settings. Requires denoising data passes and output to OpenEXR multilayer files
|
|
17
17
|
|
|
@@ -19,9 +19,9 @@ def denoise_animation(
|
|
|
19
19
|
:type execution_context: int | str | None
|
|
20
20
|
:type undo: bool | None
|
|
21
21
|
:param input_filepath: Input Filepath, File path for image to denoise. If not specified, uses the render file path and frame range from the scene
|
|
22
|
-
:type input_filepath: str
|
|
22
|
+
:type input_filepath: str
|
|
23
23
|
:param output_filepath: Output Filepath, If not specified, renders will be denoised in-place
|
|
24
|
-
:type output_filepath: str
|
|
24
|
+
:type output_filepath: str
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
...
|
|
@@ -31,9 +31,9 @@ def merge_images(
|
|
|
31
31
|
execution_context: int | str | None = None,
|
|
32
32
|
undo: bool | None = None,
|
|
33
33
|
*,
|
|
34
|
-
input_filepath1: str
|
|
35
|
-
input_filepath2: str
|
|
36
|
-
output_filepath: str
|
|
34
|
+
input_filepath1: str = "",
|
|
35
|
+
input_filepath2: str = "",
|
|
36
|
+
output_filepath: str = "",
|
|
37
37
|
):
|
|
38
38
|
"""Combine OpenEXR multi-layer images rendered with different sample ranges into one image with reduced noise
|
|
39
39
|
|
|
@@ -41,11 +41,11 @@ def merge_images(
|
|
|
41
41
|
:type execution_context: int | str | None
|
|
42
42
|
:type undo: bool | None
|
|
43
43
|
:param input_filepath1: Input Filepath, File path for image to merge
|
|
44
|
-
:type input_filepath1: str
|
|
44
|
+
:type input_filepath1: str
|
|
45
45
|
:param input_filepath2: Input Filepath, File path for image to merge
|
|
46
|
-
:type input_filepath2: str
|
|
46
|
+
:type input_filepath2: str
|
|
47
47
|
:param output_filepath: Output Filepath, File path for merged image
|
|
48
|
-
:type output_filepath: str
|
|
48
|
+
:type output_filepath: str
|
|
49
49
|
"""
|
|
50
50
|
|
|
51
51
|
...
|
bpy/ops/ed/__init__.pyi
CHANGED
|
@@ -66,29 +66,29 @@ def lib_id_load_custom_preview(
|
|
|
66
66
|
execution_context: int | str | None = None,
|
|
67
67
|
undo: bool | None = None,
|
|
68
68
|
*,
|
|
69
|
-
filepath: str
|
|
70
|
-
hide_props_region: bool |
|
|
71
|
-
check_existing: bool |
|
|
72
|
-
filter_blender: bool |
|
|
73
|
-
filter_backup: bool |
|
|
74
|
-
filter_image: bool |
|
|
75
|
-
filter_movie: bool |
|
|
76
|
-
filter_python: bool |
|
|
77
|
-
filter_font: bool |
|
|
78
|
-
filter_sound: bool |
|
|
79
|
-
filter_text: bool |
|
|
80
|
-
filter_archive: bool |
|
|
81
|
-
filter_btx: bool |
|
|
82
|
-
filter_collada: bool |
|
|
83
|
-
filter_alembic: bool |
|
|
84
|
-
filter_usd: bool |
|
|
85
|
-
filter_obj: bool |
|
|
86
|
-
filter_volume: bool |
|
|
87
|
-
filter_folder: bool |
|
|
88
|
-
filter_blenlib: bool |
|
|
89
|
-
filemode:
|
|
90
|
-
show_multiview: bool |
|
|
91
|
-
use_multiview: bool |
|
|
69
|
+
filepath: str = "",
|
|
70
|
+
hide_props_region: bool | None = True,
|
|
71
|
+
check_existing: bool | None = False,
|
|
72
|
+
filter_blender: bool | None = False,
|
|
73
|
+
filter_backup: bool | None = False,
|
|
74
|
+
filter_image: bool | None = True,
|
|
75
|
+
filter_movie: bool | None = False,
|
|
76
|
+
filter_python: bool | None = False,
|
|
77
|
+
filter_font: bool | None = False,
|
|
78
|
+
filter_sound: bool | None = False,
|
|
79
|
+
filter_text: bool | None = False,
|
|
80
|
+
filter_archive: bool | None = False,
|
|
81
|
+
filter_btx: bool | None = False,
|
|
82
|
+
filter_collada: bool | None = False,
|
|
83
|
+
filter_alembic: bool | None = False,
|
|
84
|
+
filter_usd: bool | None = False,
|
|
85
|
+
filter_obj: bool | None = False,
|
|
86
|
+
filter_volume: bool | None = False,
|
|
87
|
+
filter_folder: bool | None = True,
|
|
88
|
+
filter_blenlib: bool | None = False,
|
|
89
|
+
filemode: int | None = 9,
|
|
90
|
+
show_multiview: bool | None = False,
|
|
91
|
+
use_multiview: bool | None = False,
|
|
92
92
|
display_type: str | None = "DEFAULT",
|
|
93
93
|
sort_method: str | None = "",
|
|
94
94
|
):
|
|
@@ -98,51 +98,51 @@ def lib_id_load_custom_preview(
|
|
|
98
98
|
:type execution_context: int | str | None
|
|
99
99
|
:type undo: bool | None
|
|
100
100
|
:param filepath: File Path, Path to file
|
|
101
|
-
:type filepath: str
|
|
101
|
+
:type filepath: str
|
|
102
102
|
:param hide_props_region: Hide Operator Properties, Collapse the region displaying the operator settings
|
|
103
|
-
:type hide_props_region: bool |
|
|
103
|
+
:type hide_props_region: bool | None
|
|
104
104
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
105
|
-
:type check_existing: bool |
|
|
105
|
+
:type check_existing: bool | None
|
|
106
106
|
:param filter_blender: Filter .blend files
|
|
107
|
-
:type filter_blender: bool |
|
|
107
|
+
:type filter_blender: bool | None
|
|
108
108
|
:param filter_backup: Filter .blend files
|
|
109
|
-
:type filter_backup: bool |
|
|
109
|
+
:type filter_backup: bool | None
|
|
110
110
|
:param filter_image: Filter image files
|
|
111
|
-
:type filter_image: bool |
|
|
111
|
+
:type filter_image: bool | None
|
|
112
112
|
:param filter_movie: Filter movie files
|
|
113
|
-
:type filter_movie: bool |
|
|
113
|
+
:type filter_movie: bool | None
|
|
114
114
|
:param filter_python: Filter Python files
|
|
115
|
-
:type filter_python: bool |
|
|
115
|
+
:type filter_python: bool | None
|
|
116
116
|
:param filter_font: Filter font files
|
|
117
|
-
:type filter_font: bool |
|
|
117
|
+
:type filter_font: bool | None
|
|
118
118
|
:param filter_sound: Filter sound files
|
|
119
|
-
:type filter_sound: bool |
|
|
119
|
+
:type filter_sound: bool | None
|
|
120
120
|
:param filter_text: Filter text files
|
|
121
|
-
:type filter_text: bool |
|
|
121
|
+
:type filter_text: bool | None
|
|
122
122
|
:param filter_archive: Filter archive files
|
|
123
|
-
:type filter_archive: bool |
|
|
123
|
+
:type filter_archive: bool | None
|
|
124
124
|
:param filter_btx: Filter btx files
|
|
125
|
-
:type filter_btx: bool |
|
|
125
|
+
:type filter_btx: bool | None
|
|
126
126
|
:param filter_collada: Filter COLLADA files
|
|
127
|
-
:type filter_collada: bool |
|
|
127
|
+
:type filter_collada: bool | None
|
|
128
128
|
:param filter_alembic: Filter Alembic files
|
|
129
|
-
:type filter_alembic: bool |
|
|
129
|
+
:type filter_alembic: bool | None
|
|
130
130
|
:param filter_usd: Filter USD files
|
|
131
|
-
:type filter_usd: bool |
|
|
131
|
+
:type filter_usd: bool | None
|
|
132
132
|
:param filter_obj: Filter OBJ files
|
|
133
|
-
:type filter_obj: bool |
|
|
133
|
+
:type filter_obj: bool | None
|
|
134
134
|
:param filter_volume: Filter OpenVDB volume files
|
|
135
|
-
:type filter_volume: bool |
|
|
135
|
+
:type filter_volume: bool | None
|
|
136
136
|
:param filter_folder: Filter folders
|
|
137
|
-
:type filter_folder: bool |
|
|
137
|
+
:type filter_folder: bool | None
|
|
138
138
|
:param filter_blenlib: Filter Blender IDs
|
|
139
|
-
:type filter_blenlib: bool |
|
|
139
|
+
:type filter_blenlib: bool | None
|
|
140
140
|
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
141
|
-
:type filemode:
|
|
141
|
+
:type filemode: int | None
|
|
142
142
|
:param show_multiview: Enable Multi-View
|
|
143
|
-
:type show_multiview: bool |
|
|
143
|
+
:type show_multiview: bool | None
|
|
144
144
|
:param use_multiview: Use Multi-View
|
|
145
|
-
:type use_multiview: bool |
|
|
145
|
+
:type use_multiview: bool | None
|
|
146
146
|
:param display_type: Display Type
|
|
147
147
|
|
|
148
148
|
DEFAULT
|
|
@@ -224,7 +224,7 @@ def undo_history(
|
|
|
224
224
|
execution_context: int | str | None = None,
|
|
225
225
|
undo: bool | None = None,
|
|
226
226
|
*,
|
|
227
|
-
item:
|
|
227
|
+
item: int | None = 0,
|
|
228
228
|
):
|
|
229
229
|
"""Redo specific action in history
|
|
230
230
|
|
|
@@ -232,7 +232,7 @@ def undo_history(
|
|
|
232
232
|
:type execution_context: int | str | None
|
|
233
233
|
:type undo: bool | None
|
|
234
234
|
:param item: Item
|
|
235
|
-
:type item:
|
|
235
|
+
:type item: int | None
|
|
236
236
|
"""
|
|
237
237
|
|
|
238
238
|
...
|
|
@@ -242,7 +242,7 @@ def undo_push(
|
|
|
242
242
|
execution_context: int | str | None = None,
|
|
243
243
|
undo: bool | None = None,
|
|
244
244
|
*,
|
|
245
|
-
message: str
|
|
245
|
+
message: str = "Add an undo step *function may be moved*",
|
|
246
246
|
):
|
|
247
247
|
"""Add an undo state (internal use only)
|
|
248
248
|
|
|
@@ -250,7 +250,7 @@ def undo_push(
|
|
|
250
250
|
:type execution_context: int | str | None
|
|
251
251
|
:type undo: bool | None
|
|
252
252
|
:param message: Undo Message
|
|
253
|
-
:type message: str
|
|
253
|
+
:type message: str
|
|
254
254
|
"""
|
|
255
255
|
|
|
256
256
|
...
|
bpy/ops/export_anim/__init__.pyi
CHANGED
|
@@ -10,14 +10,14 @@ def bvh(
|
|
|
10
10
|
execution_context: int | str | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
*,
|
|
13
|
-
filepath: str
|
|
14
|
-
check_existing: bool |
|
|
15
|
-
filter_glob: str
|
|
16
|
-
global_scale:
|
|
17
|
-
frame_start:
|
|
18
|
-
frame_end:
|
|
13
|
+
filepath: str = "",
|
|
14
|
+
check_existing: bool | None = True,
|
|
15
|
+
filter_glob: str = "*.bvh",
|
|
16
|
+
global_scale: float | None = 1.0,
|
|
17
|
+
frame_start: int | None = 0,
|
|
18
|
+
frame_end: int | None = 0,
|
|
19
19
|
rotate_mode: str | None = "NATIVE",
|
|
20
|
-
root_transform_only: bool |
|
|
20
|
+
root_transform_only: bool | None = False,
|
|
21
21
|
):
|
|
22
22
|
"""Save a BVH motion capture file from an armature
|
|
23
23
|
|
|
@@ -25,17 +25,17 @@ def bvh(
|
|
|
25
25
|
:type execution_context: int | str | None
|
|
26
26
|
:type undo: bool | None
|
|
27
27
|
:param filepath: File Path, Filepath used for exporting the file
|
|
28
|
-
:type filepath: str
|
|
28
|
+
:type filepath: str
|
|
29
29
|
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
30
|
-
:type check_existing: bool |
|
|
30
|
+
:type check_existing: bool | None
|
|
31
31
|
:param filter_glob: filter_glob
|
|
32
|
-
:type filter_glob: str
|
|
32
|
+
:type filter_glob: str
|
|
33
33
|
:param global_scale: Scale, Scale the BVH by this value
|
|
34
|
-
:type global_scale:
|
|
34
|
+
:type global_scale: float | None
|
|
35
35
|
:param frame_start: Start Frame, Starting frame to export
|
|
36
|
-
:type frame_start:
|
|
36
|
+
:type frame_start: int | None
|
|
37
37
|
:param frame_end: End Frame, End frame to export
|
|
38
|
-
:type frame_end:
|
|
38
|
+
:type frame_end: int | None
|
|
39
39
|
:param rotate_mode: Rotation, Rotation conversion
|
|
40
40
|
|
|
41
41
|
NATIVE
|
|
@@ -60,7 +60,7 @@ def bvh(
|
|
|
60
60
|
Euler (ZYX) -- Convert rotations to euler ZYX.
|
|
61
61
|
:type rotate_mode: str | None
|
|
62
62
|
:param root_transform_only: Root Translation Only, Only write out translation channels for the root bone
|
|
63
|
-
:type root_transform_only: bool |
|
|
63
|
+
:type root_transform_only: bool | None
|
|
64
64
|
"""
|
|
65
65
|
|
|
66
66
|
...
|