fake-bpy-module 20240719__py3-none-any.whl → 20240721__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.
- aud/__init__.pyi +77 -77
- bmesh/types/__init__.pyi +25 -25
- bpy/app/timers/__init__.pyi +6 -6
- bpy/ops/sound/__init__.pyi +37 -7
- bpy/types/__init__.pyi +113 -118
- {fake_bpy_module-20240719.dist-info → fake_bpy_module-20240721.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240719.dist-info → fake_bpy_module-20240721.dist-info}/RECORD +15 -15
- {fake_bpy_module-20240719.dist-info → fake_bpy_module-20240721.dist-info}/WHEEL +1 -1
- freestyle/chainingiterators/__init__.pyi +4 -4
- freestyle/types/__init__.pyi +63 -65
- idprop/types/__init__.pyi +2 -2
- imbuf/types/__init__.pyi +2 -2
- mathutils/__init__.pyi +1004 -965
- mathutils/bvhtree/__init__.pyi +2 -2
- {fake_bpy_module-20240719.dist-info → fake_bpy_module-20240721.dist-info}/top_level.txt +0 -0
bpy/types/__init__.pyi
CHANGED
|
@@ -87113,7 +87113,6 @@ at its creation, all editing in the original image's buffer is 'lost' in its cop
|
|
|
87113
87113
|
|
|
87114
87114
|
* ThemeStyle.panel_title
|
|
87115
87115
|
* ThemeStyle.widget
|
|
87116
|
-
* ThemeStyle.widget_label
|
|
87117
87116
|
|
|
87118
87117
|
:columns: 2
|
|
87119
87118
|
|
|
@@ -114198,13 +114197,13 @@ class BlendData(bpy_struct):
|
|
|
114198
114197
|
"""
|
|
114199
114198
|
...
|
|
114200
114199
|
|
|
114201
|
-
def temp_data(self, filepath: bytes | str | None = None) ->
|
|
114200
|
+
def temp_data(self, filepath: bytes | str | None = None) -> typing.Self:
|
|
114202
114201
|
"""A context manager that temporarily creates blender file data.
|
|
114203
114202
|
|
|
114204
114203
|
:param filepath: The file path for the newly temporary data. When None, the path of the currently open file is used.
|
|
114205
114204
|
:type filepath: bytes | str | None
|
|
114206
114205
|
:return: Blend file data which is freed once the context exists.
|
|
114207
|
-
:rtype:
|
|
114206
|
+
:rtype: typing.Self
|
|
114208
114207
|
"""
|
|
114209
114208
|
...
|
|
114210
114209
|
|
|
@@ -114897,16 +114896,16 @@ class Bone(bpy_struct):
|
|
|
114897
114896
|
:type: float
|
|
114898
114897
|
"""
|
|
114899
114898
|
|
|
114900
|
-
bbone_custom_handle_end:
|
|
114899
|
+
bbone_custom_handle_end: typing.Self
|
|
114901
114900
|
""" Bone that serves as the end handle for the B-Bone curve
|
|
114902
114901
|
|
|
114903
|
-
:type:
|
|
114902
|
+
:type: typing.Self
|
|
114904
114903
|
"""
|
|
114905
114904
|
|
|
114906
|
-
bbone_custom_handle_start:
|
|
114905
|
+
bbone_custom_handle_start: typing.Self
|
|
114907
114906
|
""" Bone that serves as the start handle for the B-Bone curve
|
|
114908
114907
|
|
|
114909
|
-
:type:
|
|
114908
|
+
:type: typing.Self
|
|
114910
114909
|
"""
|
|
114911
114910
|
|
|
114912
114911
|
bbone_easein: float
|
|
@@ -115095,10 +115094,10 @@ class Bone(bpy_struct):
|
|
|
115095
115094
|
:type: str
|
|
115096
115095
|
"""
|
|
115097
115096
|
|
|
115098
|
-
parent:
|
|
115097
|
+
parent: typing.Self
|
|
115099
115098
|
""" Parent bone (in same Armature)
|
|
115100
115099
|
|
|
115101
|
-
:type:
|
|
115100
|
+
:type: typing.Self
|
|
115102
115101
|
"""
|
|
115103
115102
|
|
|
115104
115103
|
select: bool
|
|
@@ -115435,10 +115434,10 @@ class BoneCollection(bpy_struct):
|
|
|
115435
115434
|
:type: str
|
|
115436
115435
|
"""
|
|
115437
115436
|
|
|
115438
|
-
parent:
|
|
115437
|
+
parent: typing.Self
|
|
115439
115438
|
""" Parent bone collection. Note that accessing this requires a scan of all the bone collections to find the parent
|
|
115440
115439
|
|
|
115441
|
-
:type:
|
|
115440
|
+
:type: typing.Self
|
|
115442
115441
|
"""
|
|
115443
115442
|
|
|
115444
115443
|
bones_recursive: typing.Any
|
|
@@ -132653,13 +132652,13 @@ class Depsgraph(bpy_struct):
|
|
|
132653
132652
|
"""Re-evaluate any modified data-blocks, for example for animation or modifiers. This invalidates all references to evaluated data-blocks from this dependency graph."""
|
|
132654
132653
|
...
|
|
132655
132654
|
|
|
132656
|
-
def id_eval_get(self, id:
|
|
132655
|
+
def id_eval_get(self, id: GenericType1 | None) -> GenericType1:
|
|
132657
132656
|
"""id_eval_get
|
|
132658
132657
|
|
|
132659
132658
|
:param id: Original ID to get evaluated complementary part for
|
|
132660
|
-
:type id:
|
|
132659
|
+
:type id: GenericType1 | None
|
|
132661
132660
|
:return: Evaluated ID for the given original one
|
|
132662
|
-
:rtype:
|
|
132661
|
+
:rtype: GenericType1
|
|
132663
132662
|
"""
|
|
132664
132663
|
...
|
|
132665
132664
|
|
|
@@ -134264,16 +134263,16 @@ class EditBone(bpy_struct):
|
|
|
134264
134263
|
:type: float
|
|
134265
134264
|
"""
|
|
134266
134265
|
|
|
134267
|
-
bbone_custom_handle_end:
|
|
134266
|
+
bbone_custom_handle_end: typing.Self
|
|
134268
134267
|
""" Bone that serves as the end handle for the B-Bone curve
|
|
134269
134268
|
|
|
134270
|
-
:type:
|
|
134269
|
+
:type: typing.Self
|
|
134271
134270
|
"""
|
|
134272
134271
|
|
|
134273
|
-
bbone_custom_handle_start:
|
|
134272
|
+
bbone_custom_handle_start: typing.Self
|
|
134274
134273
|
""" Bone that serves as the start handle for the B-Bone curve
|
|
134275
134274
|
|
|
134276
|
-
:type:
|
|
134275
|
+
:type: typing.Self
|
|
134277
134276
|
"""
|
|
134278
134277
|
|
|
134279
134278
|
bbone_easein: float
|
|
@@ -134450,10 +134449,10 @@ class EditBone(bpy_struct):
|
|
|
134450
134449
|
:type: str
|
|
134451
134450
|
"""
|
|
134452
134451
|
|
|
134453
|
-
parent:
|
|
134452
|
+
parent: typing.Self
|
|
134454
134453
|
""" Parent edit bone (in same Armature)
|
|
134455
134454
|
|
|
134456
|
-
:type:
|
|
134455
|
+
:type: typing.Self
|
|
134457
134456
|
"""
|
|
134458
134457
|
|
|
134459
134458
|
roll: float
|
|
@@ -162936,10 +162935,10 @@ class ID(bpy_struct):
|
|
|
162936
162935
|
:type: str
|
|
162937
162936
|
"""
|
|
162938
162937
|
|
|
162939
|
-
original:
|
|
162938
|
+
original: typing.Self
|
|
162940
162939
|
""" Actual data-block from .blend file (Main database) that generated that evaluated one
|
|
162941
162940
|
|
|
162942
|
-
:type:
|
|
162941
|
+
:type: typing.Self
|
|
162943
162942
|
"""
|
|
162944
162943
|
|
|
162945
162944
|
override_library: IDOverrideLibrary
|
|
@@ -162984,21 +162983,21 @@ class ID(bpy_struct):
|
|
|
162984
162983
|
:type: int
|
|
162985
162984
|
"""
|
|
162986
162985
|
|
|
162987
|
-
def evaluated_get(self, depsgraph: Depsgraph) ->
|
|
162986
|
+
def evaluated_get(self, depsgraph: Depsgraph) -> typing.Self:
|
|
162988
162987
|
"""Get corresponding evaluated ID from the given dependency graph. Note that this does not ensure the dependency graph is fully evaluated, it just returns the result of the last evaluation
|
|
162989
162988
|
|
|
162990
162989
|
:param depsgraph: Dependency graph to perform lookup in
|
|
162991
162990
|
:type depsgraph: Depsgraph
|
|
162992
162991
|
:return: New copy of the ID
|
|
162993
|
-
:rtype:
|
|
162992
|
+
:rtype: typing.Self
|
|
162994
162993
|
"""
|
|
162995
162994
|
...
|
|
162996
162995
|
|
|
162997
|
-
def copy(self) ->
|
|
162996
|
+
def copy(self) -> typing.Self:
|
|
162998
162997
|
"""Create a copy of this data-block (not supported for all data-blocks). The result is added to the Blend-File Data (Main database), with all references to other data-blocks ensured to be from within the same Blend-File Data
|
|
162999
162998
|
|
|
163000
162999
|
:return: New copy of the ID
|
|
163001
|
-
:rtype:
|
|
163000
|
+
:rtype: typing.Self
|
|
163002
163001
|
"""
|
|
163003
163002
|
...
|
|
163004
163003
|
|
|
@@ -163014,13 +163013,13 @@ class ID(bpy_struct):
|
|
|
163014
163013
|
"""Generate preview image (might be scheduled in a background thread)"""
|
|
163015
163014
|
...
|
|
163016
163015
|
|
|
163017
|
-
def override_create(self, remap_local_usages: bool | None = False) ->
|
|
163016
|
+
def override_create(self, remap_local_usages: bool | None = False) -> typing.Self:
|
|
163018
163017
|
"""Create an overridden local copy of this linked data-block (not supported for all data-blocks)
|
|
163019
163018
|
|
|
163020
163019
|
:param remap_local_usages: Whether local usages of the linked ID should be remapped to the new library override of it
|
|
163021
163020
|
:type remap_local_usages: bool | None
|
|
163022
163021
|
:return: New overridden local copy of the ID
|
|
163023
|
-
:rtype:
|
|
163022
|
+
:rtype: typing.Self
|
|
163024
163023
|
"""
|
|
163025
163024
|
...
|
|
163026
163025
|
|
|
@@ -163028,9 +163027,9 @@ class ID(bpy_struct):
|
|
|
163028
163027
|
self,
|
|
163029
163028
|
scene: Scene,
|
|
163030
163029
|
view_layer: ViewLayer,
|
|
163031
|
-
reference:
|
|
163030
|
+
reference: typing.Self = None,
|
|
163032
163031
|
do_fully_editable: bool | None = False,
|
|
163033
|
-
) ->
|
|
163032
|
+
) -> typing.Self:
|
|
163034
163033
|
"""Create an overridden local copy of this linked data-block, and most of its dependencies when it is a Collection or and Object
|
|
163035
163034
|
|
|
163036
163035
|
:param scene: In which scene the new overrides should be instantiated
|
|
@@ -163038,11 +163037,11 @@ class ID(bpy_struct):
|
|
|
163038
163037
|
:param view_layer: In which view layer the new overrides should be instantiated
|
|
163039
163038
|
:type view_layer: ViewLayer
|
|
163040
163039
|
:param reference: Another ID (usually an Object or Collection) used as a hint to decide where to instantiate the new overrides
|
|
163041
|
-
:type reference:
|
|
163040
|
+
:type reference: typing.Self
|
|
163042
163041
|
:param do_fully_editable: Make all library overrides generated by this call fully editable by the user (none will be 'system overrides')
|
|
163043
163042
|
:type do_fully_editable: bool | None
|
|
163044
163043
|
:return: New overridden local copy of the root ID
|
|
163045
|
-
:rtype:
|
|
163044
|
+
:rtype: typing.Self
|
|
163046
163045
|
"""
|
|
163047
163046
|
...
|
|
163048
163047
|
|
|
@@ -163053,11 +163052,11 @@ class ID(bpy_struct):
|
|
|
163053
163052
|
"""
|
|
163054
163053
|
...
|
|
163055
163054
|
|
|
163056
|
-
def user_remap(self, new_id:
|
|
163055
|
+
def user_remap(self, new_id: typing.Self):
|
|
163057
163056
|
"""Replace all usage in the .blend file of this ID by new given one
|
|
163058
163057
|
|
|
163059
163058
|
:param new_id: New ID to use
|
|
163060
|
-
:type new_id:
|
|
163059
|
+
:type new_id: typing.Self
|
|
163061
163060
|
"""
|
|
163062
163061
|
...
|
|
163063
163062
|
|
|
@@ -163066,7 +163065,7 @@ class ID(bpy_struct):
|
|
|
163066
163065
|
clear_proxy: bool | None = True,
|
|
163067
163066
|
clear_liboverride: bool | None = False,
|
|
163068
163067
|
clear_asset_data: bool | None = True,
|
|
163069
|
-
) ->
|
|
163068
|
+
) -> typing.Self:
|
|
163070
163069
|
"""Make this datablock local, return local one (may be a copy of the original, in case it is also indirectly used)
|
|
163071
163070
|
|
|
163072
163071
|
:param clear_proxy: Deprecated, has no effect
|
|
@@ -163076,15 +163075,15 @@ class ID(bpy_struct):
|
|
|
163076
163075
|
:param clear_asset_data: Remove potential asset metadata so the newly local data-block is not treated as asset data-block and won't show up in asset libraries
|
|
163077
163076
|
:type clear_asset_data: bool | None
|
|
163078
163077
|
:return: This ID, or the new ID if it was copied
|
|
163079
|
-
:rtype:
|
|
163078
|
+
:rtype: typing.Self
|
|
163080
163079
|
"""
|
|
163081
163080
|
...
|
|
163082
163081
|
|
|
163083
|
-
def user_of_id(self, id:
|
|
163082
|
+
def user_of_id(self, id: typing.Self) -> int:
|
|
163084
163083
|
"""Count the number of times that ID uses/references given one
|
|
163085
163084
|
|
|
163086
163085
|
:param id: ID to count usages
|
|
163087
|
-
:type id:
|
|
163086
|
+
:type id: typing.Self
|
|
163088
163087
|
:return: Number of usages/references of given id by current data-block
|
|
163089
163088
|
:rtype: int
|
|
163090
163089
|
"""
|
|
@@ -165503,11 +165502,11 @@ class KeyMap(bpy_struct):
|
|
|
165503
165502
|
:type: str
|
|
165504
165503
|
"""
|
|
165505
165504
|
|
|
165506
|
-
def active(self) ->
|
|
165505
|
+
def active(self) -> typing.Self:
|
|
165507
165506
|
"""active
|
|
165508
165507
|
|
|
165509
165508
|
:return: Key Map, Active key map
|
|
165510
|
-
:rtype:
|
|
165509
|
+
:rtype: typing.Self
|
|
165511
165510
|
"""
|
|
165512
165511
|
...
|
|
165513
165512
|
|
|
@@ -165694,11 +165693,11 @@ class KeyMapItem(bpy_struct):
|
|
|
165694
165693
|
:type: str
|
|
165695
165694
|
"""
|
|
165696
165695
|
|
|
165697
|
-
def compare(self, item:
|
|
165696
|
+
def compare(self, item: typing.Self) -> bool:
|
|
165698
165697
|
"""compare
|
|
165699
165698
|
|
|
165700
165699
|
:param item: Item
|
|
165701
|
-
:type item:
|
|
165700
|
+
:type item: typing.Self
|
|
165702
165701
|
:return: Comparison result
|
|
165703
165702
|
:rtype: bool
|
|
165704
165703
|
"""
|
|
@@ -167155,10 +167154,10 @@ class Library(ID, bpy_struct):
|
|
|
167155
167154
|
:type: PackedFile
|
|
167156
167155
|
"""
|
|
167157
167156
|
|
|
167158
|
-
parent:
|
|
167157
|
+
parent: typing.Self
|
|
167159
167158
|
"""
|
|
167160
167159
|
|
|
167161
|
-
:type:
|
|
167160
|
+
:type: typing.Self
|
|
167162
167161
|
"""
|
|
167163
167162
|
|
|
167164
167163
|
version: bpy_prop_array[int]
|
|
@@ -174046,10 +174045,10 @@ class Mesh(ID, bpy_struct):
|
|
|
174046
174045
|
:type: bpy_prop_collection[MeshSkinVertexLayer]
|
|
174047
174046
|
"""
|
|
174048
174047
|
|
|
174049
|
-
texco_mesh:
|
|
174048
|
+
texco_mesh: typing.Self
|
|
174050
174049
|
""" Derive texture coordinates from another mesh
|
|
174051
174050
|
|
|
174052
|
-
:type:
|
|
174051
|
+
:type: typing.Self
|
|
174053
174052
|
"""
|
|
174054
174053
|
|
|
174055
174054
|
texspace_location: mathutils.Vector
|
|
@@ -174064,10 +174063,10 @@ class Mesh(ID, bpy_struct):
|
|
|
174064
174063
|
:type: mathutils.Vector
|
|
174065
174064
|
"""
|
|
174066
174065
|
|
|
174067
|
-
texture_mesh:
|
|
174066
|
+
texture_mesh: typing.Self
|
|
174068
174067
|
""" Use another mesh for texture indices (vertex indices must be aligned)
|
|
174069
174068
|
|
|
174070
|
-
:type:
|
|
174069
|
+
:type: typing.Self
|
|
174071
174070
|
"""
|
|
174072
174071
|
|
|
174073
174072
|
total_edge_sel: int
|
|
@@ -174322,12 +174321,12 @@ class Mesh(ID, bpy_struct):
|
|
|
174322
174321
|
...
|
|
174323
174322
|
|
|
174324
174323
|
def unit_test_compare(
|
|
174325
|
-
self, mesh:
|
|
174324
|
+
self, mesh: typing.Self = None, threshold: float | None = 7.1526e-06
|
|
174326
174325
|
) -> str:
|
|
174327
174326
|
"""unit_test_compare
|
|
174328
174327
|
|
|
174329
174328
|
:param mesh: Mesh to compare to
|
|
174330
|
-
:type mesh:
|
|
174329
|
+
:type mesh: typing.Self
|
|
174331
174330
|
:param threshold: Threshold, Comparison tolerance threshold
|
|
174332
174331
|
:type threshold: float | None
|
|
174333
174332
|
:return: Return value, String description of result of comparison
|
|
@@ -179083,10 +179082,10 @@ class Node(bpy_struct):
|
|
|
179083
179082
|
:type: NodeOutputs
|
|
179084
179083
|
"""
|
|
179085
179084
|
|
|
179086
|
-
parent:
|
|
179085
|
+
parent: typing.Self
|
|
179087
179086
|
""" Parent this node is attached to
|
|
179088
179087
|
|
|
179089
|
-
:type:
|
|
179088
|
+
:type: typing.Self
|
|
179090
179089
|
"""
|
|
179091
179090
|
|
|
179092
179091
|
select: bool
|
|
@@ -179189,11 +179188,11 @@ class Node(bpy_struct):
|
|
|
179189
179188
|
"""
|
|
179190
179189
|
...
|
|
179191
179190
|
|
|
179192
|
-
def copy(self, node:
|
|
179191
|
+
def copy(self, node: typing.Self):
|
|
179193
179192
|
"""Initialize a new instance of this node from an existing node
|
|
179194
179193
|
|
|
179195
179194
|
:param node: Node, Existing node to copy
|
|
179196
|
-
:type node:
|
|
179195
|
+
:type node: typing.Self
|
|
179197
179196
|
"""
|
|
179198
179197
|
...
|
|
179199
179198
|
|
|
@@ -179874,11 +179873,11 @@ class NodeLink(bpy_struct):
|
|
|
179874
179873
|
:type: NodeSocket
|
|
179875
179874
|
"""
|
|
179876
179875
|
|
|
179877
|
-
def swap_multi_input_sort_id(self, other:
|
|
179876
|
+
def swap_multi_input_sort_id(self, other: typing.Self):
|
|
179878
179877
|
"""Swap the order of two links connected to the same multi-input socket
|
|
179879
179878
|
|
|
179880
179879
|
:param other: Other, The other link. Must link to the same multi input socket
|
|
179881
|
-
:type other:
|
|
179880
|
+
:type other: typing.Self
|
|
179882
179881
|
"""
|
|
179883
179882
|
...
|
|
179884
179883
|
|
|
@@ -181657,11 +181656,11 @@ class NodeTree(ID, bpy_struct):
|
|
|
181657
181656
|
"""
|
|
181658
181657
|
...
|
|
181659
181658
|
|
|
181660
|
-
def contains_tree(self, sub_tree:
|
|
181659
|
+
def contains_tree(self, sub_tree: typing.Self) -> bool:
|
|
181661
181660
|
"""Check if the node tree contains another. Used to avoid creating recursive node groups
|
|
181662
181661
|
|
|
181663
181662
|
:param sub_tree: Node Tree, Node tree for recursive check
|
|
181664
|
-
:type sub_tree:
|
|
181663
|
+
:type sub_tree: typing.Self
|
|
181665
181664
|
:return: contained
|
|
181666
181665
|
:rtype: bool
|
|
181667
181666
|
"""
|
|
@@ -185769,10 +185768,10 @@ Warning: Only takes into account object parenting, so e.g. in case of bone paren
|
|
|
185769
185768
|
:type: MotionPath
|
|
185770
185769
|
"""
|
|
185771
185770
|
|
|
185772
|
-
parent:
|
|
185771
|
+
parent: typing.Self
|
|
185773
185772
|
""" Parent object
|
|
185774
185773
|
|
|
185775
|
-
:type:
|
|
185774
|
+
:type: typing.Self
|
|
185776
185775
|
"""
|
|
185777
185776
|
|
|
185778
185777
|
parent_bone: str
|
|
@@ -186394,11 +186393,11 @@ Warning: Only takes into account object parenting, so e.g. in case of bone paren
|
|
|
186394
186393
|
"""Clears curve data-block created by to_curve()"""
|
|
186395
186394
|
...
|
|
186396
186395
|
|
|
186397
|
-
def find_armature(self) ->
|
|
186396
|
+
def find_armature(self) -> typing.Self:
|
|
186398
186397
|
"""Find armature influencing this object as a parent or via a modifier
|
|
186399
186398
|
|
|
186400
186399
|
:return: Armature object influencing this object or nullptr
|
|
186401
|
-
:rtype:
|
|
186400
|
+
:rtype: typing.Self
|
|
186402
186401
|
"""
|
|
186403
186402
|
...
|
|
186404
186403
|
|
|
@@ -186529,7 +186528,7 @@ Warning: Only takes into account object parenting, so e.g. in case of bone paren
|
|
|
186529
186528
|
|
|
186530
186529
|
def generate_gpencil_strokes(
|
|
186531
186530
|
self,
|
|
186532
|
-
grease_pencil_object:
|
|
186531
|
+
grease_pencil_object: typing.Self,
|
|
186533
186532
|
use_collections: bool | None = True,
|
|
186534
186533
|
scale_thickness: float | None = 1.0,
|
|
186535
186534
|
sample: float | None = 0.0,
|
|
@@ -186537,7 +186536,7 @@ Warning: Only takes into account object parenting, so e.g. in case of bone paren
|
|
|
186537
186536
|
"""Convert a curve object to grease pencil strokes.
|
|
186538
186537
|
|
|
186539
186538
|
:param grease_pencil_object: Grease Pencil object used to create new strokes
|
|
186540
|
-
:type grease_pencil_object:
|
|
186539
|
+
:type grease_pencil_object: typing.Self
|
|
186541
186540
|
:param use_collections: Use Collections
|
|
186542
186541
|
:type use_collections: bool | None
|
|
186543
186542
|
:param scale_thickness: Thickness scaling factor
|
|
@@ -191864,16 +191863,16 @@ class PoseBone(bpy_struct):
|
|
|
191864
191863
|
:type: float
|
|
191865
191864
|
"""
|
|
191866
191865
|
|
|
191867
|
-
bbone_custom_handle_end:
|
|
191866
|
+
bbone_custom_handle_end: typing.Self
|
|
191868
191867
|
""" Bone that serves as the end handle for the B-Bone curve
|
|
191869
191868
|
|
|
191870
|
-
:type:
|
|
191869
|
+
:type: typing.Self
|
|
191871
191870
|
"""
|
|
191872
191871
|
|
|
191873
|
-
bbone_custom_handle_start:
|
|
191872
|
+
bbone_custom_handle_start: typing.Self
|
|
191874
191873
|
""" Bone that serves as the start handle for the B-Bone curve
|
|
191875
191874
|
|
|
191876
|
-
:type:
|
|
191875
|
+
:type: typing.Self
|
|
191877
191876
|
"""
|
|
191878
191877
|
|
|
191879
191878
|
bbone_easein: float
|
|
@@ -191918,10 +191917,10 @@ class PoseBone(bpy_struct):
|
|
|
191918
191917
|
:type: Bone
|
|
191919
191918
|
"""
|
|
191920
191919
|
|
|
191921
|
-
child:
|
|
191920
|
+
child: typing.Self
|
|
191922
191921
|
""" Child of this pose bone
|
|
191923
191922
|
|
|
191924
|
-
:type:
|
|
191923
|
+
:type: typing.Self
|
|
191925
191924
|
"""
|
|
191926
191925
|
|
|
191927
191926
|
color: BoneColor
|
|
@@ -191954,10 +191953,10 @@ class PoseBone(bpy_struct):
|
|
|
191954
191953
|
:type: mathutils.Vector
|
|
191955
191954
|
"""
|
|
191956
191955
|
|
|
191957
|
-
custom_shape_transform:
|
|
191956
|
+
custom_shape_transform: typing.Self
|
|
191958
191957
|
""" Bone that defines the display transform of this custom shape
|
|
191959
191958
|
|
|
191960
|
-
:type:
|
|
191959
|
+
:type: typing.Self
|
|
191961
191960
|
"""
|
|
191962
191961
|
|
|
191963
191962
|
custom_shape_translation: mathutils.Vector
|
|
@@ -192146,10 +192145,10 @@ class PoseBone(bpy_struct):
|
|
|
192146
192145
|
:type: str
|
|
192147
192146
|
"""
|
|
192148
192147
|
|
|
192149
|
-
parent:
|
|
192148
|
+
parent: typing.Self
|
|
192150
192149
|
""" Parent of this pose bone
|
|
192151
192150
|
|
|
192152
|
-
:type:
|
|
192151
|
+
:type: typing.Self
|
|
192153
192152
|
"""
|
|
192154
192153
|
|
|
192155
192154
|
rotation_axis_angle: bpy_prop_array[float]
|
|
@@ -198068,10 +198067,10 @@ class Scene(ID, bpy_struct):
|
|
|
198068
198067
|
:type: float
|
|
198069
198068
|
"""
|
|
198070
198069
|
|
|
198071
|
-
background_set:
|
|
198070
|
+
background_set: typing.Self
|
|
198072
198071
|
""" Background set scene
|
|
198073
198072
|
|
|
198074
|
-
:type:
|
|
198073
|
+
:type: typing.Self
|
|
198075
198074
|
"""
|
|
198076
198075
|
|
|
198077
198076
|
camera: Object | None
|
|
@@ -200254,27 +200253,27 @@ class Sequence(bpy_struct):
|
|
|
200254
200253
|
"""
|
|
200255
200254
|
...
|
|
200256
200255
|
|
|
200257
|
-
def swap(self, other:
|
|
200256
|
+
def swap(self, other: typing.Self):
|
|
200258
200257
|
"""swap
|
|
200259
200258
|
|
|
200260
200259
|
:param other: Other
|
|
200261
|
-
:type other:
|
|
200260
|
+
:type other: typing.Self
|
|
200262
200261
|
"""
|
|
200263
200262
|
...
|
|
200264
200263
|
|
|
200265
|
-
def move_to_meta(self, meta_sequence:
|
|
200264
|
+
def move_to_meta(self, meta_sequence: typing.Self):
|
|
200266
200265
|
"""move_to_meta
|
|
200267
200266
|
|
|
200268
200267
|
:param meta_sequence: Destination Meta Sequence, Meta to move the strip into
|
|
200269
|
-
:type meta_sequence:
|
|
200268
|
+
:type meta_sequence: typing.Self
|
|
200270
200269
|
"""
|
|
200271
200270
|
...
|
|
200272
200271
|
|
|
200273
|
-
def parent_meta(self) ->
|
|
200272
|
+
def parent_meta(self) -> typing.Self:
|
|
200274
200273
|
"""Parent meta
|
|
200275
200274
|
|
|
200276
200275
|
:return: Parent Meta
|
|
200277
|
-
:rtype:
|
|
200276
|
+
:rtype: typing.Self
|
|
200278
200277
|
"""
|
|
200279
200278
|
...
|
|
200280
200279
|
|
|
@@ -200286,7 +200285,7 @@ class Sequence(bpy_struct):
|
|
|
200286
200285
|
"""
|
|
200287
200286
|
...
|
|
200288
200287
|
|
|
200289
|
-
def split(self, frame: int | None, split_method: str) ->
|
|
200288
|
+
def split(self, frame: int | None, split_method: str) -> typing.Self:
|
|
200290
200289
|
"""Split Sequence
|
|
200291
200290
|
|
|
200292
200291
|
:param frame: Frame where to split the strip
|
|
@@ -200294,7 +200293,7 @@ class Sequence(bpy_struct):
|
|
|
200294
200293
|
:param split_method:
|
|
200295
200294
|
:type split_method: str
|
|
200296
200295
|
:return: Right side Sequence
|
|
200297
|
-
:rtype:
|
|
200296
|
+
:rtype: typing.Self
|
|
200298
200297
|
"""
|
|
200299
200298
|
...
|
|
200300
200299
|
|
|
@@ -208906,10 +208905,10 @@ class ShapeKey(bpy_struct):
|
|
|
208906
208905
|
:type: bpy_prop_collection[ShapeKeyPoint]
|
|
208907
208906
|
"""
|
|
208908
208907
|
|
|
208909
|
-
relative_key:
|
|
208908
|
+
relative_key: typing.Self
|
|
208910
208909
|
""" Shape used as a relative key
|
|
208911
208910
|
|
|
208912
|
-
:type:
|
|
208911
|
+
:type: typing.Self
|
|
208913
208912
|
"""
|
|
208914
208913
|
|
|
208915
208914
|
slider_max: float
|
|
@@ -213906,10 +213905,10 @@ class SpaceView3D(Space, bpy_struct):
|
|
|
213906
213905
|
:type: float
|
|
213907
213906
|
"""
|
|
213908
213907
|
|
|
213909
|
-
local_view:
|
|
213908
|
+
local_view: typing.Self
|
|
213910
213909
|
""" Display an isolated subset of objects, apart from the scene visibility
|
|
213911
213910
|
|
|
213912
|
-
:type:
|
|
213911
|
+
:type: typing.Self
|
|
213913
213912
|
"""
|
|
213914
213913
|
|
|
213915
213914
|
lock_bone: str
|
|
@@ -215641,10 +215640,10 @@ class StringProperty(Property, bpy_struct):
|
|
|
215641
215640
|
class Struct(bpy_struct):
|
|
215642
215641
|
"""RNA structure definition"""
|
|
215643
215642
|
|
|
215644
|
-
base:
|
|
215643
|
+
base: typing.Self
|
|
215645
215644
|
""" Struct definition this is derived from
|
|
215646
215645
|
|
|
215647
|
-
:type:
|
|
215646
|
+
:type: typing.Self
|
|
215648
215647
|
"""
|
|
215649
215648
|
|
|
215650
215649
|
description: str
|
|
@@ -215677,10 +215676,10 @@ class Struct(bpy_struct):
|
|
|
215677
215676
|
:type: StringProperty
|
|
215678
215677
|
"""
|
|
215679
215678
|
|
|
215680
|
-
nested:
|
|
215679
|
+
nested: typing.Self
|
|
215681
215680
|
""" Struct in which this struct is always nested, and to which it logically belongs
|
|
215682
215681
|
|
|
215683
|
-
:type:
|
|
215682
|
+
:type: typing.Self
|
|
215684
215683
|
"""
|
|
215685
215684
|
|
|
215686
215685
|
properties: bpy_prop_collection[Property]
|
|
@@ -215702,14 +215701,14 @@ class Struct(bpy_struct):
|
|
|
215702
215701
|
"""
|
|
215703
215702
|
|
|
215704
215703
|
@classmethod
|
|
215705
|
-
def bl_rna_get_subclass(cls, id: str | None, default=None) ->
|
|
215704
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> typing.Self:
|
|
215706
215705
|
"""
|
|
215707
215706
|
|
|
215708
215707
|
:param id: The RNA type identifier.
|
|
215709
215708
|
:type id: str | None
|
|
215710
215709
|
:param default:
|
|
215711
215710
|
:return: The RNA type or default when not found.
|
|
215712
|
-
:rtype:
|
|
215711
|
+
:rtype: typing.Self
|
|
215713
215712
|
"""
|
|
215714
215713
|
...
|
|
215715
215714
|
|
|
@@ -222767,12 +222766,6 @@ class ThemeStyle(bpy_struct):
|
|
|
222767
222766
|
:type: ThemeFontStyle
|
|
222768
222767
|
"""
|
|
222769
222768
|
|
|
222770
|
-
widget_label: ThemeFontStyle
|
|
222771
|
-
"""
|
|
222772
|
-
|
|
222773
|
-
:type: ThemeFontStyle
|
|
222774
|
-
"""
|
|
222775
|
-
|
|
222776
222769
|
@classmethod
|
|
222777
222770
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
222778
222771
|
"""
|
|
@@ -226019,7 +226012,7 @@ class UILayout(bpy_struct):
|
|
|
226019
226012
|
heading: str = "",
|
|
226020
226013
|
heading_ctxt: str = "",
|
|
226021
226014
|
translate: bool | None = True,
|
|
226022
|
-
) ->
|
|
226015
|
+
) -> typing.Self:
|
|
226023
226016
|
"""Sub-layout. Items placed in this sublayout are placed next to each other in a row
|
|
226024
226017
|
|
|
226025
226018
|
:param align: Align buttons to each other
|
|
@@ -226031,7 +226024,7 @@ class UILayout(bpy_struct):
|
|
|
226031
226024
|
:param translate: Translate the given heading, when UI translation is enabled
|
|
226032
226025
|
:type translate: bool | None
|
|
226033
226026
|
:return: Sub-layout to put items in
|
|
226034
|
-
:rtype:
|
|
226027
|
+
:rtype: typing.Self
|
|
226035
226028
|
"""
|
|
226036
226029
|
...
|
|
226037
226030
|
|
|
@@ -226041,7 +226034,7 @@ class UILayout(bpy_struct):
|
|
|
226041
226034
|
heading: str = "",
|
|
226042
226035
|
heading_ctxt: str = "",
|
|
226043
226036
|
translate: bool | None = True,
|
|
226044
|
-
) ->
|
|
226037
|
+
) -> typing.Self:
|
|
226045
226038
|
"""Sub-layout. Items placed in this sublayout are placed under each other in a column
|
|
226046
226039
|
|
|
226047
226040
|
:param align: Align buttons to each other
|
|
@@ -226053,7 +226046,7 @@ class UILayout(bpy_struct):
|
|
|
226053
226046
|
:param translate: Translate the given heading, when UI translation is enabled
|
|
226054
226047
|
:type translate: bool | None
|
|
226055
226048
|
:return: Sub-layout to put items in
|
|
226056
|
-
:rtype:
|
|
226049
|
+
:rtype: typing.Self
|
|
226057
226050
|
"""
|
|
226058
226051
|
...
|
|
226059
226052
|
|
|
@@ -226085,7 +226078,7 @@ class UILayout(bpy_struct):
|
|
|
226085
226078
|
|
|
226086
226079
|
def column_flow(
|
|
226087
226080
|
self, columns: int | None = 0, align: bool | None = False
|
|
226088
|
-
) ->
|
|
226081
|
+
) -> typing.Self:
|
|
226089
226082
|
"""column_flow
|
|
226090
226083
|
|
|
226091
226084
|
:param columns: Number of columns, 0 is automatic
|
|
@@ -226093,7 +226086,7 @@ class UILayout(bpy_struct):
|
|
|
226093
226086
|
:param align: Align buttons to each other
|
|
226094
226087
|
:type align: bool | None
|
|
226095
226088
|
:return: Sub-layout to put items in
|
|
226096
|
-
:rtype:
|
|
226089
|
+
:rtype: typing.Self
|
|
226097
226090
|
"""
|
|
226098
226091
|
...
|
|
226099
226092
|
|
|
@@ -226104,7 +226097,7 @@ class UILayout(bpy_struct):
|
|
|
226104
226097
|
even_columns: bool | None = False,
|
|
226105
226098
|
even_rows: bool | None = False,
|
|
226106
226099
|
align: bool | None = False,
|
|
226107
|
-
) ->
|
|
226100
|
+
) -> typing.Self:
|
|
226108
226101
|
"""grid_flow
|
|
226109
226102
|
|
|
226110
226103
|
:param row_major: Fill row by row, instead of column by column
|
|
@@ -226118,19 +226111,21 @@ class UILayout(bpy_struct):
|
|
|
226118
226111
|
:param align: Align buttons to each other
|
|
226119
226112
|
:type align: bool | None
|
|
226120
226113
|
:return: Sub-layout to put items in
|
|
226121
|
-
:rtype:
|
|
226114
|
+
:rtype: typing.Self
|
|
226122
226115
|
"""
|
|
226123
226116
|
...
|
|
226124
226117
|
|
|
226125
|
-
def box(self) ->
|
|
226118
|
+
def box(self) -> typing.Self:
|
|
226126
226119
|
"""Sublayout (items placed in this sublayout are placed under each other in a column and are surrounded by a box)
|
|
226127
226120
|
|
|
226128
226121
|
:return: Sub-layout to put items in
|
|
226129
|
-
:rtype:
|
|
226122
|
+
:rtype: typing.Self
|
|
226130
226123
|
"""
|
|
226131
226124
|
...
|
|
226132
226125
|
|
|
226133
|
-
def split(
|
|
226126
|
+
def split(
|
|
226127
|
+
self, factor: float | None = 0.0, align: bool | None = False
|
|
226128
|
+
) -> typing.Self:
|
|
226134
226129
|
"""split
|
|
226135
226130
|
|
|
226136
226131
|
:param factor: Percentage, Percentage of width to split at (leave unset for automatic calculation)
|
|
@@ -226138,15 +226133,15 @@ class UILayout(bpy_struct):
|
|
|
226138
226133
|
:param align: Align buttons to each other
|
|
226139
226134
|
:type align: bool | None
|
|
226140
226135
|
:return: Sub-layout to put items in
|
|
226141
|
-
:rtype:
|
|
226136
|
+
:rtype: typing.Self
|
|
226142
226137
|
"""
|
|
226143
226138
|
...
|
|
226144
226139
|
|
|
226145
|
-
def menu_pie(self) ->
|
|
226140
|
+
def menu_pie(self) -> typing.Self:
|
|
226146
226141
|
"""Sublayout. Items placed in this sublayout are placed in a radial fashion around the menu center)
|
|
226147
226142
|
|
|
226148
226143
|
:return: Sub-layout to put items in
|
|
226149
|
-
:rtype:
|
|
226144
|
+
:rtype: typing.Self
|
|
226150
226145
|
"""
|
|
226151
226146
|
...
|
|
226152
226147
|
|
|
@@ -227673,12 +227668,12 @@ class UILayout(bpy_struct):
|
|
|
227673
227668
|
...
|
|
227674
227669
|
|
|
227675
227670
|
def template_light_linking_collection(
|
|
227676
|
-
self, context_layout:
|
|
227671
|
+
self, context_layout: typing.Self, data: typing.Any, property: str
|
|
227677
227672
|
):
|
|
227678
227673
|
"""Visualization of a content of a light linking collection
|
|
227679
227674
|
|
|
227680
227675
|
:param context_layout: Layout to set active list element as context properties
|
|
227681
|
-
:type context_layout:
|
|
227676
|
+
:type context_layout: typing.Self
|
|
227682
227677
|
:param data: Data from which to take property
|
|
227683
227678
|
:type data: typing.Any
|
|
227684
227679
|
:param property: Identifier of property in data
|
|
@@ -233150,10 +233145,10 @@ class Window(bpy_struct):
|
|
|
233150
233145
|
:type: bpy_prop_collection[Operator]
|
|
233151
233146
|
"""
|
|
233152
233147
|
|
|
233153
|
-
parent:
|
|
233148
|
+
parent: typing.Self
|
|
233154
233149
|
""" Active workspace and scene follow this window
|
|
233155
233150
|
|
|
233156
|
-
:type:
|
|
233151
|
+
:type: typing.Self
|
|
233157
233152
|
"""
|
|
233158
233153
|
|
|
233159
233154
|
scene: Scene
|