fake-bpy-module 20250217__py3-none-any.whl → 20250219__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/_typing/rna_enums/__init__.pyi +4 -0
- bpy/ops/curves/__init__.pyi +7 -0
- bpy/ops/extensions/__init__.pyi +2 -3
- bpy/ops/image/__init__.pyi +4 -6
- bpy/ops/import_scene/__init__.pyi +4 -6
- bpy/ops/node/__init__.pyi +8 -12
- bpy/ops/point_cloud/__init__.pyi +73 -0
- bpy/ops/preferences/__init__.pyi +2 -3
- bpy/ops/wm/__init__.pyi +8 -12
- bpy/types/__init__.pyi +32 -16
- {fake_bpy_module-20250217.dist-info → fake_bpy_module-20250219.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250217.dist-info → fake_bpy_module-20250219.dist-info}/RECORD +16 -16
- mathutils/geometry/__init__.pyi +2 -4
- mathutils/noise/__init__.pyi +2 -2
- {fake_bpy_module-20250217.dist-info → fake_bpy_module-20250219.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250217.dist-info → fake_bpy_module-20250219.dist-info}/top_level.txt +0 -0
|
@@ -785,6 +785,9 @@ type GreasePencilSelectmodeItems = typing.Literal[
|
|
|
785
785
|
]
|
|
786
786
|
type IconItems = typing.Literal[
|
|
787
787
|
"NONE", # NONE.
|
|
788
|
+
"CHAR_NOTDEF", # CHAR_NOTDEF.
|
|
789
|
+
"CHAR_REPLACEMENT", # CHAR_REPLACEMENT.
|
|
790
|
+
"NOT_FOUND", # NOT_FOUND.
|
|
788
791
|
"BLANK1", # BLANK1.
|
|
789
792
|
"AUTOMERGE_OFF", # AUTOMERGE_OFF.
|
|
790
793
|
"AUTOMERGE_ON", # AUTOMERGE_ON.
|
|
@@ -857,6 +860,7 @@ type IconItems = typing.Literal[
|
|
|
857
860
|
"GHOST_DISABLED", # GHOST_DISABLED.
|
|
858
861
|
"GHOST_ENABLED", # GHOST_ENABLED.
|
|
859
862
|
"GRIP", # GRIP.
|
|
863
|
+
"GRIP_V", # GRIP_V.
|
|
860
864
|
"HAND", # HAND.
|
|
861
865
|
"HELP", # HELP.
|
|
862
866
|
"LINKED", # LINKED.
|
bpy/ops/curves/__init__.pyi
CHANGED
|
@@ -393,6 +393,13 @@ def select_random(
|
|
|
393
393
|
:type probability: float | None
|
|
394
394
|
"""
|
|
395
395
|
|
|
396
|
+
def separate(execution_context: int | str | None = None, undo: bool | None = None):
|
|
397
|
+
"""Separate selected geometry into a new object
|
|
398
|
+
|
|
399
|
+
:type execution_context: int | str | None
|
|
400
|
+
:type undo: bool | None
|
|
401
|
+
"""
|
|
402
|
+
|
|
396
403
|
def set_selection_domain(
|
|
397
404
|
execution_context: int | str | None = None,
|
|
398
405
|
undo: bool | None = None,
|
bpy/ops/extensions/__init__.pyi
CHANGED
|
@@ -67,8 +67,7 @@ def package_install_files(
|
|
|
67
67
|
*,
|
|
68
68
|
filter_glob: str = "*.zip;*.py",
|
|
69
69
|
directory: str = "",
|
|
70
|
-
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
71
|
-
| None = None,
|
|
70
|
+
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
|
|
72
71
|
filepath: str = "",
|
|
73
72
|
repo: str | None = "",
|
|
74
73
|
enable_on_install: bool | None = True,
|
|
@@ -85,7 +84,7 @@ def package_install_files(
|
|
|
85
84
|
:param directory: Directory
|
|
86
85
|
:type directory: str
|
|
87
86
|
:param files: files
|
|
88
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
87
|
+
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
89
88
|
:param filepath: filepath
|
|
90
89
|
:type filepath: str
|
|
91
90
|
:param repo: User Repository, The user repository to install extensions into
|
bpy/ops/image/__init__.pyi
CHANGED
|
@@ -377,8 +377,7 @@ def import_as_mesh_planes(
|
|
|
377
377
|
0.0,
|
|
378
378
|
0.0,
|
|
379
379
|
),
|
|
380
|
-
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
381
|
-
| None = None,
|
|
380
|
+
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
|
|
382
381
|
directory: str = "",
|
|
383
382
|
filter_image: bool | None = True,
|
|
384
383
|
filter_movie: bool | None = True,
|
|
@@ -494,7 +493,7 @@ def import_as_mesh_planes(
|
|
|
494
493
|
:param rotation: Rotation
|
|
495
494
|
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
496
495
|
:param files: files
|
|
497
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
496
|
+
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
498
497
|
:param directory: directory
|
|
499
498
|
:type directory: str
|
|
500
499
|
:param filter_image: filter_image
|
|
@@ -815,8 +814,7 @@ def open_images(
|
|
|
815
814
|
/,
|
|
816
815
|
*,
|
|
817
816
|
directory: str = "",
|
|
818
|
-
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
819
|
-
| None = None,
|
|
817
|
+
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
|
|
820
818
|
relative_path: bool | None = True,
|
|
821
819
|
use_sequence_detection: bool | None = True,
|
|
822
820
|
use_udim_detection: bool | None = True,
|
|
@@ -828,7 +826,7 @@ def open_images(
|
|
|
828
826
|
:param directory: directory
|
|
829
827
|
:type directory: str
|
|
830
828
|
:param files: files
|
|
831
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
829
|
+
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
832
830
|
:param relative_path: Use relative path
|
|
833
831
|
:type relative_path: bool | None
|
|
834
832
|
:param use_sequence_detection: Use sequence detection
|
|
@@ -11,8 +11,7 @@ def fbx(
|
|
|
11
11
|
filepath: str = "",
|
|
12
12
|
directory: str = "",
|
|
13
13
|
filter_glob: str = "*.fbx",
|
|
14
|
-
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
15
|
-
| None = None,
|
|
14
|
+
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
|
|
16
15
|
ui_tab: typing.Literal["MAIN", "ARMATURE"] | None = "MAIN",
|
|
17
16
|
use_manual_orientation: bool | None = False,
|
|
18
17
|
global_scale: float | None = 1.0,
|
|
@@ -47,7 +46,7 @@ def fbx(
|
|
|
47
46
|
:param filter_glob: filter_glob
|
|
48
47
|
:type filter_glob: str
|
|
49
48
|
:param files: File Path
|
|
50
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
49
|
+
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
51
50
|
:param ui_tab: ui_tab, Import options categories
|
|
52
51
|
|
|
53
52
|
MAIN
|
|
@@ -118,8 +117,7 @@ def gltf(
|
|
|
118
117
|
export_import_convert_lighting_mode: typing.Literal["SPEC", "COMPAT", "RAW"]
|
|
119
118
|
| None = "SPEC",
|
|
120
119
|
filter_glob: str = "*.glb;*.gltf",
|
|
121
|
-
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
122
|
-
| None = None,
|
|
120
|
+
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
|
|
123
121
|
loglevel: int | None = 0,
|
|
124
122
|
import_pack_images: bool | None = True,
|
|
125
123
|
merge_vertices: bool | None = False,
|
|
@@ -153,7 +151,7 @@ def gltf(
|
|
|
153
151
|
:param filter_glob: filter_glob
|
|
154
152
|
:type filter_glob: str
|
|
155
153
|
:param files: File Path
|
|
156
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
154
|
+
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
157
155
|
:param loglevel: Log Level, Log Level
|
|
158
156
|
:type loglevel: int | None
|
|
159
157
|
:param import_pack_images: Pack Images, Pack all images into .blend file
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -195,8 +195,7 @@ def add_foreach_geometry_element_zone(
|
|
|
195
195
|
/,
|
|
196
196
|
*,
|
|
197
197
|
use_transform: bool | None = False,
|
|
198
|
-
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
199
|
-
| None = None,
|
|
198
|
+
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] = None,
|
|
200
199
|
offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
|
|
201
200
|
):
|
|
202
201
|
"""Add a For Each Geometry Element zone that allows executing nodes e.g. for each vertex separately
|
|
@@ -206,7 +205,7 @@ def add_foreach_geometry_element_zone(
|
|
|
206
205
|
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
207
206
|
:type use_transform: bool | None
|
|
208
207
|
:param settings: Settings, Settings to be applied on the newly created node
|
|
209
|
-
:type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
208
|
+
:type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
210
209
|
:param offset: Offset, Offset of nodes from the cursor when added
|
|
211
210
|
:type offset: collections.abc.Iterable[float] | None
|
|
212
211
|
"""
|
|
@@ -295,8 +294,7 @@ def add_node(
|
|
|
295
294
|
/,
|
|
296
295
|
*,
|
|
297
296
|
use_transform: bool | None = False,
|
|
298
|
-
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
299
|
-
| None = None,
|
|
297
|
+
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] = None,
|
|
300
298
|
type: str = "",
|
|
301
299
|
):
|
|
302
300
|
"""Add a node to the active tree
|
|
@@ -306,7 +304,7 @@ def add_node(
|
|
|
306
304
|
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
307
305
|
:type use_transform: bool | None
|
|
308
306
|
:param settings: Settings, Settings to be applied on the newly created node
|
|
309
|
-
:type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
307
|
+
:type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
310
308
|
:param type: Node Type, Node type
|
|
311
309
|
:type type: str
|
|
312
310
|
"""
|
|
@@ -335,8 +333,7 @@ def add_repeat_zone(
|
|
|
335
333
|
/,
|
|
336
334
|
*,
|
|
337
335
|
use_transform: bool | None = False,
|
|
338
|
-
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
339
|
-
| None = None,
|
|
336
|
+
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] = None,
|
|
340
337
|
offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
|
|
341
338
|
):
|
|
342
339
|
"""Add a repeat zone that allows executing nodes a dynamic number of times
|
|
@@ -346,7 +343,7 @@ def add_repeat_zone(
|
|
|
346
343
|
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
347
344
|
:type use_transform: bool | None
|
|
348
345
|
:param settings: Settings, Settings to be applied on the newly created node
|
|
349
|
-
:type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
346
|
+
:type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
350
347
|
:param offset: Offset, Offset of nodes from the cursor when added
|
|
351
348
|
:type offset: collections.abc.Iterable[float] | None
|
|
352
349
|
"""
|
|
@@ -375,8 +372,7 @@ def add_simulation_zone(
|
|
|
375
372
|
/,
|
|
376
373
|
*,
|
|
377
374
|
use_transform: bool | None = False,
|
|
378
|
-
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
379
|
-
| None = None,
|
|
375
|
+
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] = None,
|
|
380
376
|
offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
|
|
381
377
|
):
|
|
382
378
|
"""Add simulation zone input and output nodes to the active tree
|
|
@@ -386,7 +382,7 @@ def add_simulation_zone(
|
|
|
386
382
|
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
387
383
|
:type use_transform: bool | None
|
|
388
384
|
:param settings: Settings, Settings to be applied on the newly created node
|
|
389
|
-
:type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
385
|
+
:type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
390
386
|
:param offset: Offset, Offset of nodes from the cursor when added
|
|
391
387
|
:type offset: collections.abc.Iterable[float] | None
|
|
392
388
|
"""
|
bpy/ops/point_cloud/__init__.pyi
CHANGED
|
@@ -1,6 +1,72 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bpy.ops.transform
|
|
5
|
+
|
|
6
|
+
def attribute_set(
|
|
7
|
+
execution_context: int | str | None = None,
|
|
8
|
+
undo: bool | None = None,
|
|
9
|
+
/,
|
|
10
|
+
*,
|
|
11
|
+
value_float: float | None = 0.0,
|
|
12
|
+
value_float_vector_2d: collections.abc.Iterable[float] | None = (0.0, 0.0),
|
|
13
|
+
value_float_vector_3d: collections.abc.Iterable[float] | None = (0.0, 0.0, 0.0),
|
|
14
|
+
value_int: int | None = 0,
|
|
15
|
+
value_int_vector_2d: collections.abc.Iterable[int] | None = (0, 0),
|
|
16
|
+
value_color: collections.abc.Iterable[float] | None = (1.0, 1.0, 1.0, 1.0),
|
|
17
|
+
value_bool: bool | None = False,
|
|
18
|
+
):
|
|
19
|
+
"""Set values of the active attribute for selected elements
|
|
20
|
+
|
|
21
|
+
:type execution_context: int | str | None
|
|
22
|
+
:type undo: bool | None
|
|
23
|
+
:param value_float: Value
|
|
24
|
+
:type value_float: float | None
|
|
25
|
+
:param value_float_vector_2d: Value
|
|
26
|
+
:type value_float_vector_2d: collections.abc.Iterable[float] | None
|
|
27
|
+
:param value_float_vector_3d: Value
|
|
28
|
+
:type value_float_vector_3d: collections.abc.Iterable[float] | None
|
|
29
|
+
:param value_int: Value
|
|
30
|
+
:type value_int: int | None
|
|
31
|
+
:param value_int_vector_2d: Value
|
|
32
|
+
:type value_int_vector_2d: collections.abc.Iterable[int] | None
|
|
33
|
+
:param value_color: Value
|
|
34
|
+
:type value_color: collections.abc.Iterable[float] | None
|
|
35
|
+
:param value_bool: Value
|
|
36
|
+
:type value_bool: bool | None
|
|
37
|
+
"""
|
|
38
|
+
|
|
39
|
+
def delete(execution_context: int | str | None = None, undo: bool | None = None):
|
|
40
|
+
"""Remove selected points
|
|
41
|
+
|
|
42
|
+
:type execution_context: int | str | None
|
|
43
|
+
:type undo: bool | None
|
|
44
|
+
"""
|
|
45
|
+
|
|
46
|
+
def duplicate(execution_context: int | str | None = None, undo: bool | None = None):
|
|
47
|
+
"""Copy selected points
|
|
48
|
+
|
|
49
|
+
:type execution_context: int | str | None
|
|
50
|
+
:type undo: bool | None
|
|
51
|
+
"""
|
|
52
|
+
|
|
53
|
+
def duplicate_move(
|
|
54
|
+
execution_context: int | str | None = None,
|
|
55
|
+
undo: bool | None = None,
|
|
56
|
+
/,
|
|
57
|
+
*,
|
|
58
|
+
POINT_CLOUD_OT_duplicate: typing.Any | None = None,
|
|
59
|
+
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
60
|
+
):
|
|
61
|
+
"""Make copies of selected elements and move them
|
|
62
|
+
|
|
63
|
+
:type execution_context: int | str | None
|
|
64
|
+
:type undo: bool | None
|
|
65
|
+
:param POINT_CLOUD_OT_duplicate: Duplicate, Copy selected points
|
|
66
|
+
:type POINT_CLOUD_OT_duplicate: typing.Any | None
|
|
67
|
+
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
68
|
+
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
69
|
+
"""
|
|
4
70
|
|
|
5
71
|
def select_all(
|
|
6
72
|
execution_context: int | str | None = None,
|
|
@@ -28,3 +94,10 @@ def select_all(
|
|
|
28
94
|
Invert -- Invert selection of all elements.
|
|
29
95
|
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
30
96
|
"""
|
|
97
|
+
|
|
98
|
+
def separate(execution_context: int | str | None = None, undo: bool | None = None):
|
|
99
|
+
"""Separate selected geometry into a new point cloud
|
|
100
|
+
|
|
101
|
+
:type execution_context: int | str | None
|
|
102
|
+
:type undo: bool | None
|
|
103
|
+
"""
|
bpy/ops/preferences/__init__.pyi
CHANGED
|
@@ -569,8 +569,7 @@ def studiolight_install(
|
|
|
569
569
|
undo: bool | None = None,
|
|
570
570
|
/,
|
|
571
571
|
*,
|
|
572
|
-
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
573
|
-
| None = None,
|
|
572
|
+
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
|
|
574
573
|
directory: str = "",
|
|
575
574
|
filter_folder: bool | None = True,
|
|
576
575
|
filter_glob: str = "*.png;*.jpg;*.hdr;*.exr",
|
|
@@ -581,7 +580,7 @@ def studiolight_install(
|
|
|
581
580
|
:type execution_context: int | str | None
|
|
582
581
|
:type undo: bool | None
|
|
583
582
|
:param files: File Path
|
|
584
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
583
|
+
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
585
584
|
:param directory: directory
|
|
586
585
|
:type directory: str
|
|
587
586
|
:param filter_folder: Filter Folders
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -480,8 +480,7 @@ def batch_rename(
|
|
|
480
480
|
]
|
|
481
481
|
| None = "OBJECT",
|
|
482
482
|
data_source: typing.Literal["SELECT", "ALL"] | None = "SELECT",
|
|
483
|
-
actions: bpy.types.bpy_prop_collection[bl_operators.wm.BatchRenameAction]
|
|
484
|
-
| None = None,
|
|
483
|
+
actions: bpy.types.bpy_prop_collection[bl_operators.wm.BatchRenameAction] = None,
|
|
485
484
|
):
|
|
486
485
|
"""Rename multiple items at once
|
|
487
486
|
|
|
@@ -492,7 +491,7 @@ def batch_rename(
|
|
|
492
491
|
:param data_source: Source
|
|
493
492
|
:type data_source: typing.Literal['SELECT','ALL'] | None
|
|
494
493
|
:param actions: actions
|
|
495
|
-
:type actions: bpy.types.bpy_prop_collection[bl_operators.wm.BatchRenameAction]
|
|
494
|
+
:type actions: bpy.types.bpy_prop_collection[bl_operators.wm.BatchRenameAction]
|
|
496
495
|
"""
|
|
497
496
|
|
|
498
497
|
def blend_strings_utf8_validate(
|
|
@@ -2817,8 +2816,7 @@ def operator_presets_cleanup(
|
|
|
2817
2816
|
/,
|
|
2818
2817
|
*,
|
|
2819
2818
|
operator: str = "",
|
|
2820
|
-
properties: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
2821
|
-
| None = None,
|
|
2819
|
+
properties: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
|
|
2822
2820
|
):
|
|
2823
2821
|
"""Remove outdated operator properties from presets that may cause problems
|
|
2824
2822
|
|
|
@@ -2827,7 +2825,7 @@ def operator_presets_cleanup(
|
|
|
2827
2825
|
:param operator: operator
|
|
2828
2826
|
:type operator: str
|
|
2829
2827
|
:param properties: properties
|
|
2830
|
-
:type properties: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
2828
|
+
:type properties: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
2831
2829
|
"""
|
|
2832
2830
|
|
|
2833
2831
|
def owner_disable(
|
|
@@ -3234,8 +3232,7 @@ def previews_batch_clear(
|
|
|
3234
3232
|
undo: bool | None = None,
|
|
3235
3233
|
/,
|
|
3236
3234
|
*,
|
|
3237
|
-
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
3238
|
-
| None = None,
|
|
3235
|
+
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
|
|
3239
3236
|
directory: str = "",
|
|
3240
3237
|
filter_blender: bool | None = True,
|
|
3241
3238
|
filter_folder: bool | None = True,
|
|
@@ -3251,7 +3248,7 @@ def previews_batch_clear(
|
|
|
3251
3248
|
:type execution_context: int | str | None
|
|
3252
3249
|
:type undo: bool | None
|
|
3253
3250
|
:param files: files
|
|
3254
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
3251
|
+
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
3255
3252
|
:param directory: directory
|
|
3256
3253
|
:type directory: str
|
|
3257
3254
|
:param filter_blender: filter_blender
|
|
@@ -3277,8 +3274,7 @@ def previews_batch_generate(
|
|
|
3277
3274
|
undo: bool | None = None,
|
|
3278
3275
|
/,
|
|
3279
3276
|
*,
|
|
3280
|
-
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
3281
|
-
| None = None,
|
|
3277
|
+
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
|
|
3282
3278
|
directory: str = "",
|
|
3283
3279
|
filter_blender: bool | None = True,
|
|
3284
3280
|
filter_folder: bool | None = True,
|
|
@@ -3294,7 +3290,7 @@ def previews_batch_generate(
|
|
|
3294
3290
|
:type execution_context: int | str | None
|
|
3295
3291
|
:type undo: bool | None
|
|
3296
3292
|
:param files: Collection of file paths with common directory root
|
|
3297
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
3293
|
+
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
3298
3294
|
:param directory: Root path of all files listed in files collection
|
|
3299
3295
|
:type directory: str
|
|
3300
3296
|
:param filter_blender: Show Blender files in the File Browser
|
bpy/types/__init__.pyi
CHANGED
|
@@ -48181,6 +48181,7 @@ database.
|
|
|
48181
48181
|
* bpy.context.id
|
|
48182
48182
|
* bpy.context.selected_ids
|
|
48183
48183
|
* bpy.context.texture_user
|
|
48184
|
+
* Action.fcurve_ensure_for_datablock
|
|
48184
48185
|
* AssetRepresentation.local_id
|
|
48185
48186
|
* BlendDataObjects.new
|
|
48186
48187
|
* BlendImportContextItem.id
|
|
@@ -53282,6 +53283,7 @@ print(positions_data)
|
|
|
53282
53283
|
* bpy.context.selected_editable_fcurves
|
|
53283
53284
|
* bpy.context.selected_visible_fcurves
|
|
53284
53285
|
* bpy.context.visible_fcurves
|
|
53286
|
+
* Action.fcurve_ensure_for_datablock
|
|
53285
53287
|
* Action.fcurves
|
|
53286
53288
|
* ActionChannelbag.fcurves
|
|
53287
53289
|
* ActionChannelbagFCurves.find
|
|
@@ -106086,12 +106088,12 @@ class ActionChannelbags(bpy_prop_collection[ActionChannelbag], bpy_struct):
|
|
|
106086
106088
|
"""
|
|
106087
106089
|
|
|
106088
106090
|
class ActionFCurves(bpy_prop_collection[FCurve], bpy_struct):
|
|
106089
|
-
"""Collection of action F-Curves"""
|
|
106091
|
+
"""Collection of action F-Curves. Note that this is a legacy API that is unaware of action slots, and will only consider the F-Curves for this action's first slot"""
|
|
106090
106092
|
|
|
106091
106093
|
def new(
|
|
106092
106094
|
self, data_path: str, *, index: int | None = 0, action_group: str = ""
|
|
106093
106095
|
) -> FCurve:
|
|
106094
|
-
"""Add an F-Curve
|
|
106096
|
+
"""Add an F-Curve for the first slot of this action, creating the necessary layer, strip, and slot if necessary
|
|
106095
106097
|
|
|
106096
106098
|
:param data_path: Data Path, F-Curve data path to use
|
|
106097
106099
|
:type data_path: str
|
|
@@ -106104,7 +106106,7 @@ class ActionFCurves(bpy_prop_collection[FCurve], bpy_struct):
|
|
|
106104
106106
|
"""
|
|
106105
106107
|
|
|
106106
106108
|
def find(self, data_path: str, *, index: int | None = 0) -> FCurve:
|
|
106107
|
-
"""Find an F-Curve. Note that this function performs a linear scan of all F-Curves
|
|
106109
|
+
"""Find an F-Curve. Note that this function performs a linear scan of all F-Curves for the action's first slot.
|
|
106108
106110
|
|
|
106109
106111
|
:param data_path: Data Path, F-Curve data path
|
|
106110
106112
|
:type data_path: str
|
|
@@ -106115,14 +106117,14 @@ class ActionFCurves(bpy_prop_collection[FCurve], bpy_struct):
|
|
|
106115
106117
|
"""
|
|
106116
106118
|
|
|
106117
106119
|
def remove(self, fcurve: FCurve):
|
|
106118
|
-
"""Remove F-Curve
|
|
106120
|
+
"""Remove the F-Curve from the action's first slot
|
|
106119
106121
|
|
|
106120
106122
|
:param fcurve: F-Curve to remove
|
|
106121
106123
|
:type fcurve: FCurve
|
|
106122
106124
|
"""
|
|
106123
106125
|
|
|
106124
106126
|
def clear(self):
|
|
106125
|
-
"""Remove all F-Curves"""
|
|
106127
|
+
"""Remove all F-Curves from the action's first slot"""
|
|
106126
106128
|
|
|
106127
106129
|
@classmethod
|
|
106128
106130
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
@@ -116048,7 +116050,7 @@ class Action(ID, bpy_struct):
|
|
|
116048
116050
|
"""
|
|
116049
116051
|
|
|
116050
116052
|
fcurves: ActionFCurves
|
|
116051
|
-
"""
|
|
116053
|
+
""" Legacy API, for backward compatibility with code that does not handle slotted actions yet. This collection contains the F-Curves for the action's first slot
|
|
116052
116054
|
|
|
116053
116055
|
:type: ActionFCurves
|
|
116054
116056
|
"""
|
|
@@ -116072,7 +116074,7 @@ class Action(ID, bpy_struct):
|
|
|
116072
116074
|
"""
|
|
116073
116075
|
|
|
116074
116076
|
groups: ActionGroups
|
|
116075
|
-
"""
|
|
116077
|
+
""" Legacy API, for backward compatibility with code that does not handle slotted actions yet. This collection contains the F-Curve groups for the action's first slot
|
|
116076
116078
|
|
|
116077
116079
|
:type: ActionGroups
|
|
116078
116080
|
"""
|
|
@@ -116119,7 +116121,7 @@ class Action(ID, bpy_struct):
|
|
|
116119
116121
|
"WORLD",
|
|
116120
116122
|
"UNSPECIFIED",
|
|
116121
116123
|
]
|
|
116122
|
-
""" Type of
|
|
116124
|
+
""" Legacy API, for backward compatibility with code that does not handle slotted actions yet. Type of data-block that the action's first slot can be used on. Do not change unless you know what you are doing
|
|
116123
116125
|
|
|
116124
116126
|
:type: typing.Literal['ACTION','ARMATURE','BRUSH','CACHEFILE','CAMERA','COLLECTION','CURVE','CURVES','FONT','GREASEPENCIL','GREASEPENCIL_V3','IMAGE','KEY','LATTICE','LIBRARY','LIGHT','LIGHT_PROBE','LINESTYLE','MASK','MATERIAL','MESH','META','MOVIECLIP','NODETREE','OBJECT','PAINTCURVE','PALETTE','PARTICLE','POINTCLOUD','SCENE','SCREEN','SOUND','SPEAKER','TEXT','TEXTURE','VOLUME','WINDOWMANAGER','WORKSPACE','WORLD','UNSPECIFIED']
|
|
116125
116127
|
"""
|
|
@@ -116131,7 +116133,7 @@ class Action(ID, bpy_struct):
|
|
|
116131
116133
|
"""
|
|
116132
116134
|
|
|
116133
116135
|
is_action_legacy: bool
|
|
116134
|
-
""" Return whether this is a legacy Action. Legacy Actions have no layers or slots. An empty Action considered as both a 'legacy' and a 'layered' Action.
|
|
116136
|
+
""" Return whether this is a legacy Action. Legacy Actions have no layers or slots. An empty Action considered as both a 'legacy' and a 'layered' Action. Since Blender 4.4 actions are automatically updated to layered actions, and thus this will only return True when the action is empty
|
|
116135
116137
|
|
|
116136
116138
|
:type: bool
|
|
116137
116139
|
"""
|
|
@@ -116175,6 +116177,21 @@ class Action(ID, bpy_struct):
|
|
|
116175
116177
|
def deselect_keys(self):
|
|
116176
116178
|
"""Deselects all keys of the Action. The selection status of F-Curves is unchanged."""
|
|
116177
116179
|
|
|
116180
|
+
def fcurve_ensure_for_datablock(
|
|
116181
|
+
self, datablock: ID, data_path: str, *, index: int | None = 0
|
|
116182
|
+
) -> FCurve:
|
|
116183
|
+
"""Ensure that an F-Curve exists, with the given data path and array index, for the given data-block. This action must already be assigned to the data-block. This function will also create the layer, keyframe strip, and action slot if necessary, and take care of assigning the action slot too
|
|
116184
|
+
|
|
116185
|
+
:param datablock: The data-block animated by this action, for which to ensure the F-Curve exists. This action must already be assigned to the data-block
|
|
116186
|
+
:type datablock: ID
|
|
116187
|
+
:param data_path: Data Path, F-Curve data path
|
|
116188
|
+
:type data_path: str
|
|
116189
|
+
:param index: Index, Array index
|
|
116190
|
+
:type index: int | None
|
|
116191
|
+
:return: The found or created F-Curve
|
|
116192
|
+
:rtype: FCurve
|
|
116193
|
+
"""
|
|
116194
|
+
|
|
116178
116195
|
def flip_with_pose(self, object: Object):
|
|
116179
116196
|
"""Flip the action around the X axis using a pose
|
|
116180
116197
|
|
|
@@ -195902,10 +195919,10 @@ class PropertyGroupItem(bpy_struct):
|
|
|
195902
195919
|
:type: PropertyGroup
|
|
195903
195920
|
"""
|
|
195904
195921
|
|
|
195905
|
-
id: ID
|
|
195922
|
+
id: ID
|
|
195906
195923
|
"""
|
|
195907
195924
|
|
|
195908
|
-
:type: ID
|
|
195925
|
+
:type: ID
|
|
195909
195926
|
"""
|
|
195910
195927
|
|
|
195911
195928
|
idp_array: bpy_prop_collection[PropertyGroup]
|
|
@@ -227015,9 +227032,8 @@ class UIList(bpy_struct):
|
|
|
227015
227032
|
icon: int | None,
|
|
227016
227033
|
active_data: typing.Any,
|
|
227017
227034
|
active_property: str | None,
|
|
227018
|
-
|
|
227019
|
-
|
|
227020
|
-
flt_flag: int | None = 0,
|
|
227035
|
+
index: int | None,
|
|
227036
|
+
flt_flag: int | None,
|
|
227021
227037
|
):
|
|
227022
227038
|
"""Draw an item in the list (NOTE: when you define your own draw_item function, you may want to check given 'item' is of the right type...)
|
|
227023
227039
|
|
|
@@ -232307,10 +232323,10 @@ class WindowManager(ID, bpy_struct):
|
|
|
232307
232323
|
:type: bpy_prop_collection[Operator]
|
|
232308
232324
|
"""
|
|
232309
232325
|
|
|
232310
|
-
poselib_previous_action: Action
|
|
232326
|
+
poselib_previous_action: Action
|
|
232311
232327
|
"""
|
|
232312
232328
|
|
|
232313
|
-
:type: Action
|
|
232329
|
+
:type: Action
|
|
232314
232330
|
"""
|
|
232315
232331
|
|
|
232316
232332
|
preset_name: str | typing.Any
|
|
@@ -192,7 +192,7 @@ bmesh/utils/__init__.pyi,sha256=XNhFTqYQPL7ZUvljUTQkN0X_3YCS_RyrOgEzqrQZiDg,6235
|
|
|
192
192
|
bpy/__init__.pyi,sha256=KeQc-X1TjhtunVxLDy0IK0cMmurLmAQm4fX_D__UPJo,464
|
|
193
193
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
194
|
bpy/_typing/__init__.pyi,sha256=7bioadpQS-8UKR8TdY1m4MqUFqKVy8h13sPIt28ZUqs,99
|
|
195
|
-
bpy/_typing/rna_enums/__init__.pyi,sha256=
|
|
195
|
+
bpy/_typing/rna_enums/__init__.pyi,sha256=FbJCbUdEBpmkjKPuoah3DYPQsOgvOQ-5ZF_TuFbn3XM,138851
|
|
196
196
|
bpy/app/__init__.pyi,sha256=rNqetnnLndA8L1Ap2JsOPF9kSBCk2maa6dQtWV_a3ZY,8739
|
|
197
197
|
bpy/app/handlers/__init__.pyi,sha256=Gxao8v-gF10WpVRUdswsB4QndzHjO1UtymwrorJef-4,6911
|
|
198
198
|
bpy/app/icons/__init__.pyi,sha256=w18Xn9y0T54WlpHyhC3_y8a3Lq9kuo3U72Bu7wOY41A,928
|
|
@@ -215,13 +215,13 @@ bpy/ops/collection/__init__.pyi,sha256=z2rWoNxbdj4xFqPlItbIi2l57eHlarU6RnUM0zjI-
|
|
|
215
215
|
bpy/ops/console/__init__.pyi,sha256=lgoYIWzf29q06AniBBiPYuI7zndNoc2aGyXYyINZbPI,7304
|
|
216
216
|
bpy/ops/constraint/__init__.pyi,sha256=lb318xrvDTH1T_raLhoBKcDPTl4mVmYPfh5TxbnoGDU,11838
|
|
217
217
|
bpy/ops/curve/__init__.pyi,sha256=eO5HeAhCijFOcq-V8WBJVig7VkKmt1QQqiuVijIfueQ,28585
|
|
218
|
-
bpy/ops/curves/__init__.pyi,sha256=
|
|
218
|
+
bpy/ops/curves/__init__.pyi,sha256=HebR1M-El_BvS9VTzahaqheg73uCju6XQgGAdzN4eDc,15294
|
|
219
219
|
bpy/ops/cycles/__init__.pyi,sha256=TzurmelE8U7FLjghhDWt-0HBU-cyTALEWTfG4taUCSI,1739
|
|
220
220
|
bpy/ops/dpaint/__init__.pyi,sha256=LhNcaKIZxU6RVVV3Am5d-0r3fVmTqc_UbXwM53yPFCQ,1555
|
|
221
221
|
bpy/ops/ed/__init__.pyi,sha256=XrnkDR-2DzjfrqGDmMjiI0ZoYJmnUdX6yGdtpePIAis,7102
|
|
222
222
|
bpy/ops/export_anim/__init__.pyi,sha256=wyCP8IO0cjr0ixNFGfFblD8ASLG4tQ-l2v3a9UnHAlw,2027
|
|
223
223
|
bpy/ops/export_scene/__init__.pyi,sha256=1mZzNHNdWBwIOyslTrxTQn9Z6BqNp0ZlVblvJmKBW8M,40066
|
|
224
|
-
bpy/ops/extensions/__init__.pyi,sha256=
|
|
224
|
+
bpy/ops/extensions/__init__.pyi,sha256=yr_vbqofPPNDn86y_YoUYNOTOI5k2bowWti_1cUmAns,12730
|
|
225
225
|
bpy/ops/file/__init__.pyi,sha256=EwxedztM5v4x6oQd7FV0VbAHAtRKChgHTMuhkHUDDQ8,19260
|
|
226
226
|
bpy/ops/fluid/__init__.pyi,sha256=toNBTcKttDwaWx21Nzf2HNBWKT7vZh8IDcIR2nG_ad4,3191
|
|
227
227
|
bpy/ops/font/__init__.pyi,sha256=7fLdMjcgT0AZb_pvWl59RXn5fuhqkrll7pKYPmYZD8w,15509
|
|
@@ -230,10 +230,10 @@ bpy/ops/gizmogroup/__init__.pyi,sha256=lsDnIxuI4uIqJJEiLNmKUuMq2uqlc6HQAqDHY3T9t
|
|
|
230
230
|
bpy/ops/gpencil/__init__.pyi,sha256=cqeFGa_2tSDBDSWhsWVQVZx5BhHs08wiW4And1rhfVE,4832
|
|
231
231
|
bpy/ops/graph/__init__.pyi,sha256=LxlhLzlxAjlrVyfx09PY74t15-khJK0tiasNQyYUqw4,41703
|
|
232
232
|
bpy/ops/grease_pencil/__init__.pyi,sha256=-5jE8hJDQbMhbAYidVq_c6EmLLgRglboXrElJwlp6oU,62541
|
|
233
|
-
bpy/ops/image/__init__.pyi,sha256=
|
|
233
|
+
bpy/ops/image/__init__.pyi,sha256=ifILNvTm7UirNQzTa3sk9qpHCbinsmxUW4HSNWXF7B8,52430
|
|
234
234
|
bpy/ops/import_anim/__init__.pyi,sha256=aE1pDcT6TlridpXwg7tF-E3tXLcm83n7j1vVgn_-g7A,3046
|
|
235
235
|
bpy/ops/import_curve/__init__.pyi,sha256=sDhKpg3cI-y0NYuUo8ey3jb3h-KKergdPUDKlQ-C2iI,485
|
|
236
|
-
bpy/ops/import_scene/__init__.pyi,sha256
|
|
236
|
+
bpy/ops/import_scene/__init__.pyi,sha256=hqNXwHQZlcEHpnVhsGhSBeOPndVzmopuH-tcKerEv34,10246
|
|
237
237
|
bpy/ops/info/__init__.pyi,sha256=awrfSCgZOjERYahNCEfz80MLPSL1MLEzD2w1IVD_V9Y,3090
|
|
238
238
|
bpy/ops/lattice/__init__.pyi,sha256=q9buSVqGTwv5woNjo5gvJ8Ymuad0kEXaNulBoOeGCBY,3579
|
|
239
239
|
bpy/ops/marker/__init__.pyi,sha256=UdcuNJTcu5roTdeLXoV6Rgfpxtnb_LTEJlXklwMtUk0,5376
|
|
@@ -242,17 +242,17 @@ bpy/ops/material/__init__.pyi,sha256=8AhfpDXsCDLZI0UEESadmN8-zfNGEiDblmKobSJLcqA
|
|
|
242
242
|
bpy/ops/mball/__init__.pyi,sha256=VRZZbMhoN6OWmsG-344hmoHQ-_qcjRuisuzJvLxGobI,4155
|
|
243
243
|
bpy/ops/mesh/__init__.pyi,sha256=qE1RpDdjx6k30pAjr1ZWqjR4aoY6_qJ8VVyQk0F8GPA,132596
|
|
244
244
|
bpy/ops/nla/__init__.pyi,sha256=qWBmb8nOy9c6H_rKEjt3spO-TnwPaqJc1meOgDy5uaY,18145
|
|
245
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
245
|
+
bpy/ops/node/__init__.pyi,sha256=m1fchmX8mU4_B_IA00VGljBqo_EFVHQ1wg6swSnxTdY,53596
|
|
246
246
|
bpy/ops/object/__init__.pyi,sha256=r-chJkYsfu2ZUp4KBcamnBl7Od4_LW5zJ76e45lc8u0,168021
|
|
247
247
|
bpy/ops/outliner/__init__.pyi,sha256=la079qCOhk_Bf_FiEtjcNh0jP97X0sY5aPgnAxOT4x0,27743
|
|
248
248
|
bpy/ops/paint/__init__.pyi,sha256=Q-EnWEXXc_RyYXxGY0x4zTQbmNwd4HOaPxashYEWwpk,37665
|
|
249
249
|
bpy/ops/paintcurve/__init__.pyi,sha256=sJfa-6TohaHNlvBFZ5X2vhjeMCp91in2K6UqwIF3d80,2980
|
|
250
250
|
bpy/ops/palette/__init__.pyi,sha256=RD7rkE6f28SyME46hM3HwjWKCgKFtOXZDDPOO6mQB0Q,2093
|
|
251
251
|
bpy/ops/particle/__init__.pyi,sha256=fvUbIxeb5nxdxJAK6wWu0AsCBIpy3cCKXMNKY2ZIJqM,13621
|
|
252
|
-
bpy/ops/point_cloud/__init__.pyi,sha256=
|
|
252
|
+
bpy/ops/point_cloud/__init__.pyi,sha256=SaJsHeCGj2e4iW9vfLVQsZX7EmshxoFI1pVpTeMrcUs,3321
|
|
253
253
|
bpy/ops/pose/__init__.pyi,sha256=X3uT13DBbdw1nsmBhbId71DYAjYEGL6WtapfpwpihzA,26770
|
|
254
254
|
bpy/ops/poselib/__init__.pyi,sha256=gznUsY5ppqRYjKMHdUHXvCYF0n568JR6t-djfMV9rrU,5374
|
|
255
|
-
bpy/ops/preferences/__init__.pyi,sha256=
|
|
255
|
+
bpy/ops/preferences/__init__.pyi,sha256=1IgwxC10pDOYBY7qhdYOc-VW-I0fpTJXo1LINr1120s,19481
|
|
256
256
|
bpy/ops/ptcache/__init__.pyi,sha256=9WgZUXKtu-AeqF0pYrP8ZSdFXz2jHMdPjmp6zLesL2Q,1667
|
|
257
257
|
bpy/ops/render/__init__.pyi,sha256=9LDvtzNUv_nd3elJDKQFIXJltAIgsvvinpvyVu5q8cU,7425
|
|
258
258
|
bpy/ops/rigidbody/__init__.pyi,sha256=WL-53YoWliMEFDB0TAbvSwE9RgqakWuJqaytrj5kPGs,6698
|
|
@@ -274,12 +274,12 @@ bpy/ops/uilist/__init__.pyi,sha256=1Vu7qHRYL-MOM5kdcHJLmJwucvveh10t1wbmL_98GEM,1
|
|
|
274
274
|
bpy/ops/uv/__init__.pyi,sha256=_PFdsIxNsw5RLzCHmpqA7MnHriWUf0mau2pvYSyj7DQ,45436
|
|
275
275
|
bpy/ops/view2d/__init__.pyi,sha256=bw6xoLUDUWQGk36g4T8THDWpNSH_VX8Pyg_mlGB9Dik,6986
|
|
276
276
|
bpy/ops/view3d/__init__.pyi,sha256=MGiNsaGKtQPLFiSQgEdKlULq2a0Rp6W3vGTub0Hb3p4,30689
|
|
277
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
277
|
+
bpy/ops/wm/__init__.pyi,sha256=BiJxzx3scDcCmBLLg7n_sCIaJO4N9J10668yjqyQy8I,215854
|
|
278
278
|
bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHCU,1983
|
|
279
279
|
bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
|
|
280
280
|
bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
|
|
281
281
|
bpy/props/__init__.pyi,sha256=Ky1J5ndL8p_pvAaQakudyKKVynbr1NxXvzoN-5E9_I0,35237
|
|
282
|
-
bpy/types/__init__.pyi,sha256=
|
|
282
|
+
bpy/types/__init__.pyi,sha256=So_orMnvU84zNOuoTr6wzfdMaS43fJ9RC3ji2aHrevE,5471973
|
|
283
283
|
bpy/utils/__init__.pyi,sha256=y7dfOaWh9PE_q0Qs8gEKOm71RQuMZI0wQ1B07DCDHF4,14909
|
|
284
284
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
285
285
|
bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
|
|
@@ -345,10 +345,10 @@ keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
345
345
|
mathutils/__init__.pyi,sha256=I80TgzGwK0Xvj-9lrikpgylvmC5DiE6PYt0NTpKXCgg,89255
|
|
346
346
|
mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
347
|
mathutils/bvhtree/__init__.pyi,sha256=UtzuOlaUjgPwVQZnDiZhPrzgrFmgpyVY7z9WqoZzNsI,4933
|
|
348
|
-
mathutils/geometry/__init__.pyi,sha256=
|
|
348
|
+
mathutils/geometry/__init__.pyi,sha256=Flbctbyann3JzPiTWOILM8KxiiiHLAK39INr-HHNMlo,23219
|
|
349
349
|
mathutils/interpolate/__init__.pyi,sha256=3MaN3gfetfW_J0ZGye7U9Ae-O5cT7Ok2nyRWjy6HuV4,535
|
|
350
350
|
mathutils/kdtree/__init__.pyi,sha256=R7efrHFwgdpF3LKlQzW25s-GxVCECQgTuXOwSGoKJTk,2247
|
|
351
|
-
mathutils/noise/__init__.pyi,sha256=
|
|
351
|
+
mathutils/noise/__init__.pyi,sha256=zJMNhWV5lwqH09UqfUZ8Kf5kkB4T1kpLBTgfRffwRbE,12727
|
|
352
352
|
nodeitems_builtins/__init__.pyi,sha256=UEiW_FT6HF0dl6FrM3-n3OnTE1SiufVzyyLjCsGCqPc,475
|
|
353
353
|
nodeitems_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
354
354
|
nodeitems_utils/__init__.pyi,sha256=F82sRq2Foowt3d9IUxloVB_qg7pTQP5w8qYvMJhwvFs,747
|
|
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
361
361
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
362
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
363
363
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-
|
|
366
|
-
fake_bpy_module-
|
|
367
|
-
fake_bpy_module-
|
|
364
|
+
fake_bpy_module-20250219.dist-info/METADATA,sha256=mtmvOQ6-H_Zo3lfaokQ02oMtBmzTu6Tzxg_xwCDDOO4,7429
|
|
365
|
+
fake_bpy_module-20250219.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
366
|
+
fake_bpy_module-20250219.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
367
|
+
fake_bpy_module-20250219.dist-info/RECORD,,
|
mathutils/geometry/__init__.pyi
CHANGED
|
@@ -64,13 +64,11 @@ def box_fit_2d(
|
|
|
64
64
|
:rtype: float
|
|
65
65
|
"""
|
|
66
66
|
|
|
67
|
-
def box_pack_2d(
|
|
68
|
-
boxes: list[list[float, float, float, float, ...]],
|
|
69
|
-
) -> tuple[float, float]:
|
|
67
|
+
def box_pack_2d(boxes: list[list[float]]) -> tuple[float, float]:
|
|
70
68
|
"""Returns a tuple with the width and height of the packed bounding box.
|
|
71
69
|
|
|
72
70
|
:param boxes: list of boxes, each box is a list where the first 4 items are [X, Y, width, height, ...] other items are ignored. The X & Y values in this list are modified to set the packed positions.
|
|
73
|
-
:type boxes: list[list[float
|
|
71
|
+
:type boxes: list[list[float]]
|
|
74
72
|
:return: The width and height of the packed bounding box.
|
|
75
73
|
:rtype: tuple[float, float]
|
|
76
74
|
"""
|
mathutils/noise/__init__.pyi
CHANGED
|
@@ -295,7 +295,7 @@ def voronoi(
|
|
|
295
295
|
position: collections.abc.Sequence[float] | mathutils.Vector,
|
|
296
296
|
distance_metric: str = "DISTANCE",
|
|
297
297
|
exponent: float = 2.5,
|
|
298
|
-
) -> list[list[float]
|
|
298
|
+
) -> list[list[float] | list[mathutils.Vector]]:
|
|
299
299
|
"""Returns a list of distances to the four closest features and their locations.
|
|
300
300
|
|
|
301
301
|
:param position: The position to evaluate the selected noise function.
|
|
@@ -305,5 +305,5 @@ def voronoi(
|
|
|
305
305
|
:param exponent: The exponent for Minkowski distance metric.
|
|
306
306
|
:type exponent: float
|
|
307
307
|
:return: A list of distances to the four closest features and their locations.
|
|
308
|
-
:rtype: list[list[float]
|
|
308
|
+
:rtype: list[list[float] | list[mathutils.Vector]]
|
|
309
309
|
"""
|
|
File without changes
|
|
File without changes
|