fake-bpy-module 20250315__py3-none-any.whl → 20250323__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_filebrowser/__init__.pyi +32 -0
- bpy/_typing/rna_enums/__init__.pyi +3 -0
- bpy/ops/node/__init__.pyi +66 -66
- bpy/ops/wm/__init__.pyi +3 -3
- bpy/types/__init__.pyi +220 -25
- {fake_bpy_module-20250315.dist-info → fake_bpy_module-20250323.dist-info}/METADATA +2 -2
- {fake_bpy_module-20250315.dist-info → fake_bpy_module-20250323.dist-info}/RECORD +11 -11
- {fake_bpy_module-20250315.dist-info → fake_bpy_module-20250323.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- gpu_extras/batch/__init__.pyi +2 -3
- {fake_bpy_module-20250315.dist-info → fake_bpy_module-20250323.dist-info}/top_level.txt +0 -0
|
@@ -202,6 +202,38 @@ class ASSETBROWSER_PT_filter(bpy_extras.asset_utils.AssetBrowserPanel, bpy.types
|
|
|
202
202
|
:param context:
|
|
203
203
|
"""
|
|
204
204
|
|
|
205
|
+
class ASSETBROWSER_PT_import_settings(
|
|
206
|
+
bpy_extras.asset_utils.AssetBrowserPanel, bpy.types.Panel
|
|
207
|
+
):
|
|
208
|
+
bl_idname: typing.Any
|
|
209
|
+
bl_label: typing.Any
|
|
210
|
+
bl_options: typing.Any
|
|
211
|
+
bl_region_type: typing.Any
|
|
212
|
+
bl_rna: typing.Any
|
|
213
|
+
bl_space_type: typing.Any
|
|
214
|
+
bl_ui_units_x: typing.Any
|
|
215
|
+
id_data: typing.Any
|
|
216
|
+
|
|
217
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
218
|
+
"""
|
|
219
|
+
|
|
220
|
+
:return: The RNA type or default when not found.
|
|
221
|
+
:rtype: bpy.types.Struct
|
|
222
|
+
"""
|
|
223
|
+
|
|
224
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
225
|
+
"""
|
|
226
|
+
|
|
227
|
+
:return: The class or default when not found.
|
|
228
|
+
:rtype: typing.Any
|
|
229
|
+
"""
|
|
230
|
+
|
|
231
|
+
def draw(self, context):
|
|
232
|
+
"""
|
|
233
|
+
|
|
234
|
+
:param context:
|
|
235
|
+
"""
|
|
236
|
+
|
|
205
237
|
class ASSETBROWSER_PT_metadata(
|
|
206
238
|
bpy_extras.asset_utils.AssetBrowserPanel, bpy.types.Panel
|
|
207
239
|
):
|
|
@@ -1531,6 +1531,9 @@ type IconItems = typing.Literal[
|
|
|
1531
1531
|
"USER", # USER.
|
|
1532
1532
|
"EXPERIMENTAL", # EXPERIMENTAL.
|
|
1533
1533
|
"MEMORY", # MEMORY.
|
|
1534
|
+
"RGB_RED", # RGB_RED.
|
|
1535
|
+
"RGB_GREEN", # RGB_GREEN.
|
|
1536
|
+
"RGB_BLUE", # RGB_BLUE.
|
|
1534
1537
|
"KEYTYPE_KEYFRAME_VEC", # KEYTYPE_KEYFRAME_VEC.
|
|
1535
1538
|
"KEYTYPE_BREAKDOWN_VEC", # KEYTYPE_BREAKDOWN_VEC.
|
|
1536
1539
|
"KEYTYPE_EXTREME_VEC", # KEYTYPE_EXTREME_VEC.
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -55,7 +55,71 @@ def add_color(
|
|
|
55
55
|
:type has_alpha: bool | None
|
|
56
56
|
"""
|
|
57
57
|
|
|
58
|
-
def
|
|
58
|
+
def add_foreach_geometry_element_zone(
|
|
59
|
+
execution_context: int | str | None = None,
|
|
60
|
+
undo: bool | None = None,
|
|
61
|
+
/,
|
|
62
|
+
*,
|
|
63
|
+
use_transform: bool | None = False,
|
|
64
|
+
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
65
|
+
| None = None,
|
|
66
|
+
offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
|
|
67
|
+
):
|
|
68
|
+
"""Add a For Each Geometry Element zone that allows executing nodes e.g. for each vertex separately
|
|
69
|
+
|
|
70
|
+
:type execution_context: int | str | None
|
|
71
|
+
:type undo: bool | None
|
|
72
|
+
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
73
|
+
:type use_transform: bool | None
|
|
74
|
+
:param settings: Settings, Settings to be applied on the newly created node
|
|
75
|
+
:type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] | None
|
|
76
|
+
:param offset: Offset, Offset of nodes from the cursor when added
|
|
77
|
+
:type offset: collections.abc.Iterable[float] | None
|
|
78
|
+
"""
|
|
79
|
+
|
|
80
|
+
def add_group(
|
|
81
|
+
execution_context: int | str | None = None,
|
|
82
|
+
undo: bool | None = None,
|
|
83
|
+
/,
|
|
84
|
+
*,
|
|
85
|
+
name: str = "",
|
|
86
|
+
session_uid: int | None = 0,
|
|
87
|
+
show_datablock_in_node: bool | None = True,
|
|
88
|
+
):
|
|
89
|
+
"""Add an existing node group to the current node editor
|
|
90
|
+
|
|
91
|
+
:type execution_context: int | str | None
|
|
92
|
+
:type undo: bool | None
|
|
93
|
+
:param name: Name, Name of the data-block to use by the operator
|
|
94
|
+
:type name: str
|
|
95
|
+
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
96
|
+
:type session_uid: int | None
|
|
97
|
+
:param show_datablock_in_node: Show the datablock selector in the node
|
|
98
|
+
:type show_datablock_in_node: bool | None
|
|
99
|
+
"""
|
|
100
|
+
|
|
101
|
+
def add_group_asset(
|
|
102
|
+
execution_context: int | str | None = None,
|
|
103
|
+
undo: bool | None = None,
|
|
104
|
+
/,
|
|
105
|
+
*,
|
|
106
|
+
asset_library_type: bpy._typing.rna_enums.AssetLibraryTypeItems | None = "LOCAL",
|
|
107
|
+
asset_library_identifier: str = "",
|
|
108
|
+
relative_asset_identifier: str = "",
|
|
109
|
+
):
|
|
110
|
+
"""Add a node group asset to the active node tree
|
|
111
|
+
|
|
112
|
+
:type execution_context: int | str | None
|
|
113
|
+
:type undo: bool | None
|
|
114
|
+
:param asset_library_type: Asset Library Type
|
|
115
|
+
:type asset_library_type: bpy._typing.rna_enums.AssetLibraryTypeItems | None
|
|
116
|
+
:param asset_library_identifier: Asset Library Identifier
|
|
117
|
+
:type asset_library_identifier: str
|
|
118
|
+
:param relative_asset_identifier: Relative Asset Identifier
|
|
119
|
+
:type relative_asset_identifier: str
|
|
120
|
+
"""
|
|
121
|
+
|
|
122
|
+
def add_image(
|
|
59
123
|
execution_context: int | str | None = None,
|
|
60
124
|
undo: bool | None = None,
|
|
61
125
|
/,
|
|
@@ -103,7 +167,7 @@ def add_file(
|
|
|
103
167
|
name: str = "",
|
|
104
168
|
session_uid: int | None = 0,
|
|
105
169
|
):
|
|
106
|
-
"""Add a file node to the current node editor
|
|
170
|
+
"""Add a image/movie file as node to the current node editor
|
|
107
171
|
|
|
108
172
|
:type execution_context: int | str | None
|
|
109
173
|
:type undo: bool | None
|
|
@@ -199,70 +263,6 @@ def add_file(
|
|
|
199
263
|
:type session_uid: int | None
|
|
200
264
|
"""
|
|
201
265
|
|
|
202
|
-
def add_foreach_geometry_element_zone(
|
|
203
|
-
execution_context: int | str | None = None,
|
|
204
|
-
undo: bool | None = None,
|
|
205
|
-
/,
|
|
206
|
-
*,
|
|
207
|
-
use_transform: bool | None = False,
|
|
208
|
-
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
209
|
-
| None = None,
|
|
210
|
-
offset: collections.abc.Iterable[float] | None = (150.0, 0.0),
|
|
211
|
-
):
|
|
212
|
-
"""Add a For Each Geometry Element zone that allows executing nodes e.g. for each vertex separately
|
|
213
|
-
|
|
214
|
-
:type execution_context: int | str | None
|
|
215
|
-
:type undo: bool | None
|
|
216
|
-
:param use_transform: Use Transform, Start transform operator after inserting the node
|
|
217
|
-
:type use_transform: bool | None
|
|
218
|
-
:param settings: Settings, Settings to be applied on the newly created node
|
|
219
|
-
:type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] | None
|
|
220
|
-
:param offset: Offset, Offset of nodes from the cursor when added
|
|
221
|
-
:type offset: collections.abc.Iterable[float] | None
|
|
222
|
-
"""
|
|
223
|
-
|
|
224
|
-
def add_group(
|
|
225
|
-
execution_context: int | str | None = None,
|
|
226
|
-
undo: bool | None = None,
|
|
227
|
-
/,
|
|
228
|
-
*,
|
|
229
|
-
name: str = "",
|
|
230
|
-
session_uid: int | None = 0,
|
|
231
|
-
show_datablock_in_node: bool | None = True,
|
|
232
|
-
):
|
|
233
|
-
"""Add an existing node group to the current node editor
|
|
234
|
-
|
|
235
|
-
:type execution_context: int | str | None
|
|
236
|
-
:type undo: bool | None
|
|
237
|
-
:param name: Name, Name of the data-block to use by the operator
|
|
238
|
-
:type name: str
|
|
239
|
-
:param session_uid: Session UID, Session UID of the data-block to use by the operator
|
|
240
|
-
:type session_uid: int | None
|
|
241
|
-
:param show_datablock_in_node: Show the datablock selector in the node
|
|
242
|
-
:type show_datablock_in_node: bool | None
|
|
243
|
-
"""
|
|
244
|
-
|
|
245
|
-
def add_group_asset(
|
|
246
|
-
execution_context: int | str | None = None,
|
|
247
|
-
undo: bool | None = None,
|
|
248
|
-
/,
|
|
249
|
-
*,
|
|
250
|
-
asset_library_type: bpy._typing.rna_enums.AssetLibraryTypeItems | None = "LOCAL",
|
|
251
|
-
asset_library_identifier: str = "",
|
|
252
|
-
relative_asset_identifier: str = "",
|
|
253
|
-
):
|
|
254
|
-
"""Add a node group asset to the active node tree
|
|
255
|
-
|
|
256
|
-
:type execution_context: int | str | None
|
|
257
|
-
:type undo: bool | None
|
|
258
|
-
:param asset_library_type: Asset Library Type
|
|
259
|
-
:type asset_library_type: bpy._typing.rna_enums.AssetLibraryTypeItems | None
|
|
260
|
-
:param asset_library_identifier: Asset Library Identifier
|
|
261
|
-
:type asset_library_identifier: str
|
|
262
|
-
:param relative_asset_identifier: Relative Asset Identifier
|
|
263
|
-
:type relative_asset_identifier: str
|
|
264
|
-
"""
|
|
265
|
-
|
|
266
266
|
def add_import_node(
|
|
267
267
|
execution_context: int | str | None = None,
|
|
268
268
|
undo: bool | None = None,
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -2423,7 +2423,7 @@ def obj_export(
|
|
|
2423
2423
|
:type export_selected_objects: bool | None
|
|
2424
2424
|
:param export_uv: Export UVs
|
|
2425
2425
|
:type export_uv: bool | None
|
|
2426
|
-
:param export_normals: Export Normals, Export per-face normals if the face is flat-shaded, per-face-
|
|
2426
|
+
:param export_normals: Export Normals, Export per-face normals if the face is flat-shaded, per-face-corner normals if smooth-shaded
|
|
2427
2427
|
:type export_normals: bool | None
|
|
2428
2428
|
:param export_colors: Export Colors, Export per-vertex colors
|
|
2429
2429
|
:type export_colors: bool | None
|
|
@@ -2461,9 +2461,9 @@ def obj_export(
|
|
|
2461
2461
|
:type export_material_groups: bool | None
|
|
2462
2462
|
:param export_vertex_groups: Export Vertex Groups, Export the name of the vertex group of a face. It is approximated by choosing the vertex group with the most members among the vertices of a face
|
|
2463
2463
|
:type export_vertex_groups: bool | None
|
|
2464
|
-
:param export_smooth_groups: Export Smooth Groups,
|
|
2464
|
+
:param export_smooth_groups: Export Smooth Groups, Generate smooth groups identifiers for each group of smooth faces, as unique integer values by default
|
|
2465
2465
|
:type export_smooth_groups: bool | None
|
|
2466
|
-
:param smooth_group_bitflags:
|
|
2466
|
+
:param smooth_group_bitflags: Bitflags Smooth Groups, If exporting smoothgroups, generate 'bitflags' values for the groups, instead of unique integer values. The same bitflag value can be re-used for different groups of smooth faces, as long as they have no common sharp edges or vertices
|
|
2467
2467
|
:type smooth_group_bitflags: bool | None
|
|
2468
2468
|
:param filter_glob: Extension Filter
|
|
2469
2469
|
:type filter_glob: str
|
bpy/types/__init__.pyi
CHANGED
|
@@ -8783,6 +8783,8 @@ Shared Enum Types <bpy_types_enum_items/index>
|
|
|
8783
8783
|
* CompositorNodeIDMask.output_template
|
|
8784
8784
|
* CompositorNodeImage.input_template
|
|
8785
8785
|
* CompositorNodeImage.output_template
|
|
8786
|
+
* CompositorNodeImageInfo.input_template
|
|
8787
|
+
* CompositorNodeImageInfo.output_template
|
|
8786
8788
|
* CompositorNodeInpaint.input_template
|
|
8787
8789
|
* CompositorNodeInpaint.output_template
|
|
8788
8790
|
* CompositorNodeInvert.input_template
|
|
@@ -20885,6 +20887,104 @@ The USDHookExample
|
|
|
20885
20887
|
:columns: 2
|
|
20886
20888
|
|
|
20887
20889
|
|
|
20890
|
+
--------------------
|
|
20891
|
+
|
|
20892
|
+
* bpy_struct.id_data
|
|
20893
|
+
* Node.type
|
|
20894
|
+
* Node.location
|
|
20895
|
+
* Node.location_absolute
|
|
20896
|
+
* Node.width
|
|
20897
|
+
* Node.height
|
|
20898
|
+
* Node.dimensions
|
|
20899
|
+
* Node.name
|
|
20900
|
+
* Node.label
|
|
20901
|
+
* Node.inputs
|
|
20902
|
+
* Node.outputs
|
|
20903
|
+
* Node.internal_links
|
|
20904
|
+
* Node.parent
|
|
20905
|
+
* Node.warning_propagation
|
|
20906
|
+
* Node.use_custom_color
|
|
20907
|
+
* Node.color
|
|
20908
|
+
* Node.color_tag
|
|
20909
|
+
* Node.select
|
|
20910
|
+
* Node.show_options
|
|
20911
|
+
* Node.show_preview
|
|
20912
|
+
* Node.hide
|
|
20913
|
+
* Node.mute
|
|
20914
|
+
* Node.show_texture
|
|
20915
|
+
* Node.bl_idname
|
|
20916
|
+
* Node.bl_label
|
|
20917
|
+
* Node.bl_description
|
|
20918
|
+
* Node.bl_icon
|
|
20919
|
+
* Node.bl_static_type
|
|
20920
|
+
* Node.bl_width_default
|
|
20921
|
+
* Node.bl_width_min
|
|
20922
|
+
* Node.bl_width_max
|
|
20923
|
+
* Node.bl_height_default
|
|
20924
|
+
* Node.bl_height_min
|
|
20925
|
+
* Node.bl_height_max
|
|
20926
|
+
|
|
20927
|
+
:columns: 2
|
|
20928
|
+
|
|
20929
|
+
|
|
20930
|
+
--------------------
|
|
20931
|
+
|
|
20932
|
+
* bpy_struct.as_pointer
|
|
20933
|
+
* bpy_struct.driver_add
|
|
20934
|
+
* bpy_struct.driver_remove
|
|
20935
|
+
* bpy_struct.get
|
|
20936
|
+
* bpy_struct.id_properties_clear
|
|
20937
|
+
* bpy_struct.id_properties_ensure
|
|
20938
|
+
* bpy_struct.id_properties_ui
|
|
20939
|
+
* bpy_struct.is_property_hidden
|
|
20940
|
+
* bpy_struct.is_property_overridable_library
|
|
20941
|
+
* bpy_struct.is_property_readonly
|
|
20942
|
+
* bpy_struct.is_property_set
|
|
20943
|
+
* bpy_struct.items
|
|
20944
|
+
* bpy_struct.keyframe_delete
|
|
20945
|
+
* bpy_struct.keyframe_insert
|
|
20946
|
+
* bpy_struct.keys
|
|
20947
|
+
* bpy_struct.path_from_id
|
|
20948
|
+
* bpy_struct.path_resolve
|
|
20949
|
+
* bpy_struct.pop
|
|
20950
|
+
* bpy_struct.property_overridable_library_set
|
|
20951
|
+
* bpy_struct.property_unset
|
|
20952
|
+
* bpy_struct.rna_ancestors
|
|
20953
|
+
* bpy_struct.type_recast
|
|
20954
|
+
* bpy_struct.values
|
|
20955
|
+
* Node.socket_value_update
|
|
20956
|
+
* Node.is_registered_node_type
|
|
20957
|
+
* Node.poll
|
|
20958
|
+
* Node.poll_instance
|
|
20959
|
+
* Node.update
|
|
20960
|
+
* Node.insert_link
|
|
20961
|
+
* Node.init
|
|
20962
|
+
* Node.copy
|
|
20963
|
+
* Node.free
|
|
20964
|
+
* Node.draw_buttons
|
|
20965
|
+
* Node.draw_buttons_ext
|
|
20966
|
+
* Node.draw_label
|
|
20967
|
+
* Node.debug_zone_body_lazy_function_graph
|
|
20968
|
+
* Node.debug_zone_lazy_function_graph
|
|
20969
|
+
* Node.poll
|
|
20970
|
+
* Node.bl_rna_get_subclass
|
|
20971
|
+
* Node.bl_rna_get_subclass_py
|
|
20972
|
+
* NodeInternal.poll
|
|
20973
|
+
* NodeInternal.poll_instance
|
|
20974
|
+
* NodeInternal.update
|
|
20975
|
+
* NodeInternal.draw_buttons
|
|
20976
|
+
* NodeInternal.draw_buttons_ext
|
|
20977
|
+
* NodeInternal.bl_rna_get_subclass
|
|
20978
|
+
* NodeInternal.bl_rna_get_subclass_py
|
|
20979
|
+
* CompositorNode.tag_need_exec
|
|
20980
|
+
* CompositorNode.poll
|
|
20981
|
+
* CompositorNode.update
|
|
20982
|
+
* CompositorNode.bl_rna_get_subclass
|
|
20983
|
+
* CompositorNode.bl_rna_get_subclass_py
|
|
20984
|
+
|
|
20985
|
+
:columns: 2
|
|
20986
|
+
|
|
20987
|
+
|
|
20888
20988
|
--------------------
|
|
20889
20989
|
|
|
20890
20990
|
* bpy_struct.id_data
|
|
@@ -130287,6 +130387,60 @@ class CompositorNodeImage(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
130287
130387
|
:rtype: typing.Any
|
|
130288
130388
|
"""
|
|
130289
130389
|
|
|
130390
|
+
class CompositorNodeImageInfo(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
130391
|
+
"""Returns information about an image"""
|
|
130392
|
+
|
|
130393
|
+
@classmethod
|
|
130394
|
+
def is_registered_node_type(cls) -> bool:
|
|
130395
|
+
"""True if a registered node type
|
|
130396
|
+
|
|
130397
|
+
:return: Result
|
|
130398
|
+
:rtype: bool
|
|
130399
|
+
"""
|
|
130400
|
+
|
|
130401
|
+
@classmethod
|
|
130402
|
+
def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
130403
|
+
"""Input socket template
|
|
130404
|
+
|
|
130405
|
+
:param index: Index
|
|
130406
|
+
:type index: int | None
|
|
130407
|
+
:return: result
|
|
130408
|
+
:rtype: NodeInternalSocketTemplate
|
|
130409
|
+
"""
|
|
130410
|
+
|
|
130411
|
+
@classmethod
|
|
130412
|
+
def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
130413
|
+
"""Output socket template
|
|
130414
|
+
|
|
130415
|
+
:param index: Index
|
|
130416
|
+
:type index: int | None
|
|
130417
|
+
:return: result
|
|
130418
|
+
:rtype: NodeInternalSocketTemplate
|
|
130419
|
+
"""
|
|
130420
|
+
|
|
130421
|
+
def update(self): ...
|
|
130422
|
+
@classmethod
|
|
130423
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
130424
|
+
"""
|
|
130425
|
+
|
|
130426
|
+
:param id: The RNA type identifier.
|
|
130427
|
+
:type id: str | None
|
|
130428
|
+
:param default:
|
|
130429
|
+
:return: The RNA type or default when not found.
|
|
130430
|
+
:rtype: Struct
|
|
130431
|
+
"""
|
|
130432
|
+
|
|
130433
|
+
@classmethod
|
|
130434
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
130435
|
+
"""
|
|
130436
|
+
|
|
130437
|
+
:param id: The RNA type identifier.
|
|
130438
|
+
:type id: str | None
|
|
130439
|
+
:param default:
|
|
130440
|
+
:return: The class or default when not found.
|
|
130441
|
+
:rtype: typing.Any
|
|
130442
|
+
"""
|
|
130443
|
+
|
|
130290
130444
|
class CompositorNodeInpaint(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
130291
130445
|
"""Extend borders of an image into transparent or masked regions"""
|
|
130292
130446
|
|
|
@@ -141216,6 +141370,18 @@ class FileAssetSelectParams(FileSelectParams, bpy_struct):
|
|
|
141216
141370
|
:type: typing.Literal['FOLLOW_PREFS','LINK','APPEND','APPEND_REUSE']
|
|
141217
141371
|
"""
|
|
141218
141372
|
|
|
141373
|
+
instance_collections_on_append: bool
|
|
141374
|
+
""" Create instances for collections when appending, rather than adding them directly to the scene
|
|
141375
|
+
|
|
141376
|
+
:type: bool
|
|
141377
|
+
"""
|
|
141378
|
+
|
|
141379
|
+
instance_collections_on_link: bool
|
|
141380
|
+
""" Create instances for collections when linking, rather than adding them directly to the scene
|
|
141381
|
+
|
|
141382
|
+
:type: bool
|
|
141383
|
+
"""
|
|
141384
|
+
|
|
141219
141385
|
@classmethod
|
|
141220
141386
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
141221
141387
|
"""
|
|
@@ -161668,6 +161834,33 @@ class GreasePencilDrawing(bpy_struct):
|
|
|
161668
161834
|
def tag_positions_changed(self):
|
|
161669
161835
|
"""Indicate that the positions of points in the drawing have changed"""
|
|
161670
161836
|
|
|
161837
|
+
def vertex_group_assign(
|
|
161838
|
+
self,
|
|
161839
|
+
vgroup_name: str,
|
|
161840
|
+
indices_ptr: collections.abc.Iterable[int] | None,
|
|
161841
|
+
weight: float | None,
|
|
161842
|
+
):
|
|
161843
|
+
"""Assign points to vertex group
|
|
161844
|
+
|
|
161845
|
+
:param vgroup_name: Vertex Group Name, Name of the vertex group
|
|
161846
|
+
:type vgroup_name: str
|
|
161847
|
+
:param indices_ptr: Indices, The point indices to assign the weight to
|
|
161848
|
+
:type indices_ptr: collections.abc.Iterable[int] | None
|
|
161849
|
+
:param weight: Vertex weight
|
|
161850
|
+
:type weight: float | None
|
|
161851
|
+
"""
|
|
161852
|
+
|
|
161853
|
+
def vertex_group_remove(
|
|
161854
|
+
self, vgroup_name: str, indices_ptr: collections.abc.Iterable[int] | None
|
|
161855
|
+
):
|
|
161856
|
+
"""Remove points from vertex group
|
|
161857
|
+
|
|
161858
|
+
:param vgroup_name: Vertex Group Name, Name of the vertex group
|
|
161859
|
+
:type vgroup_name: str
|
|
161860
|
+
:param indices_ptr: Indices, The point indices to remove from the vertex group
|
|
161861
|
+
:type indices_ptr: collections.abc.Iterable[int] | None
|
|
161862
|
+
"""
|
|
161863
|
+
|
|
161671
161864
|
@classmethod
|
|
161672
161865
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
161673
161866
|
"""
|
|
@@ -162185,12 +162378,6 @@ class GreasePencilLayer(GreasePencilTreeNode, bpy_struct):
|
|
|
162185
162378
|
:type: typing.Literal['REGULAR','HARDLIGHT','ADD','SUBTRACT','MULTIPLY','DIVIDE']
|
|
162186
162379
|
"""
|
|
162187
162380
|
|
|
162188
|
-
channel_color: mathutils.Color
|
|
162189
|
-
"""
|
|
162190
|
-
|
|
162191
|
-
:type: mathutils.Color
|
|
162192
|
-
"""
|
|
162193
|
-
|
|
162194
162381
|
frames: GreasePencilFrames
|
|
162195
162382
|
""" Grease Pencil frames
|
|
162196
162383
|
|
|
@@ -162346,12 +162533,6 @@ class GreasePencilLayer(GreasePencilTreeNode, bpy_struct):
|
|
|
162346
162533
|
class GreasePencilLayerGroup(GreasePencilTreeNode, bpy_struct):
|
|
162347
162534
|
"""Group of Grease Pencil layers"""
|
|
162348
162535
|
|
|
162349
|
-
channel_color: mathutils.Color
|
|
162350
|
-
"""
|
|
162351
|
-
|
|
162352
|
-
:type: mathutils.Color
|
|
162353
|
-
"""
|
|
162354
|
-
|
|
162355
162536
|
color_tag: typing.Literal[
|
|
162356
162537
|
"NONE",
|
|
162357
162538
|
"COLOR1",
|
|
@@ -187873,7 +188054,7 @@ Warning: Only takes into account object parenting, so e.g. in case of bone paren
|
|
|
187873
188054
|
"""
|
|
187874
188055
|
|
|
187875
188056
|
rotation_mode: bpy._typing.rna_enums.ObjectRotationModeItems
|
|
187876
|
-
"""
|
|
188057
|
+
""" The kind of rotation to apply, values from other rotation modes aren't used
|
|
187877
188058
|
|
|
187878
188059
|
:type: bpy._typing.rna_enums.ObjectRotationModeItems
|
|
187879
188060
|
"""
|
|
@@ -188064,6 +188245,12 @@ Warning: Only takes into account object parenting, so e.g. in case of bone paren
|
|
|
188064
188245
|
:type: bool
|
|
188065
188246
|
"""
|
|
188066
188247
|
|
|
188248
|
+
use_parent_final_indices: bool
|
|
188249
|
+
""" Use the final evaluated indices rather than the original mesh indices
|
|
188250
|
+
|
|
188251
|
+
:type: bool
|
|
188252
|
+
"""
|
|
188253
|
+
|
|
188067
188254
|
use_shape_key_edit_mode: bool
|
|
188068
188255
|
""" Display shape keys in edit mode (for meshes only)
|
|
188069
188256
|
|
|
@@ -193617,7 +193804,7 @@ class PoseBone(bpy_struct):
|
|
|
193617
193804
|
"""
|
|
193618
193805
|
|
|
193619
193806
|
rotation_mode: bpy._typing.rna_enums.ObjectRotationModeItems
|
|
193620
|
-
"""
|
|
193807
|
+
""" The kind of rotation to apply, values from other rotation modes aren't used
|
|
193621
193808
|
|
|
193622
193809
|
:type: bpy._typing.rna_enums.ObjectRotationModeItems
|
|
193623
193810
|
"""
|
|
@@ -194417,12 +194604,6 @@ class PreferencesExperimental(bpy_struct):
|
|
|
194417
194604
|
:type: bool
|
|
194418
194605
|
"""
|
|
194419
194606
|
|
|
194420
|
-
use_new_file_import_nodes: bool
|
|
194421
|
-
""" Enables visibility of the new File Import nodes in the UI
|
|
194422
|
-
|
|
194423
|
-
:type: bool
|
|
194424
|
-
"""
|
|
194425
|
-
|
|
194426
194607
|
use_new_pointcloud_type: bool
|
|
194427
194608
|
""" Enable the new point cloud type in the ui
|
|
194428
194609
|
|
|
@@ -195568,7 +195749,7 @@ class PreferencesView(bpy_struct):
|
|
|
195568
195749
|
"""
|
|
195569
195750
|
|
|
195570
195751
|
show_developer_ui: bool
|
|
195571
|
-
"""
|
|
195752
|
+
""" Display advanced settings and tools for developers
|
|
195572
195753
|
|
|
195573
195754
|
:type: bool
|
|
195574
195755
|
"""
|
|
@@ -212970,7 +213151,7 @@ class SpaceSequenceEditor(Space, bpy_struct):
|
|
|
212970
213151
|
"""
|
|
212971
213152
|
|
|
212972
213153
|
view_type: bpy._typing.rna_enums.SpaceSequencerViewTypeItems
|
|
212973
|
-
""" Type of the Sequencer view (
|
|
213154
|
+
""" Type of the Sequencer view (sequencer, preview or both)
|
|
212974
213155
|
|
|
212975
213156
|
:type: bpy._typing.rna_enums.SpaceSequencerViewTypeItems
|
|
212976
213157
|
"""
|
|
@@ -216205,6 +216386,18 @@ class SubsurfModifier(Modifier, bpy_struct):
|
|
|
216205
216386
|
:type: int
|
|
216206
216387
|
"""
|
|
216207
216388
|
|
|
216389
|
+
open_adaptive_subdivision_panel: bool
|
|
216390
|
+
"""
|
|
216391
|
+
|
|
216392
|
+
:type: bool
|
|
216393
|
+
"""
|
|
216394
|
+
|
|
216395
|
+
open_advanced_panel: bool
|
|
216396
|
+
"""
|
|
216397
|
+
|
|
216398
|
+
:type: bool
|
|
216399
|
+
"""
|
|
216400
|
+
|
|
216208
216401
|
quality: int
|
|
216209
216402
|
""" Accuracy of vertex positions, lower value is faster but less precise
|
|
216210
216403
|
|
|
@@ -229797,7 +229990,7 @@ class View3DCursor(bpy_struct):
|
|
|
229797
229990
|
"""
|
|
229798
229991
|
|
|
229799
229992
|
rotation_mode: bpy._typing.rna_enums.ObjectRotationModeItems
|
|
229800
|
-
"""
|
|
229993
|
+
""" The kind of rotation to apply, values from other rotation modes aren't used
|
|
229801
229994
|
|
|
229802
229995
|
:type: bpy._typing.rna_enums.ObjectRotationModeItems
|
|
229803
229996
|
"""
|
|
@@ -232567,10 +232760,10 @@ class WindowManager(ID, bpy_struct):
|
|
|
232567
232760
|
:type: typing.Any | None
|
|
232568
232761
|
"""
|
|
232569
232762
|
|
|
232570
|
-
extension_type: typing.Literal["ADDON", "THEME"]
|
|
232763
|
+
extension_type: typing.Literal["ALL", "ADDON", "THEME"]
|
|
232571
232764
|
""" Show extensions by type
|
|
232572
232765
|
|
|
232573
|
-
:type: typing.Literal['ADDON','THEME']
|
|
232766
|
+
:type: typing.Literal['ALL','ADDON','THEME']
|
|
232574
232767
|
"""
|
|
232575
232768
|
|
|
232576
232769
|
extensions_blocked: int
|
|
@@ -234807,6 +235000,8 @@ ASSETBROWSER_PT_display: bl_ui.space_filebrowser.ASSETBROWSER_PT_display
|
|
|
234807
235000
|
|
|
234808
235001
|
ASSETBROWSER_PT_filter: bl_ui.space_filebrowser.ASSETBROWSER_PT_filter
|
|
234809
235002
|
|
|
235003
|
+
ASSETBROWSER_PT_import_settings: bl_ui.space_filebrowser.ASSETBROWSER_PT_import_settings
|
|
235004
|
+
|
|
234810
235005
|
ASSETBROWSER_PT_metadata: bl_ui.space_filebrowser.ASSETBROWSER_PT_metadata
|
|
234811
235006
|
|
|
234812
235007
|
ASSETBROWSER_PT_metadata_preview: bl_ui.space_filebrowser.ASSETBROWSER_PT_metadata_preview
|
|
@@ -156,7 +156,7 @@ bl_ui/properties_world/__init__.pyi,sha256=Vxokje3WF9a5_WJyt-2T4jzG-sZmYEWxA8VCu
|
|
|
156
156
|
bl_ui/space_clip/__init__.pyi,sha256=m-hA2BCfHkiX3mLo0EHswP6WJ0C-nGtWpYki4OklnXA,46286
|
|
157
157
|
bl_ui/space_console/__init__.pyi,sha256=X_JBBHl7cwwDVYQlTAE4H5T6HkqSzQVNYGtnyBtv-WA,3300
|
|
158
158
|
bl_ui/space_dopesheet/__init__.pyi,sha256=p5RHcM6ISy5-iEKeNEZ1cf0EMEbVBpK6MhcZHkHvuX8,18097
|
|
159
|
-
bl_ui/space_filebrowser/__init__.pyi,sha256=
|
|
159
|
+
bl_ui/space_filebrowser/__init__.pyi,sha256=ErbWCbLKrVSMnf8J2Ae-_H-0vAao-5Wz3J3FYVptAb8,20223
|
|
160
160
|
bl_ui/space_graph/__init__.pyi,sha256=1oqUbvSNboHycXYH0DBPz4Lib6JsgkCTXfDcamabzFM,11014
|
|
161
161
|
bl_ui/space_image/__init__.pyi,sha256=13zst-dxO43epREh_rOTL3I5FDKxB9IrgaBteFnE2NE,45235
|
|
162
162
|
bl_ui/space_info/__init__.pyi,sha256=ukwr4M_jVQH2U1wo4jTie5RK8kf3wfEBHnTIV8dvKxM,3312
|
|
@@ -192,7 +192,7 @@ bmesh/utils/__init__.pyi,sha256=B2MEUdWjhoPVN_86ZJnKBouszuYlmox83fs_eMy_XSQ,6262
|
|
|
192
192
|
bpy/__init__.pyi,sha256=xqYSQA60ItjGIlcKmU1c67ClE1dzY3IA0l7SeDDfFFg,491
|
|
193
193
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
194
|
bpy/_typing/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
195
|
-
bpy/_typing/rna_enums/__init__.pyi,sha256=
|
|
195
|
+
bpy/_typing/rna_enums/__init__.pyi,sha256=r6ryb8otr4YgMDWmKcO9qmgy0_wU_oqfJY5hRafOi94,138971
|
|
196
196
|
bpy/app/__init__.pyi,sha256=rDLfx3HzxNGIixHun4sUA-1fuNUq6bxyQswbTvYeJ9M,8766
|
|
197
197
|
bpy/app/handlers/__init__.pyi,sha256=A9IS2EmBskYtGy2aMCX5vxAmTKB3YCuz1hUPZvah8S4,6938
|
|
198
198
|
bpy/app/icons/__init__.pyi,sha256=IxxJA0uPQaBAogv-iZ2jEG-5f6i3X9M-gRjw8jJnL8A,955
|
|
@@ -242,7 +242,7 @@ bpy/ops/material/__init__.pyi,sha256=4Xm8cTXZ8L1NkYiLaYrwWA0p_paciXXBCk9MNnxsgJg
|
|
|
242
242
|
bpy/ops/mball/__init__.pyi,sha256=vKET4S-NZrDAf4r1XUXjyyW8Ry5bdna9EeQlV3HMo5Y,4182
|
|
243
243
|
bpy/ops/mesh/__init__.pyi,sha256=JxF40_1aTup030iKyTdKOMajm67wsEOKcmKc4XcQCdQ,132623
|
|
244
244
|
bpy/ops/nla/__init__.pyi,sha256=6C8Gm7ZOBATflqUymRCXljSEKN_oE1MvqVMpR05eVIM,18172
|
|
245
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
245
|
+
bpy/ops/node/__init__.pyi,sha256=k_GkYykebQX0QmwziHznIknKEorwuZgwo8c8b9Nl1U4,54953
|
|
246
246
|
bpy/ops/object/__init__.pyi,sha256=Zt3MscJ8NCH9UeZkZOu69GWI2C0y_iYNfGNYOhfWTBw,168316
|
|
247
247
|
bpy/ops/outliner/__init__.pyi,sha256=MnOyASVckw3cVMUICszbNrPEfchfFB1Ny2drSnrScvI,27770
|
|
248
248
|
bpy/ops/paint/__init__.pyi,sha256=U-uMYTkGLmcnkI9RsWRnsbqDLJuLaWPk-5ue5rnoQwg,37692
|
|
@@ -274,12 +274,12 @@ bpy/ops/uilist/__init__.pyi,sha256=CvereEDgN2sNfwlFl55E3sGeLTcaUcTCowuL1XVlclE,1
|
|
|
274
274
|
bpy/ops/uv/__init__.pyi,sha256=nVZbRNLymiV8kXoRxWWNRSq72QkPBHTtwifjBxyVINY,45463
|
|
275
275
|
bpy/ops/view2d/__init__.pyi,sha256=-ofLmKQJ0PqTP5b_mT2JHGo-Jf7aa3qeEf1nsmJQf50,7013
|
|
276
276
|
bpy/ops/view3d/__init__.pyi,sha256=e9lPztt21KmW5WQOvzZBYO5WXLmQE16BHjLA83rwbOI,30716
|
|
277
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
277
|
+
bpy/ops/wm/__init__.pyi,sha256=26kfx7ZbStGqXaXB2Vj-2lkv7rvp-xfl_jS60y-Doek,216197
|
|
278
278
|
bpy/ops/workspace/__init__.pyi,sha256=hXSSQZl7IwVFrxMveYrlSKGWY7BjrsV-cKagPzhuT0w,2010
|
|
279
279
|
bpy/ops/world/__init__.pyi,sha256=9OhY87-WRRLor-4GQJhDiDJG3M9W5s9yFo9x45Iiycs,628
|
|
280
280
|
bpy/path/__init__.pyi,sha256=7-_wXRbyGJSoalxgAiuGAPvcM988qoM5DdQ2A8p1kpk,5507
|
|
281
281
|
bpy/props/__init__.pyi,sha256=QR_11bCyEyK-Q85yZhNDW6BsqHVq73C9IL_qShksqQU,35264
|
|
282
|
-
bpy/types/__init__.pyi,sha256=
|
|
282
|
+
bpy/types/__init__.pyi,sha256=KpBtxowHMH2VsUG7zKP27czh6TTmrU7Fq32JKCnp_98,5490850
|
|
283
283
|
bpy/utils/__init__.pyi,sha256=sTpVkInNYv883pb3TyZzGLQbn468mQHzz_sUG9UMp6M,14936
|
|
284
284
|
bpy/utils/previews/__init__.pyi,sha256=RF4ii5Rs-FetM_ZmC0GCpMSiin5evppVj62-CmKK76s,2307
|
|
285
285
|
bpy/utils/units/__init__.pyi,sha256=dc9ZViPAqOap5ZsFfWoI0d6bHdri3pWWiVeRxAaZr-U,2672
|
|
@@ -314,7 +314,7 @@ freestyle/functions/__init__.pyi,sha256=RGdlJWbBctqKBR3p81MsXBk9OWdTuvEoOfBXvxjf
|
|
|
314
314
|
freestyle/predicates/__init__.pyi,sha256=Liq_1krkT25RfeNPeEgvKWkLnWtHCuO9-7vXX3lE71E,13488
|
|
315
315
|
freestyle/shaders/__init__.pyi,sha256=imuo4jXkwaN4dazDARvErEGdn9XuMGlWIKGpnqd3Po0,24041
|
|
316
316
|
freestyle/types/__init__.pyi,sha256=zCVqLakrYPiSTlYVHLg-455C9aPCEo-eeO-0A1fYFYs,100227
|
|
317
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
317
|
+
freestyle/utils/__init__.pyi,sha256=k2JFp4C3DUpnkVgR1B32ZDux08pAcsceSuWBnIEHD9A,5135
|
|
318
318
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=YvDLJXMxKbbqBS0so4MnfuSN1g4wNAFOXbpW7_g4AR0,3472
|
|
319
319
|
gpu/__init__.pyi,sha256=80Udrv8AAvblVeWgcU709t4PmsX3ShvU2TaWj7qv0uk,8026
|
|
320
320
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -328,7 +328,7 @@ gpu/texture/__init__.pyi,sha256=eXL-ZQU-gsMFo_Yv6ShF_YjBQ-yPDLRZno-T3P59nhE,668
|
|
|
328
328
|
gpu/types/__init__.pyi,sha256=wv4qnmZ16QT1VUYeF2EMYiRPI_xIa2yCqrzrA_Ukac4,27950
|
|
329
329
|
gpu_extras/__init__.pyi,sha256=XscwC-5DTPC0yc2HB_XMgvX61rT5Qs5RaImqNwR6c40,240
|
|
330
330
|
gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
331
|
-
gpu_extras/batch/__init__.pyi,sha256=
|
|
331
|
+
gpu_extras/batch/__init__.pyi,sha256=0z8rIEm4SFuC-rUGyoOMU0L6i_TsaW5nJN9cGR6u40Y,1306
|
|
332
332
|
gpu_extras/presets/__init__.pyi,sha256=9MrG1r0CUOxBYWyp_vZSYxs47oElIxca1uMyuFPLKdw,1674
|
|
333
333
|
graphviz_export/__init__.pyi,sha256=_breciGLRC6qTh-HOor-Ufn_fI5HXnoQego6mmvTAIQ,242
|
|
334
334
|
graphviz_export/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=o3yE2C_BSi2O_ZJM_Jao06i6seWMRNQcZaI6keKjpFE,1308
|
|
|
361
361
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
362
|
rna_xml/__init__.pyi,sha256=EBP-inpL9KRsjGftcoza9_G_Do5UjXw62eAvuEMoaO0,604
|
|
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-20250323.dist-info/METADATA,sha256=-sxhTZBajkK_rYvgGGBtsTDR_-IjnSs3PyadZMIqUbo,7429
|
|
365
|
+
fake_bpy_module-20250323.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
|
366
|
+
fake_bpy_module-20250323.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
367
|
+
fake_bpy_module-20250323.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -125,7 +125,7 @@ def material_from_fedge(fe):
|
|
|
125
125
|
"""get the diffuse RGBA color from an FEdge"""
|
|
126
126
|
|
|
127
127
|
def normal_at_I0D(it): ...
|
|
128
|
-
def pairwise(iterable, types={
|
|
128
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
|
|
129
129
|
"""Yields a tuple containing the previous and current object"""
|
|
130
130
|
|
|
131
131
|
def rgb_to_bw(r, g, b):
|
gpu_extras/batch/__init__.pyi
CHANGED
|
@@ -2,7 +2,6 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
-
import bgl
|
|
6
5
|
import gpu.types
|
|
7
6
|
|
|
8
7
|
def batch_for_shader(
|
|
@@ -10,7 +9,7 @@ def batch_for_shader(
|
|
|
10
9
|
type: str,
|
|
11
10
|
content: dict[
|
|
12
11
|
str,
|
|
13
|
-
|
|
12
|
+
gpu.types.Buffer
|
|
14
13
|
| collections.abc.Sequence[float]
|
|
15
14
|
| collections.abc.Sequence[int]
|
|
16
15
|
| collections.abc.Sequence[collections.abc.Sequence[float]]
|
|
@@ -27,7 +26,7 @@ def batch_for_shader(
|
|
|
27
26
|
:type type: str
|
|
28
27
|
:param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
|
|
29
28
|
For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
|
|
30
|
-
:type content: dict[str,
|
|
29
|
+
:type content: dict[str, gpu.types.Buffer | collections.abc.Sequence[float] | collections.abc.Sequence[int] | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[collections.abc.Sequence[int]]]
|
|
31
30
|
:return: compatible batch
|
|
32
31
|
:rtype: gpu.types.GPUBatch
|
|
33
32
|
"""
|
|
File without changes
|