fake-bge-module 20250218__py3-none-any.whl → 20250220__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.
- bl_ui/properties_paint_common/__init__.pyi +1 -1
- bl_ui/space_view3d/__init__.pyi +1 -1
- bpy/_typing/rna_enums/__init__.pyi +5 -1
- bpy/ops/__init__.pyi +1 -1
- 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/object/__init__.pyi +3 -7
- bpy/ops/{point_cloud → pointcloud}/__init__.pyi +37 -25
- bpy/ops/preferences/__init__.pyi +2 -3
- bpy/ops/wm/__init__.pyi +8 -12
- bpy/types/__init__.pyi +46 -43
- {fake_bge_module-20250218.dist-info → fake_bge_module-20250220.dist-info}/METADATA +1 -1
- {fake_bge_module-20250218.dist-info → fake_bge_module-20250220.dist-info}/RECORD +19 -19
- freestyle/utils/__init__.pyi +1 -1
- {fake_bge_module-20250218.dist-info → fake_bge_module-20250220.dist-info}/WHEEL +0 -0
- {fake_bge_module-20250218.dist-info → fake_bge_module-20250220.dist-info}/top_level.txt +0 -0
|
@@ -359,7 +359,7 @@ def brush_settings(layout, context, brush, popover=False):
|
|
|
359
359
|
|
|
360
360
|
"""
|
|
361
361
|
|
|
362
|
-
def brush_settings_advanced(layout, context, brush, popover=False):
|
|
362
|
+
def brush_settings_advanced(layout, context, settings, brush, popover=False):
|
|
363
363
|
"""Draw advanced brush settings for Sculpt, Texture/Vertex/Weight Paint modes."""
|
|
364
364
|
|
|
365
365
|
def brush_shared_settings(layout, context, brush, popover=False):
|
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -4191,7 +4191,7 @@ class VIEW3D_MT_select_edit_metaball(bpy.types.Menu):
|
|
|
4191
4191
|
:param _context:
|
|
4192
4192
|
"""
|
|
4193
4193
|
|
|
4194
|
-
class
|
|
4194
|
+
class VIEW3D_MT_select_edit_pointcloud(bpy.types.Menu):
|
|
4195
4195
|
bl_label: typing.Any
|
|
4196
4196
|
bl_rna: typing.Any
|
|
4197
4197
|
id_data: typing.Any
|
|
@@ -400,7 +400,7 @@ type ContextModeItems = typing.Literal[
|
|
|
400
400
|
"EDIT_METABALL", # Metaball Edit.
|
|
401
401
|
"EDIT_LATTICE", # Lattice Edit.
|
|
402
402
|
"EDIT_GREASE_PENCIL", # Grease Pencil Edit.
|
|
403
|
-
"
|
|
403
|
+
"EDIT_POINTCLOUD", # Point Cloud Edit.
|
|
404
404
|
"POSE", # Pose.
|
|
405
405
|
"SCULPT", # Sculpt.
|
|
406
406
|
"PAINT_WEIGHT", # Weight Paint.
|
|
@@ -803,6 +803,9 @@ type GreasePencilSelectmodeItems = typing.Literal[
|
|
|
803
803
|
]
|
|
804
804
|
type IconItems = typing.Literal[
|
|
805
805
|
"NONE", # NONE.
|
|
806
|
+
"CHAR_NOTDEF", # CHAR_NOTDEF.
|
|
807
|
+
"CHAR_REPLACEMENT", # CHAR_REPLACEMENT.
|
|
808
|
+
"NOT_FOUND", # NOT_FOUND.
|
|
806
809
|
"BLANK1", # BLANK1.
|
|
807
810
|
"AUTOMERGE_OFF", # AUTOMERGE_OFF.
|
|
808
811
|
"AUTOMERGE_ON", # AUTOMERGE_ON.
|
|
@@ -875,6 +878,7 @@ type IconItems = typing.Literal[
|
|
|
875
878
|
"GHOST_DISABLED", # GHOST_DISABLED.
|
|
876
879
|
"GHOST_ENABLED", # GHOST_ENABLED.
|
|
877
880
|
"GRIP", # GRIP.
|
|
881
|
+
"GRIP_V", # GRIP_V.
|
|
878
882
|
"HAND", # HAND.
|
|
879
883
|
"HELP", # HELP.
|
|
880
884
|
"LINKED", # LINKED.
|
bpy/ops/__init__.pyi
CHANGED
|
@@ -208,7 +208,7 @@ from . import paint as paint
|
|
|
208
208
|
from . import paintcurve as paintcurve
|
|
209
209
|
from . import palette as palette
|
|
210
210
|
from . import particle as particle
|
|
211
|
-
from . import
|
|
211
|
+
from . import pointcloud as pointcloud
|
|
212
212
|
from . import pose as pose
|
|
213
213
|
from . import poselib as poselib
|
|
214
214
|
from . import preferences as preferences
|
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/object/__init__.pyi
CHANGED
|
@@ -566,8 +566,7 @@ def convert(
|
|
|
566
566
|
undo: bool | None = None,
|
|
567
567
|
/,
|
|
568
568
|
*,
|
|
569
|
-
target: typing.Literal["CURVE", "MESH", "
|
|
570
|
-
| None = "MESH",
|
|
569
|
+
target: typing.Literal["CURVE", "MESH", "CURVES", "GREASEPENCIL"] | None = "MESH",
|
|
571
570
|
keep_original: bool | None = False,
|
|
572
571
|
merge_customdata: bool | None = True,
|
|
573
572
|
thickness: int | None = 5,
|
|
@@ -584,17 +583,14 @@ def convert(
|
|
|
584
583
|
Curve -- Curve from Mesh or Text objects.
|
|
585
584
|
|
|
586
585
|
MESH
|
|
587
|
-
Mesh -- Mesh from Curve, Surface, Metaball,
|
|
588
|
-
|
|
589
|
-
POINTCLOUD
|
|
590
|
-
Point Cloud -- Point Cloud from Mesh objects.
|
|
586
|
+
Mesh -- Mesh from Curve, Surface, Metaball, or Text objects.
|
|
591
587
|
|
|
592
588
|
CURVES
|
|
593
589
|
Curves -- Curves from evaluated curve data.
|
|
594
590
|
|
|
595
591
|
GREASEPENCIL
|
|
596
592
|
Grease Pencil -- Grease Pencil from Curve or Mesh objects.
|
|
597
|
-
:type target: typing.Literal['CURVE','MESH','
|
|
593
|
+
:type target: typing.Literal['CURVE','MESH','CURVES','GREASEPENCIL'] | None
|
|
598
594
|
:param keep_original: Keep Original, Keep original objects instead of replacing them
|
|
599
595
|
:type keep_original: bool | None
|
|
600
596
|
:param merge_customdata: Merge UVs, Merge UV coordinates that share a vertex to account for imprecision in some modifiers
|
|
@@ -36,31 +36,18 @@ def attribute_set(
|
|
|
36
36
|
:type value_bool: bool | None
|
|
37
37
|
"""
|
|
38
38
|
|
|
39
|
-
def
|
|
40
|
-
|
|
41
|
-
undo: bool | None = None,
|
|
42
|
-
/,
|
|
43
|
-
*,
|
|
44
|
-
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
45
|
-
):
|
|
46
|
-
"""Copy selected points
|
|
47
|
-
|
|
48
|
-
:type execution_context: int | str | None
|
|
49
|
-
:type undo: bool | None
|
|
50
|
-
:param action: Action, Selection action to execute
|
|
39
|
+
def delete(execution_context: int | str | None = None, undo: bool | None = None):
|
|
40
|
+
"""Remove selected points
|
|
51
41
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
SELECT
|
|
56
|
-
Select -- Select all elements.
|
|
42
|
+
:type execution_context: int | str | None
|
|
43
|
+
:type undo: bool | None
|
|
44
|
+
"""
|
|
57
45
|
|
|
58
|
-
|
|
59
|
-
|
|
46
|
+
def duplicate(execution_context: int | str | None = None, undo: bool | None = None):
|
|
47
|
+
"""Copy selected points
|
|
60
48
|
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
49
|
+
:type execution_context: int | str | None
|
|
50
|
+
:type undo: bool | None
|
|
64
51
|
"""
|
|
65
52
|
|
|
66
53
|
def duplicate_move(
|
|
@@ -68,15 +55,15 @@ def duplicate_move(
|
|
|
68
55
|
undo: bool | None = None,
|
|
69
56
|
/,
|
|
70
57
|
*,
|
|
71
|
-
|
|
58
|
+
POINTCLOUD_OT_duplicate: duplicate | None = None,
|
|
72
59
|
TRANSFORM_OT_translate: bpy.ops.transform.translate | None = None,
|
|
73
60
|
):
|
|
74
61
|
"""Make copies of selected elements and move them
|
|
75
62
|
|
|
76
63
|
:type execution_context: int | str | None
|
|
77
64
|
:type undo: bool | None
|
|
78
|
-
:param
|
|
79
|
-
:type
|
|
65
|
+
:param POINTCLOUD_OT_duplicate: Duplicate, Copy selected points
|
|
66
|
+
:type POINTCLOUD_OT_duplicate: duplicate | None
|
|
80
67
|
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
81
68
|
:type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
|
|
82
69
|
"""
|
|
@@ -107,3 +94,28 @@ def select_all(
|
|
|
107
94
|
Invert -- Invert selection of all elements.
|
|
108
95
|
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
109
96
|
"""
|
|
97
|
+
|
|
98
|
+
def select_random(
|
|
99
|
+
execution_context: int | str | None = None,
|
|
100
|
+
undo: bool | None = None,
|
|
101
|
+
/,
|
|
102
|
+
*,
|
|
103
|
+
seed: int | None = 0,
|
|
104
|
+
probability: float | None = 0.5,
|
|
105
|
+
):
|
|
106
|
+
"""Randomizes existing selection or create new random selection
|
|
107
|
+
|
|
108
|
+
:type execution_context: int | str | None
|
|
109
|
+
:type undo: bool | None
|
|
110
|
+
:param seed: Seed, Source of randomness
|
|
111
|
+
:type seed: int | None
|
|
112
|
+
:param probability: Probability, Chance of every point being included in the selection
|
|
113
|
+
:type probability: float | None
|
|
114
|
+
"""
|
|
115
|
+
|
|
116
|
+
def separate(execution_context: int | str | None = None, undo: bool | None = None):
|
|
117
|
+
"""Separate selected geometry into a new point cloud
|
|
118
|
+
|
|
119
|
+
:type execution_context: int | str | None
|
|
120
|
+
:type undo: bool | None
|
|
121
|
+
"""
|
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(
|
|
@@ -2826,8 +2825,7 @@ def operator_presets_cleanup(
|
|
|
2826
2825
|
/,
|
|
2827
2826
|
*,
|
|
2828
2827
|
operator: str = "",
|
|
2829
|
-
properties: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
2830
|
-
| None = None,
|
|
2828
|
+
properties: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
|
|
2831
2829
|
):
|
|
2832
2830
|
"""Remove outdated operator properties from presets that may cause problems
|
|
2833
2831
|
|
|
@@ -2836,7 +2834,7 @@ def operator_presets_cleanup(
|
|
|
2836
2834
|
:param operator: operator
|
|
2837
2835
|
:type operator: str
|
|
2838
2836
|
:param properties: properties
|
|
2839
|
-
:type properties: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
2837
|
+
:type properties: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
2840
2838
|
"""
|
|
2841
2839
|
|
|
2842
2840
|
def owner_disable(
|
|
@@ -3243,8 +3241,7 @@ def previews_batch_clear(
|
|
|
3243
3241
|
undo: bool | None = None,
|
|
3244
3242
|
/,
|
|
3245
3243
|
*,
|
|
3246
|
-
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
3247
|
-
| None = None,
|
|
3244
|
+
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
|
|
3248
3245
|
directory: str = "",
|
|
3249
3246
|
filter_blender: bool | None = True,
|
|
3250
3247
|
filter_folder: bool | None = True,
|
|
@@ -3260,7 +3257,7 @@ def previews_batch_clear(
|
|
|
3260
3257
|
:type execution_context: int | str | None
|
|
3261
3258
|
:type undo: bool | None
|
|
3262
3259
|
:param files: files
|
|
3263
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
3260
|
+
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
3264
3261
|
:param directory: directory
|
|
3265
3262
|
:type directory: str
|
|
3266
3263
|
:param filter_blender: filter_blender
|
|
@@ -3286,8 +3283,7 @@ def previews_batch_generate(
|
|
|
3286
3283
|
undo: bool | None = None,
|
|
3287
3284
|
/,
|
|
3288
3285
|
*,
|
|
3289
|
-
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
3290
|
-
| None = None,
|
|
3286
|
+
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
|
|
3291
3287
|
directory: str = "",
|
|
3292
3288
|
filter_blender: bool | None = True,
|
|
3293
3289
|
filter_folder: bool | None = True,
|
|
@@ -3303,7 +3299,7 @@ def previews_batch_generate(
|
|
|
3303
3299
|
:type execution_context: int | str | None
|
|
3304
3300
|
:type undo: bool | None
|
|
3305
3301
|
:param files: Collection of file paths with common directory root
|
|
3306
|
-
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
3302
|
+
:type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
3307
3303
|
:param directory: Root path of all files listed in files collection
|
|
3308
3304
|
:type directory: str
|
|
3309
3305
|
:param filter_blender: Show Blender files in the File Browser
|
bpy/types/__init__.pyi
CHANGED
|
@@ -50461,6 +50461,7 @@ database.
|
|
|
50461
50461
|
* bpy.context.id
|
|
50462
50462
|
* bpy.context.selected_ids
|
|
50463
50463
|
* bpy.context.texture_user
|
|
50464
|
+
* Action.fcurve_ensure_for_datablock
|
|
50464
50465
|
* AssetRepresentation.local_id
|
|
50465
50466
|
* BlendDataObjects.new
|
|
50466
50467
|
* BlendImportContextItem.id
|
|
@@ -55724,6 +55725,7 @@ print(positions_data)
|
|
|
55724
55725
|
* bpy.context.selected_editable_fcurves
|
|
55725
55726
|
* bpy.context.selected_visible_fcurves
|
|
55726
55727
|
* bpy.context.visible_fcurves
|
|
55728
|
+
* Action.fcurve_ensure_for_datablock
|
|
55727
55729
|
* Action.fcurves
|
|
55728
55730
|
* ActionChannelbag.fcurves
|
|
55729
55731
|
* ActionChannelbagFCurves.find
|
|
@@ -60159,7 +60161,6 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
60159
60161
|
* BlendDataImages.load
|
|
60160
60162
|
* BlendDataImages.new
|
|
60161
60163
|
* BlendDataImages.remove
|
|
60162
|
-
* Brush.clone_image
|
|
60163
60164
|
* CameraBackgroundImage.image
|
|
60164
60165
|
* CompositorNodeCryptomatteV2.image
|
|
60165
60166
|
* CompositorNodeImage.image
|
|
@@ -110406,12 +110407,12 @@ class ActionChannelbags(bpy_prop_collection[ActionChannelbag], bpy_struct):
|
|
|
110406
110407
|
"""
|
|
110407
110408
|
|
|
110408
110409
|
class ActionFCurves(bpy_prop_collection[FCurve], bpy_struct):
|
|
110409
|
-
"""Collection of action F-Curves"""
|
|
110410
|
+
"""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"""
|
|
110410
110411
|
|
|
110411
110412
|
def new(
|
|
110412
110413
|
self, data_path: str, *, index: int | None = 0, action_group: str = ""
|
|
110413
110414
|
) -> FCurve:
|
|
110414
|
-
"""Add an F-Curve
|
|
110415
|
+
"""Add an F-Curve for the first slot of this action, creating the necessary layer, strip, and slot if necessary
|
|
110415
110416
|
|
|
110416
110417
|
:param data_path: Data Path, F-Curve data path to use
|
|
110417
110418
|
:type data_path: str
|
|
@@ -110424,7 +110425,7 @@ class ActionFCurves(bpy_prop_collection[FCurve], bpy_struct):
|
|
|
110424
110425
|
"""
|
|
110425
110426
|
|
|
110426
110427
|
def find(self, data_path: str, *, index: int | None = 0) -> FCurve:
|
|
110427
|
-
"""Find an F-Curve. Note that this function performs a linear scan of all F-Curves
|
|
110428
|
+
"""Find an F-Curve. Note that this function performs a linear scan of all F-Curves for the action's first slot.
|
|
110428
110429
|
|
|
110429
110430
|
:param data_path: Data Path, F-Curve data path
|
|
110430
110431
|
:type data_path: str
|
|
@@ -110435,14 +110436,14 @@ class ActionFCurves(bpy_prop_collection[FCurve], bpy_struct):
|
|
|
110435
110436
|
"""
|
|
110436
110437
|
|
|
110437
110438
|
def remove(self, fcurve: FCurve):
|
|
110438
|
-
"""Remove F-Curve
|
|
110439
|
+
"""Remove the F-Curve from the action's first slot
|
|
110439
110440
|
|
|
110440
110441
|
:param fcurve: F-Curve to remove
|
|
110441
110442
|
:type fcurve: FCurve
|
|
110442
110443
|
"""
|
|
110443
110444
|
|
|
110444
110445
|
def clear(self):
|
|
110445
|
-
"""Remove all F-Curves"""
|
|
110446
|
+
"""Remove all F-Curves from the action's first slot"""
|
|
110446
110447
|
|
|
110447
110448
|
@classmethod
|
|
110448
110449
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
@@ -120368,7 +120369,7 @@ class Action(ID, bpy_struct):
|
|
|
120368
120369
|
"""
|
|
120369
120370
|
|
|
120370
120371
|
fcurves: ActionFCurves
|
|
120371
|
-
"""
|
|
120372
|
+
""" 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
|
|
120372
120373
|
|
|
120373
120374
|
:type: ActionFCurves
|
|
120374
120375
|
"""
|
|
@@ -120392,7 +120393,7 @@ class Action(ID, bpy_struct):
|
|
|
120392
120393
|
"""
|
|
120393
120394
|
|
|
120394
120395
|
groups: ActionGroups
|
|
120395
|
-
"""
|
|
120396
|
+
""" 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
|
|
120396
120397
|
|
|
120397
120398
|
:type: ActionGroups
|
|
120398
120399
|
"""
|
|
@@ -120439,7 +120440,7 @@ class Action(ID, bpy_struct):
|
|
|
120439
120440
|
"WORLD",
|
|
120440
120441
|
"UNSPECIFIED",
|
|
120441
120442
|
]
|
|
120442
|
-
""" Type of
|
|
120443
|
+
""" 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
|
|
120443
120444
|
|
|
120444
120445
|
: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']
|
|
120445
120446
|
"""
|
|
@@ -120451,7 +120452,7 @@ class Action(ID, bpy_struct):
|
|
|
120451
120452
|
"""
|
|
120452
120453
|
|
|
120453
120454
|
is_action_legacy: bool
|
|
120454
|
-
""" 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.
|
|
120455
|
+
""" 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
|
|
120455
120456
|
|
|
120456
120457
|
:type: bool
|
|
120457
120458
|
"""
|
|
@@ -120495,6 +120496,21 @@ class Action(ID, bpy_struct):
|
|
|
120495
120496
|
def deselect_keys(self):
|
|
120496
120497
|
"""Deselects all keys of the Action. The selection status of F-Curves is unchanged."""
|
|
120497
120498
|
|
|
120499
|
+
def fcurve_ensure_for_datablock(
|
|
120500
|
+
self, datablock: ID, data_path: str, *, index: int | None = 0
|
|
120501
|
+
) -> FCurve:
|
|
120502
|
+
"""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
|
|
120503
|
+
|
|
120504
|
+
: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
|
|
120505
|
+
:type datablock: ID
|
|
120506
|
+
:param data_path: Data Path, F-Curve data path
|
|
120507
|
+
:type data_path: str
|
|
120508
|
+
:param index: Index, Array index
|
|
120509
|
+
:type index: int | None
|
|
120510
|
+
:return: The found or created F-Curve
|
|
120511
|
+
:rtype: FCurve
|
|
120512
|
+
"""
|
|
120513
|
+
|
|
120498
120514
|
def flip_with_pose(self, object: Object):
|
|
120499
120515
|
"""Flip the action around the X axis using a pose
|
|
120500
120516
|
|
|
@@ -125697,24 +125713,6 @@ class Brush(ID, bpy_struct):
|
|
|
125697
125713
|
:type: BrushCapabilities
|
|
125698
125714
|
"""
|
|
125699
125715
|
|
|
125700
|
-
clone_alpha: float
|
|
125701
|
-
""" Opacity of clone image display
|
|
125702
|
-
|
|
125703
|
-
:type: float
|
|
125704
|
-
"""
|
|
125705
|
-
|
|
125706
|
-
clone_image: Image | None
|
|
125707
|
-
""" Image for clone brushes
|
|
125708
|
-
|
|
125709
|
-
:type: Image | None
|
|
125710
|
-
"""
|
|
125711
|
-
|
|
125712
|
-
clone_offset: mathutils.Vector
|
|
125713
|
-
"""
|
|
125714
|
-
|
|
125715
|
-
:type: mathutils.Vector
|
|
125716
|
-
"""
|
|
125717
|
-
|
|
125718
125716
|
cloth_constraint_softbody_strength: float
|
|
125719
125717
|
""" How much the cloth preserves the original shape, acting as a soft body
|
|
125720
125718
|
|
|
@@ -139356,12 +139354,6 @@ class Context(bpy_struct):
|
|
|
139356
139354
|
"""
|
|
139357
139355
|
|
|
139358
139356
|
curves: typing.Any
|
|
139359
|
-
pointcloud: PointCloud | None
|
|
139360
|
-
"""
|
|
139361
|
-
|
|
139362
|
-
:type: PointCloud | None
|
|
139363
|
-
"""
|
|
139364
|
-
|
|
139365
139357
|
volume: Volume | None
|
|
139366
139358
|
"""
|
|
139367
139359
|
|
|
@@ -165498,7 +165490,7 @@ class GeometryNodeTree(NodeTree, ID, bpy_struct):
|
|
|
165498
165490
|
:type: bool
|
|
165499
165491
|
"""
|
|
165500
165492
|
|
|
165501
|
-
|
|
165493
|
+
is_type_pointcloud: bool
|
|
165502
165494
|
""" The node group is used for point clouds
|
|
165503
165495
|
|
|
165504
165496
|
:type: bool
|
|
@@ -173587,12 +173579,24 @@ class ImagePaint(Paint, bpy_struct):
|
|
|
173587
173579
|
:type: Image | None
|
|
173588
173580
|
"""
|
|
173589
173581
|
|
|
173582
|
+
clone_alpha: float
|
|
173583
|
+
""" Opacity of clone image display
|
|
173584
|
+
|
|
173585
|
+
:type: float
|
|
173586
|
+
"""
|
|
173587
|
+
|
|
173590
173588
|
clone_image: Image | None
|
|
173591
173589
|
""" Image used as clone source
|
|
173592
173590
|
|
|
173593
173591
|
:type: Image | None
|
|
173594
173592
|
"""
|
|
173595
173593
|
|
|
173594
|
+
clone_offset: mathutils.Vector
|
|
173595
|
+
"""
|
|
173596
|
+
|
|
173597
|
+
:type: mathutils.Vector
|
|
173598
|
+
"""
|
|
173599
|
+
|
|
173596
173600
|
dither: float
|
|
173597
173601
|
""" Amount of dithering when painting on byte images
|
|
173598
173602
|
|
|
@@ -203386,10 +203390,10 @@ class PropertyGroupItem(bpy_struct):
|
|
|
203386
203390
|
:type: PropertyGroup
|
|
203387
203391
|
"""
|
|
203388
203392
|
|
|
203389
|
-
id: ID
|
|
203393
|
+
id: ID
|
|
203390
203394
|
"""
|
|
203391
203395
|
|
|
203392
|
-
:type: ID
|
|
203396
|
+
:type: ID
|
|
203393
203397
|
"""
|
|
203394
203398
|
|
|
203395
203399
|
idp_array: bpy_prop_collection[PropertyGroup]
|
|
@@ -237303,9 +237307,8 @@ class UIList(bpy_struct):
|
|
|
237303
237307
|
icon: int | None,
|
|
237304
237308
|
active_data: typing.Any,
|
|
237305
237309
|
active_property: str | None,
|
|
237306
|
-
|
|
237307
|
-
|
|
237308
|
-
flt_flag: int | None = 0,
|
|
237310
|
+
index: int | None,
|
|
237311
|
+
flt_flag: int | None,
|
|
237309
237312
|
):
|
|
237310
237313
|
"""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...)
|
|
237311
237314
|
|
|
@@ -242693,10 +242696,10 @@ class WindowManager(ID, bpy_struct):
|
|
|
242693
242696
|
:type: bpy_prop_collection[Operator]
|
|
242694
242697
|
"""
|
|
242695
242698
|
|
|
242696
|
-
poselib_previous_action: Action
|
|
242699
|
+
poselib_previous_action: Action
|
|
242697
242700
|
"""
|
|
242698
242701
|
|
|
242699
|
-
:type: Action
|
|
242702
|
+
:type: Action
|
|
242700
242703
|
"""
|
|
242701
242704
|
|
|
242702
242705
|
preset_name: str | typing.Any
|
|
@@ -247919,7 +247922,7 @@ VIEW3D_MT_select_edit_mesh: bl_ui.space_view3d.VIEW3D_MT_select_edit_mesh
|
|
|
247919
247922
|
|
|
247920
247923
|
VIEW3D_MT_select_edit_metaball: bl_ui.space_view3d.VIEW3D_MT_select_edit_metaball
|
|
247921
247924
|
|
|
247922
|
-
|
|
247925
|
+
VIEW3D_MT_select_edit_pointcloud: bl_ui.space_view3d.VIEW3D_MT_select_edit_pointcloud
|
|
247923
247926
|
|
|
247924
247927
|
VIEW3D_MT_select_edit_surface: bl_ui.space_view3d.VIEW3D_MT_select_edit_surface
|
|
247925
247928
|
|
|
@@ -162,7 +162,7 @@ bl_ui/properties_material/__init__.pyi,sha256=J3GrRdWFeh4p5w2qKtC5Dwz0XF301ATcsC
|
|
|
162
162
|
bl_ui/properties_material_gpencil/__init__.pyi,sha256=nzPF77aPdfB82IJ0Gt5kXMy8Lcsu5m2MmhR_uyUwEIY,8590
|
|
163
163
|
bl_ui/properties_object/__init__.pyi,sha256=o-OhpX73E-wu2q_Y_Wy8UReG-NLElj83qeSBp6FRpSQ,15319
|
|
164
164
|
bl_ui/properties_output/__init__.pyi,sha256=1fkDdDyAz2lTcSUnef8fai-1hTw9ztgvJsafPT_8vcU,13760
|
|
165
|
-
bl_ui/properties_paint_common/__init__.pyi,sha256=
|
|
165
|
+
bl_ui/properties_paint_common/__init__.pyi,sha256=aDxo3QM8DJUqm1tf8VWI5meE_gmpiQJtLSK-hBg8tkU,7992
|
|
166
166
|
bl_ui/properties_particle/__init__.pyi,sha256=HVO0ZWeKHj7ZNP4Bh8ji6IunnLDTpPDNRVZg6TQ8wOU,43414
|
|
167
167
|
bl_ui/properties_physics_cloth/__init__.pyi,sha256=z4BUwpMH-UQsZv7OfyPU_HHwCGeL-rcpMyY02M-Ew2Q,10647
|
|
168
168
|
bl_ui/properties_physics_common/__init__.pyi,sha256=2lJ-nAiO5aVycUimdzvPYJAfVyvsnBdaE9nQ9UN2W4w,1338
|
|
@@ -200,7 +200,7 @@ bl_ui/space_toolsystem_common/__init__.pyi,sha256=IFq4tTh_oM6-dQWMZbuRo6HhYinOLB
|
|
|
200
200
|
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=amIcQArvjsuZ7iHNMO3EETPZ1LXkSGRjIwTLtqDkJbk,9946
|
|
201
201
|
bl_ui/space_topbar/__init__.pyi,sha256=tVupsHc6IdA1o_axDcB1Cbf0o8ARZzgLncMXgguQnWY,15316
|
|
202
202
|
bl_ui/space_userpref/__init__.pyi,sha256=iLYc94VUBgP3dE6whoVFktEjvqAE-oLGDbtey9Y4L0E,79675
|
|
203
|
-
bl_ui/space_view3d/__init__.pyi,sha256=
|
|
203
|
+
bl_ui/space_view3d/__init__.pyi,sha256=7OqUOd-Ju0SgIta1uLsQB3cW-z5HE1qOcoRsCYdFD0M,156972
|
|
204
204
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=EG6IIG6nSOJAvIRRxU3TyjEQNWZ_n2tFEB6FlwjIhuw,76295
|
|
205
205
|
bl_ui/utils/__init__.pyi,sha256=qkgl-AlZI3QD4UUITGIvN9PbifOI4BPkZBpu7WyxMBw,483
|
|
206
206
|
bl_ui_utils/__init__.pyi,sha256=ZOo9_bgn1c9NiCNalhTplCD2IChG67rU_V3BeG0k4pE,93
|
|
@@ -219,14 +219,14 @@ bmesh/utils/__init__.pyi,sha256=XNhFTqYQPL7ZUvljUTQkN0X_3YCS_RyrOgEzqrQZiDg,6235
|
|
|
219
219
|
bpy/__init__.pyi,sha256=KeQc-X1TjhtunVxLDy0IK0cMmurLmAQm4fX_D__UPJo,464
|
|
220
220
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
221
221
|
bpy/_typing/__init__.pyi,sha256=7bioadpQS-8UKR8TdY1m4MqUFqKVy8h13sPIt28ZUqs,99
|
|
222
|
-
bpy/_typing/rna_enums/__init__.pyi,sha256=
|
|
222
|
+
bpy/_typing/rna_enums/__init__.pyi,sha256=nNGo1tQHkeeoPg6eTXza0DSQ8JoUha15U4dsninFprs,139623
|
|
223
223
|
bpy/app/__init__.pyi,sha256=t3vFsFHKJtyie_ViY1e824cJHmVTdV5Wpoad0dEQyeE,8767
|
|
224
224
|
bpy/app/handlers/__init__.pyi,sha256=paak3tw5Edrs_VfQUvgZNA6YsTeuBULkNe9mgo2TzI8,7116
|
|
225
225
|
bpy/app/icons/__init__.pyi,sha256=w18Xn9y0T54WlpHyhC3_y8a3Lq9kuo3U72Bu7wOY41A,928
|
|
226
226
|
bpy/app/timers/__init__.pyi,sha256=vtrATRAmkTfP1CknievwpOCC19cPOMowyLTE6Ie9GSg,2126
|
|
227
227
|
bpy/app/translations/__init__.pyi,sha256=rrUs88RJakTJ8IZzE7oRunD_HqLByX5tqmLSrQ_e8dQ,7007
|
|
228
228
|
bpy/msgbus/__init__.pyi,sha256=e9cmp_Wq7FA5pDTQQJ2s0_I84bEJMu8J-5Lu5gNoClM,2954
|
|
229
|
-
bpy/ops/__init__.pyi,sha256=
|
|
229
|
+
bpy/ops/__init__.pyi,sha256=K4x89H6Q5Beutgc98_dRWw-KTQ1Y_pQU-JaxSZ_6LvY,5627
|
|
230
230
|
bpy/ops/action/__init__.pyi,sha256=LBNWtp-Nd2C-ae5OK4WTxg-ztiufJ4OLan-f6W7EJXo,18645
|
|
231
231
|
bpy/ops/anim/__init__.pyi,sha256=VM6kJF9mPnpDINvcVqrf-fEHlSRzn-P1vmCPvK8KDwA,24980
|
|
232
232
|
bpy/ops/armature/__init__.pyi,sha256=k6XyBQsnS9j-7cKqfmN4qYVyhv9gQVwX45g-3DJ8jro,20909
|
|
@@ -242,13 +242,13 @@ bpy/ops/collection/__init__.pyi,sha256=z2rWoNxbdj4xFqPlItbIi2l57eHlarU6RnUM0zjI-
|
|
|
242
242
|
bpy/ops/console/__init__.pyi,sha256=lgoYIWzf29q06AniBBiPYuI7zndNoc2aGyXYyINZbPI,7304
|
|
243
243
|
bpy/ops/constraint/__init__.pyi,sha256=lb318xrvDTH1T_raLhoBKcDPTl4mVmYPfh5TxbnoGDU,11838
|
|
244
244
|
bpy/ops/curve/__init__.pyi,sha256=eO5HeAhCijFOcq-V8WBJVig7VkKmt1QQqiuVijIfueQ,28585
|
|
245
|
-
bpy/ops/curves/__init__.pyi,sha256=
|
|
245
|
+
bpy/ops/curves/__init__.pyi,sha256=HebR1M-El_BvS9VTzahaqheg73uCju6XQgGAdzN4eDc,15294
|
|
246
246
|
bpy/ops/cycles/__init__.pyi,sha256=TzurmelE8U7FLjghhDWt-0HBU-cyTALEWTfG4taUCSI,1739
|
|
247
247
|
bpy/ops/dpaint/__init__.pyi,sha256=LhNcaKIZxU6RVVV3Am5d-0r3fVmTqc_UbXwM53yPFCQ,1555
|
|
248
248
|
bpy/ops/ed/__init__.pyi,sha256=XrnkDR-2DzjfrqGDmMjiI0ZoYJmnUdX6yGdtpePIAis,7102
|
|
249
249
|
bpy/ops/export_anim/__init__.pyi,sha256=wyCP8IO0cjr0ixNFGfFblD8ASLG4tQ-l2v3a9UnHAlw,2027
|
|
250
250
|
bpy/ops/export_scene/__init__.pyi,sha256=1mZzNHNdWBwIOyslTrxTQn9Z6BqNp0ZlVblvJmKBW8M,40066
|
|
251
|
-
bpy/ops/extensions/__init__.pyi,sha256=
|
|
251
|
+
bpy/ops/extensions/__init__.pyi,sha256=yr_vbqofPPNDn86y_YoUYNOTOI5k2bowWti_1cUmAns,12730
|
|
252
252
|
bpy/ops/file/__init__.pyi,sha256=EwxedztM5v4x6oQd7FV0VbAHAtRKChgHTMuhkHUDDQ8,19260
|
|
253
253
|
bpy/ops/fluid/__init__.pyi,sha256=toNBTcKttDwaWx21Nzf2HNBWKT7vZh8IDcIR2nG_ad4,3191
|
|
254
254
|
bpy/ops/font/__init__.pyi,sha256=7fLdMjcgT0AZb_pvWl59RXn5fuhqkrll7pKYPmYZD8w,15509
|
|
@@ -257,10 +257,10 @@ bpy/ops/gizmogroup/__init__.pyi,sha256=lsDnIxuI4uIqJJEiLNmKUuMq2uqlc6HQAqDHY3T9t
|
|
|
257
257
|
bpy/ops/gpencil/__init__.pyi,sha256=cqeFGa_2tSDBDSWhsWVQVZx5BhHs08wiW4And1rhfVE,4832
|
|
258
258
|
bpy/ops/graph/__init__.pyi,sha256=LxlhLzlxAjlrVyfx09PY74t15-khJK0tiasNQyYUqw4,41703
|
|
259
259
|
bpy/ops/grease_pencil/__init__.pyi,sha256=-5jE8hJDQbMhbAYidVq_c6EmLLgRglboXrElJwlp6oU,62541
|
|
260
|
-
bpy/ops/image/__init__.pyi,sha256=
|
|
260
|
+
bpy/ops/image/__init__.pyi,sha256=ifILNvTm7UirNQzTa3sk9qpHCbinsmxUW4HSNWXF7B8,52430
|
|
261
261
|
bpy/ops/import_anim/__init__.pyi,sha256=aE1pDcT6TlridpXwg7tF-E3tXLcm83n7j1vVgn_-g7A,3046
|
|
262
262
|
bpy/ops/import_curve/__init__.pyi,sha256=sDhKpg3cI-y0NYuUo8ey3jb3h-KKergdPUDKlQ-C2iI,485
|
|
263
|
-
bpy/ops/import_scene/__init__.pyi,sha256
|
|
263
|
+
bpy/ops/import_scene/__init__.pyi,sha256=hqNXwHQZlcEHpnVhsGhSBeOPndVzmopuH-tcKerEv34,10246
|
|
264
264
|
bpy/ops/info/__init__.pyi,sha256=awrfSCgZOjERYahNCEfz80MLPSL1MLEzD2w1IVD_V9Y,3090
|
|
265
265
|
bpy/ops/lattice/__init__.pyi,sha256=q9buSVqGTwv5woNjo5gvJ8Ymuad0kEXaNulBoOeGCBY,3579
|
|
266
266
|
bpy/ops/logic/__init__.pyi,sha256=VS7MOgjn68kQrwLldxzWixXCUjkY_JtNXcu2tE9fIC0,9854
|
|
@@ -270,17 +270,17 @@ bpy/ops/material/__init__.pyi,sha256=8AhfpDXsCDLZI0UEESadmN8-zfNGEiDblmKobSJLcqA
|
|
|
270
270
|
bpy/ops/mball/__init__.pyi,sha256=VRZZbMhoN6OWmsG-344hmoHQ-_qcjRuisuzJvLxGobI,4155
|
|
271
271
|
bpy/ops/mesh/__init__.pyi,sha256=Gp2MK7c7qJtOinM72vvDDYV3wIAbFenIbej0hWcHj90,133710
|
|
272
272
|
bpy/ops/nla/__init__.pyi,sha256=qWBmb8nOy9c6H_rKEjt3spO-TnwPaqJc1meOgDy5uaY,18145
|
|
273
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
274
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
273
|
+
bpy/ops/node/__init__.pyi,sha256=m1fchmX8mU4_B_IA00VGljBqo_EFVHQ1wg6swSnxTdY,53596
|
|
274
|
+
bpy/ops/object/__init__.pyi,sha256=yzUuIGGjwNDGLO2IHtmEax94v-ZrCMJote1W3hQoGW0,172226
|
|
275
275
|
bpy/ops/outliner/__init__.pyi,sha256=la079qCOhk_Bf_FiEtjcNh0jP97X0sY5aPgnAxOT4x0,27743
|
|
276
276
|
bpy/ops/paint/__init__.pyi,sha256=Q-EnWEXXc_RyYXxGY0x4zTQbmNwd4HOaPxashYEWwpk,37665
|
|
277
277
|
bpy/ops/paintcurve/__init__.pyi,sha256=sJfa-6TohaHNlvBFZ5X2vhjeMCp91in2K6UqwIF3d80,2980
|
|
278
278
|
bpy/ops/palette/__init__.pyi,sha256=RD7rkE6f28SyME46hM3HwjWKCgKFtOXZDDPOO6mQB0Q,2093
|
|
279
279
|
bpy/ops/particle/__init__.pyi,sha256=fvUbIxeb5nxdxJAK6wWu0AsCBIpy3cCKXMNKY2ZIJqM,13621
|
|
280
|
-
bpy/ops/
|
|
280
|
+
bpy/ops/pointcloud/__init__.pyi,sha256=dB3XaaDLeHkeSTERVVOG0UYyg75HwGO1cYrhU3XB9sM,3843
|
|
281
281
|
bpy/ops/pose/__init__.pyi,sha256=X3uT13DBbdw1nsmBhbId71DYAjYEGL6WtapfpwpihzA,26770
|
|
282
282
|
bpy/ops/poselib/__init__.pyi,sha256=gznUsY5ppqRYjKMHdUHXvCYF0n568JR6t-djfMV9rrU,5374
|
|
283
|
-
bpy/ops/preferences/__init__.pyi,sha256=
|
|
283
|
+
bpy/ops/preferences/__init__.pyi,sha256=1IgwxC10pDOYBY7qhdYOc-VW-I0fpTJXo1LINr1120s,19481
|
|
284
284
|
bpy/ops/ptcache/__init__.pyi,sha256=9WgZUXKtu-AeqF0pYrP8ZSdFXz2jHMdPjmp6zLesL2Q,1667
|
|
285
285
|
bpy/ops/render/__init__.pyi,sha256=9LDvtzNUv_nd3elJDKQFIXJltAIgsvvinpvyVu5q8cU,7425
|
|
286
286
|
bpy/ops/rigidbody/__init__.pyi,sha256=WL-53YoWliMEFDB0TAbvSwE9RgqakWuJqaytrj5kPGs,6698
|
|
@@ -302,12 +302,12 @@ bpy/ops/uilist/__init__.pyi,sha256=1Vu7qHRYL-MOM5kdcHJLmJwucvveh10t1wbmL_98GEM,1
|
|
|
302
302
|
bpy/ops/uv/__init__.pyi,sha256=_PFdsIxNsw5RLzCHmpqA7MnHriWUf0mau2pvYSyj7DQ,45436
|
|
303
303
|
bpy/ops/view2d/__init__.pyi,sha256=bw6xoLUDUWQGk36g4T8THDWpNSH_VX8Pyg_mlGB9Dik,6986
|
|
304
304
|
bpy/ops/view3d/__init__.pyi,sha256=qOxRARE56KMzHZiljp1P_TTlo-dVlUhClpLKzD3AUOU,30884
|
|
305
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
305
|
+
bpy/ops/wm/__init__.pyi,sha256=K74eMdyWoIqCb-aebLgZkQELrYh7wi6d41yHU9WKbeU,216215
|
|
306
306
|
bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHCU,1983
|
|
307
307
|
bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
|
|
308
308
|
bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
|
|
309
309
|
bpy/props/__init__.pyi,sha256=Ky1J5ndL8p_pvAaQakudyKKVynbr1NxXvzoN-5E9_I0,35237
|
|
310
|
-
bpy/types/__init__.pyi,sha256=
|
|
310
|
+
bpy/types/__init__.pyi,sha256=Z8itRjNmjqutdfHPUXrfyrVJzZk6OXAm-P6udnzpAfY,5705213
|
|
311
311
|
bpy/utils/__init__.pyi,sha256=y7dfOaWh9PE_q0Qs8gEKOm71RQuMZI0wQ1B07DCDHF4,14909
|
|
312
312
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
313
313
|
bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
|
|
@@ -342,7 +342,7 @@ freestyle/functions/__init__.pyi,sha256=sEPnGHwZm8XBlfE7CKLros3CKJlAh1h1FI74nBTE
|
|
|
342
342
|
freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
|
|
343
343
|
freestyle/shaders/__init__.pyi,sha256=4a-rY8mkkIcsnIvYGcP8YgAULdJENDJnncju2CjhQVg,24014
|
|
344
344
|
freestyle/types/__init__.pyi,sha256=Dmb8LokYlO2lCfmDwPX5MwwpnHHSRaXU2t6Nu37Rzjg,100200
|
|
345
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
345
|
+
freestyle/utils/__init__.pyi,sha256=DdX3Qj2yTIu8jXdOAnf_9yKhJ5AQFnS_zVvSAdTfBpU,5108
|
|
346
346
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=fPDfiBEjpoqXQhBhmHJ6WxG9oLMItwQ32MxKQz_c9_I,3445
|
|
347
347
|
gpu/__init__.pyi,sha256=Q-AbyJO85pPYcwXNWtvgAhFGGJ6OnnHrlsXQxur9jhs,7999
|
|
348
348
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -389,7 +389,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
389
389
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
390
390
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
391
391
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
392
|
-
fake_bge_module-
|
|
393
|
-
fake_bge_module-
|
|
394
|
-
fake_bge_module-
|
|
395
|
-
fake_bge_module-
|
|
392
|
+
fake_bge_module-20250220.dist-info/METADATA,sha256=wVMGQxLoO2KpW5z_h1QSjGRUWUhCrThMOgM8K8Cv30Q,4872
|
|
393
|
+
fake_bge_module-20250220.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
394
|
+
fake_bge_module-20250220.dist-info/top_level.txt,sha256=eE5ylpw84TnTp2h-RCfTJgCBykd4PsHdymQwBM_dVls,544
|
|
395
|
+
fake_bge_module-20250220.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
|
|
|
124
124
|
"""get the diffuse RGBA color from an FEdge"""
|
|
125
125
|
|
|
126
126
|
def normal_at_I0D(it): ...
|
|
127
|
-
def pairwise(iterable, types={
|
|
127
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
|
|
128
128
|
"""Yields a tuple containing the previous and current object"""
|
|
129
129
|
|
|
130
130
|
def rgb_to_bw(r, g, b):
|
|
File without changes
|
|
File without changes
|