fake-bpy-module 20240530__py3-none-any.whl → 20240531__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
- bl_ui/space_dopesheet/__init__.pyi +2 -2
- bl_ui/space_graph/__init__.pyi +2 -2
- bl_ui/space_nla/__init__.pyi +2 -2
- bl_ui/space_sequencer/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +1 -1
- bpy/ops/anim/__init__.pyi +14 -0
- bpy/ops/export_scene/__init__.pyi +3 -3
- bpy/ops/{bl_pkg → extensions}/__init__.pyi +127 -113
- bpy/ops/node/__init__.pyi +0 -14
- bpy/ops/wm/__init__.pyi +6 -0
- bpy/types/__init__.pyi +201 -171
- {fake_bpy_module-20240530.dist-info → fake_bpy_module-20240531.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240530.dist-info → fake_bpy_module-20240531.dist-info}/RECORD +16 -16
- {fake_bpy_module-20240530.dist-info → fake_bpy_module-20240531.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240530.dist-info → fake_bpy_module-20240531.dist-info}/top_level.txt +0 -0
bpy/types/__init__.pyi
CHANGED
|
@@ -98640,7 +98640,7 @@ class AOV(bpy_struct):
|
|
|
98640
98640
|
"""
|
|
98641
98641
|
...
|
|
98642
98642
|
|
|
98643
|
-
class AOVs(
|
|
98643
|
+
class AOVs(bpy_prop_collection[AOV], bpy_struct):
|
|
98644
98644
|
"""Collection of AOVs"""
|
|
98645
98645
|
|
|
98646
98646
|
def add(self) -> AOV:
|
|
@@ -98728,7 +98728,7 @@ class ActionBinding(bpy_struct):
|
|
|
98728
98728
|
"""
|
|
98729
98729
|
...
|
|
98730
98730
|
|
|
98731
|
-
class ActionBindings(
|
|
98731
|
+
class ActionBindings(bpy_prop_collection[ActionBinding], bpy_struct):
|
|
98732
98732
|
"""Collection of animation bindings"""
|
|
98733
98733
|
|
|
98734
98734
|
def new(self, for_id: ID | None = None) -> ActionBinding:
|
|
@@ -98804,7 +98804,7 @@ class ActionChannelBag(bpy_struct):
|
|
|
98804
98804
|
"""
|
|
98805
98805
|
...
|
|
98806
98806
|
|
|
98807
|
-
class ActionChannelBagFCurves(
|
|
98807
|
+
class ActionChannelBagFCurves(bpy_prop_collection[FCurve], bpy_struct):
|
|
98808
98808
|
"""Collection of F-Curves for a specific animation binding"""
|
|
98809
98809
|
|
|
98810
98810
|
@classmethod
|
|
@@ -98831,7 +98831,7 @@ class ActionChannelBagFCurves(bpy_struct, bpy_prop_collection[FCurve]):
|
|
|
98831
98831
|
"""
|
|
98832
98832
|
...
|
|
98833
98833
|
|
|
98834
|
-
class ActionChannelBags(
|
|
98834
|
+
class ActionChannelBags(bpy_prop_collection[ActionChannelBag], bpy_struct):
|
|
98835
98835
|
"""For each animation binding, a list of animation channels that are meant for that binding"""
|
|
98836
98836
|
|
|
98837
98837
|
@classmethod
|
|
@@ -98858,7 +98858,7 @@ class ActionChannelBags(bpy_struct, bpy_prop_collection[ActionChannelBag]):
|
|
|
98858
98858
|
"""
|
|
98859
98859
|
...
|
|
98860
98860
|
|
|
98861
|
-
class ActionFCurves(
|
|
98861
|
+
class ActionFCurves(bpy_prop_collection[FCurve], bpy_struct):
|
|
98862
98862
|
"""Collection of action F-Curves"""
|
|
98863
98863
|
|
|
98864
98864
|
def new(
|
|
@@ -99021,7 +99021,7 @@ class ActionGroup(bpy_struct):
|
|
|
99021
99021
|
"""
|
|
99022
99022
|
...
|
|
99023
99023
|
|
|
99024
|
-
class ActionGroups(
|
|
99024
|
+
class ActionGroups(bpy_prop_collection[ActionGroup], bpy_struct):
|
|
99025
99025
|
"""Collection of action groups"""
|
|
99026
99026
|
|
|
99027
99027
|
def new(self, name: str | typing.Any) -> ActionGroup:
|
|
@@ -99115,7 +99115,7 @@ class ActionLayer(bpy_struct):
|
|
|
99115
99115
|
"""
|
|
99116
99116
|
...
|
|
99117
99117
|
|
|
99118
|
-
class ActionLayers(
|
|
99118
|
+
class ActionLayers(bpy_prop_collection[ActionLayer], bpy_struct):
|
|
99119
99119
|
"""Collection of animation layers"""
|
|
99120
99120
|
|
|
99121
99121
|
def new(self, name: str | typing.Any) -> ActionLayer:
|
|
@@ -99160,7 +99160,7 @@ class ActionLayers(bpy_struct, bpy_prop_collection[ActionLayer]):
|
|
|
99160
99160
|
"""
|
|
99161
99161
|
...
|
|
99162
99162
|
|
|
99163
|
-
class ActionPoseMarkers(
|
|
99163
|
+
class ActionPoseMarkers(bpy_prop_collection[TimelineMarker], bpy_struct):
|
|
99164
99164
|
"""Collection of timeline markers"""
|
|
99165
99165
|
|
|
99166
99166
|
active: TimelineMarker | None
|
|
@@ -99248,7 +99248,7 @@ class ActionStrip(bpy_struct):
|
|
|
99248
99248
|
"""
|
|
99249
99249
|
...
|
|
99250
99250
|
|
|
99251
|
-
class ActionStrips(
|
|
99251
|
+
class ActionStrips(bpy_prop_collection[ActionStrip], bpy_struct):
|
|
99252
99252
|
"""Collection of animation strips"""
|
|
99253
99253
|
|
|
99254
99254
|
def new(self, type: str | None = "KEYFRAME") -> ActionStrip:
|
|
@@ -99372,7 +99372,7 @@ class AddonPreferences(bpy_struct):
|
|
|
99372
99372
|
"""
|
|
99373
99373
|
...
|
|
99374
99374
|
|
|
99375
|
-
class Addons(
|
|
99375
|
+
class Addons(bpy_prop_collection[Addon], bpy_struct):
|
|
99376
99376
|
"""Collection of add-ons"""
|
|
99377
99377
|
|
|
99378
99378
|
@classmethod
|
|
@@ -99536,7 +99536,7 @@ class AnimData(bpy_struct):
|
|
|
99536
99536
|
"""
|
|
99537
99537
|
...
|
|
99538
99538
|
|
|
99539
|
-
class AnimDataDrivers(
|
|
99539
|
+
class AnimDataDrivers(bpy_prop_collection[FCurve], bpy_struct):
|
|
99540
99540
|
"""Collection of Driver F-Curves"""
|
|
99541
99541
|
|
|
99542
99542
|
def new(self, data_path: str | typing.Any, index: typing.Any | None = 0) -> FCurve:
|
|
@@ -99869,7 +99869,7 @@ class Area(bpy_struct):
|
|
|
99869
99869
|
"""
|
|
99870
99870
|
...
|
|
99871
99871
|
|
|
99872
|
-
class AreaSpaces(
|
|
99872
|
+
class AreaSpaces(bpy_prop_collection[Space], bpy_struct):
|
|
99873
99873
|
"""Collection of spaces"""
|
|
99874
99874
|
|
|
99875
99875
|
active: Space
|
|
@@ -99902,7 +99902,7 @@ class AreaSpaces(bpy_struct, bpy_prop_collection[Space]):
|
|
|
99902
99902
|
"""
|
|
99903
99903
|
...
|
|
99904
99904
|
|
|
99905
|
-
class ArmatureBones(
|
|
99905
|
+
class ArmatureBones(bpy_prop_collection[Bone], bpy_struct):
|
|
99906
99906
|
"""Collection of armature bones"""
|
|
99907
99907
|
|
|
99908
99908
|
active: Bone | None
|
|
@@ -99935,7 +99935,7 @@ class ArmatureBones(bpy_struct, bpy_prop_collection[Bone]):
|
|
|
99935
99935
|
"""
|
|
99936
99936
|
...
|
|
99937
99937
|
|
|
99938
|
-
class ArmatureConstraintTargets(
|
|
99938
|
+
class ArmatureConstraintTargets(bpy_prop_collection[ConstraintTargetBone], bpy_struct):
|
|
99939
99939
|
"""Collection of target bones and weights"""
|
|
99940
99940
|
|
|
99941
99941
|
def new(self) -> ConstraintTargetBone:
|
|
@@ -99982,7 +99982,7 @@ class ArmatureConstraintTargets(bpy_struct, bpy_prop_collection[ConstraintTarget
|
|
|
99982
99982
|
"""
|
|
99983
99983
|
...
|
|
99984
99984
|
|
|
99985
|
-
class ArmatureEditBones(
|
|
99985
|
+
class ArmatureEditBones(bpy_prop_collection[EditBone], bpy_struct):
|
|
99986
99986
|
"""Collection of armature edit bones"""
|
|
99987
99987
|
|
|
99988
99988
|
active: EditBone | None
|
|
@@ -100058,7 +100058,7 @@ class AssetCatalogPath(bpy_struct):
|
|
|
100058
100058
|
"""
|
|
100059
100059
|
...
|
|
100060
100060
|
|
|
100061
|
-
class AssetLibraryCollection(
|
|
100061
|
+
class AssetLibraryCollection(bpy_prop_collection[UserAssetLibrary], bpy_struct):
|
|
100062
100062
|
"""Collection of user asset libraries"""
|
|
100063
100063
|
|
|
100064
100064
|
@classmethod
|
|
@@ -100437,7 +100437,7 @@ class AssetTag(bpy_struct):
|
|
|
100437
100437
|
"""
|
|
100438
100438
|
...
|
|
100439
100439
|
|
|
100440
|
-
class AssetTags(
|
|
100440
|
+
class AssetTags(bpy_prop_collection[AssetTag], bpy_struct):
|
|
100441
100441
|
"""Collection of custom asset tags"""
|
|
100442
100442
|
|
|
100443
100443
|
def new(
|
|
@@ -100588,7 +100588,7 @@ class Attribute(bpy_struct):
|
|
|
100588
100588
|
"""
|
|
100589
100589
|
...
|
|
100590
100590
|
|
|
100591
|
-
class AttributeGroup(
|
|
100591
|
+
class AttributeGroup(bpy_prop_collection[Attribute], bpy_struct):
|
|
100592
100592
|
"""Group of geometry attributes"""
|
|
100593
100593
|
|
|
100594
100594
|
active: Attribute | None
|
|
@@ -101316,7 +101316,7 @@ class BlendData(bpy_struct):
|
|
|
101316
101316
|
"""
|
|
101317
101317
|
...
|
|
101318
101318
|
|
|
101319
|
-
class BlendDataActions(
|
|
101319
|
+
class BlendDataActions(bpy_prop_collection[Action], bpy_struct):
|
|
101320
101320
|
"""Collection of actions"""
|
|
101321
101321
|
|
|
101322
101322
|
def new(self, name: str | typing.Any) -> Action:
|
|
@@ -101381,7 +101381,7 @@ class BlendDataActions(bpy_struct, bpy_prop_collection[Action]):
|
|
|
101381
101381
|
"""
|
|
101382
101382
|
...
|
|
101383
101383
|
|
|
101384
|
-
class BlendDataArmatures(
|
|
101384
|
+
class BlendDataArmatures(bpy_prop_collection[Armature], bpy_struct):
|
|
101385
101385
|
"""Collection of armatures"""
|
|
101386
101386
|
|
|
101387
101387
|
def new(self, name: str | typing.Any) -> Armature:
|
|
@@ -101446,7 +101446,7 @@ class BlendDataArmatures(bpy_struct, bpy_prop_collection[Armature]):
|
|
|
101446
101446
|
"""
|
|
101447
101447
|
...
|
|
101448
101448
|
|
|
101449
|
-
class BlendDataBrushes(
|
|
101449
|
+
class BlendDataBrushes(bpy_prop_collection[Brush], bpy_struct):
|
|
101450
101450
|
"""Collection of brushes"""
|
|
101451
101451
|
|
|
101452
101452
|
def new(self, name: str | typing.Any, mode: str | None = "TEXTURE_PAINT") -> Brush:
|
|
@@ -101521,7 +101521,7 @@ class BlendDataBrushes(bpy_struct, bpy_prop_collection[Brush]):
|
|
|
101521
101521
|
"""
|
|
101522
101522
|
...
|
|
101523
101523
|
|
|
101524
|
-
class BlendDataCacheFiles(
|
|
101524
|
+
class BlendDataCacheFiles(bpy_prop_collection[CacheFile], bpy_struct):
|
|
101525
101525
|
"""Collection of cache files"""
|
|
101526
101526
|
|
|
101527
101527
|
def tag(self, value: bool | None):
|
|
@@ -101556,7 +101556,7 @@ class BlendDataCacheFiles(bpy_struct, bpy_prop_collection[CacheFile]):
|
|
|
101556
101556
|
"""
|
|
101557
101557
|
...
|
|
101558
101558
|
|
|
101559
|
-
class BlendDataCameras(
|
|
101559
|
+
class BlendDataCameras(bpy_prop_collection[Camera], bpy_struct):
|
|
101560
101560
|
"""Collection of cameras"""
|
|
101561
101561
|
|
|
101562
101562
|
def new(self, name: str | typing.Any) -> Camera:
|
|
@@ -101621,7 +101621,7 @@ class BlendDataCameras(bpy_struct, bpy_prop_collection[Camera]):
|
|
|
101621
101621
|
"""
|
|
101622
101622
|
...
|
|
101623
101623
|
|
|
101624
|
-
class BlendDataCollections(
|
|
101624
|
+
class BlendDataCollections(bpy_prop_collection[Collection], bpy_struct):
|
|
101625
101625
|
"""Collection of collections"""
|
|
101626
101626
|
|
|
101627
101627
|
def new(self, name: str | typing.Any) -> Collection:
|
|
@@ -101686,7 +101686,7 @@ class BlendDataCollections(bpy_struct, bpy_prop_collection[Collection]):
|
|
|
101686
101686
|
"""
|
|
101687
101687
|
...
|
|
101688
101688
|
|
|
101689
|
-
class BlendDataCurves(
|
|
101689
|
+
class BlendDataCurves(bpy_prop_collection[Curve], bpy_struct):
|
|
101690
101690
|
"""Collection of curves"""
|
|
101691
101691
|
|
|
101692
101692
|
def new(self, name: str | typing.Any, type: str | None) -> Curve:
|
|
@@ -101753,7 +101753,7 @@ class BlendDataCurves(bpy_struct, bpy_prop_collection[Curve]):
|
|
|
101753
101753
|
"""
|
|
101754
101754
|
...
|
|
101755
101755
|
|
|
101756
|
-
class BlendDataFonts(
|
|
101756
|
+
class BlendDataFonts(bpy_prop_collection[VectorFont], bpy_struct):
|
|
101757
101757
|
"""Collection of fonts"""
|
|
101758
101758
|
|
|
101759
101759
|
def load(
|
|
@@ -101824,7 +101824,7 @@ class BlendDataFonts(bpy_struct, bpy_prop_collection[VectorFont]):
|
|
|
101824
101824
|
"""
|
|
101825
101825
|
...
|
|
101826
101826
|
|
|
101827
|
-
class BlendDataGreasePencils(
|
|
101827
|
+
class BlendDataGreasePencils(bpy_prop_collection[GreasePencil], bpy_struct):
|
|
101828
101828
|
"""Collection of grease pencils"""
|
|
101829
101829
|
|
|
101830
101830
|
def tag(self, value: bool | None):
|
|
@@ -101889,7 +101889,7 @@ class BlendDataGreasePencils(bpy_struct, bpy_prop_collection[GreasePencil]):
|
|
|
101889
101889
|
"""
|
|
101890
101890
|
...
|
|
101891
101891
|
|
|
101892
|
-
class BlendDataGreasePencilsV3(
|
|
101892
|
+
class BlendDataGreasePencilsV3(bpy_prop_collection[GreasePencilv3], bpy_struct):
|
|
101893
101893
|
"""Collection of grease pencils"""
|
|
101894
101894
|
|
|
101895
101895
|
@classmethod
|
|
@@ -101916,7 +101916,7 @@ class BlendDataGreasePencilsV3(bpy_struct, bpy_prop_collection[GreasePencilv3]):
|
|
|
101916
101916
|
"""
|
|
101917
101917
|
...
|
|
101918
101918
|
|
|
101919
|
-
class BlendDataHairCurves(
|
|
101919
|
+
class BlendDataHairCurves(bpy_prop_collection[Curves], bpy_struct):
|
|
101920
101920
|
"""Collection of hair curves"""
|
|
101921
101921
|
|
|
101922
101922
|
def new(self, name: str | typing.Any) -> Curves:
|
|
@@ -101981,7 +101981,7 @@ class BlendDataHairCurves(bpy_struct, bpy_prop_collection[Curves]):
|
|
|
101981
101981
|
"""
|
|
101982
101982
|
...
|
|
101983
101983
|
|
|
101984
|
-
class BlendDataImages(
|
|
101984
|
+
class BlendDataImages(bpy_prop_collection[Image], bpy_struct):
|
|
101985
101985
|
"""Collection of images"""
|
|
101986
101986
|
|
|
101987
101987
|
def new(
|
|
@@ -102086,7 +102086,7 @@ class BlendDataImages(bpy_struct, bpy_prop_collection[Image]):
|
|
|
102086
102086
|
"""
|
|
102087
102087
|
...
|
|
102088
102088
|
|
|
102089
|
-
class BlendDataLattices(
|
|
102089
|
+
class BlendDataLattices(bpy_prop_collection[Lattice], bpy_struct):
|
|
102090
102090
|
"""Collection of lattices"""
|
|
102091
102091
|
|
|
102092
102092
|
def new(self, name: str | typing.Any) -> Lattice:
|
|
@@ -102151,7 +102151,7 @@ class BlendDataLattices(bpy_struct, bpy_prop_collection[Lattice]):
|
|
|
102151
102151
|
"""
|
|
102152
102152
|
...
|
|
102153
102153
|
|
|
102154
|
-
class BlendDataLibraries(
|
|
102154
|
+
class BlendDataLibraries(bpy_prop_collection[Library], bpy_struct):
|
|
102155
102155
|
"""Collection of libraries"""
|
|
102156
102156
|
|
|
102157
102157
|
def tag(self, value: bool | None):
|
|
@@ -102270,7 +102270,7 @@ class BlendDataLibraries(bpy_struct, bpy_prop_collection[Library]):
|
|
|
102270
102270
|
"""
|
|
102271
102271
|
...
|
|
102272
102272
|
|
|
102273
|
-
class BlendDataLights(
|
|
102273
|
+
class BlendDataLights(bpy_prop_collection[Light], bpy_struct):
|
|
102274
102274
|
"""Collection of lights"""
|
|
102275
102275
|
|
|
102276
102276
|
def new(self, name: str | typing.Any, type: str | None) -> Light:
|
|
@@ -102337,7 +102337,7 @@ class BlendDataLights(bpy_struct, bpy_prop_collection[Light]):
|
|
|
102337
102337
|
"""
|
|
102338
102338
|
...
|
|
102339
102339
|
|
|
102340
|
-
class BlendDataLineStyles(
|
|
102340
|
+
class BlendDataLineStyles(bpy_prop_collection[FreestyleLineStyle], bpy_struct):
|
|
102341
102341
|
"""Collection of line styles"""
|
|
102342
102342
|
|
|
102343
102343
|
def tag(self, value: bool | None):
|
|
@@ -102402,7 +102402,7 @@ class BlendDataLineStyles(bpy_struct, bpy_prop_collection[FreestyleLineStyle]):
|
|
|
102402
102402
|
"""
|
|
102403
102403
|
...
|
|
102404
102404
|
|
|
102405
|
-
class BlendDataMasks(
|
|
102405
|
+
class BlendDataMasks(bpy_prop_collection[Mask], bpy_struct):
|
|
102406
102406
|
"""Collection of masks"""
|
|
102407
102407
|
|
|
102408
102408
|
def tag(self, value: bool | None):
|
|
@@ -102467,7 +102467,7 @@ class BlendDataMasks(bpy_struct, bpy_prop_collection[Mask]):
|
|
|
102467
102467
|
"""
|
|
102468
102468
|
...
|
|
102469
102469
|
|
|
102470
|
-
class BlendDataMaterials(
|
|
102470
|
+
class BlendDataMaterials(bpy_prop_collection[Material], bpy_struct):
|
|
102471
102471
|
"""Collection of materials"""
|
|
102472
102472
|
|
|
102473
102473
|
def new(self, name: str | typing.Any) -> Material:
|
|
@@ -102548,7 +102548,7 @@ class BlendDataMaterials(bpy_struct, bpy_prop_collection[Material]):
|
|
|
102548
102548
|
"""
|
|
102549
102549
|
...
|
|
102550
102550
|
|
|
102551
|
-
class BlendDataMeshes(
|
|
102551
|
+
class BlendDataMeshes(bpy_prop_collection[Mesh], bpy_struct):
|
|
102552
102552
|
"""Collection of meshes"""
|
|
102553
102553
|
|
|
102554
102554
|
def new(self, name: str | typing.Any) -> Mesh:
|
|
@@ -102632,7 +102632,7 @@ class BlendDataMeshes(bpy_struct, bpy_prop_collection[Mesh]):
|
|
|
102632
102632
|
"""
|
|
102633
102633
|
...
|
|
102634
102634
|
|
|
102635
|
-
class BlendDataMetaBalls(
|
|
102635
|
+
class BlendDataMetaBalls(bpy_prop_collection[MetaBall], bpy_struct):
|
|
102636
102636
|
"""Collection of metaballs"""
|
|
102637
102637
|
|
|
102638
102638
|
def new(self, name: str | typing.Any) -> MetaBall:
|
|
@@ -102697,7 +102697,7 @@ class BlendDataMetaBalls(bpy_struct, bpy_prop_collection[MetaBall]):
|
|
|
102697
102697
|
"""
|
|
102698
102698
|
...
|
|
102699
102699
|
|
|
102700
|
-
class BlendDataMovieClips(
|
|
102700
|
+
class BlendDataMovieClips(bpy_prop_collection[MovieClip], bpy_struct):
|
|
102701
102701
|
"""Collection of movie clips"""
|
|
102702
102702
|
|
|
102703
102703
|
def tag(self, value: bool | None):
|
|
@@ -102768,7 +102768,7 @@ class BlendDataMovieClips(bpy_struct, bpy_prop_collection[MovieClip]):
|
|
|
102768
102768
|
"""
|
|
102769
102769
|
...
|
|
102770
102770
|
|
|
102771
|
-
class BlendDataNodeTrees(
|
|
102771
|
+
class BlendDataNodeTrees(bpy_prop_collection[NodeTree], bpy_struct):
|
|
102772
102772
|
"""Collection of node trees"""
|
|
102773
102773
|
|
|
102774
102774
|
def new(self, name: str | typing.Any, type: str | None) -> NodeTree:
|
|
@@ -102835,7 +102835,7 @@ class BlendDataNodeTrees(bpy_struct, bpy_prop_collection[NodeTree]):
|
|
|
102835
102835
|
"""
|
|
102836
102836
|
...
|
|
102837
102837
|
|
|
102838
|
-
class BlendDataObjects(
|
|
102838
|
+
class BlendDataObjects(bpy_prop_collection[Object], bpy_struct):
|
|
102839
102839
|
"""Collection of objects"""
|
|
102840
102840
|
|
|
102841
102841
|
def new(self, name: str | typing.Any, object_data: ID | None) -> Object:
|
|
@@ -102902,7 +102902,7 @@ class BlendDataObjects(bpy_struct, bpy_prop_collection[Object]):
|
|
|
102902
102902
|
"""
|
|
102903
102903
|
...
|
|
102904
102904
|
|
|
102905
|
-
class BlendDataPaintCurves(
|
|
102905
|
+
class BlendDataPaintCurves(bpy_prop_collection[PaintCurve], bpy_struct):
|
|
102906
102906
|
"""Collection of paint curves"""
|
|
102907
102907
|
|
|
102908
102908
|
def tag(self, value: bool | None):
|
|
@@ -102937,7 +102937,7 @@ class BlendDataPaintCurves(bpy_struct, bpy_prop_collection[PaintCurve]):
|
|
|
102937
102937
|
"""
|
|
102938
102938
|
...
|
|
102939
102939
|
|
|
102940
|
-
class BlendDataPalettes(
|
|
102940
|
+
class BlendDataPalettes(bpy_prop_collection[Palette], bpy_struct):
|
|
102941
102941
|
"""Collection of palettes"""
|
|
102942
102942
|
|
|
102943
102943
|
def new(self, name: str | typing.Any) -> Palette:
|
|
@@ -103002,7 +103002,7 @@ class BlendDataPalettes(bpy_struct, bpy_prop_collection[Palette]):
|
|
|
103002
103002
|
"""
|
|
103003
103003
|
...
|
|
103004
103004
|
|
|
103005
|
-
class BlendDataParticles(
|
|
103005
|
+
class BlendDataParticles(bpy_prop_collection[ParticleSettings], bpy_struct):
|
|
103006
103006
|
"""Collection of particle settings"""
|
|
103007
103007
|
|
|
103008
103008
|
def new(self, name: str | typing.Any) -> ParticleSettings:
|
|
@@ -103067,7 +103067,7 @@ class BlendDataParticles(bpy_struct, bpy_prop_collection[ParticleSettings]):
|
|
|
103067
103067
|
"""
|
|
103068
103068
|
...
|
|
103069
103069
|
|
|
103070
|
-
class BlendDataPointClouds(
|
|
103070
|
+
class BlendDataPointClouds(bpy_prop_collection[PointCloud], bpy_struct):
|
|
103071
103071
|
"""Collection of point clouds"""
|
|
103072
103072
|
|
|
103073
103073
|
def new(self, name: str | typing.Any) -> PointCloud:
|
|
@@ -103132,7 +103132,7 @@ class BlendDataPointClouds(bpy_struct, bpy_prop_collection[PointCloud]):
|
|
|
103132
103132
|
"""
|
|
103133
103133
|
...
|
|
103134
103134
|
|
|
103135
|
-
class BlendDataProbes(
|
|
103135
|
+
class BlendDataProbes(bpy_prop_collection[LightProbe], bpy_struct):
|
|
103136
103136
|
"""Collection of light probes"""
|
|
103137
103137
|
|
|
103138
103138
|
def new(self, name: str | typing.Any, type: str | None) -> LightProbe:
|
|
@@ -103199,7 +103199,7 @@ class BlendDataProbes(bpy_struct, bpy_prop_collection[LightProbe]):
|
|
|
103199
103199
|
"""
|
|
103200
103200
|
...
|
|
103201
103201
|
|
|
103202
|
-
class BlendDataScenes(
|
|
103202
|
+
class BlendDataScenes(bpy_prop_collection[Scene], bpy_struct):
|
|
103203
103203
|
"""Collection of scenes"""
|
|
103204
103204
|
|
|
103205
103205
|
def new(self, name: str | typing.Any) -> Scene:
|
|
@@ -103254,7 +103254,7 @@ class BlendDataScenes(bpy_struct, bpy_prop_collection[Scene]):
|
|
|
103254
103254
|
"""
|
|
103255
103255
|
...
|
|
103256
103256
|
|
|
103257
|
-
class BlendDataScreens(
|
|
103257
|
+
class BlendDataScreens(bpy_prop_collection[Screen], bpy_struct):
|
|
103258
103258
|
"""Collection of screens"""
|
|
103259
103259
|
|
|
103260
103260
|
def tag(self, value: bool | None):
|
|
@@ -103289,7 +103289,7 @@ class BlendDataScreens(bpy_struct, bpy_prop_collection[Screen]):
|
|
|
103289
103289
|
"""
|
|
103290
103290
|
...
|
|
103291
103291
|
|
|
103292
|
-
class BlendDataSounds(
|
|
103292
|
+
class BlendDataSounds(bpy_prop_collection[Sound], bpy_struct):
|
|
103293
103293
|
"""Collection of sounds"""
|
|
103294
103294
|
|
|
103295
103295
|
def load(
|
|
@@ -103360,7 +103360,7 @@ class BlendDataSounds(bpy_struct, bpy_prop_collection[Sound]):
|
|
|
103360
103360
|
"""
|
|
103361
103361
|
...
|
|
103362
103362
|
|
|
103363
|
-
class BlendDataSpeakers(
|
|
103363
|
+
class BlendDataSpeakers(bpy_prop_collection[Speaker], bpy_struct):
|
|
103364
103364
|
"""Collection of speakers"""
|
|
103365
103365
|
|
|
103366
103366
|
def new(self, name: str | typing.Any) -> Speaker:
|
|
@@ -103425,7 +103425,7 @@ class BlendDataSpeakers(bpy_struct, bpy_prop_collection[Speaker]):
|
|
|
103425
103425
|
"""
|
|
103426
103426
|
...
|
|
103427
103427
|
|
|
103428
|
-
class BlendDataTexts(
|
|
103428
|
+
class BlendDataTexts(bpy_prop_collection[Text], bpy_struct):
|
|
103429
103429
|
"""Collection of texts"""
|
|
103430
103430
|
|
|
103431
103431
|
def new(self, name: str | typing.Any) -> Text:
|
|
@@ -103504,7 +103504,7 @@ class BlendDataTexts(bpy_struct, bpy_prop_collection[Text]):
|
|
|
103504
103504
|
"""
|
|
103505
103505
|
...
|
|
103506
103506
|
|
|
103507
|
-
class BlendDataTextures(
|
|
103507
|
+
class BlendDataTextures(bpy_prop_collection[Texture], bpy_struct):
|
|
103508
103508
|
"""Collection of textures"""
|
|
103509
103509
|
|
|
103510
103510
|
def new(self, name: str | typing.Any, type: str | None) -> Texture:
|
|
@@ -103571,7 +103571,7 @@ class BlendDataTextures(bpy_struct, bpy_prop_collection[Texture]):
|
|
|
103571
103571
|
"""
|
|
103572
103572
|
...
|
|
103573
103573
|
|
|
103574
|
-
class BlendDataVolumes(
|
|
103574
|
+
class BlendDataVolumes(bpy_prop_collection[Volume], bpy_struct):
|
|
103575
103575
|
"""Collection of volumes"""
|
|
103576
103576
|
|
|
103577
103577
|
def new(self, name: str | typing.Any) -> Volume:
|
|
@@ -103636,7 +103636,7 @@ class BlendDataVolumes(bpy_struct, bpy_prop_collection[Volume]):
|
|
|
103636
103636
|
"""
|
|
103637
103637
|
...
|
|
103638
103638
|
|
|
103639
|
-
class BlendDataWindowManagers(
|
|
103639
|
+
class BlendDataWindowManagers(bpy_prop_collection[WindowManager], bpy_struct):
|
|
103640
103640
|
"""Collection of window managers"""
|
|
103641
103641
|
|
|
103642
103642
|
def tag(self, value: bool | None):
|
|
@@ -103671,7 +103671,7 @@ class BlendDataWindowManagers(bpy_struct, bpy_prop_collection[WindowManager]):
|
|
|
103671
103671
|
"""
|
|
103672
103672
|
...
|
|
103673
103673
|
|
|
103674
|
-
class BlendDataWorkSpaces(
|
|
103674
|
+
class BlendDataWorkSpaces(bpy_prop_collection[WorkSpace], bpy_struct):
|
|
103675
103675
|
"""Collection of workspaces"""
|
|
103676
103676
|
|
|
103677
103677
|
def tag(self, value: bool | None):
|
|
@@ -103706,7 +103706,7 @@ class BlendDataWorkSpaces(bpy_struct, bpy_prop_collection[WorkSpace]):
|
|
|
103706
103706
|
"""
|
|
103707
103707
|
...
|
|
103708
103708
|
|
|
103709
|
-
class BlendDataWorlds(
|
|
103709
|
+
class BlendDataWorlds(bpy_prop_collection[World], bpy_struct):
|
|
103710
103710
|
"""Collection of worlds"""
|
|
103711
103711
|
|
|
103712
103712
|
def new(self, name: str | typing.Any) -> World:
|
|
@@ -104758,7 +104758,7 @@ class BoneCollection(bpy_struct):
|
|
|
104758
104758
|
"""
|
|
104759
104759
|
...
|
|
104760
104760
|
|
|
104761
|
-
class BoneCollectionMemberships(
|
|
104761
|
+
class BoneCollectionMemberships(bpy_prop_collection[BoneCollection], bpy_struct):
|
|
104762
104762
|
"""The Bone Collections that contain this Bone"""
|
|
104763
104763
|
|
|
104764
104764
|
def clear(self):
|
|
@@ -106028,7 +106028,7 @@ class CacheFileLayer(bpy_struct):
|
|
|
106028
106028
|
"""
|
|
106029
106029
|
...
|
|
106030
106030
|
|
|
106031
|
-
class CacheFileLayers(
|
|
106031
|
+
class CacheFileLayers(bpy_prop_collection[CacheFileLayer], bpy_struct):
|
|
106032
106032
|
"""Collection of cache layers"""
|
|
106033
106033
|
|
|
106034
106034
|
active: CacheFileLayer | None
|
|
@@ -106112,7 +106112,7 @@ class CacheObjectPath(bpy_struct):
|
|
|
106112
106112
|
"""
|
|
106113
106113
|
...
|
|
106114
106114
|
|
|
106115
|
-
class CacheObjectPaths(
|
|
106115
|
+
class CacheObjectPaths(bpy_prop_collection[CacheObjectPath], bpy_struct):
|
|
106116
106116
|
"""Collection of object paths"""
|
|
106117
106117
|
|
|
106118
106118
|
@classmethod
|
|
@@ -106274,7 +106274,7 @@ class CameraBackgroundImage(bpy_struct):
|
|
|
106274
106274
|
"""
|
|
106275
106275
|
...
|
|
106276
106276
|
|
|
106277
|
-
class CameraBackgroundImages(
|
|
106277
|
+
class CameraBackgroundImages(bpy_prop_collection[CameraBackgroundImage], bpy_struct):
|
|
106278
106278
|
"""Collection of background images"""
|
|
106279
106279
|
|
|
106280
106280
|
def new(self) -> CameraBackgroundImage:
|
|
@@ -106471,7 +106471,7 @@ class CameraStereoData(bpy_struct):
|
|
|
106471
106471
|
"""
|
|
106472
106472
|
...
|
|
106473
106473
|
|
|
106474
|
-
class ChannelDriverVariables(
|
|
106474
|
+
class ChannelDriverVariables(bpy_prop_collection[DriverVariable], bpy_struct):
|
|
106475
106475
|
"""Collection of channel driver Variables"""
|
|
106476
106476
|
|
|
106477
106477
|
def new(self) -> DriverVariable:
|
|
@@ -107117,7 +107117,7 @@ class CollectionChild(bpy_struct):
|
|
|
107117
107117
|
"""
|
|
107118
107118
|
...
|
|
107119
107119
|
|
|
107120
|
-
class CollectionChildren(
|
|
107120
|
+
class CollectionChildren(bpy_prop_collection[Collection], bpy_struct):
|
|
107121
107121
|
"""Collection of child collections"""
|
|
107122
107122
|
|
|
107123
107123
|
def link(self, child: Collection):
|
|
@@ -107269,7 +107269,7 @@ class CollectionObject(bpy_struct):
|
|
|
107269
107269
|
"""
|
|
107270
107270
|
...
|
|
107271
107271
|
|
|
107272
|
-
class CollectionObjects(
|
|
107272
|
+
class CollectionObjects(bpy_prop_collection[Object], bpy_struct):
|
|
107273
107273
|
"""Collection of collection objects"""
|
|
107274
107274
|
|
|
107275
107275
|
def link(self, object: Object):
|
|
@@ -107784,7 +107784,7 @@ class ColorRampElement(bpy_struct):
|
|
|
107784
107784
|
"""
|
|
107785
107785
|
...
|
|
107786
107786
|
|
|
107787
|
-
class ColorRampElements(
|
|
107787
|
+
class ColorRampElements(bpy_prop_collection[ColorRampElement], bpy_struct):
|
|
107788
107788
|
"""Collection of Color Ramp Elements"""
|
|
107789
107789
|
|
|
107790
107790
|
def new(self, position: float | None) -> ColorRampElement:
|
|
@@ -107830,7 +107830,7 @@ class ColorRampElements(bpy_struct, bpy_prop_collection[ColorRampElement]):
|
|
|
107830
107830
|
...
|
|
107831
107831
|
|
|
107832
107832
|
class CompositorNodeOutputFileFileSlots(
|
|
107833
|
-
|
|
107833
|
+
bpy_prop_collection[NodeOutputFileSlotFile], bpy_struct
|
|
107834
107834
|
):
|
|
107835
107835
|
"""Collection of File Output node slots"""
|
|
107836
107836
|
|
|
@@ -107891,7 +107891,7 @@ class CompositorNodeOutputFileFileSlots(
|
|
|
107891
107891
|
...
|
|
107892
107892
|
|
|
107893
107893
|
class CompositorNodeOutputFileLayerSlots(
|
|
107894
|
-
|
|
107894
|
+
bpy_prop_collection[NodeOutputFileSlotLayer], bpy_struct
|
|
107895
107895
|
):
|
|
107896
107896
|
"""Collection of File Output node slots"""
|
|
107897
107897
|
|
|
@@ -109122,7 +109122,7 @@ class CurveMapPoint(bpy_struct):
|
|
|
109122
109122
|
"""
|
|
109123
109123
|
...
|
|
109124
109124
|
|
|
109125
|
-
class CurveMapPoints(
|
|
109125
|
+
class CurveMapPoints(bpy_prop_collection[CurveMapPoint], bpy_struct):
|
|
109126
109126
|
"""Collection of Curve Map Points"""
|
|
109127
109127
|
|
|
109128
109128
|
def new(self, position: float | None, value: float | None) -> CurveMapPoint:
|
|
@@ -109588,7 +109588,7 @@ class CurveProfilePoint(bpy_struct):
|
|
|
109588
109588
|
"""
|
|
109589
109589
|
...
|
|
109590
109590
|
|
|
109591
|
-
class CurveProfilePoints(
|
|
109591
|
+
class CurveProfilePoints(bpy_prop_collection[CurveProfilePoint], bpy_struct):
|
|
109592
109592
|
"""Collection of Profile Points"""
|
|
109593
109593
|
|
|
109594
109594
|
def add(self, x: float | None, y: float | None) -> CurveProfilePoint:
|
|
@@ -109686,7 +109686,7 @@ class CurveSlice(bpy_struct):
|
|
|
109686
109686
|
"""
|
|
109687
109687
|
...
|
|
109688
109688
|
|
|
109689
|
-
class CurveSplines(
|
|
109689
|
+
class CurveSplines(bpy_prop_collection[Spline], bpy_struct):
|
|
109690
109690
|
"""Collection of curve splines"""
|
|
109691
109691
|
|
|
109692
109692
|
active: Spline | None
|
|
@@ -111205,7 +111205,7 @@ class DynamicPaintSurface(bpy_struct):
|
|
|
111205
111205
|
"""
|
|
111206
111206
|
...
|
|
111207
111207
|
|
|
111208
|
-
class DynamicPaintSurfaces(
|
|
111208
|
+
class DynamicPaintSurfaces(bpy_prop_collection[DynamicPaintSurface], bpy_struct):
|
|
111209
111209
|
"""Collection of Dynamic Paint Canvas surfaces"""
|
|
111210
111210
|
|
|
111211
111211
|
active: DynamicPaintSurface
|
|
@@ -112288,7 +112288,7 @@ class FCurve(bpy_struct):
|
|
|
112288
112288
|
"""
|
|
112289
112289
|
...
|
|
112290
112290
|
|
|
112291
|
-
class FCurveKeyframePoints(
|
|
112291
|
+
class FCurveKeyframePoints(bpy_prop_collection[Keyframe], bpy_struct):
|
|
112292
112292
|
"""Collection of keyframe points"""
|
|
112293
112293
|
|
|
112294
112294
|
def insert(
|
|
@@ -112380,7 +112380,7 @@ class FCurveKeyframePoints(bpy_struct, bpy_prop_collection[Keyframe]):
|
|
|
112380
112380
|
"""
|
|
112381
112381
|
...
|
|
112382
112382
|
|
|
112383
|
-
class FCurveModifiers(
|
|
112383
|
+
class FCurveModifiers(bpy_prop_collection[FModifier], bpy_struct):
|
|
112384
112384
|
"""Collection of F-Curve Modifiers"""
|
|
112385
112385
|
|
|
112386
112386
|
active: FModifier | None
|
|
@@ -112768,7 +112768,7 @@ class FModifierEnvelopeControlPoint(bpy_struct):
|
|
|
112768
112768
|
...
|
|
112769
112769
|
|
|
112770
112770
|
class FModifierEnvelopeControlPoints(
|
|
112771
|
-
|
|
112771
|
+
bpy_prop_collection[FModifierEnvelopeControlPoint], bpy_struct
|
|
112772
112772
|
):
|
|
112773
112773
|
"""Control points defining the shape of the envelope"""
|
|
112774
112774
|
|
|
@@ -115769,7 +115769,7 @@ class FreestyleModuleSettings(bpy_struct):
|
|
|
115769
115769
|
"""
|
|
115770
115770
|
...
|
|
115771
115771
|
|
|
115772
|
-
class FreestyleModules(
|
|
115772
|
+
class FreestyleModules(bpy_prop_collection[FreestyleModuleSettings], bpy_struct):
|
|
115773
115773
|
"""A list of style modules (to be applied from top to bottom)"""
|
|
115774
115774
|
|
|
115775
115775
|
def new(self) -> FreestyleModuleSettings:
|
|
@@ -116191,7 +116191,7 @@ class GPencilFrame(bpy_struct):
|
|
|
116191
116191
|
"""
|
|
116192
116192
|
...
|
|
116193
116193
|
|
|
116194
|
-
class GPencilFrames(
|
|
116194
|
+
class GPencilFrames(bpy_prop_collection[GPencilFrame], bpy_struct):
|
|
116195
116195
|
"""Collection of grease pencil frames"""
|
|
116196
116196
|
|
|
116197
116197
|
def new(
|
|
@@ -117074,7 +117074,7 @@ class GPencilStrokePoint(bpy_struct):
|
|
|
117074
117074
|
"""
|
|
117075
117075
|
...
|
|
117076
117076
|
|
|
117077
|
-
class GPencilStrokePoints(
|
|
117077
|
+
class GPencilStrokePoints(bpy_prop_collection[GPencilStrokePoint], bpy_struct):
|
|
117078
117078
|
"""Collection of grease pencil stroke points"""
|
|
117079
117079
|
|
|
117080
117080
|
def add(
|
|
@@ -117163,7 +117163,7 @@ class GPencilStrokePoints(bpy_struct, bpy_prop_collection[GPencilStrokePoint]):
|
|
|
117163
117163
|
"""
|
|
117164
117164
|
...
|
|
117165
117165
|
|
|
117166
|
-
class GPencilStrokes(
|
|
117166
|
+
class GPencilStrokes(bpy_prop_collection[GPencilStroke], bpy_struct):
|
|
117167
117167
|
"""Collection of grease pencil stroke"""
|
|
117168
117168
|
|
|
117169
117169
|
def new(self) -> GPencilStroke:
|
|
@@ -117926,7 +117926,7 @@ class GizmoProperties(bpy_struct):
|
|
|
117926
117926
|
"""
|
|
117927
117927
|
...
|
|
117928
117928
|
|
|
117929
|
-
class Gizmos(
|
|
117929
|
+
class Gizmos(bpy_prop_collection[Gizmo], bpy_struct):
|
|
117930
117930
|
"""Collection of gizmos"""
|
|
117931
117931
|
|
|
117932
117932
|
def new(self, type: str | typing.Any) -> Gizmo:
|
|
@@ -118474,7 +118474,7 @@ class GreasePencilLayerMask(bpy_struct):
|
|
|
118474
118474
|
"""
|
|
118475
118475
|
...
|
|
118476
118476
|
|
|
118477
|
-
class GreasePencilLayerMasks(
|
|
118477
|
+
class GreasePencilLayerMasks(bpy_prop_collection[GreasePencilLayerMask], bpy_struct):
|
|
118478
118478
|
"""Collection of grease pencil masking layers"""
|
|
118479
118479
|
|
|
118480
118480
|
active_mask_index: int | None
|
|
@@ -118507,7 +118507,7 @@ class GreasePencilLayerMasks(bpy_struct, bpy_prop_collection[GreasePencilLayerMa
|
|
|
118507
118507
|
"""
|
|
118508
118508
|
...
|
|
118509
118509
|
|
|
118510
|
-
class GreasePencilLayers(
|
|
118510
|
+
class GreasePencilLayers(bpy_prop_collection[GPencilLayer], bpy_struct):
|
|
118511
118511
|
"""Collection of grease pencil layers"""
|
|
118512
118512
|
|
|
118513
118513
|
active: GPencilLayer | None
|
|
@@ -118584,7 +118584,7 @@ class GreasePencilLayers(bpy_struct, bpy_prop_collection[GPencilLayer]):
|
|
|
118584
118584
|
"""
|
|
118585
118585
|
...
|
|
118586
118586
|
|
|
118587
|
-
class GreasePencilMaskLayers(
|
|
118587
|
+
class GreasePencilMaskLayers(bpy_prop_collection[GPencilLayerMask], bpy_struct):
|
|
118588
118588
|
"""Collection of grease pencil masking layers"""
|
|
118589
118589
|
|
|
118590
118590
|
active_mask_index: int | None
|
|
@@ -118690,7 +118690,7 @@ class GreasePencilTimeModifierSegment(bpy_struct):
|
|
|
118690
118690
|
"""
|
|
118691
118691
|
...
|
|
118692
118692
|
|
|
118693
|
-
class GreasePencilv3LayerGroup(
|
|
118693
|
+
class GreasePencilv3LayerGroup(bpy_prop_collection[GreasePencilLayerGroup], bpy_struct):
|
|
118694
118694
|
"""Collection of Grease Pencil layers"""
|
|
118695
118695
|
|
|
118696
118696
|
active_group: GreasePencilLayerGroup | None
|
|
@@ -118791,7 +118791,7 @@ class GreasePencilv3LayerGroup(bpy_struct, bpy_prop_collection[GreasePencilLayer
|
|
|
118791
118791
|
"""
|
|
118792
118792
|
...
|
|
118793
118793
|
|
|
118794
|
-
class GreasePencilv3Layers(
|
|
118794
|
+
class GreasePencilv3Layers(bpy_prop_collection[GreasePencilLayer], bpy_struct):
|
|
118795
118795
|
"""Collection of Grease Pencil layers"""
|
|
118796
118796
|
|
|
118797
118797
|
active_layer: GreasePencilLayer | None
|
|
@@ -119270,7 +119270,7 @@ class ID(bpy_struct):
|
|
|
119270
119270
|
"""
|
|
119271
119271
|
...
|
|
119272
119272
|
|
|
119273
|
-
class IDMaterials(
|
|
119273
|
+
class IDMaterials(bpy_prop_collection[Material], bpy_struct):
|
|
119274
119274
|
"""Collection of materials"""
|
|
119275
119275
|
|
|
119276
119276
|
def append(self, material: Material | None):
|
|
@@ -119428,7 +119428,7 @@ class IDOverrideLibrary(bpy_struct):
|
|
|
119428
119428
|
...
|
|
119429
119429
|
|
|
119430
119430
|
class IDOverrideLibraryProperties(
|
|
119431
|
-
|
|
119431
|
+
bpy_prop_collection[IDOverrideLibraryProperty], bpy_struct
|
|
119432
119432
|
):
|
|
119433
119433
|
"""Collection of override properties"""
|
|
119434
119434
|
|
|
@@ -119589,7 +119589,7 @@ class IDOverrideLibraryPropertyOperation(bpy_struct):
|
|
|
119589
119589
|
...
|
|
119590
119590
|
|
|
119591
119591
|
class IDOverrideLibraryPropertyOperations(
|
|
119592
|
-
|
|
119592
|
+
bpy_prop_collection[IDOverrideLibraryPropertyOperation], bpy_struct
|
|
119593
119593
|
):
|
|
119594
119594
|
"""Collection of override operations"""
|
|
119595
119595
|
|
|
@@ -120307,7 +120307,7 @@ class KeyConfigPreferences(bpy_struct):
|
|
|
120307
120307
|
"""
|
|
120308
120308
|
...
|
|
120309
120309
|
|
|
120310
|
-
class KeyConfigurations(
|
|
120310
|
+
class KeyConfigurations(bpy_prop_collection[KeyConfig], bpy_struct):
|
|
120311
120311
|
"""Collection of KeyConfigs"""
|
|
120312
120312
|
|
|
120313
120313
|
active: KeyConfig | None
|
|
@@ -120708,7 +120708,7 @@ class KeyMapItem(bpy_struct):
|
|
|
120708
120708
|
"""
|
|
120709
120709
|
...
|
|
120710
120710
|
|
|
120711
|
-
class KeyMapItems(
|
|
120711
|
+
class KeyMapItems(bpy_prop_collection[KeyMapItem], bpy_struct):
|
|
120712
120712
|
"""Collection of keymap items"""
|
|
120713
120713
|
|
|
120714
120714
|
def new(
|
|
@@ -120888,7 +120888,7 @@ class KeyMapItems(bpy_struct, bpy_prop_collection[KeyMapItem]):
|
|
|
120888
120888
|
"""
|
|
120889
120889
|
...
|
|
120890
120890
|
|
|
120891
|
-
class KeyMaps(
|
|
120891
|
+
class KeyMaps(bpy_prop_collection[KeyMap], bpy_struct):
|
|
120892
120892
|
"""Collection of keymaps"""
|
|
120893
120893
|
|
|
120894
120894
|
def new(
|
|
@@ -121362,7 +121362,7 @@ class KeyingSetPath(bpy_struct):
|
|
|
121362
121362
|
"""
|
|
121363
121363
|
...
|
|
121364
121364
|
|
|
121365
|
-
class KeyingSetPaths(
|
|
121365
|
+
class KeyingSetPaths(bpy_prop_collection[KeyingSetPath], bpy_struct):
|
|
121366
121366
|
"""Collection of keying set paths"""
|
|
121367
121367
|
|
|
121368
121368
|
active: KeyingSetPath | None
|
|
@@ -121438,7 +121438,7 @@ class KeyingSetPaths(bpy_struct, bpy_prop_collection[KeyingSetPath]):
|
|
|
121438
121438
|
"""
|
|
121439
121439
|
...
|
|
121440
121440
|
|
|
121441
|
-
class KeyingSets(
|
|
121441
|
+
class KeyingSets(bpy_prop_collection[KeyingSet], bpy_struct):
|
|
121442
121442
|
"""Scene keying sets"""
|
|
121443
121443
|
|
|
121444
121444
|
active: KeyingSet | None
|
|
@@ -121493,7 +121493,7 @@ class KeyingSets(bpy_struct, bpy_prop_collection[KeyingSet]):
|
|
|
121493
121493
|
"""
|
|
121494
121494
|
...
|
|
121495
121495
|
|
|
121496
|
-
class KeyingSetsAll(
|
|
121496
|
+
class KeyingSetsAll(bpy_prop_collection[KeyingSet], bpy_struct):
|
|
121497
121497
|
"""All available keying sets"""
|
|
121498
121498
|
|
|
121499
121499
|
active: KeyingSet | None
|
|
@@ -121690,7 +121690,7 @@ class LayerCollection(bpy_struct):
|
|
|
121690
121690
|
"""
|
|
121691
121691
|
...
|
|
121692
121692
|
|
|
121693
|
-
class LayerObjects(
|
|
121693
|
+
class LayerObjects(bpy_prop_collection[Object], bpy_struct):
|
|
121694
121694
|
"""Collections of objects"""
|
|
121695
121695
|
|
|
121696
121696
|
active: Object | None
|
|
@@ -121830,7 +121830,7 @@ class Lightgroup(bpy_struct):
|
|
|
121830
121830
|
"""
|
|
121831
121831
|
...
|
|
121832
121832
|
|
|
121833
|
-
class Lightgroups(
|
|
121833
|
+
class Lightgroups(bpy_prop_collection[Lightgroup], bpy_struct):
|
|
121834
121834
|
"""Collection of Lightgroups"""
|
|
121835
121835
|
|
|
121836
121836
|
def add(self, name: str | typing.Any = "") -> Lightgroup:
|
|
@@ -121867,7 +121867,7 @@ class Lightgroups(bpy_struct, bpy_prop_collection[Lightgroup]):
|
|
|
121867
121867
|
"""
|
|
121868
121868
|
...
|
|
121869
121869
|
|
|
121870
|
-
class LineStyleAlphaModifiers(
|
|
121870
|
+
class LineStyleAlphaModifiers(bpy_prop_collection[LineStyleAlphaModifier], bpy_struct):
|
|
121871
121871
|
"""Alpha modifiers for changing line alphas"""
|
|
121872
121872
|
|
|
121873
121873
|
def new(self, name: str | typing.Any, type: str | None) -> LineStyleAlphaModifier:
|
|
@@ -121914,7 +121914,7 @@ class LineStyleAlphaModifiers(bpy_struct, bpy_prop_collection[LineStyleAlphaModi
|
|
|
121914
121914
|
"""
|
|
121915
121915
|
...
|
|
121916
121916
|
|
|
121917
|
-
class LineStyleColorModifiers(
|
|
121917
|
+
class LineStyleColorModifiers(bpy_prop_collection[LineStyleColorModifier], bpy_struct):
|
|
121918
121918
|
"""Color modifiers for changing line colors"""
|
|
121919
121919
|
|
|
121920
121920
|
def new(self, name: str | typing.Any, type: str | None) -> LineStyleColorModifier:
|
|
@@ -121962,7 +121962,7 @@ class LineStyleColorModifiers(bpy_struct, bpy_prop_collection[LineStyleColorModi
|
|
|
121962
121962
|
...
|
|
121963
121963
|
|
|
121964
121964
|
class LineStyleGeometryModifiers(
|
|
121965
|
-
|
|
121965
|
+
bpy_prop_collection[LineStyleGeometryModifier], bpy_struct
|
|
121966
121966
|
):
|
|
121967
121967
|
"""Geometry modifiers for changing line geometries"""
|
|
121968
121968
|
|
|
@@ -122039,7 +122039,7 @@ class LineStyleModifier(bpy_struct):
|
|
|
122039
122039
|
"""
|
|
122040
122040
|
...
|
|
122041
122041
|
|
|
122042
|
-
class LineStyleTextureSlots(
|
|
122042
|
+
class LineStyleTextureSlots(bpy_prop_collection[LineStyleTextureSlot], bpy_struct):
|
|
122043
122043
|
"""Collection of texture slots"""
|
|
122044
122044
|
|
|
122045
122045
|
@classmethod
|
|
@@ -122096,7 +122096,7 @@ class LineStyleTextureSlots(bpy_struct, bpy_prop_collection[LineStyleTextureSlot
|
|
|
122096
122096
|
...
|
|
122097
122097
|
|
|
122098
122098
|
class LineStyleThicknessModifiers(
|
|
122099
|
-
|
|
122099
|
+
bpy_prop_collection[LineStyleThicknessModifier], bpy_struct
|
|
122100
122100
|
):
|
|
122101
122101
|
"""Thickness modifiers for changing line thickness"""
|
|
122102
122102
|
|
|
@@ -122146,7 +122146,7 @@ class LineStyleThicknessModifiers(
|
|
|
122146
122146
|
"""
|
|
122147
122147
|
...
|
|
122148
122148
|
|
|
122149
|
-
class Linesets(
|
|
122149
|
+
class Linesets(bpy_prop_collection[FreestyleLineSet], bpy_struct):
|
|
122150
122150
|
"""Line sets for associating lines and style parameters"""
|
|
122151
122151
|
|
|
122152
122152
|
active: FreestyleLineSet
|
|
@@ -122203,7 +122203,7 @@ class Linesets(bpy_struct, bpy_prop_collection[FreestyleLineSet]):
|
|
|
122203
122203
|
"""
|
|
122204
122204
|
...
|
|
122205
122205
|
|
|
122206
|
-
class LoopColors(
|
|
122206
|
+
class LoopColors(bpy_prop_collection[MeshLoopColorLayer], bpy_struct):
|
|
122207
122207
|
"""Collection of vertex colors"""
|
|
122208
122208
|
|
|
122209
122209
|
active: MeshLoopColorLayer | None
|
|
@@ -122475,7 +122475,7 @@ class MaskLayer(bpy_struct):
|
|
|
122475
122475
|
"""
|
|
122476
122476
|
...
|
|
122477
122477
|
|
|
122478
|
-
class MaskLayers(
|
|
122478
|
+
class MaskLayers(bpy_prop_collection[MaskLayer], bpy_struct):
|
|
122479
122479
|
"""Collection of layers used by mask"""
|
|
122480
122480
|
|
|
122481
122481
|
active: MaskLayer | None
|
|
@@ -122782,7 +122782,7 @@ class MaskSplinePointUW(bpy_struct):
|
|
|
122782
122782
|
"""
|
|
122783
122783
|
...
|
|
122784
122784
|
|
|
122785
|
-
class MaskSplinePoints(
|
|
122785
|
+
class MaskSplinePoints(bpy_prop_collection[MaskSplinePoint], bpy_struct):
|
|
122786
122786
|
"""Collection of masking spline points"""
|
|
122787
122787
|
|
|
122788
122788
|
def add(self, count: int | None):
|
|
@@ -122825,7 +122825,7 @@ class MaskSplinePoints(bpy_struct, bpy_prop_collection[MaskSplinePoint]):
|
|
|
122825
122825
|
"""
|
|
122826
122826
|
...
|
|
122827
122827
|
|
|
122828
|
-
class MaskSplines(
|
|
122828
|
+
class MaskSplines(bpy_prop_collection[MaskSpline], bpy_struct):
|
|
122829
122829
|
"""Collection of masking splines"""
|
|
122830
122830
|
|
|
122831
122831
|
active: MaskSpline | None
|
|
@@ -123428,7 +123428,7 @@ class MeshEdge(bpy_struct):
|
|
|
123428
123428
|
"""
|
|
123429
123429
|
...
|
|
123430
123430
|
|
|
123431
|
-
class MeshEdges(
|
|
123431
|
+
class MeshEdges(bpy_prop_collection[MeshEdge], bpy_struct):
|
|
123432
123432
|
"""Collection of mesh edges"""
|
|
123433
123433
|
|
|
123434
123434
|
def add(self, count: int | None):
|
|
@@ -123707,7 +123707,7 @@ class MeshLoopTriangle(bpy_struct):
|
|
|
123707
123707
|
"""
|
|
123708
123708
|
...
|
|
123709
123709
|
|
|
123710
|
-
class MeshLoopTriangles(
|
|
123710
|
+
class MeshLoopTriangles(bpy_prop_collection[MeshLoopTriangle], bpy_struct):
|
|
123711
123711
|
"""Tessellation of mesh polygons into triangles"""
|
|
123712
123712
|
|
|
123713
123713
|
@classmethod
|
|
@@ -123734,7 +123734,7 @@ class MeshLoopTriangles(bpy_struct, bpy_prop_collection[MeshLoopTriangle]):
|
|
|
123734
123734
|
"""
|
|
123735
123735
|
...
|
|
123736
123736
|
|
|
123737
|
-
class MeshLoops(
|
|
123737
|
+
class MeshLoops(bpy_prop_collection[MeshLoop], bpy_struct):
|
|
123738
123738
|
"""Collection of mesh loops"""
|
|
123739
123739
|
|
|
123740
123740
|
def add(self, count: int | None):
|
|
@@ -123911,7 +123911,7 @@ class MeshPolygon(bpy_struct):
|
|
|
123911
123911
|
"""
|
|
123912
123912
|
...
|
|
123913
123913
|
|
|
123914
|
-
class MeshPolygons(
|
|
123914
|
+
class MeshPolygons(bpy_prop_collection[MeshPolygon], bpy_struct):
|
|
123915
123915
|
"""Collection of mesh polygons"""
|
|
123916
123916
|
|
|
123917
123917
|
active: int | None
|
|
@@ -124326,7 +124326,7 @@ class MeshVertex(bpy_struct):
|
|
|
124326
124326
|
"""
|
|
124327
124327
|
...
|
|
124328
124328
|
|
|
124329
|
-
class MeshVertices(
|
|
124329
|
+
class MeshVertices(bpy_prop_collection[MeshVertex], bpy_struct):
|
|
124330
124330
|
"""Collection of mesh vertices"""
|
|
124331
124331
|
|
|
124332
124332
|
def add(self, count: int | None):
|
|
@@ -124361,7 +124361,7 @@ class MeshVertices(bpy_struct, bpy_prop_collection[MeshVertex]):
|
|
|
124361
124361
|
"""
|
|
124362
124362
|
...
|
|
124363
124363
|
|
|
124364
|
-
class MetaBallElements(
|
|
124364
|
+
class MetaBallElements(bpy_prop_collection[MetaElement], bpy_struct):
|
|
124365
124365
|
"""Collection of metaball elements"""
|
|
124366
124366
|
|
|
124367
124367
|
active: MetaElement
|
|
@@ -125337,7 +125337,7 @@ class MovieTrackingMarker(bpy_struct):
|
|
|
125337
125337
|
"""
|
|
125338
125338
|
...
|
|
125339
125339
|
|
|
125340
|
-
class MovieTrackingMarkers(
|
|
125340
|
+
class MovieTrackingMarkers(bpy_prop_collection[MovieTrackingMarker], bpy_struct):
|
|
125341
125341
|
"""Collection of markers for movie tracking track"""
|
|
125342
125342
|
|
|
125343
125343
|
def find_frame(
|
|
@@ -125476,7 +125476,7 @@ class MovieTrackingObject(bpy_struct):
|
|
|
125476
125476
|
...
|
|
125477
125477
|
|
|
125478
125478
|
class MovieTrackingObjectPlaneTracks(
|
|
125479
|
-
|
|
125479
|
+
bpy_prop_collection[MovieTrackingPlaneTrack], bpy_struct
|
|
125480
125480
|
):
|
|
125481
125481
|
"""Collection of tracking plane tracks"""
|
|
125482
125482
|
|
|
@@ -125510,7 +125510,7 @@ class MovieTrackingObjectPlaneTracks(
|
|
|
125510
125510
|
"""
|
|
125511
125511
|
...
|
|
125512
125512
|
|
|
125513
|
-
class MovieTrackingObjectTracks(
|
|
125513
|
+
class MovieTrackingObjectTracks(bpy_prop_collection[MovieTrackingTrack], bpy_struct):
|
|
125514
125514
|
"""Collection of movie tracking tracks"""
|
|
125515
125515
|
|
|
125516
125516
|
active: MovieTrackingTrack | None
|
|
@@ -125557,7 +125557,7 @@ class MovieTrackingObjectTracks(bpy_struct, bpy_prop_collection[MovieTrackingTra
|
|
|
125557
125557
|
"""
|
|
125558
125558
|
...
|
|
125559
125559
|
|
|
125560
|
-
class MovieTrackingObjects(
|
|
125560
|
+
class MovieTrackingObjects(bpy_prop_collection[MovieTrackingObject], bpy_struct):
|
|
125561
125561
|
"""Collection of movie tracking objects"""
|
|
125562
125562
|
|
|
125563
125563
|
active: MovieTrackingObject | None
|
|
@@ -125656,7 +125656,7 @@ class MovieTrackingPlaneMarker(bpy_struct):
|
|
|
125656
125656
|
...
|
|
125657
125657
|
|
|
125658
125658
|
class MovieTrackingPlaneMarkers(
|
|
125659
|
-
|
|
125659
|
+
bpy_prop_collection[MovieTrackingPlaneMarker], bpy_struct
|
|
125660
125660
|
):
|
|
125661
125661
|
"""Collection of markers for movie tracking plane track"""
|
|
125662
125662
|
|
|
@@ -125780,7 +125780,7 @@ class MovieTrackingPlaneTrack(bpy_struct):
|
|
|
125780
125780
|
...
|
|
125781
125781
|
|
|
125782
125782
|
class MovieTrackingPlaneTracks(
|
|
125783
|
-
|
|
125783
|
+
bpy_prop_collection[MovieTrackingPlaneTrack], bpy_struct
|
|
125784
125784
|
):
|
|
125785
125785
|
"""Collection of movie tracking plane tracks"""
|
|
125786
125786
|
|
|
@@ -125815,7 +125815,7 @@ class MovieTrackingPlaneTracks(
|
|
|
125815
125815
|
...
|
|
125816
125816
|
|
|
125817
125817
|
class MovieTrackingReconstructedCameras(
|
|
125818
|
-
|
|
125818
|
+
bpy_prop_collection[MovieReconstructedCamera], bpy_struct
|
|
125819
125819
|
):
|
|
125820
125820
|
"""Collection of solved cameras"""
|
|
125821
125821
|
|
|
@@ -126444,7 +126444,7 @@ class MovieTrackingTrack(bpy_struct):
|
|
|
126444
126444
|
"""
|
|
126445
126445
|
...
|
|
126446
126446
|
|
|
126447
|
-
class MovieTrackingTracks(
|
|
126447
|
+
class MovieTrackingTracks(bpy_prop_collection[MovieTrackingTrack], bpy_struct):
|
|
126448
126448
|
"""Collection of movie tracking tracks"""
|
|
126449
126449
|
|
|
126450
126450
|
active: MovieTrackingTrack | None
|
|
@@ -126704,7 +126704,7 @@ class NlaStrip(bpy_struct):
|
|
|
126704
126704
|
"""
|
|
126705
126705
|
...
|
|
126706
126706
|
|
|
126707
|
-
class NlaStripFCurves(
|
|
126707
|
+
class NlaStripFCurves(bpy_prop_collection[FCurve], bpy_struct):
|
|
126708
126708
|
"""Collection of NLA strip F-Curves"""
|
|
126709
126709
|
|
|
126710
126710
|
def find(self, data_path: str | typing.Any, index: typing.Any | None = 0) -> FCurve:
|
|
@@ -126743,7 +126743,7 @@ class NlaStripFCurves(bpy_struct, bpy_prop_collection[FCurve]):
|
|
|
126743
126743
|
"""
|
|
126744
126744
|
...
|
|
126745
126745
|
|
|
126746
|
-
class NlaStrips(
|
|
126746
|
+
class NlaStrips(bpy_prop_collection[NlaStrip], bpy_struct):
|
|
126747
126747
|
"""Collection of NLA Strips"""
|
|
126748
126748
|
|
|
126749
126749
|
def new(
|
|
@@ -126869,7 +126869,7 @@ class NlaTrack(bpy_struct):
|
|
|
126869
126869
|
"""
|
|
126870
126870
|
...
|
|
126871
126871
|
|
|
126872
|
-
class NlaTracks(
|
|
126872
|
+
class NlaTracks(bpy_prop_collection[NlaTrack], bpy_struct):
|
|
126873
126873
|
"""Collection of NLA Tracks"""
|
|
126874
126874
|
|
|
126875
126875
|
active: NlaTrack | None
|
|
@@ -127317,7 +127317,7 @@ class NodeGeometryBakeItem(bpy_struct):
|
|
|
127317
127317
|
"""
|
|
127318
127318
|
...
|
|
127319
127319
|
|
|
127320
|
-
class NodeGeometryBakeItems(
|
|
127320
|
+
class NodeGeometryBakeItems(bpy_prop_collection[NodeGeometryBakeItem], bpy_struct):
|
|
127321
127321
|
"""Collection of bake items"""
|
|
127322
127322
|
|
|
127323
127323
|
def new(
|
|
@@ -127380,7 +127380,7 @@ class NodeGeometryBakeItems(bpy_struct, bpy_prop_collection[NodeGeometryBakeItem
|
|
|
127380
127380
|
"""
|
|
127381
127381
|
...
|
|
127382
127382
|
|
|
127383
|
-
class NodeGeometryRepeatOutputItems(
|
|
127383
|
+
class NodeGeometryRepeatOutputItems(bpy_prop_collection[RepeatItem], bpy_struct):
|
|
127384
127384
|
"""Collection of repeat items"""
|
|
127385
127385
|
|
|
127386
127386
|
def new(self, socket_type: str | None, name: str | typing.Any) -> RepeatItem:
|
|
@@ -127442,7 +127442,7 @@ class NodeGeometryRepeatOutputItems(bpy_struct, bpy_prop_collection[RepeatItem])
|
|
|
127442
127442
|
...
|
|
127443
127443
|
|
|
127444
127444
|
class NodeGeometrySimulationOutputItems(
|
|
127445
|
-
|
|
127445
|
+
bpy_prop_collection[SimulationStateItem], bpy_struct
|
|
127446
127446
|
):
|
|
127447
127447
|
"""Collection of simulation items"""
|
|
127448
127448
|
|
|
@@ -127506,7 +127506,7 @@ class NodeGeometrySimulationOutputItems(
|
|
|
127506
127506
|
"""
|
|
127507
127507
|
...
|
|
127508
127508
|
|
|
127509
|
-
class NodeIndexSwitchItems(
|
|
127509
|
+
class NodeIndexSwitchItems(bpy_prop_collection[IndexSwitchItem], bpy_struct):
|
|
127510
127510
|
"""Collection of index_switch items"""
|
|
127511
127511
|
|
|
127512
127512
|
def new(self) -> IndexSwitchItem:
|
|
@@ -127563,7 +127563,7 @@ class NodeIndexSwitchItems(bpy_struct, bpy_prop_collection[IndexSwitchItem]):
|
|
|
127563
127563
|
"""
|
|
127564
127564
|
...
|
|
127565
127565
|
|
|
127566
|
-
class NodeInputs(
|
|
127566
|
+
class NodeInputs(bpy_prop_collection[NodeSocket], bpy_struct):
|
|
127567
127567
|
"""Collection of Node Sockets"""
|
|
127568
127568
|
|
|
127569
127569
|
def new(
|
|
@@ -127789,7 +127789,7 @@ class NodeLink(bpy_struct):
|
|
|
127789
127789
|
"""
|
|
127790
127790
|
...
|
|
127791
127791
|
|
|
127792
|
-
class NodeLinks(
|
|
127792
|
+
class NodeLinks(bpy_prop_collection[NodeLink], bpy_struct):
|
|
127793
127793
|
"""Collection of Node Links"""
|
|
127794
127794
|
|
|
127795
127795
|
def new(
|
|
@@ -127847,7 +127847,7 @@ class NodeLinks(bpy_struct, bpy_prop_collection[NodeLink]):
|
|
|
127847
127847
|
"""
|
|
127848
127848
|
...
|
|
127849
127849
|
|
|
127850
|
-
class NodeMenuSwitchItems(
|
|
127850
|
+
class NodeMenuSwitchItems(bpy_prop_collection[NodeEnumItem], bpy_struct):
|
|
127851
127851
|
"""Collection of items that make up an enum"""
|
|
127852
127852
|
|
|
127853
127853
|
def new(self, name: str | typing.Any) -> NodeEnumItem:
|
|
@@ -127990,7 +127990,7 @@ class NodeOutputFileSlotLayer(bpy_struct):
|
|
|
127990
127990
|
"""
|
|
127991
127991
|
...
|
|
127992
127992
|
|
|
127993
|
-
class NodeOutputs(
|
|
127993
|
+
class NodeOutputs(bpy_prop_collection[NodeSocket], bpy_struct):
|
|
127994
127994
|
"""Collection of Node Sockets"""
|
|
127995
127995
|
|
|
127996
127996
|
def new(
|
|
@@ -128476,7 +128476,7 @@ class NodeTreePath(bpy_struct):
|
|
|
128476
128476
|
"""
|
|
128477
128477
|
...
|
|
128478
128478
|
|
|
128479
|
-
class Nodes(
|
|
128479
|
+
class Nodes(bpy_prop_collection[Node], bpy_struct):
|
|
128480
128480
|
"""Collection of Nodes"""
|
|
128481
128481
|
|
|
128482
128482
|
active: Node | None
|
|
@@ -128611,7 +128611,7 @@ class NodesModifierBake(bpy_struct):
|
|
|
128611
128611
|
...
|
|
128612
128612
|
|
|
128613
128613
|
class NodesModifierBakeDataBlocks(
|
|
128614
|
-
|
|
128614
|
+
bpy_prop_collection[NodesModifierDataBlock], bpy_struct
|
|
128615
128615
|
):
|
|
128616
128616
|
"""Collection of data-blocks that can be referenced by baked data"""
|
|
128617
128617
|
|
|
@@ -128645,7 +128645,7 @@ class NodesModifierBakeDataBlocks(
|
|
|
128645
128645
|
"""
|
|
128646
128646
|
...
|
|
128647
128647
|
|
|
128648
|
-
class NodesModifierBakes(
|
|
128648
|
+
class NodesModifierBakes(bpy_prop_collection[NodesModifierBake], bpy_struct):
|
|
128649
128649
|
"""Bake data for every bake node"""
|
|
128650
128650
|
|
|
128651
128651
|
@classmethod
|
|
@@ -128752,7 +128752,7 @@ class NodesModifierPanel(bpy_struct):
|
|
|
128752
128752
|
"""
|
|
128753
128753
|
...
|
|
128754
128754
|
|
|
128755
|
-
class NodesModifierPanels(
|
|
128755
|
+
class NodesModifierPanels(bpy_prop_collection[NodesModifierPanel], bpy_struct):
|
|
128756
128756
|
"""State of all panels defined by the node group"""
|
|
128757
128757
|
|
|
128758
128758
|
@classmethod
|
|
@@ -128824,7 +128824,7 @@ class ObjectBase(bpy_struct):
|
|
|
128824
128824
|
"""
|
|
128825
128825
|
...
|
|
128826
128826
|
|
|
128827
|
-
class ObjectConstraints(
|
|
128827
|
+
class ObjectConstraints(bpy_prop_collection[Constraint], bpy_struct):
|
|
128828
128828
|
"""Collection of object constraints"""
|
|
128829
128829
|
|
|
128830
128830
|
active: Constraint | None
|
|
@@ -128932,7 +128932,7 @@ class ObjectDisplay(bpy_struct):
|
|
|
128932
128932
|
"""
|
|
128933
128933
|
...
|
|
128934
128934
|
|
|
128935
|
-
class ObjectGpencilModifiers(
|
|
128935
|
+
class ObjectGpencilModifiers(bpy_prop_collection[GpencilModifier], bpy_struct):
|
|
128936
128936
|
"""Collection of object grease pencil modifiers"""
|
|
128937
128937
|
|
|
128938
128938
|
def new(self, name: str | typing.Any, type: str | None) -> GpencilModifier:
|
|
@@ -129077,7 +129077,7 @@ class ObjectLineArt(bpy_struct):
|
|
|
129077
129077
|
"""
|
|
129078
129078
|
...
|
|
129079
129079
|
|
|
129080
|
-
class ObjectModifiers(
|
|
129080
|
+
class ObjectModifiers(bpy_prop_collection[Modifier], bpy_struct):
|
|
129081
129081
|
"""Collection of object modifiers"""
|
|
129082
129082
|
|
|
129083
129083
|
active: Modifier | None
|
|
@@ -129144,7 +129144,7 @@ class ObjectModifiers(bpy_struct, bpy_prop_collection[Modifier]):
|
|
|
129144
129144
|
"""
|
|
129145
129145
|
...
|
|
129146
129146
|
|
|
129147
|
-
class ObjectShaderFx(
|
|
129147
|
+
class ObjectShaderFx(bpy_prop_collection[ShaderFx], bpy_struct):
|
|
129148
129148
|
"""Collection of object effects"""
|
|
129149
129149
|
|
|
129150
129150
|
def new(self, name: str | typing.Any, type: str | None) -> ShaderFx:
|
|
@@ -129820,7 +129820,7 @@ class PaletteColor(bpy_struct):
|
|
|
129820
129820
|
"""
|
|
129821
129821
|
...
|
|
129822
129822
|
|
|
129823
|
-
class PaletteColors(
|
|
129823
|
+
class PaletteColors(bpy_prop_collection[PaletteColor], bpy_struct):
|
|
129824
129824
|
"""Collection of palette colors"""
|
|
129825
129825
|
|
|
129826
129826
|
active: PaletteColor | None
|
|
@@ -130592,7 +130592,7 @@ class ParticleKey(bpy_struct):
|
|
|
130592
130592
|
...
|
|
130593
130593
|
|
|
130594
130594
|
class ParticleSettingsTextureSlots(
|
|
130595
|
-
|
|
130595
|
+
bpy_prop_collection[ParticleSettingsTextureSlot], bpy_struct
|
|
130596
130596
|
):
|
|
130597
130597
|
"""Collection of texture slots"""
|
|
130598
130598
|
|
|
@@ -131021,7 +131021,7 @@ class ParticleSystem(bpy_struct):
|
|
|
131021
131021
|
"""
|
|
131022
131022
|
...
|
|
131023
131023
|
|
|
131024
|
-
class ParticleSystems(
|
|
131024
|
+
class ParticleSystems(bpy_prop_collection[ParticleSystem], bpy_struct):
|
|
131025
131025
|
"""Collection of particle systems"""
|
|
131026
131026
|
|
|
131027
131027
|
active: ParticleSystem
|
|
@@ -131168,7 +131168,7 @@ class PathCompare(bpy_struct):
|
|
|
131168
131168
|
"""
|
|
131169
131169
|
...
|
|
131170
131170
|
|
|
131171
|
-
class PathCompareCollection(
|
|
131171
|
+
class PathCompareCollection(bpy_prop_collection[PathCompare], bpy_struct):
|
|
131172
131172
|
"""Collection of paths"""
|
|
131173
131173
|
|
|
131174
131174
|
@classmethod
|
|
@@ -131498,7 +131498,7 @@ class PointCacheItem(bpy_struct):
|
|
|
131498
131498
|
"""
|
|
131499
131499
|
...
|
|
131500
131500
|
|
|
131501
|
-
class PointCaches(
|
|
131501
|
+
class PointCaches(bpy_prop_collection[PointCacheItem], bpy_struct):
|
|
131502
131502
|
"""Collection of point caches"""
|
|
131503
131503
|
|
|
131504
131504
|
active_index: int | None
|
|
@@ -131787,6 +131787,12 @@ class PoseBone(bpy_struct):
|
|
|
131787
131787
|
:type: list[float] | tuple[float, float, float] | mathutils.Vector
|
|
131788
131788
|
"""
|
|
131789
131789
|
|
|
131790
|
+
custom_shape_wire_width: float
|
|
131791
|
+
""" Adjust the line thickness of custom shapes
|
|
131792
|
+
|
|
131793
|
+
:type: float
|
|
131794
|
+
"""
|
|
131795
|
+
|
|
131790
131796
|
head: list[float] | tuple[float, float, float] | mathutils.Vector
|
|
131791
131797
|
""" Location of head of the channel's bone
|
|
131792
131798
|
|
|
@@ -132203,7 +132209,7 @@ Utility function for (tail - head)(readonly)"""
|
|
|
132203
132209
|
"""
|
|
132204
132210
|
...
|
|
132205
132211
|
|
|
132206
|
-
class PoseBoneConstraints(
|
|
132212
|
+
class PoseBoneConstraints(bpy_prop_collection[Constraint], bpy_struct):
|
|
132207
132213
|
"""Collection of pose bone constraints"""
|
|
132208
132214
|
|
|
132209
132215
|
active: Constraint | None
|
|
@@ -135930,7 +135936,7 @@ class RenderPass(bpy_struct):
|
|
|
135930
135936
|
"""
|
|
135931
135937
|
...
|
|
135932
135938
|
|
|
135933
|
-
class RenderPasses(
|
|
135939
|
+
class RenderPasses(bpy_prop_collection[RenderPass], bpy_struct):
|
|
135934
135940
|
"""Collection of render passes"""
|
|
135935
135941
|
|
|
135936
135942
|
def find_by_type(self, pass_type: str | None, view: str | typing.Any) -> RenderPass:
|
|
@@ -136757,7 +136763,7 @@ class RenderSlot(bpy_struct):
|
|
|
136757
136763
|
"""
|
|
136758
136764
|
...
|
|
136759
136765
|
|
|
136760
|
-
class RenderSlots(
|
|
136766
|
+
class RenderSlots(bpy_prop_collection[RenderSlot], bpy_struct):
|
|
136761
136767
|
"""Collection of render layers"""
|
|
136762
136768
|
|
|
136763
136769
|
active: RenderSlot | None
|
|
@@ -136837,7 +136843,7 @@ class RenderView(bpy_struct):
|
|
|
136837
136843
|
"""
|
|
136838
136844
|
...
|
|
136839
136845
|
|
|
136840
|
-
class RenderViews(
|
|
136846
|
+
class RenderViews(bpy_prop_collection[SceneRenderView], bpy_struct):
|
|
136841
136847
|
"""Collection of render views"""
|
|
136842
136848
|
|
|
136843
136849
|
active: SceneRenderView
|
|
@@ -136974,7 +136980,7 @@ class RetimingKey(bpy_struct):
|
|
|
136974
136980
|
"""
|
|
136975
136981
|
...
|
|
136976
136982
|
|
|
136977
|
-
class RetimingKeys(
|
|
136983
|
+
class RetimingKeys(bpy_prop_collection[RetimingKey], bpy_struct):
|
|
136978
136984
|
"""Collection of RetimingKey"""
|
|
136979
136985
|
|
|
136980
136986
|
def add(self, timeline_frame: typing.Any | None = 0) -> RetimingKey:
|
|
@@ -138449,7 +138455,7 @@ class SceneHydra(bpy_struct):
|
|
|
138449
138455
|
"""
|
|
138450
138456
|
...
|
|
138451
138457
|
|
|
138452
|
-
class SceneObjects(
|
|
138458
|
+
class SceneObjects(bpy_prop_collection[Object], bpy_struct):
|
|
138453
138459
|
"""All of the scene objects"""
|
|
138454
138460
|
|
|
138455
138461
|
@classmethod
|
|
@@ -138633,7 +138639,7 @@ class ScriptDirectory(bpy_struct):
|
|
|
138633
138639
|
"""
|
|
138634
138640
|
...
|
|
138635
138641
|
|
|
138636
|
-
class ScriptDirectoryCollection(
|
|
138642
|
+
class ScriptDirectoryCollection(bpy_prop_collection[ScriptDirectory], bpy_struct):
|
|
138637
138643
|
@classmethod
|
|
138638
138644
|
def new(cls) -> ScriptDirectory:
|
|
138639
138645
|
"""Add a new Python script directory
|
|
@@ -139263,7 +139269,7 @@ class SequenceElement(bpy_struct):
|
|
|
139263
139269
|
"""
|
|
139264
139270
|
...
|
|
139265
139271
|
|
|
139266
|
-
class SequenceElements(
|
|
139272
|
+
class SequenceElements(bpy_prop_collection[SequenceElement], bpy_struct):
|
|
139267
139273
|
"""Collection of SequenceElement"""
|
|
139268
139274
|
|
|
139269
139275
|
def append(self, filename: str | typing.Any) -> SequenceElement:
|
|
@@ -139383,7 +139389,7 @@ class SequenceModifier(bpy_struct):
|
|
|
139383
139389
|
"""
|
|
139384
139390
|
...
|
|
139385
139391
|
|
|
139386
|
-
class SequenceModifiers(
|
|
139392
|
+
class SequenceModifiers(bpy_prop_collection[SequenceModifier], bpy_struct):
|
|
139387
139393
|
"""Collection of strip modifiers"""
|
|
139388
139394
|
|
|
139389
139395
|
def new(self, name: str | typing.Any, type: str | None) -> SequenceModifier:
|
|
@@ -139937,7 +139943,7 @@ class SequencerToolSettings(bpy_struct):
|
|
|
139937
139943
|
"""
|
|
139938
139944
|
...
|
|
139939
139945
|
|
|
139940
|
-
class SequencesMeta(
|
|
139946
|
+
class SequencesMeta(bpy_prop_collection[Sequence], bpy_struct):
|
|
139941
139947
|
"""Collection of Sequences"""
|
|
139942
139948
|
|
|
139943
139949
|
def new_clip(
|
|
@@ -140184,7 +140190,7 @@ class SequencesMeta(bpy_struct, bpy_prop_collection[Sequence]):
|
|
|
140184
140190
|
"""
|
|
140185
140191
|
...
|
|
140186
140192
|
|
|
140187
|
-
class SequencesTopLevel(
|
|
140193
|
+
class SequencesTopLevel(bpy_prop_collection[Sequence], bpy_struct):
|
|
140188
140194
|
"""Collection of Sequences"""
|
|
140189
140195
|
|
|
140190
140196
|
def new_clip(
|
|
@@ -141221,7 +141227,7 @@ class SpaceImageOverlay(bpy_struct):
|
|
|
141221
141227
|
"""
|
|
141222
141228
|
...
|
|
141223
141229
|
|
|
141224
|
-
class SpaceNodeEditorPath(
|
|
141230
|
+
class SpaceNodeEditorPath(bpy_prop_collection[NodeTreePath], bpy_struct):
|
|
141225
141231
|
"""Get the node tree path as a string"""
|
|
141226
141232
|
|
|
141227
141233
|
to_string: str
|
|
@@ -141651,7 +141657,7 @@ class Spline(bpy_struct):
|
|
|
141651
141657
|
"""
|
|
141652
141658
|
...
|
|
141653
141659
|
|
|
141654
|
-
class SplineBezierPoints(
|
|
141660
|
+
class SplineBezierPoints(bpy_prop_collection[BezierSplinePoint], bpy_struct):
|
|
141655
141661
|
"""Collection of spline Bézier points"""
|
|
141656
141662
|
|
|
141657
141663
|
def add(self, count: int | None):
|
|
@@ -141755,7 +141761,7 @@ class SplinePoint(bpy_struct):
|
|
|
141755
141761
|
"""
|
|
141756
141762
|
...
|
|
141757
141763
|
|
|
141758
|
-
class SplinePoints(
|
|
141764
|
+
class SplinePoints(bpy_prop_collection[SplinePoint], bpy_struct):
|
|
141759
141765
|
"""Collection of spline points"""
|
|
141760
141766
|
|
|
141761
141767
|
def add(self, count: int | None):
|
|
@@ -142286,7 +142292,7 @@ class StudioLight(bpy_struct):
|
|
|
142286
142292
|
"""
|
|
142287
142293
|
...
|
|
142288
142294
|
|
|
142289
|
-
class StudioLights(
|
|
142295
|
+
class StudioLights(bpy_prop_collection[StudioLight], bpy_struct):
|
|
142290
142296
|
"""Collection of studio lights"""
|
|
142291
142297
|
|
|
142292
142298
|
def load(self, path: str | typing.Any, type: str | None) -> StudioLight:
|
|
@@ -146938,7 +146944,7 @@ class TimelineMarker(bpy_struct):
|
|
|
146938
146944
|
"""
|
|
146939
146945
|
...
|
|
146940
146946
|
|
|
146941
|
-
class TimelineMarkers(
|
|
146947
|
+
class TimelineMarkers(bpy_prop_collection[TimelineMarker], bpy_struct):
|
|
146942
146948
|
"""Collection of timeline markers"""
|
|
146943
146949
|
|
|
146944
146950
|
def new(
|
|
@@ -147931,7 +147937,7 @@ class UDIMTile(bpy_struct):
|
|
|
147931
147937
|
"""
|
|
147932
147938
|
...
|
|
147933
147939
|
|
|
147934
|
-
class UDIMTiles(
|
|
147940
|
+
class UDIMTiles(bpy_prop_collection[UDIMTile], bpy_struct):
|
|
147935
147941
|
"""Collection of UDIM tiles"""
|
|
147936
147942
|
|
|
147937
147943
|
active: UDIMTile
|
|
@@ -150170,7 +150176,7 @@ class USDHook(bpy_struct):
|
|
|
150170
150176
|
"""
|
|
150171
150177
|
...
|
|
150172
150178
|
|
|
150173
|
-
class UVLoopLayers(
|
|
150179
|
+
class UVLoopLayers(bpy_prop_collection[MeshUVLoopLayer], bpy_struct):
|
|
150174
150180
|
"""Collection of UV map layers"""
|
|
150175
150181
|
|
|
150176
150182
|
active: MeshUVLoopLayer | None
|
|
@@ -150619,7 +150625,7 @@ class UserExtensionRepo(bpy_struct):
|
|
|
150619
150625
|
"""
|
|
150620
150626
|
...
|
|
150621
150627
|
|
|
150622
|
-
class UserExtensionRepoCollection(
|
|
150628
|
+
class UserExtensionRepoCollection(bpy_prop_collection[UserExtensionRepo], bpy_struct):
|
|
150623
150629
|
"""Collection of user extension repositories"""
|
|
150624
150630
|
|
|
150625
150631
|
@classmethod
|
|
@@ -150863,7 +150869,7 @@ class VertexGroupElement(bpy_struct):
|
|
|
150863
150869
|
"""
|
|
150864
150870
|
...
|
|
150865
150871
|
|
|
150866
|
-
class VertexGroups(
|
|
150872
|
+
class VertexGroups(bpy_prop_collection[VertexGroup], bpy_struct):
|
|
150867
150873
|
"""Collection of vertex groups"""
|
|
150868
150874
|
|
|
150869
150875
|
active: VertexGroup | None
|
|
@@ -151188,6 +151194,12 @@ class View3DOverlay(bpy_struct):
|
|
|
151188
151194
|
:type: bool
|
|
151189
151195
|
"""
|
|
151190
151196
|
|
|
151197
|
+
show_camera_passepartout: bool
|
|
151198
|
+
""" Show camera passepartout
|
|
151199
|
+
|
|
151200
|
+
:type: bool
|
|
151201
|
+
"""
|
|
151202
|
+
|
|
151191
151203
|
show_cursor: bool
|
|
151192
151204
|
""" Display 3D Cursor Overlay
|
|
151193
151205
|
|
|
@@ -152298,7 +152310,7 @@ class ViewLayerEEVEE(bpy_struct):
|
|
|
152298
152310
|
"""
|
|
152299
152311
|
...
|
|
152300
152312
|
|
|
152301
|
-
class ViewLayers(
|
|
152313
|
+
class ViewLayers(bpy_prop_collection[ViewLayer], bpy_struct):
|
|
152302
152314
|
"""Collection of render layers"""
|
|
152303
152315
|
|
|
152304
152316
|
def new(self, name: str | typing.Any) -> ViewLayer:
|
|
@@ -152568,7 +152580,7 @@ class VolumeGrid(bpy_struct):
|
|
|
152568
152580
|
"""
|
|
152569
152581
|
...
|
|
152570
152582
|
|
|
152571
|
-
class VolumeGrids(
|
|
152583
|
+
class VolumeGrids(bpy_prop_collection[VolumeGrid], bpy_struct):
|
|
152572
152584
|
"""3D volume grids"""
|
|
152573
152585
|
|
|
152574
152586
|
active_index: int | None
|
|
@@ -153288,7 +153300,7 @@ class XrActionMapBinding(bpy_struct):
|
|
|
153288
153300
|
"""
|
|
153289
153301
|
...
|
|
153290
153302
|
|
|
153291
|
-
class XrActionMapBindings(
|
|
153303
|
+
class XrActionMapBindings(bpy_prop_collection[XrActionMapBinding], bpy_struct):
|
|
153292
153304
|
"""Collection of XR action map bindings"""
|
|
153293
153305
|
|
|
153294
153306
|
def new(
|
|
@@ -153490,7 +153502,7 @@ class XrActionMapItem(bpy_struct):
|
|
|
153490
153502
|
"""
|
|
153491
153503
|
...
|
|
153492
153504
|
|
|
153493
|
-
class XrActionMapItems(
|
|
153505
|
+
class XrActionMapItems(bpy_prop_collection[XrActionMapItem], bpy_struct):
|
|
153494
153506
|
"""Collection of XR action map items"""
|
|
153495
153507
|
|
|
153496
153508
|
def new(
|
|
@@ -153559,7 +153571,7 @@ class XrActionMapItems(bpy_struct, bpy_prop_collection[XrActionMapItem]):
|
|
|
153559
153571
|
"""
|
|
153560
153572
|
...
|
|
153561
153573
|
|
|
153562
|
-
class XrActionMaps(
|
|
153574
|
+
class XrActionMaps(bpy_prop_collection[XrActionMap], bpy_struct):
|
|
153563
153575
|
"""Collection of XR action maps"""
|
|
153564
153576
|
|
|
153565
153577
|
@classmethod
|
|
@@ -153678,7 +153690,7 @@ class XrComponentPath(bpy_struct):
|
|
|
153678
153690
|
"""
|
|
153679
153691
|
...
|
|
153680
153692
|
|
|
153681
|
-
class XrComponentPaths(
|
|
153693
|
+
class XrComponentPaths(bpy_prop_collection[XrComponentPath], bpy_struct):
|
|
153682
153694
|
"""Collection of OpenXR component paths"""
|
|
153683
153695
|
|
|
153684
153696
|
def new(self, path: str | typing.Any) -> XrComponentPath:
|
|
@@ -154526,7 +154538,7 @@ class XrUserPath(bpy_struct):
|
|
|
154526
154538
|
"""
|
|
154527
154539
|
...
|
|
154528
154540
|
|
|
154529
|
-
class XrUserPaths(
|
|
154541
|
+
class XrUserPaths(bpy_prop_collection[XrUserPath], bpy_struct):
|
|
154530
154542
|
"""Collection of OpenXR user paths"""
|
|
154531
154543
|
|
|
154532
154544
|
def new(self, path: str | typing.Any) -> XrUserPath:
|
|
@@ -154612,7 +154624,7 @@ class wmOwnerID(bpy_struct):
|
|
|
154612
154624
|
"""
|
|
154613
154625
|
...
|
|
154614
154626
|
|
|
154615
|
-
class wmOwnerIDs(
|
|
154627
|
+
class wmOwnerIDs(bpy_prop_collection[wmOwnerID], bpy_struct):
|
|
154616
154628
|
def new(self, name: str | typing.Any) -> wmOwnerID:
|
|
154617
154629
|
"""Add ui tag
|
|
154618
154630
|
|
|
@@ -154659,7 +154671,7 @@ class wmOwnerIDs(bpy_struct, bpy_prop_collection[wmOwnerID]):
|
|
|
154659
154671
|
"""
|
|
154660
154672
|
...
|
|
154661
154673
|
|
|
154662
|
-
class wmTools(
|
|
154674
|
+
class wmTools(bpy_prop_collection[WorkSpaceTool], bpy_struct):
|
|
154663
154675
|
def from_space_view3d_mode(
|
|
154664
154676
|
self, mode: str | None, create: bool | typing.Any | None = False
|
|
154665
154677
|
) -> WorkSpaceTool:
|
|
@@ -162402,6 +162414,18 @@ class Action(ID, bpy_struct):
|
|
|
162402
162414
|
:type: str
|
|
162403
162415
|
"""
|
|
162404
162416
|
|
|
162417
|
+
is_action_layered: bool
|
|
162418
|
+
""" Return whether this is a layered Action. An empty Action considered as both a 'layered' and a 'layered' Action
|
|
162419
|
+
|
|
162420
|
+
:type: bool
|
|
162421
|
+
"""
|
|
162422
|
+
|
|
162423
|
+
is_action_legacy: bool
|
|
162424
|
+
""" Return whether this is a legacy Action. Legacy Actions have no layers or bindings. An empty Action considered as both a 'legacy' and a 'layered' Action
|
|
162425
|
+
|
|
162426
|
+
:type: bool
|
|
162427
|
+
"""
|
|
162428
|
+
|
|
162405
162429
|
is_empty: bool
|
|
162406
162430
|
""" False when there is any Layer, Binding, or legacy F-Curve
|
|
162407
162431
|
|
|
@@ -171596,6 +171620,12 @@ class WindowManager(ID, bpy_struct):
|
|
|
171596
171620
|
:type: bool
|
|
171597
171621
|
"""
|
|
171598
171622
|
|
|
171623
|
+
extensions_updates: int
|
|
171624
|
+
""" Number of extensions with available update
|
|
171625
|
+
|
|
171626
|
+
:type: int
|
|
171627
|
+
"""
|
|
171628
|
+
|
|
171599
171629
|
is_interface_locked: bool
|
|
171600
171630
|
""" If true, the interface is currently locked by a running job and data shouldn't be modified from application timers. Otherwise, the running job might conflict with the handler causing unexpected results or even crashes
|
|
171601
171631
|
|