fake-bpy-module 20240531__py3-none-any.whl → 20240601__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/generic_ui_list/__init__.pyi +2 -2
- bmesh/types/__init__.pyi +6 -8
- bpy/ops/extensions/__init__.pyi +7 -1
- bpy/ops/node/__init__.pyi +46 -0
- bpy/ops/object/__init__.pyi +0 -3
- bpy/ops/preferences/__init__.pyi +3 -0
- bpy/ops/wm/__init__.pyi +27 -0
- bpy/types/__init__.pyi +587 -39
- bpy_extras/anim_utils/__init__.pyi +4 -4
- bpy_extras/io_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240531.dist-info → fake_bpy_module-20240601.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240531.dist-info → fake_bpy_module-20240601.dist-info}/RECORD +14 -14
- {fake_bpy_module-20240531.dist-info → fake_bpy_module-20240601.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240531.dist-info → fake_bpy_module-20240601.dist-info}/top_level.txt +0 -0
|
@@ -724,7 +724,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, bpy_types.Operator):
|
|
|
724
724
|
|
|
725
725
|
def draw_ui_list(
|
|
726
726
|
layout: bpy.types.UILayout,
|
|
727
|
-
context:
|
|
727
|
+
context: bpy_types.Context,
|
|
728
728
|
class_name: str = "UI_UL_list",
|
|
729
729
|
unique_id: str = None,
|
|
730
730
|
list_path: str = None,
|
|
@@ -739,7 +739,7 @@ def draw_ui_list(
|
|
|
739
739
|
:param layout: UILayout to draw the list in.
|
|
740
740
|
:type layout: bpy.types.UILayout
|
|
741
741
|
:param context: Blender context to get the list data from.
|
|
742
|
-
:type context:
|
|
742
|
+
:type context: bpy_types.Context
|
|
743
743
|
:param class_name: Name of the UIList class to draw. The default is the UIList class that ships with Blender.
|
|
744
744
|
:type class_name: str
|
|
745
745
|
:param unique_id: Unique identifier to differentiate this from other UI lists.
|
bmesh/types/__init__.pyi
CHANGED
|
@@ -282,11 +282,11 @@ class BMEdgeSeq:
|
|
|
282
282
|
"""Ensure internal data needed for int subscription is initialized with verts/edges/faces, eg bm.verts[index].This needs to be called again after adding/removing data in this sequence."""
|
|
283
283
|
...
|
|
284
284
|
|
|
285
|
-
def get(self, verts:
|
|
285
|
+
def get(self, verts: list[BMVert], fallback=None) -> BMEdge:
|
|
286
286
|
"""Return an edge which uses the verts passed.
|
|
287
287
|
|
|
288
288
|
:param verts: Sequence of verts.
|
|
289
|
-
:type verts:
|
|
289
|
+
:type verts: list[BMVert]
|
|
290
290
|
:param fallback: Return this value if nothing is found.
|
|
291
291
|
:return: The edge found or None
|
|
292
292
|
:rtype: BMEdge
|
|
@@ -671,11 +671,11 @@ class BMFaceSeq:
|
|
|
671
671
|
"""Ensure internal data needed for int subscription is initialized with verts/edges/faces, eg bm.verts[index].This needs to be called again after adding/removing data in this sequence."""
|
|
672
672
|
...
|
|
673
673
|
|
|
674
|
-
def get(self, verts:
|
|
674
|
+
def get(self, verts: list[BMVert], fallback=None) -> BMFace:
|
|
675
675
|
"""Return a face which uses the verts passed.
|
|
676
676
|
|
|
677
677
|
:param verts: Sequence of verts.
|
|
678
|
-
:type verts:
|
|
678
|
+
:type verts: list[BMVert]
|
|
679
679
|
:param fallback: Return this value if nothing is found.
|
|
680
680
|
:return: The face found or None
|
|
681
681
|
:rtype: BMFace
|
|
@@ -686,13 +686,11 @@ class BMFaceSeq:
|
|
|
686
686
|
"""Initialize the index values of this sequence.This is the equivalent of looping over all elements and assigning the index values."""
|
|
687
687
|
...
|
|
688
688
|
|
|
689
|
-
def new(
|
|
690
|
-
self, verts: collections.abc.Iterable[BMVert], example: BMFace | None = None
|
|
691
|
-
) -> BMFace:
|
|
689
|
+
def new(self, verts: list[BMVert], example: BMFace | None = None) -> BMFace:
|
|
692
690
|
"""Create a new face from a given set of verts.
|
|
693
691
|
|
|
694
692
|
:param verts: Sequence of 3 or more verts.
|
|
695
|
-
:type verts:
|
|
693
|
+
:type verts: list[BMVert]
|
|
696
694
|
:param example: Existing face to initialize settings (optional argument).
|
|
697
695
|
:type example: BMFace | None
|
|
698
696
|
:return: The newly created face.
|
bpy/ops/extensions/__init__.pyi
CHANGED
|
@@ -82,13 +82,15 @@ def package_install_files(
|
|
|
82
82
|
execution_context: str | int | None = None,
|
|
83
83
|
undo: bool | None = None,
|
|
84
84
|
*,
|
|
85
|
-
filter_glob: str | typing.Any = "*.zip",
|
|
85
|
+
filter_glob: str | typing.Any = "*.zip;*.py",
|
|
86
86
|
directory: str | typing.Any = "",
|
|
87
87
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
88
88
|
| None = None,
|
|
89
89
|
filepath: str | typing.Any = "",
|
|
90
90
|
repo: str | None = "",
|
|
91
91
|
enable_on_install: bool | typing.Any | None = True,
|
|
92
|
+
target: str | None = "",
|
|
93
|
+
overwrite: bool | typing.Any | None = True,
|
|
92
94
|
url: str | typing.Any = "",
|
|
93
95
|
):
|
|
94
96
|
"""Install an extension from a file into a locally managed repository
|
|
@@ -108,6 +110,10 @@ def package_install_files(
|
|
|
108
110
|
:type repo: str | None
|
|
109
111
|
:param enable_on_install: Enable on Install, Enable after installing
|
|
110
112
|
:type enable_on_install: bool | typing.Any | None
|
|
113
|
+
:param target: Legacy Target Path, Path to install legacy add-on packages to
|
|
114
|
+
:type target: str | None
|
|
115
|
+
:param overwrite: Legacy Overwrite, Remove existing add-ons with the same ID
|
|
116
|
+
:type overwrite: bool | typing.Any | None
|
|
111
117
|
:param url: URL
|
|
112
118
|
:type url: str | typing.Any
|
|
113
119
|
"""
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -488,6 +488,52 @@ def bake_node_item_remove(
|
|
|
488
488
|
|
|
489
489
|
...
|
|
490
490
|
|
|
491
|
+
def capture_attribute_item_add(
|
|
492
|
+
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
493
|
+
execution_context: str | int | None = None,
|
|
494
|
+
undo: bool | None = None,
|
|
495
|
+
):
|
|
496
|
+
"""Add capture attribute item
|
|
497
|
+
|
|
498
|
+
:type override_context: dict[str, typing.Any] | bpy.types.Context | None
|
|
499
|
+
:type execution_context: str | int | None
|
|
500
|
+
:type undo: bool | None
|
|
501
|
+
"""
|
|
502
|
+
|
|
503
|
+
...
|
|
504
|
+
|
|
505
|
+
def capture_attribute_item_move(
|
|
506
|
+
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
507
|
+
execution_context: str | int | None = None,
|
|
508
|
+
undo: bool | None = None,
|
|
509
|
+
*,
|
|
510
|
+
direction: str | None = "UP",
|
|
511
|
+
):
|
|
512
|
+
"""Move active capture attribute item
|
|
513
|
+
|
|
514
|
+
:type override_context: dict[str, typing.Any] | bpy.types.Context | None
|
|
515
|
+
:type execution_context: str | int | None
|
|
516
|
+
:type undo: bool | None
|
|
517
|
+
:param direction: Direction, Move direction
|
|
518
|
+
:type direction: str | None
|
|
519
|
+
"""
|
|
520
|
+
|
|
521
|
+
...
|
|
522
|
+
|
|
523
|
+
def capture_attribute_item_remove(
|
|
524
|
+
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
525
|
+
execution_context: str | int | None = None,
|
|
526
|
+
undo: bool | None = None,
|
|
527
|
+
):
|
|
528
|
+
"""Remove active capture attribute item
|
|
529
|
+
|
|
530
|
+
:type override_context: dict[str, typing.Any] | bpy.types.Context | None
|
|
531
|
+
:type execution_context: str | int | None
|
|
532
|
+
:type undo: bool | None
|
|
533
|
+
"""
|
|
534
|
+
|
|
535
|
+
...
|
|
536
|
+
|
|
491
537
|
def clear_viewer_border(
|
|
492
538
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
493
539
|
execution_context: str | int | None = None,
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -2446,7 +2446,6 @@ def lightprobe_cache_bake(
|
|
|
2446
2446
|
execution_context: str | int | None = None,
|
|
2447
2447
|
undo: bool | None = None,
|
|
2448
2448
|
*,
|
|
2449
|
-
delay: typing.Any | None = 0,
|
|
2450
2449
|
subset: str | None = "ALL",
|
|
2451
2450
|
):
|
|
2452
2451
|
"""Bake irradiance volume light cache
|
|
@@ -2454,8 +2453,6 @@ def lightprobe_cache_bake(
|
|
|
2454
2453
|
:type override_context: dict[str, typing.Any] | bpy.types.Context | None
|
|
2455
2454
|
:type execution_context: str | int | None
|
|
2456
2455
|
:type undo: bool | None
|
|
2457
|
-
:param delay: Delay, Delay in millisecond before baking starts
|
|
2458
|
-
:type delay: typing.Any | None
|
|
2459
2456
|
:param subset: Subset, Subset of probes to update
|
|
2460
2457
|
|
|
2461
2458
|
ALL
|
bpy/ops/preferences/__init__.pyi
CHANGED
|
@@ -65,6 +65,7 @@ def addon_install(
|
|
|
65
65
|
undo: bool | None = None,
|
|
66
66
|
*,
|
|
67
67
|
overwrite: bool | typing.Any | None = True,
|
|
68
|
+
enable_on_install: bool | typing.Any | None = False,
|
|
68
69
|
target: str | None = "",
|
|
69
70
|
filepath: str | typing.Any = "",
|
|
70
71
|
filter_folder: bool | typing.Any | None = True,
|
|
@@ -78,6 +79,8 @@ def addon_install(
|
|
|
78
79
|
:type undo: bool | None
|
|
79
80
|
:param overwrite: Overwrite, Remove existing add-ons with the same ID
|
|
80
81
|
:type overwrite: bool | typing.Any | None
|
|
82
|
+
:param enable_on_install: Enable on Install, Enable after installing
|
|
83
|
+
:type enable_on_install: bool | typing.Any | None
|
|
81
84
|
:param target: Target Path
|
|
82
85
|
:type target: str | None
|
|
83
86
|
:param filepath: filepath
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -4977,6 +4977,8 @@ def usd_export(
|
|
|
4977
4977
|
triangulate_meshes: bool | typing.Any | None = False,
|
|
4978
4978
|
quad_method: str | None = "SHORTEST_DIAGONAL",
|
|
4979
4979
|
ngon_method: str | None = "BEAUTY",
|
|
4980
|
+
usdz_downscale_size: str | None = "KEEP",
|
|
4981
|
+
usdz_downscale_custom_size: typing.Any | None = 128,
|
|
4980
4982
|
):
|
|
4981
4983
|
"""Export current scene in a USD archive
|
|
4982
4984
|
|
|
@@ -5170,6 +5172,31 @@ def usd_export(
|
|
|
5170
5172
|
:type quad_method: str | None
|
|
5171
5173
|
:param ngon_method: N-gon Method, Method for splitting the n-gons into triangles
|
|
5172
5174
|
:type ngon_method: str | None
|
|
5175
|
+
:param usdz_downscale_size: USDZ Texture Downsampling, Choose a maximum size for all exported textures
|
|
5176
|
+
|
|
5177
|
+
KEEP
|
|
5178
|
+
Keep -- Keep all current texture sizes.
|
|
5179
|
+
|
|
5180
|
+
256
|
|
5181
|
+
256 -- Resize to a maximum of 256 pixels.
|
|
5182
|
+
|
|
5183
|
+
512
|
|
5184
|
+
512 -- Resize to a maximum of 512 pixels.
|
|
5185
|
+
|
|
5186
|
+
1024
|
|
5187
|
+
1024 -- Resize to a maximum of 1024 pixels.
|
|
5188
|
+
|
|
5189
|
+
2048
|
|
5190
|
+
2048 -- Resize to a maximum of 2048 pixels.
|
|
5191
|
+
|
|
5192
|
+
4096
|
|
5193
|
+
4096 -- Resize to a maximum of 4096 pixels.
|
|
5194
|
+
|
|
5195
|
+
CUSTOM
|
|
5196
|
+
Custom -- Specify a custom size.
|
|
5197
|
+
:type usdz_downscale_size: str | None
|
|
5198
|
+
:param usdz_downscale_custom_size: USDZ Custom Downscale Size, Custom size for downscaling exported textures
|
|
5199
|
+
:type usdz_downscale_custom_size: typing.Any | None
|
|
5173
5200
|
"""
|
|
5174
5201
|
|
|
5175
5202
|
...
|
bpy/types/__init__.pyi
CHANGED
|
@@ -36630,6 +36630,8 @@ Property types used in class declarations are all in bpy.props
|
|
|
36630
36630
|
* GeometryNodeInputTangent.output_template
|
|
36631
36631
|
* GeometryNodeInstanceOnPoints.input_template
|
|
36632
36632
|
* GeometryNodeInstanceOnPoints.output_template
|
|
36633
|
+
* GeometryNodeInstanceTransform.input_template
|
|
36634
|
+
* GeometryNodeInstanceTransform.output_template
|
|
36633
36635
|
* GeometryNodeInstancesToPoints.input_template
|
|
36634
36636
|
* GeometryNodeInstancesToPoints.output_template
|
|
36635
36637
|
* GeometryNodeInterpolateCurves.input_template
|
|
@@ -49516,6 +49518,7 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
|
|
|
49516
49518
|
--------------------
|
|
49517
49519
|
|
|
49518
49520
|
* GeometryNodeBake.active_item
|
|
49521
|
+
* GeometryNodeCaptureAttribute.active_item
|
|
49519
49522
|
* GeometryNodeRepeatOutput.active_item
|
|
49520
49523
|
* GeometryNodeRepeatOutput.repeat_items
|
|
49521
49524
|
* NodeGeometryRepeatOutputItems.new
|
|
@@ -82954,6 +82957,48 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
82954
82957
|
:columns: 2
|
|
82955
82958
|
|
|
82956
82959
|
|
|
82960
|
+
--------------------
|
|
82961
|
+
|
|
82962
|
+
* GeometryNodeCaptureAttribute.capture_items
|
|
82963
|
+
|
|
82964
|
+
:columns: 2
|
|
82965
|
+
|
|
82966
|
+
|
|
82967
|
+
--------------------
|
|
82968
|
+
|
|
82969
|
+
* bpy_struct.id_data
|
|
82970
|
+
|
|
82971
|
+
:columns: 2
|
|
82972
|
+
|
|
82973
|
+
|
|
82974
|
+
--------------------
|
|
82975
|
+
|
|
82976
|
+
* bpy_struct.as_pointer
|
|
82977
|
+
* bpy_struct.driver_add
|
|
82978
|
+
* bpy_struct.driver_remove
|
|
82979
|
+
* bpy_struct.get
|
|
82980
|
+
* bpy_struct.id_properties_clear
|
|
82981
|
+
* bpy_struct.id_properties_ensure
|
|
82982
|
+
* bpy_struct.id_properties_ui
|
|
82983
|
+
* bpy_struct.is_property_hidden
|
|
82984
|
+
* bpy_struct.is_property_overridable_library
|
|
82985
|
+
* bpy_struct.is_property_readonly
|
|
82986
|
+
* bpy_struct.is_property_set
|
|
82987
|
+
* bpy_struct.items
|
|
82988
|
+
* bpy_struct.keyframe_delete
|
|
82989
|
+
* bpy_struct.keyframe_insert
|
|
82990
|
+
* bpy_struct.keys
|
|
82991
|
+
* bpy_struct.path_from_id
|
|
82992
|
+
* bpy_struct.path_resolve
|
|
82993
|
+
* bpy_struct.pop
|
|
82994
|
+
* bpy_struct.property_overridable_library_set
|
|
82995
|
+
* bpy_struct.property_unset
|
|
82996
|
+
* bpy_struct.type_recast
|
|
82997
|
+
* bpy_struct.values
|
|
82998
|
+
|
|
82999
|
+
:columns: 2
|
|
83000
|
+
|
|
83001
|
+
|
|
82957
83002
|
--------------------
|
|
82958
83003
|
|
|
82959
83004
|
* MaskSplinePoint.parent
|
|
@@ -85712,6 +85757,96 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
85712
85757
|
:columns: 2
|
|
85713
85758
|
|
|
85714
85759
|
|
|
85760
|
+
--------------------
|
|
85761
|
+
|
|
85762
|
+
* bpy_struct.as_pointer
|
|
85763
|
+
* bpy_struct.driver_add
|
|
85764
|
+
* bpy_struct.driver_remove
|
|
85765
|
+
* bpy_struct.get
|
|
85766
|
+
* bpy_struct.id_properties_clear
|
|
85767
|
+
* bpy_struct.id_properties_ensure
|
|
85768
|
+
* bpy_struct.id_properties_ui
|
|
85769
|
+
* bpy_struct.is_property_hidden
|
|
85770
|
+
* bpy_struct.is_property_overridable_library
|
|
85771
|
+
* bpy_struct.is_property_readonly
|
|
85772
|
+
* bpy_struct.is_property_set
|
|
85773
|
+
* bpy_struct.items
|
|
85774
|
+
* bpy_struct.keyframe_delete
|
|
85775
|
+
* bpy_struct.keyframe_insert
|
|
85776
|
+
* bpy_struct.keys
|
|
85777
|
+
* bpy_struct.path_from_id
|
|
85778
|
+
* bpy_struct.path_resolve
|
|
85779
|
+
* bpy_struct.pop
|
|
85780
|
+
* bpy_struct.property_overridable_library_set
|
|
85781
|
+
* bpy_struct.property_unset
|
|
85782
|
+
* bpy_struct.type_recast
|
|
85783
|
+
* bpy_struct.values
|
|
85784
|
+
* Node.socket_value_update
|
|
85785
|
+
* Node.is_registered_node_type
|
|
85786
|
+
* Node.poll
|
|
85787
|
+
* Node.poll_instance
|
|
85788
|
+
* Node.update
|
|
85789
|
+
* Node.insert_link
|
|
85790
|
+
* Node.init
|
|
85791
|
+
* Node.copy
|
|
85792
|
+
* Node.free
|
|
85793
|
+
* Node.draw_buttons
|
|
85794
|
+
* Node.draw_buttons_ext
|
|
85795
|
+
* Node.draw_label
|
|
85796
|
+
* Node.poll
|
|
85797
|
+
* Node.bl_rna_get_subclass
|
|
85798
|
+
* Node.bl_rna_get_subclass_py
|
|
85799
|
+
* NodeInternal.poll
|
|
85800
|
+
* NodeInternal.poll_instance
|
|
85801
|
+
* NodeInternal.update
|
|
85802
|
+
* NodeInternal.draw_buttons
|
|
85803
|
+
* NodeInternal.draw_buttons_ext
|
|
85804
|
+
* NodeInternal.bl_rna_get_subclass
|
|
85805
|
+
* NodeInternal.bl_rna_get_subclass_py
|
|
85806
|
+
* GeometryNode.poll
|
|
85807
|
+
* GeometryNode.bl_rna_get_subclass
|
|
85808
|
+
* GeometryNode.bl_rna_get_subclass_py
|
|
85809
|
+
|
|
85810
|
+
:columns: 2
|
|
85811
|
+
|
|
85812
|
+
|
|
85813
|
+
--------------------
|
|
85814
|
+
|
|
85815
|
+
* bpy_struct.id_data
|
|
85816
|
+
* Node.type
|
|
85817
|
+
* Node.location
|
|
85818
|
+
* Node.width
|
|
85819
|
+
* Node.height
|
|
85820
|
+
* Node.dimensions
|
|
85821
|
+
* Node.name
|
|
85822
|
+
* Node.label
|
|
85823
|
+
* Node.inputs
|
|
85824
|
+
* Node.outputs
|
|
85825
|
+
* Node.internal_links
|
|
85826
|
+
* Node.parent
|
|
85827
|
+
* Node.use_custom_color
|
|
85828
|
+
* Node.color
|
|
85829
|
+
* Node.select
|
|
85830
|
+
* Node.show_options
|
|
85831
|
+
* Node.show_preview
|
|
85832
|
+
* Node.hide
|
|
85833
|
+
* Node.mute
|
|
85834
|
+
* Node.show_texture
|
|
85835
|
+
* Node.bl_idname
|
|
85836
|
+
* Node.bl_label
|
|
85837
|
+
* Node.bl_description
|
|
85838
|
+
* Node.bl_icon
|
|
85839
|
+
* Node.bl_static_type
|
|
85840
|
+
* Node.bl_width_default
|
|
85841
|
+
* Node.bl_width_min
|
|
85842
|
+
* Node.bl_width_max
|
|
85843
|
+
* Node.bl_height_default
|
|
85844
|
+
* Node.bl_height_min
|
|
85845
|
+
* Node.bl_height_max
|
|
85846
|
+
|
|
85847
|
+
:columns: 2
|
|
85848
|
+
|
|
85849
|
+
|
|
85715
85850
|
--------------------
|
|
85716
85851
|
|
|
85717
85852
|
* bpy_struct.as_pointer
|
|
@@ -87389,6 +87524,50 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
87389
87524
|
:columns: 2
|
|
87390
87525
|
|
|
87391
87526
|
|
|
87527
|
+
--------------------
|
|
87528
|
+
|
|
87529
|
+
* bpy_struct.id_data
|
|
87530
|
+
|
|
87531
|
+
:columns: 2
|
|
87532
|
+
|
|
87533
|
+
|
|
87534
|
+
--------------------
|
|
87535
|
+
|
|
87536
|
+
* bpy_struct.as_pointer
|
|
87537
|
+
* bpy_struct.driver_add
|
|
87538
|
+
* bpy_struct.driver_remove
|
|
87539
|
+
* bpy_struct.get
|
|
87540
|
+
* bpy_struct.id_properties_clear
|
|
87541
|
+
* bpy_struct.id_properties_ensure
|
|
87542
|
+
* bpy_struct.id_properties_ui
|
|
87543
|
+
* bpy_struct.is_property_hidden
|
|
87544
|
+
* bpy_struct.is_property_overridable_library
|
|
87545
|
+
* bpy_struct.is_property_readonly
|
|
87546
|
+
* bpy_struct.is_property_set
|
|
87547
|
+
* bpy_struct.items
|
|
87548
|
+
* bpy_struct.keyframe_delete
|
|
87549
|
+
* bpy_struct.keyframe_insert
|
|
87550
|
+
* bpy_struct.keys
|
|
87551
|
+
* bpy_struct.path_from_id
|
|
87552
|
+
* bpy_struct.path_resolve
|
|
87553
|
+
* bpy_struct.pop
|
|
87554
|
+
* bpy_struct.property_overridable_library_set
|
|
87555
|
+
* bpy_struct.property_unset
|
|
87556
|
+
* bpy_struct.type_recast
|
|
87557
|
+
* bpy_struct.values
|
|
87558
|
+
|
|
87559
|
+
:columns: 2
|
|
87560
|
+
|
|
87561
|
+
|
|
87562
|
+
--------------------
|
|
87563
|
+
|
|
87564
|
+
* GeometryNodeCaptureAttribute.capture_items
|
|
87565
|
+
* NodeGeometryCaptureAttributeItems.new
|
|
87566
|
+
* NodeGeometryCaptureAttributeItems.remove
|
|
87567
|
+
|
|
87568
|
+
:columns: 2
|
|
87569
|
+
|
|
87570
|
+
|
|
87392
87571
|
--------------------
|
|
87393
87572
|
|
|
87394
87573
|
* bpy_struct.id_data
|
|
@@ -108676,21 +108855,36 @@ class Context(bpy_struct):
|
|
|
108676
108855
|
:type: FileSelectEntry | None
|
|
108677
108856
|
"""
|
|
108678
108857
|
|
|
108679
|
-
selected_files:
|
|
108858
|
+
selected_files: list[FileSelectEntry]
|
|
108859
|
+
"""
|
|
108860
|
+
|
|
108861
|
+
:type: list[FileSelectEntry]
|
|
108862
|
+
"""
|
|
108863
|
+
|
|
108680
108864
|
asset_library_reference: AssetLibraryReference
|
|
108681
108865
|
"""
|
|
108682
108866
|
|
|
108683
108867
|
:type: AssetLibraryReference
|
|
108684
108868
|
"""
|
|
108685
108869
|
|
|
108686
|
-
selected_assets:
|
|
108870
|
+
selected_assets: list[AssetRepresentation]
|
|
108871
|
+
"""
|
|
108872
|
+
|
|
108873
|
+
:type: list[AssetRepresentation]
|
|
108874
|
+
"""
|
|
108875
|
+
|
|
108687
108876
|
id: ID
|
|
108688
108877
|
"""
|
|
108689
108878
|
|
|
108690
108879
|
:type: ID
|
|
108691
108880
|
"""
|
|
108692
108881
|
|
|
108693
|
-
selected_ids:
|
|
108882
|
+
selected_ids: list[ID]
|
|
108883
|
+
"""
|
|
108884
|
+
|
|
108885
|
+
:type: list[ID]
|
|
108886
|
+
"""
|
|
108887
|
+
|
|
108694
108888
|
edit_image: Image
|
|
108695
108889
|
"""
|
|
108696
108890
|
|
|
@@ -108703,7 +108897,12 @@ class Context(bpy_struct):
|
|
|
108703
108897
|
:type: Mask
|
|
108704
108898
|
"""
|
|
108705
108899
|
|
|
108706
|
-
selected_nodes:
|
|
108900
|
+
selected_nodes: list[Node]
|
|
108901
|
+
"""
|
|
108902
|
+
|
|
108903
|
+
:type: list[Node]
|
|
108904
|
+
"""
|
|
108905
|
+
|
|
108707
108906
|
active_node: Node | None
|
|
108708
108907
|
"""
|
|
108709
108908
|
|
|
@@ -108740,20 +108939,90 @@ class Context(bpy_struct):
|
|
|
108740
108939
|
:type: ViewLayer
|
|
108741
108940
|
"""
|
|
108742
108941
|
|
|
108743
|
-
visible_objects:
|
|
108744
|
-
|
|
108745
|
-
|
|
108746
|
-
|
|
108747
|
-
|
|
108748
|
-
|
|
108749
|
-
|
|
108750
|
-
|
|
108751
|
-
|
|
108752
|
-
|
|
108753
|
-
|
|
108754
|
-
|
|
108755
|
-
|
|
108756
|
-
|
|
108942
|
+
visible_objects: list[Object]
|
|
108943
|
+
"""
|
|
108944
|
+
|
|
108945
|
+
:type: list[Object]
|
|
108946
|
+
"""
|
|
108947
|
+
|
|
108948
|
+
selectable_objects: list[Object]
|
|
108949
|
+
"""
|
|
108950
|
+
|
|
108951
|
+
:type: list[Object]
|
|
108952
|
+
"""
|
|
108953
|
+
|
|
108954
|
+
selected_objects: list[Object]
|
|
108955
|
+
"""
|
|
108956
|
+
|
|
108957
|
+
:type: list[Object]
|
|
108958
|
+
"""
|
|
108959
|
+
|
|
108960
|
+
editable_objects: list[Object]
|
|
108961
|
+
"""
|
|
108962
|
+
|
|
108963
|
+
:type: list[Object]
|
|
108964
|
+
"""
|
|
108965
|
+
|
|
108966
|
+
selected_editable_objects: list[Object]
|
|
108967
|
+
"""
|
|
108968
|
+
|
|
108969
|
+
:type: list[Object]
|
|
108970
|
+
"""
|
|
108971
|
+
|
|
108972
|
+
objects_in_mode: list[Object]
|
|
108973
|
+
"""
|
|
108974
|
+
|
|
108975
|
+
:type: list[Object]
|
|
108976
|
+
"""
|
|
108977
|
+
|
|
108978
|
+
objects_in_mode_unique_data: list[Object]
|
|
108979
|
+
"""
|
|
108980
|
+
|
|
108981
|
+
:type: list[Object]
|
|
108982
|
+
"""
|
|
108983
|
+
|
|
108984
|
+
visible_bones: list[EditBone]
|
|
108985
|
+
"""
|
|
108986
|
+
|
|
108987
|
+
:type: list[EditBone]
|
|
108988
|
+
"""
|
|
108989
|
+
|
|
108990
|
+
editable_bones: list[EditBone]
|
|
108991
|
+
"""
|
|
108992
|
+
|
|
108993
|
+
:type: list[EditBone]
|
|
108994
|
+
"""
|
|
108995
|
+
|
|
108996
|
+
selected_bones: list[EditBone]
|
|
108997
|
+
"""
|
|
108998
|
+
|
|
108999
|
+
:type: list[EditBone]
|
|
109000
|
+
"""
|
|
109001
|
+
|
|
109002
|
+
selected_editable_bones: list[EditBone]
|
|
109003
|
+
"""
|
|
109004
|
+
|
|
109005
|
+
:type: list[EditBone]
|
|
109006
|
+
"""
|
|
109007
|
+
|
|
109008
|
+
visible_pose_bones: list[PoseBone]
|
|
109009
|
+
"""
|
|
109010
|
+
|
|
109011
|
+
:type: list[PoseBone]
|
|
109012
|
+
"""
|
|
109013
|
+
|
|
109014
|
+
selected_pose_bones: list[PoseBone]
|
|
109015
|
+
"""
|
|
109016
|
+
|
|
109017
|
+
:type: list[PoseBone]
|
|
109018
|
+
"""
|
|
109019
|
+
|
|
109020
|
+
selected_pose_bones_from_active_object: list[PoseBone]
|
|
109021
|
+
"""
|
|
109022
|
+
|
|
109023
|
+
:type: list[PoseBone]
|
|
109024
|
+
"""
|
|
109025
|
+
|
|
108757
109026
|
active_bone: EditBone | None
|
|
108758
109027
|
"""
|
|
108759
109028
|
|
|
@@ -108826,9 +109095,24 @@ class Context(bpy_struct):
|
|
|
108826
109095
|
:type: Sequence | None
|
|
108827
109096
|
"""
|
|
108828
109097
|
|
|
108829
|
-
sequences:
|
|
108830
|
-
|
|
108831
|
-
|
|
109098
|
+
sequences: list[Sequence]
|
|
109099
|
+
"""
|
|
109100
|
+
|
|
109101
|
+
:type: list[Sequence]
|
|
109102
|
+
"""
|
|
109103
|
+
|
|
109104
|
+
selected_sequences: list[Sequence]
|
|
109105
|
+
"""
|
|
109106
|
+
|
|
109107
|
+
:type: list[Sequence]
|
|
109108
|
+
"""
|
|
109109
|
+
|
|
109110
|
+
selected_editable_sequences: list[Sequence]
|
|
109111
|
+
"""
|
|
109112
|
+
|
|
109113
|
+
:type: list[Sequence]
|
|
109114
|
+
"""
|
|
109115
|
+
|
|
108832
109116
|
active_nla_track: NlaTrack | None
|
|
108833
109117
|
"""
|
|
108834
109118
|
|
|
@@ -108841,8 +109125,18 @@ class Context(bpy_struct):
|
|
|
108841
109125
|
:type: NlaStrip | None
|
|
108842
109126
|
"""
|
|
108843
109127
|
|
|
108844
|
-
selected_nla_strips:
|
|
108845
|
-
|
|
109128
|
+
selected_nla_strips: list[NlaStrip]
|
|
109129
|
+
"""
|
|
109130
|
+
|
|
109131
|
+
:type: list[NlaStrip]
|
|
109132
|
+
"""
|
|
109133
|
+
|
|
109134
|
+
selected_movieclip_tracks: list[MovieTrackingTrack]
|
|
109135
|
+
"""
|
|
109136
|
+
|
|
109137
|
+
:type: list[MovieTrackingTrack]
|
|
109138
|
+
"""
|
|
109139
|
+
|
|
108846
109140
|
gpencil_data: GreasePencil
|
|
108847
109141
|
"""
|
|
108848
109142
|
|
|
@@ -108867,11 +109161,36 @@ class Context(bpy_struct):
|
|
|
108867
109161
|
:type: ID
|
|
108868
109162
|
"""
|
|
108869
109163
|
|
|
108870
|
-
visible_gpencil_layers:
|
|
108871
|
-
|
|
108872
|
-
|
|
108873
|
-
|
|
108874
|
-
|
|
109164
|
+
visible_gpencil_layers: list[GPencilLayer]
|
|
109165
|
+
"""
|
|
109166
|
+
|
|
109167
|
+
:type: list[GPencilLayer]
|
|
109168
|
+
"""
|
|
109169
|
+
|
|
109170
|
+
editable_gpencil_layers: list[GPencilLayer]
|
|
109171
|
+
"""
|
|
109172
|
+
|
|
109173
|
+
:type: list[GPencilLayer]
|
|
109174
|
+
"""
|
|
109175
|
+
|
|
109176
|
+
editable_gpencil_strokes: list[GPencilStroke]
|
|
109177
|
+
"""
|
|
109178
|
+
|
|
109179
|
+
:type: list[GPencilStroke]
|
|
109180
|
+
"""
|
|
109181
|
+
|
|
109182
|
+
active_gpencil_layer: list[GPencilLayer] | None
|
|
109183
|
+
"""
|
|
109184
|
+
|
|
109185
|
+
:type: list[GPencilLayer] | None
|
|
109186
|
+
"""
|
|
109187
|
+
|
|
109188
|
+
active_gpencil_frame: list[GreasePencilLayer] | None
|
|
109189
|
+
"""
|
|
109190
|
+
|
|
109191
|
+
:type: list[GreasePencilLayer] | None
|
|
109192
|
+
"""
|
|
109193
|
+
|
|
108875
109194
|
active_annotation_layer: GPencilLayer | None
|
|
108876
109195
|
"""
|
|
108877
109196
|
|
|
@@ -108890,19 +109209,54 @@ class Context(bpy_struct):
|
|
|
108890
109209
|
:type: Action | None
|
|
108891
109210
|
"""
|
|
108892
109211
|
|
|
108893
|
-
selected_visible_actions:
|
|
108894
|
-
|
|
108895
|
-
|
|
108896
|
-
|
|
108897
|
-
|
|
108898
|
-
|
|
109212
|
+
selected_visible_actions: list[Action]
|
|
109213
|
+
"""
|
|
109214
|
+
|
|
109215
|
+
:type: list[Action]
|
|
109216
|
+
"""
|
|
109217
|
+
|
|
109218
|
+
selected_editable_actions: list[Action]
|
|
109219
|
+
"""
|
|
109220
|
+
|
|
109221
|
+
:type: list[Action]
|
|
109222
|
+
"""
|
|
109223
|
+
|
|
109224
|
+
visible_fcurves: list[FCurve]
|
|
109225
|
+
"""
|
|
109226
|
+
|
|
109227
|
+
:type: list[FCurve]
|
|
109228
|
+
"""
|
|
109229
|
+
|
|
109230
|
+
editable_fcurves: list[FCurve]
|
|
109231
|
+
"""
|
|
109232
|
+
|
|
109233
|
+
:type: list[FCurve]
|
|
109234
|
+
"""
|
|
109235
|
+
|
|
109236
|
+
selected_visible_fcurves: list[FCurve]
|
|
109237
|
+
"""
|
|
109238
|
+
|
|
109239
|
+
:type: list[FCurve]
|
|
109240
|
+
"""
|
|
109241
|
+
|
|
109242
|
+
selected_editable_fcurves: list[FCurve]
|
|
109243
|
+
"""
|
|
109244
|
+
|
|
109245
|
+
:type: list[FCurve]
|
|
109246
|
+
"""
|
|
109247
|
+
|
|
108899
109248
|
active_editable_fcurve: FCurve | None
|
|
108900
109249
|
"""
|
|
108901
109250
|
|
|
108902
109251
|
:type: FCurve | None
|
|
108903
109252
|
"""
|
|
108904
109253
|
|
|
108905
|
-
selected_editable_keyframes:
|
|
109254
|
+
selected_editable_keyframes: list[Keyframe]
|
|
109255
|
+
"""
|
|
109256
|
+
|
|
109257
|
+
:type: list[Keyframe]
|
|
109258
|
+
"""
|
|
109259
|
+
|
|
108906
109260
|
ui_list: UIList
|
|
108907
109261
|
"""
|
|
108908
109262
|
|
|
@@ -108940,7 +109294,11 @@ Returns a tuple of the data-block, data path to the property, and array index.
|
|
|
108940
109294
|
:type: Object | None
|
|
108941
109295
|
"""
|
|
108942
109296
|
|
|
108943
|
-
selected_ids:
|
|
109297
|
+
selected_ids: list[ID]
|
|
109298
|
+
"""
|
|
109299
|
+
|
|
109300
|
+
:type: list[ID]
|
|
109301
|
+
"""
|
|
108944
109302
|
|
|
108945
109303
|
def evaluated_depsgraph_get(self) -> Depsgraph:
|
|
108946
109304
|
"""Get the dependency graph for the current scene and view layer, to access to data-blocks with animation and modifiers applied. If any data-blocks have been edited, the dependency graph will be updated. This invalidates all references to evaluated data-blocks from the dependency graph.
|
|
@@ -118324,6 +118682,12 @@ class GreasePencilLayer(bpy_struct):
|
|
|
118324
118682
|
:type: bool
|
|
118325
118683
|
"""
|
|
118326
118684
|
|
|
118685
|
+
use_locked_material: bool
|
|
118686
|
+
""" Allow editing locked materials in the layer
|
|
118687
|
+
|
|
118688
|
+
:type: bool
|
|
118689
|
+
"""
|
|
118690
|
+
|
|
118327
118691
|
use_masks: bool
|
|
118328
118692
|
""" The visibility of drawings on this layer is affected by the layers in its masks list
|
|
118329
118693
|
|
|
@@ -127380,6 +127744,114 @@ class NodeGeometryBakeItems(bpy_prop_collection[NodeGeometryBakeItem], bpy_struc
|
|
|
127380
127744
|
"""
|
|
127381
127745
|
...
|
|
127382
127746
|
|
|
127747
|
+
class NodeGeometryCaptureAttributeItem(bpy_struct):
|
|
127748
|
+
color: bpy_prop_array[float]
|
|
127749
|
+
""" Color of the corresponding socket type in the node editor
|
|
127750
|
+
|
|
127751
|
+
:type: bpy_prop_array[float]
|
|
127752
|
+
"""
|
|
127753
|
+
|
|
127754
|
+
data_type: str
|
|
127755
|
+
"""
|
|
127756
|
+
|
|
127757
|
+
:type: str
|
|
127758
|
+
"""
|
|
127759
|
+
|
|
127760
|
+
name: str
|
|
127761
|
+
"""
|
|
127762
|
+
|
|
127763
|
+
:type: str
|
|
127764
|
+
"""
|
|
127765
|
+
|
|
127766
|
+
@classmethod
|
|
127767
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
127768
|
+
"""
|
|
127769
|
+
|
|
127770
|
+
:param id: The RNA type identifier.
|
|
127771
|
+
:type id: str | None
|
|
127772
|
+
:param default:
|
|
127773
|
+
:return: The RNA type or default when not found.
|
|
127774
|
+
:rtype: Struct
|
|
127775
|
+
"""
|
|
127776
|
+
...
|
|
127777
|
+
|
|
127778
|
+
@classmethod
|
|
127779
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
127780
|
+
"""
|
|
127781
|
+
|
|
127782
|
+
:param id: The RNA type identifier.
|
|
127783
|
+
:type id: str | None
|
|
127784
|
+
:param default:
|
|
127785
|
+
:return: The class or default when not found.
|
|
127786
|
+
:rtype: typing.Any
|
|
127787
|
+
"""
|
|
127788
|
+
...
|
|
127789
|
+
|
|
127790
|
+
class NodeGeometryCaptureAttributeItems(
|
|
127791
|
+
bpy_prop_collection[NodeGeometryCaptureAttributeItem], bpy_struct
|
|
127792
|
+
):
|
|
127793
|
+
"""Collection of capture attribute items"""
|
|
127794
|
+
|
|
127795
|
+
def new(
|
|
127796
|
+
self, socket_type: str | None, name: str | typing.Any
|
|
127797
|
+
) -> NodeGeometryCaptureAttributeItem:
|
|
127798
|
+
"""Add an item at the end
|
|
127799
|
+
|
|
127800
|
+
:param socket_type: Socket Type, Socket type of the item
|
|
127801
|
+
:type socket_type: str | None
|
|
127802
|
+
:param name: Name
|
|
127803
|
+
:type name: str | typing.Any
|
|
127804
|
+
:return: Item, New item
|
|
127805
|
+
:rtype: NodeGeometryCaptureAttributeItem
|
|
127806
|
+
"""
|
|
127807
|
+
...
|
|
127808
|
+
|
|
127809
|
+
def remove(self, item: NodeGeometryCaptureAttributeItem):
|
|
127810
|
+
"""Remove an item
|
|
127811
|
+
|
|
127812
|
+
:param item: Item, The item to remove
|
|
127813
|
+
:type item: NodeGeometryCaptureAttributeItem
|
|
127814
|
+
"""
|
|
127815
|
+
...
|
|
127816
|
+
|
|
127817
|
+
def clear(self):
|
|
127818
|
+
"""Remove all items"""
|
|
127819
|
+
...
|
|
127820
|
+
|
|
127821
|
+
def move(self, from_index: int | None, to_index: int | None):
|
|
127822
|
+
"""Move an item to another position
|
|
127823
|
+
|
|
127824
|
+
:param from_index: From Index, Index of the item to move
|
|
127825
|
+
:type from_index: int | None
|
|
127826
|
+
:param to_index: To Index, Target index for the item
|
|
127827
|
+
:type to_index: int | None
|
|
127828
|
+
"""
|
|
127829
|
+
...
|
|
127830
|
+
|
|
127831
|
+
@classmethod
|
|
127832
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
127833
|
+
"""
|
|
127834
|
+
|
|
127835
|
+
:param id: The RNA type identifier.
|
|
127836
|
+
:type id: str | None
|
|
127837
|
+
:param default:
|
|
127838
|
+
:return: The RNA type or default when not found.
|
|
127839
|
+
:rtype: Struct
|
|
127840
|
+
"""
|
|
127841
|
+
...
|
|
127842
|
+
|
|
127843
|
+
@classmethod
|
|
127844
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
127845
|
+
"""
|
|
127846
|
+
|
|
127847
|
+
:param id: The RNA type identifier.
|
|
127848
|
+
:type id: str | None
|
|
127849
|
+
:param default:
|
|
127850
|
+
:return: The class or default when not found.
|
|
127851
|
+
:rtype: typing.Any
|
|
127852
|
+
"""
|
|
127853
|
+
...
|
|
127854
|
+
|
|
127383
127855
|
class NodeGeometryRepeatOutputItems(bpy_prop_collection[RepeatItem], bpy_struct):
|
|
127384
127856
|
"""Collection of repeat items"""
|
|
127385
127857
|
|
|
@@ -133992,6 +134464,12 @@ class PreferencesView(bpy_struct):
|
|
|
133992
134464
|
:type: bool
|
|
133993
134465
|
"""
|
|
133994
134466
|
|
|
134467
|
+
show_extensions_updates: bool
|
|
134468
|
+
""" Show Extensions Update Count
|
|
134469
|
+
|
|
134470
|
+
:type: bool
|
|
134471
|
+
"""
|
|
134472
|
+
|
|
133995
134473
|
show_gizmo: bool
|
|
133996
134474
|
""" Use transform gizmos by default
|
|
133997
134475
|
|
|
@@ -211874,10 +212352,22 @@ class GeometryNodeBoundBox(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
211874
212352
|
class GeometryNodeCaptureAttribute(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
211875
212353
|
"""Store the result of a field on a geometry and output the data as a node socket. Allows remembering or interpolating data as the geometry changes, such as positions before deformation"""
|
|
211876
212354
|
|
|
211877
|
-
|
|
211878
|
-
"""
|
|
212355
|
+
active_index: int | None
|
|
212356
|
+
""" Index of the active item
|
|
211879
212357
|
|
|
211880
|
-
:type:
|
|
212358
|
+
:type: int | None
|
|
212359
|
+
"""
|
|
212360
|
+
|
|
212361
|
+
active_item: RepeatItem | None
|
|
212362
|
+
""" Index of the active item
|
|
212363
|
+
|
|
212364
|
+
:type: RepeatItem | None
|
|
212365
|
+
"""
|
|
212366
|
+
|
|
212367
|
+
capture_items: NodeGeometryCaptureAttributeItems
|
|
212368
|
+
"""
|
|
212369
|
+
|
|
212370
|
+
:type: NodeGeometryCaptureAttributeItems
|
|
211881
212371
|
"""
|
|
211882
212372
|
|
|
211883
212373
|
domain: str
|
|
@@ -216772,6 +217262,64 @@ class GeometryNodeInstanceOnPoints(GeometryNode, NodeInternal, Node, bpy_struct)
|
|
|
216772
217262
|
"""
|
|
216773
217263
|
...
|
|
216774
217264
|
|
|
217265
|
+
class GeometryNodeInstanceTransform(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
217266
|
+
"""Retrieve the full transformation of each instance in the geometry"""
|
|
217267
|
+
|
|
217268
|
+
@classmethod
|
|
217269
|
+
def is_registered_node_type(cls) -> bool:
|
|
217270
|
+
"""True if a registered node type
|
|
217271
|
+
|
|
217272
|
+
:return: Result
|
|
217273
|
+
:rtype: bool
|
|
217274
|
+
"""
|
|
217275
|
+
...
|
|
217276
|
+
|
|
217277
|
+
@classmethod
|
|
217278
|
+
def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
217279
|
+
"""Input socket template
|
|
217280
|
+
|
|
217281
|
+
:param index: Index
|
|
217282
|
+
:type index: int | None
|
|
217283
|
+
:return: result
|
|
217284
|
+
:rtype: NodeInternalSocketTemplate
|
|
217285
|
+
"""
|
|
217286
|
+
...
|
|
217287
|
+
|
|
217288
|
+
@classmethod
|
|
217289
|
+
def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
|
|
217290
|
+
"""Output socket template
|
|
217291
|
+
|
|
217292
|
+
:param index: Index
|
|
217293
|
+
:type index: int | None
|
|
217294
|
+
:return: result
|
|
217295
|
+
:rtype: NodeInternalSocketTemplate
|
|
217296
|
+
"""
|
|
217297
|
+
...
|
|
217298
|
+
|
|
217299
|
+
@classmethod
|
|
217300
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
217301
|
+
"""
|
|
217302
|
+
|
|
217303
|
+
:param id: The RNA type identifier.
|
|
217304
|
+
:type id: str | None
|
|
217305
|
+
:param default:
|
|
217306
|
+
:return: The RNA type or default when not found.
|
|
217307
|
+
:rtype: Struct
|
|
217308
|
+
"""
|
|
217309
|
+
...
|
|
217310
|
+
|
|
217311
|
+
@classmethod
|
|
217312
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
217313
|
+
"""
|
|
217314
|
+
|
|
217315
|
+
:param id: The RNA type identifier.
|
|
217316
|
+
:type id: str | None
|
|
217317
|
+
:param default:
|
|
217318
|
+
:return: The class or default when not found.
|
|
217319
|
+
:rtype: typing.Any
|
|
217320
|
+
"""
|
|
217321
|
+
...
|
|
217322
|
+
|
|
216775
217323
|
class GeometryNodeInstancesToPoints(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
216776
217324
|
"""Generate points at the origins of instances.
|
|
216777
217325
|
Note: Nested instances are not affected by this node
|
|
@@ -143,24 +143,24 @@ def bake_action_iter(
|
|
|
143
143
|
|
|
144
144
|
def bake_action_objects(
|
|
145
145
|
object_action_pairs, *, frames, bake_options
|
|
146
|
-
) ->
|
|
146
|
+
) -> list[bpy.types.Action]:
|
|
147
147
|
"""A version of `bake_action_objects_iter` that takes frames and returns the output.
|
|
148
148
|
|
|
149
149
|
:param frames: Frames to bake.
|
|
150
150
|
:return: A sequence of Action or None types (aligned with object_action_pairs)
|
|
151
|
-
:rtype:
|
|
151
|
+
:rtype: list[bpy.types.Action]
|
|
152
152
|
"""
|
|
153
153
|
|
|
154
154
|
...
|
|
155
155
|
|
|
156
156
|
def bake_action_objects(
|
|
157
157
|
object_action_pairs, frames, bake_options
|
|
158
|
-
) ->
|
|
158
|
+
) -> list[bpy.types.Action]:
|
|
159
159
|
"""A version of `bake_action_objects_iter` that takes frames and returns the output.
|
|
160
160
|
|
|
161
161
|
:param frames: Frames to bake.
|
|
162
162
|
:return: A sequence of Action or None types (aligned with object_action_pairs)
|
|
163
|
-
:rtype:
|
|
163
|
+
:rtype: list[bpy.types.Action]
|
|
164
164
|
"""
|
|
165
165
|
|
|
166
166
|
...
|
bpy_extras/io_utils/__init__.pyi
CHANGED
|
@@ -100,14 +100,14 @@ def axis_conversion_ensure(
|
|
|
100
100
|
...
|
|
101
101
|
|
|
102
102
|
def create_derived_objects(
|
|
103
|
-
depsgraph: bpy.types.Depsgraph, objects:
|
|
103
|
+
depsgraph: bpy.types.Depsgraph, objects: list[bpy.types.Object]
|
|
104
104
|
) -> dict:
|
|
105
105
|
"""This function takes a sequence of objects, returning their instances.
|
|
106
106
|
|
|
107
107
|
:param depsgraph: The evaluated depsgraph.
|
|
108
108
|
:type depsgraph: bpy.types.Depsgraph
|
|
109
109
|
:param objects: A sequencer of objects.
|
|
110
|
-
:type objects:
|
|
110
|
+
:type objects: list[bpy.types.Object]
|
|
111
111
|
:return: A dictionary where each key is an object from objects,
|
|
112
112
|
values are lists of (`bpy.types.Object`, `mathutils.Matrix`) tuples representing instances.
|
|
113
113
|
:rtype: dict
|
|
@@ -116,14 +116,14 @@ def create_derived_objects(
|
|
|
116
116
|
...
|
|
117
117
|
|
|
118
118
|
def create_derived_objects(
|
|
119
|
-
depsgraph: bpy.types.Depsgraph, objects:
|
|
119
|
+
depsgraph: bpy.types.Depsgraph, objects: list[bpy.types.Object]
|
|
120
120
|
) -> dict:
|
|
121
121
|
"""This function takes a sequence of objects, returning their instances.
|
|
122
122
|
|
|
123
123
|
:param depsgraph: The evaluated depsgraph.
|
|
124
124
|
:type depsgraph: bpy.types.Depsgraph
|
|
125
125
|
:param objects: A sequencer of objects.
|
|
126
|
-
:type objects:
|
|
126
|
+
:type objects: list[bpy.types.Object]
|
|
127
127
|
:return: A dictionary where each key is an object from objects,
|
|
128
128
|
values are lists of (`bpy.types.Object`, `mathutils.Matrix`) tuples representing instances.
|
|
129
129
|
:rtype: dict
|
|
@@ -89,7 +89,7 @@ bl_ui/__init__.pyi,sha256=PVcA-iIFi-eJJ9r3ZD93m7v_CX0EJDsMT6Skc90goEY,20292
|
|
|
89
89
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
90
90
|
bl_ui/anim/__init__.pyi,sha256=xhW_YrM0Ff1eupC2lvwkpr5IwX8v_v6DGNaF8vLcxr4,7668
|
|
91
91
|
bl_ui/asset_shelf/__init__.pyi,sha256=HztdIjmsqLm_jhZhChKREICK86WnEKPMW0HAd3gfb-A,5887
|
|
92
|
-
bl_ui/generic_ui_list/__init__.pyi,sha256=
|
|
92
|
+
bl_ui/generic_ui_list/__init__.pyi,sha256=wiHVG8tUGH08FXberdkon893hE-KQOC-wcQdPhQRIds,19691
|
|
93
93
|
bl_ui/node_add_menu/__init__.pyi,sha256=pr8Px9LqhNLN8sHcvVQjQncYK3Hp6MYuY1EMWc_PeVs,8170
|
|
94
94
|
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=1htwYayZz12_JpOtdunl0xWMTmOHJLdcjqZEkuyuAhk,135924
|
|
95
95
|
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=XADcpeSE36KVkdkyVt3jgA1uXNEgZf9f0Jt0sfIpxX4,362115
|
|
@@ -176,7 +176,7 @@ bmesh/__init__.pyi,sha256=jLVw2jRJGXC8XUX1HHdf32PfZK8_pvQ8U6E4w5Du2yc,1558
|
|
|
176
176
|
bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
177
177
|
bmesh/geometry/__init__.pyi,sha256=T6ho6w7oPVgee1HhzcAN1hGWHO8Ev4BbrFy52eoRXfw,733
|
|
178
178
|
bmesh/ops/__init__.pyi,sha256=g2lFJhPL2Gq7pf7_FkOtUb3SzorU9RrJ6affinaMTJU,71879
|
|
179
|
-
bmesh/types/__init__.pyi,sha256=
|
|
179
|
+
bmesh/types/__init__.pyi,sha256=sIl6L5wXiuS2bi4av2O7VAD7YBULdDXnx5Xe5BKOY60,40396
|
|
180
180
|
bmesh/utils/__init__.pyi,sha256=lTewfaETWms0_7Fe0Mv3rn8D4-tEb-ib1dNby1BxUBI,6159
|
|
181
181
|
bpy/__init__.pyi,sha256=_aPxZG75j_LcawPviW9vM5kU2SSZvHl_1VmUWIfHPKE,472
|
|
182
182
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -208,7 +208,7 @@ bpy/ops/dpaint/__init__.pyi,sha256=X6BzZRMR_KnbeRXwt3tYpY6zdwg0YOm_NVq6ABF_0q0,2
|
|
|
208
208
|
bpy/ops/ed/__init__.pyi,sha256=xxJyGMLV0zGruKqEMRuwppSfc3gYal6JITPuEvsTwCg,9462
|
|
209
209
|
bpy/ops/export_anim/__init__.pyi,sha256=xlFFDeLOQsp4Ab2aHxhZk7j4NpU_My9ZFjY1RLqDErw,2292
|
|
210
210
|
bpy/ops/export_scene/__init__.pyi,sha256=qUkth8wKEBQoh1eiwmz8whl2gVRuGoaMbzgfkhraNCE,39923
|
|
211
|
-
bpy/ops/extensions/__init__.pyi,sha256=
|
|
211
|
+
bpy/ops/extensions/__init__.pyi,sha256=PDBnWujAxurZlXiKCtVZUHm_XMAOhTVMF6-3UssPkaY,15209
|
|
212
212
|
bpy/ops/file/__init__.pyi,sha256=lNVEvaCV60_92aACUAWDVKMlqWhI60VKn1K13TXlW7c,25833
|
|
213
213
|
bpy/ops/fluid/__init__.pyi,sha256=XutbeF9tzrWSWUKYGUzB32JUIkTWUK65kwHJdfd4rTs,5788
|
|
214
214
|
bpy/ops/font/__init__.pyi,sha256=gykWhH9rVOwaJ0LF7yFwtvMmayRK_s4sGtMek5JO7RM,18752
|
|
@@ -229,8 +229,8 @@ bpy/ops/material/__init__.pyi,sha256=diY67Y7yjs_KAaw4opetqSpq3X0_UUxfFrB765qDu9s
|
|
|
229
229
|
bpy/ops/mball/__init__.pyi,sha256=5sEckOoSOtp5wVgm5Ku3AFqLsalbakKnQRb_nw2CIPQ,5363
|
|
230
230
|
bpy/ops/mesh/__init__.pyi,sha256=vAwZG4If8_HcI2itSsuwWUI6d6DQsSD-9N_IY4qve7Q,152717
|
|
231
231
|
bpy/ops/nla/__init__.pyi,sha256=a4vYr0QhDT_RT4IZ3Sx_rGwT9I_EatjT5MJVHDxr5Zc,24830
|
|
232
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
233
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
232
|
+
bpy/ops/node/__init__.pyi,sha256=gwNFfgH8g0PhUf7SL0CpZUYIE8p_2d5CLG7sqK3C59Y,65067
|
|
233
|
+
bpy/ops/object/__init__.pyi,sha256=CH_OkKgZTkLhDBrqKWi0dTFU9n-LprVfBTmjvm5_VJg,203297
|
|
234
234
|
bpy/ops/outliner/__init__.pyi,sha256=n8Q6GW-wxi-6qdR8xQnUbDkAdHyHMOEvAOO1CEivVNY,38083
|
|
235
235
|
bpy/ops/paint/__init__.pyi,sha256=Zz-1YNo6NxJBi3yAucSId82wCx9pPuqen5eZv2a6x24,44986
|
|
236
236
|
bpy/ops/paintcurve/__init__.pyi,sha256=Eat1jYEzC-3BlQKziEuG5bNxkH0H-FnoGgWudgtjP3s,4429
|
|
@@ -238,7 +238,7 @@ bpy/ops/palette/__init__.pyi,sha256=u9tZ8XDsvYDat6saVOnYamMZE2DmoA8wVy2Xrhe4hxc,
|
|
|
238
238
|
bpy/ops/particle/__init__.pyi,sha256=KM0jEarxDnf3hX3rRpd1Z1_kdK2HqAr1tL73gg_k10Q,19311
|
|
239
239
|
bpy/ops/pose/__init__.pyi,sha256=mqsVKeA9KkA-jkRH7vPGBN3c2N26KaxkETTsUFjCq6I,28487
|
|
240
240
|
bpy/ops/poselib/__init__.pyi,sha256=vCPnvumEaXz4Y1auI84M3LZlxwkn6QxrEySLN-WCAdM,5601
|
|
241
|
-
bpy/ops/preferences/__init__.pyi,sha256=
|
|
241
|
+
bpy/ops/preferences/__init__.pyi,sha256=rJQd1xV0lz0g-4eSCWVo4Ctl4hLr4i3aDHG2kUAPWEg,27751
|
|
242
242
|
bpy/ops/ptcache/__init__.pyi,sha256=JgTQWCVZKGU5AwjolNF3_KTqCxHZEwsUvTPhGGeRHE8,2994
|
|
243
243
|
bpy/ops/render/__init__.pyi,sha256=3OknEVEx8r7M8xgFl8WRv-3SOhNW6uWnoqarfOFF_AE,9453
|
|
244
244
|
bpy/ops/rigidbody/__init__.pyi,sha256=wgV7Jq0sgSQn-qC57e6wuYu17QcxXwU8oXRjo_YP3fA,8151
|
|
@@ -260,25 +260,25 @@ bpy/ops/uilist/__init__.pyi,sha256=9ytWQscNFgH5W2P_LkDd3a0cgwFYHuV1-hwDF93B0xo,2
|
|
|
260
260
|
bpy/ops/uv/__init__.pyi,sha256=R9bIqvl8-WCE7Z8x509wIXIyxQdENKDWr4u653NuiwI,49976
|
|
261
261
|
bpy/ops/view2d/__init__.pyi,sha256=Usi9Cm-xlvMl7P5glqa3sSBzBOJMMGM1XRGd3xXDWY8,9859
|
|
262
262
|
bpy/ops/view3d/__init__.pyi,sha256=gf0IdzIjY8opBO-BfqpASKS5hnL1aUr5LChyRkI5vhA,41423
|
|
263
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
263
|
+
bpy/ops/wm/__init__.pyi,sha256=zlfqez7W4NIASZz2Si6jEXFL7g1SqnD97BOZCWfVFK8,235567
|
|
264
264
|
bpy/ops/workspace/__init__.pyi,sha256=O3PaD_cD6Mv9UW0cELyVLGmEoeEeDUT5Jr0bAXoYy1o,3316
|
|
265
265
|
bpy/ops/world/__init__.pyi,sha256=oQBSfyuRh5kGomRoZELd3XHeYFnn1Q4yPobT9GfsefY,1032
|
|
266
266
|
bpy/path/__init__.pyi,sha256=TCTgOnuXD7CqqQHMNY-w8MiKEKIMhNa7-tTsIiJXTIc,11515
|
|
267
267
|
bpy/props/__init__.pyi,sha256=mTaCy2nvyIovwyx8GmEsWMZ4sVJoomCTtDzM4y21LtQ,29022
|
|
268
|
-
bpy/types/__init__.pyi,sha256=
|
|
268
|
+
bpy/types/__init__.pyi,sha256=e4Rg6XFUPm2RE8hCitkgRV_408ZNcYADggNgJhNEko0,5256173
|
|
269
269
|
bpy/utils/__init__.pyi,sha256=_d1vNBx-ilVELO3rLVmEKUlYfgSTZIsJsc8iUaNsgms,17972
|
|
270
270
|
bpy/utils/previews/__init__.pyi,sha256=odPazdv-bjKEVpeX-KfaDGZe5rKlMT11zL_q1SgPK3U,4255
|
|
271
271
|
bpy/utils/units/__init__.pyi,sha256=Mf5e9M8OwkE2zC-rs5CVV7NfobaI7LQkU0v7u-z9xwI,2655
|
|
272
272
|
bpy_extras/__init__.pyi,sha256=mSQGV3OnBDLrI9Bur-VUrKNXrE7dQbDDnQwb40kdi5I,862
|
|
273
273
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
274
|
-
bpy_extras/anim_utils/__init__.pyi,sha256=
|
|
274
|
+
bpy_extras/anim_utils/__init__.pyi,sha256=KE2O6oo39l8MOX84X2DIYZPOwcE1TZud1cp0yVHtBJE,5975
|
|
275
275
|
bpy_extras/asset_utils/__init__.pyi,sha256=N77-s-Zxsx0un4ltucalnLMJU21CcDWG_vqcVGkUDwI,955
|
|
276
276
|
bpy_extras/bmesh_utils/__init__.pyi,sha256=pBU1N3HAuF8SQHYbl2a2vdb04cyJy7exwJe9_j9xdyA,533
|
|
277
277
|
bpy_extras/extensions/__init__.pyi,sha256=7X21tOIZzQFyf4jd_v40SOkYEgKUteHyjAKBkaErywU,160
|
|
278
278
|
bpy_extras/extensions/junction_module/__init__.pyi,sha256=Y4wWyDVpNoWmMjPLBtwA2x3WWTLInpvA-ZE6h_qO0SE,1084
|
|
279
279
|
bpy_extras/id_map_utils/__init__.pyi,sha256=u0XQmvE9wYzNIP0-TEcE5dmybiyKeELjBcnPsW5Lscw,805
|
|
280
280
|
bpy_extras/image_utils/__init__.pyi,sha256=4wmKPCi14IkpaUkEhKroNUGbENEO5Ra3Awk089IhHgM,4125
|
|
281
|
-
bpy_extras/io_utils/__init__.pyi,sha256=
|
|
281
|
+
bpy_extras/io_utils/__init__.pyi,sha256=XMQo4Ue1HlN90P8nEQftyAsU0VnaHC96PeQMS4T1bcY,9745
|
|
282
282
|
bpy_extras/keyconfig_utils/__init__.pyi,sha256=Fh5nW2VyNDI7Z_LX-Qz3O2AkzJZD-9i1gAtzlyFdOfs,763
|
|
283
283
|
bpy_extras/mesh_utils/__init__.pyi,sha256=zNZnif6L_3J5uKyjvp3XirA6lPcR6WkvfwoVO01d8Gs,5255
|
|
284
284
|
bpy_extras/node_shader_utils/__init__.pyi,sha256=Pbi9HZ9hyWArfAuG0vbRjciQslKIkn6gmfGNvuDO53E,6084
|
|
@@ -351,7 +351,7 @@ rna_xml/__init__.pyi,sha256=H-iSwO57zZ_piTZymDIp-ryuojWhwRoX_CT10iAI3rk,602
|
|
|
351
351
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
352
352
|
sys_info/__init__.pyi,sha256=9MR_HOycufd8IKZQf-QDqUqE8Aj1D8n_Pfvi9wEKtvo,164
|
|
353
353
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
354
|
-
fake_bpy_module-
|
|
355
|
-
fake_bpy_module-
|
|
356
|
-
fake_bpy_module-
|
|
357
|
-
fake_bpy_module-
|
|
354
|
+
fake_bpy_module-20240601.dist-info/METADATA,sha256=KdUOohrP7GC5ZPIBOp90WU2oqzJKMT4XrmRhEG1TP80,7109
|
|
355
|
+
fake_bpy_module-20240601.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
356
|
+
fake_bpy_module-20240601.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
357
|
+
fake_bpy_module-20240601.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|