fake-bpy-module 20240408__py3-none-any.whl → 20240409__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.
Files changed (64) hide show
  1. bl_operators/presets/__init__.pyi +201 -0
  2. bl_operators/wm/__init__.pyi +8 -0
  3. bl_ui/__init__.pyi +5 -0
  4. bl_ui/anim/__init__.pyi +2 -0
  5. bl_ui/node_add_menu/__init__.pyi +2 -0
  6. bl_ui/node_add_menu_compositor/__init__.pyi +36 -0
  7. bl_ui/node_add_menu_geometry/__init__.pyi +96 -0
  8. bl_ui/node_add_menu_shader/__init__.pyi +20 -0
  9. bl_ui/node_add_menu_texture/__init__.pyi +18 -0
  10. bl_ui/properties_collection/__init__.pyi +158 -0
  11. bl_ui/properties_data_armature/__init__.pyi +4 -0
  12. bl_ui/properties_data_camera/__init__.pyi +4 -0
  13. bl_ui/properties_data_curves/__init__.pyi +2 -0
  14. bl_ui/properties_data_gpencil/__init__.pyi +4 -0
  15. bl_ui/properties_data_grease_pencil/__init__.pyi +4 -0
  16. bl_ui/properties_data_mesh/__init__.pyi +8 -0
  17. bl_ui/properties_data_modifier/__init__.pyi +12 -0
  18. bl_ui/properties_data_pointcloud/__init__.pyi +2 -0
  19. bl_ui/properties_freestyle/__init__.pyi +2 -0
  20. bl_ui/properties_grease_pencil_common/__init__.pyi +20 -0
  21. bl_ui/properties_mask_common/__init__.pyi +12 -0
  22. bl_ui/properties_material/__init__.pyi +2 -0
  23. bl_ui/properties_material_gpencil/__init__.pyi +4 -0
  24. bl_ui/properties_object/__init__.pyi +2 -0
  25. bl_ui/properties_output/__init__.pyi +6 -0
  26. bl_ui/properties_paint_common/__init__.pyi +2 -0
  27. bl_ui/properties_particle/__init__.pyi +4 -0
  28. bl_ui/properties_physics_cloth/__init__.pyi +2 -0
  29. bl_ui/properties_physics_fluid/__init__.pyi +2 -0
  30. bl_ui/properties_render/__init__.pyi +2 -0
  31. bl_ui/properties_texture/__init__.pyi +2 -0
  32. bl_ui/properties_view_layer/__init__.pyi +2 -0
  33. bl_ui/space_clip/__init__.pyi +60 -0
  34. bl_ui/space_console/__init__.pyi +10 -0
  35. bl_ui/space_dopesheet/__init__.pyi +28 -0
  36. bl_ui/space_filebrowser/__init__.pyi +26 -0
  37. bl_ui/space_graph/__init__.pyi +32 -0
  38. bl_ui/space_image/__init__.pyi +46 -0
  39. bl_ui/space_info/__init__.pyi +10 -0
  40. bl_ui/space_nla/__init__.pyi +26 -0
  41. bl_ui/space_node/__init__.pyi +24 -0
  42. bl_ui/space_outliner/__init__.pyi +24 -0
  43. bl_ui/space_sequencer/__init__.pyi +72 -0
  44. bl_ui/space_text/__init__.pyi +24 -0
  45. bl_ui/space_time/__init__.pyi +8 -0
  46. bl_ui/space_toolsystem_common/__init__.pyi +2 -0
  47. bl_ui/space_topbar/__init__.pyi +38 -0
  48. bl_ui/space_userpref/__init__.pyi +12 -0
  49. bl_ui/space_view3d/__init__.pyi +382 -0
  50. bl_ui/space_view3d_toolbar/__init__.pyi +10 -0
  51. bl_ui/temp_anim_layers/__init__.pyi +165 -0
  52. bl_ui/temp_anim_layers/py.typed +0 -0
  53. bl_ui/utils/__init__.pyi +2 -0
  54. bpy/ops/collection/__init__.pyi +65 -0
  55. bpy/ops/export_scene/__init__.pyi +3 -3
  56. bpy/ops/nla/__init__.pyi +1 -1
  57. bpy/ops/sculpt/__init__.pyi +2 -2
  58. bpy/ops/wm/__init__.pyi +20 -0
  59. bpy/types/__init__.pyi +775 -125
  60. bpy_types/__init__.pyi +2 -0
  61. {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240409.dist-info}/METADATA +1 -1
  62. {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240409.dist-info}/RECORD +64 -62
  63. {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240409.dist-info}/WHEEL +0 -0
  64. {fake_bpy_module-20240408.dist-info → fake_bpy_module-20240409.dist-info}/top_level.txt +0 -0
bpy/types/__init__.pyi CHANGED
@@ -87,6 +87,7 @@ import bl_ui.space_topbar
87
87
  import bl_ui.space_userpref
88
88
  import bl_ui.space_view3d
89
89
  import bl_ui.space_view3d_toolbar
90
+ import bl_ui.temp_anim_layers
90
91
  import mathutils
91
92
 
92
93
  GenericType = typing.TypeVar("GenericType")
@@ -164,128 +165,6 @@ class bpy_prop_array(typing.Generic[GenericType]):
164
165
  """
165
166
  ...
166
167
 
167
- class bpy_prop_collection(typing.Generic[GenericType]):
168
- """built-in class used for all collections."""
169
-
170
- def find(self, key: str) -> str:
171
- """Returns the index of a key in a collection or -1 when not found
172
- (matches Python's string find function of the same name).
173
-
174
- :param key: The identifier for the collection member.
175
- :type key: str
176
- :return: index of the key.
177
- """
178
- ...
179
-
180
- def foreach_get(self, attr, seq):
181
- """This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
182
- Multi-dimensional arrays (like array of vectors) will be flattened into seq.
183
-
184
- :param attr:
185
- :param seq:
186
- """
187
- ...
188
-
189
- def foreach_set(self, attr, seq):
190
- """This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
191
- seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
192
-
193
- :param attr:
194
- :param seq:
195
- """
196
- ...
197
-
198
- def get(self, key: str, default=None):
199
- """Returns the value of the item assigned to key or default when not found
200
- (matches Python's dictionary function of the same name).
201
-
202
- :param key: The identifier for the collection member.
203
- :type key: str
204
- :param default: Optional argument for the value to return if
205
- key is not found.
206
- """
207
- ...
208
-
209
- def items(self):
210
- """Return the identifiers of collection members
211
- (matching Python's dict.items() functionality).
212
-
213
- :return: (key, value) pairs for each member of this collection.
214
- """
215
- ...
216
-
217
- def keys(self):
218
- """Return the identifiers of collection members
219
- (matching Python's dict.keys() functionality).
220
-
221
- :return: the identifiers for each member of this collection.
222
- :rtype: typing.List[str]
223
- """
224
- ...
225
-
226
- def values(self) -> typing.List[str]:
227
- """Return the values of collection
228
- (matching Python's dict.values() functionality).
229
-
230
- :return: the members of this collection.
231
- :rtype: list
232
- """
233
- ...
234
-
235
- def __getitem__(self, key: typing.Union[int, str]) -> typing.Union[int, str]:
236
- """
237
-
238
- :param key:
239
- :type key: typing.Union[int, str]
240
- :return:
241
- :rtype: GenericType
242
- """
243
- ...
244
-
245
- def __setitem__(self, key: typing.Union[int, str], value: GenericType):
246
- """
247
-
248
- :param key:
249
- :type key: typing.Union[int, str]
250
- :param value:
251
- :type value: GenericType
252
- """
253
- ...
254
-
255
- def __delitem__(self, key: typing.Union[int, str]) -> typing.Union[int, str]:
256
- """
257
-
258
- :param key:
259
- :type key: typing.Union[int, str]
260
- :return:
261
- :rtype: GenericType
262
- """
263
- ...
264
-
265
- def __iter__(self) -> GenericType:
266
- """
267
-
268
- :return:
269
- :rtype: typing.Iterator[GenericType]
270
- """
271
- ...
272
-
273
- def __next__(self) -> typing.Iterator[GenericType]:
274
- """
275
-
276
- :return:
277
- :rtype: GenericType
278
- """
279
- ...
280
-
281
- def __len__(self) -> GenericType:
282
- """
283
-
284
- :return:
285
- :rtype: int
286
- """
287
- ...
288
-
289
168
  class bpy_struct(typing.Generic[GenericType]):
290
169
  """built-in base class for all classes in bpy.types."""
291
170
 
@@ -557,6 +436,128 @@ class bpy_struct(typing.Generic[GenericType]):
557
436
  """
558
437
  ...
559
438
 
439
+ class bpy_prop_collection(typing.Generic[GenericType]):
440
+ """built-in class used for all collections."""
441
+
442
+ def find(self, key: str) -> str:
443
+ """Returns the index of a key in a collection or -1 when not found
444
+ (matches Python's string find function of the same name).
445
+
446
+ :param key: The identifier for the collection member.
447
+ :type key: str
448
+ :return: index of the key.
449
+ """
450
+ ...
451
+
452
+ def foreach_get(self, attr, seq):
453
+ """This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
454
+ Multi-dimensional arrays (like array of vectors) will be flattened into seq.
455
+
456
+ :param attr:
457
+ :param seq:
458
+ """
459
+ ...
460
+
461
+ def foreach_set(self, attr, seq):
462
+ """This is a function to give fast access to attributes within a collection.Only works for 'basic type' properties (bool, int and float)!
463
+ seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
464
+
465
+ :param attr:
466
+ :param seq:
467
+ """
468
+ ...
469
+
470
+ def get(self, key: str, default=None):
471
+ """Returns the value of the item assigned to key or default when not found
472
+ (matches Python's dictionary function of the same name).
473
+
474
+ :param key: The identifier for the collection member.
475
+ :type key: str
476
+ :param default: Optional argument for the value to return if
477
+ key is not found.
478
+ """
479
+ ...
480
+
481
+ def items(self):
482
+ """Return the identifiers of collection members
483
+ (matching Python's dict.items() functionality).
484
+
485
+ :return: (key, value) pairs for each member of this collection.
486
+ """
487
+ ...
488
+
489
+ def keys(self):
490
+ """Return the identifiers of collection members
491
+ (matching Python's dict.keys() functionality).
492
+
493
+ :return: the identifiers for each member of this collection.
494
+ :rtype: typing.List[str]
495
+ """
496
+ ...
497
+
498
+ def values(self) -> typing.List[str]:
499
+ """Return the values of collection
500
+ (matching Python's dict.values() functionality).
501
+
502
+ :return: the members of this collection.
503
+ :rtype: list
504
+ """
505
+ ...
506
+
507
+ def __getitem__(self, key: typing.Union[int, str]) -> typing.Union[int, str]:
508
+ """
509
+
510
+ :param key:
511
+ :type key: typing.Union[int, str]
512
+ :return:
513
+ :rtype: GenericType
514
+ """
515
+ ...
516
+
517
+ def __setitem__(self, key: typing.Union[int, str], value: GenericType):
518
+ """
519
+
520
+ :param key:
521
+ :type key: typing.Union[int, str]
522
+ :param value:
523
+ :type value: GenericType
524
+ """
525
+ ...
526
+
527
+ def __delitem__(self, key: typing.Union[int, str]) -> typing.Union[int, str]:
528
+ """
529
+
530
+ :param key:
531
+ :type key: typing.Union[int, str]
532
+ :return:
533
+ :rtype: GenericType
534
+ """
535
+ ...
536
+
537
+ def __iter__(self) -> GenericType:
538
+ """
539
+
540
+ :return:
541
+ :rtype: typing.Iterator[GenericType]
542
+ """
543
+ ...
544
+
545
+ def __next__(self) -> typing.Iterator[GenericType]:
546
+ """
547
+
548
+ :return:
549
+ :rtype: GenericType
550
+ """
551
+ ...
552
+
553
+ def __len__(self) -> GenericType:
554
+ """
555
+
556
+ :return:
557
+ :rtype: int
558
+ """
559
+ ...
560
+
560
561
  class Depsgraph:
561
562
  """ """
562
563
 
@@ -701,6 +702,12 @@ class Depsgraph:
701
702
  class FileHandler:
702
703
  """Extends functionality to operators that manages files, such as adding drag and drop support"""
703
704
 
705
+ bl_export_operator: typing.Union[str, typing.Any]
706
+ """ Operator that can handle export for files with the extensions given in bl_file_extensions
707
+
708
+ :type: typing.Union[str, typing.Any]
709
+ """
710
+
704
711
  bl_file_extensions: typing.Union[str, typing.Any]
705
712
  """ Formatted string of file extensions supported by the file handler, each extension should start with a "." and be separated by ";".
706
713
  For Example: ".blend;.ble"
@@ -715,7 +722,7 @@ For Example: ".blend;.ble"
715
722
  """
716
723
 
717
724
  bl_import_operator: typing.Union[str, typing.Any]
718
- """ Operator that can handle import files with the extensions given in bl_file_extensions
725
+ """ Operator that can handle import for files with the extensions given in bl_file_extensions
719
726
 
720
727
  :type: typing.Union[str, typing.Any]
721
728
  """
@@ -1288,6 +1295,7 @@ class Menu:
1288
1295
  filter_path=None,
1289
1296
  display_name: typing.Callable = None,
1290
1297
  add_operator=None,
1298
+ add_operator_props=None,
1291
1299
  ):
1292
1300
  """Populate a menu from a list of paths.
1293
1301
 
@@ -1307,6 +1315,7 @@ class Menu:
1307
1315
  :param display_name: Optional callback that takes the full path, returns the name to display.
1308
1316
  :type display_name: typing.Callable
1309
1317
  :param add_operator:
1318
+ :param add_operator_props:
1310
1319
  """
1311
1320
  ...
1312
1321
 
@@ -5482,6 +5491,24 @@ class AnimData(bpy_struct):
5482
5491
  :type: Action
5483
5492
  """
5484
5493
 
5494
+ animation: Animation
5495
+ """ Active Animation for this data-block
5496
+
5497
+ :type: Animation
5498
+ """
5499
+
5500
+ animation_binding_handle: int
5501
+ """ A number that identifies which sub-set of the Animation is considered to be for this data-block
5502
+
5503
+ :type: int
5504
+ """
5505
+
5506
+ animation_binding_name: typing.Union[str, typing.Any]
5507
+ """ The name of the animation binding. The binding identifies which sub-set of the Animation is considered to be for this data-block, and its name is used to find the right binding when assigning an Animation
5508
+
5509
+ :type: typing.Union[str, typing.Any]
5510
+ """
5511
+
5485
5512
  drivers: bpy_prop_collection[FCurve]
5486
5513
  """ The Drivers/Expressions for this data-block
5487
5514
 
@@ -5769,6 +5796,399 @@ class AnimVizMotionPaths(bpy_struct):
5769
5796
  """
5770
5797
  ...
5771
5798
 
5799
+ class Animation(bpy_struct):
5800
+ """A collection of animation layers"""
5801
+
5802
+ bindings: bpy_prop_collection[AnimationBinding]
5803
+ """ The list of bindings in this animation data-block
5804
+
5805
+ :type: bpy_prop_collection[AnimationBinding]
5806
+ """
5807
+
5808
+ last_binding_handle: int
5809
+ """
5810
+
5811
+ :type: int
5812
+ """
5813
+
5814
+ layers: bpy_prop_collection[AnimationLayer]
5815
+ """ The list of layers that make up this Animation
5816
+
5817
+ :type: bpy_prop_collection[AnimationLayer]
5818
+ """
5819
+
5820
+ @classmethod
5821
+ def bl_rna_get_subclass(cls, id: str, default=None):
5822
+ """
5823
+
5824
+ :param id: The RNA type identifier.
5825
+ :type id: str
5826
+ :param default:
5827
+ :return: The RNA type or default when not found.
5828
+ :rtype: Struct
5829
+ """
5830
+ ...
5831
+
5832
+ @classmethod
5833
+ def bl_rna_get_subclass_py(cls, id: str, default=None):
5834
+ """
5835
+
5836
+ :param id: The RNA type identifier.
5837
+ :type id: str
5838
+ :param default:
5839
+ :return: The class or default when not found.
5840
+ :rtype: typing.Any
5841
+ """
5842
+ ...
5843
+
5844
+ class AnimationBinding(bpy_struct):
5845
+ """Number specific to this Binding, unique within the Animation data-blockThis is used, for example, on a KeyframeAnimationStrip to look up the AnimationChannelBag for this Binding"""
5846
+
5847
+ handle: int
5848
+ """
5849
+
5850
+ :type: int
5851
+ """
5852
+
5853
+ name: typing.Union[str, typing.Any]
5854
+ """
5855
+
5856
+ :type: typing.Union[str, typing.Any]
5857
+ """
5858
+
5859
+ @classmethod
5860
+ def bl_rna_get_subclass(cls, id: str, default=None):
5861
+ """
5862
+
5863
+ :param id: The RNA type identifier.
5864
+ :type id: str
5865
+ :param default:
5866
+ :return: The RNA type or default when not found.
5867
+ :rtype: Struct
5868
+ """
5869
+ ...
5870
+
5871
+ @classmethod
5872
+ def bl_rna_get_subclass_py(cls, id: str, default=None):
5873
+ """
5874
+
5875
+ :param id: The RNA type identifier.
5876
+ :type id: str
5877
+ :param default:
5878
+ :return: The class or default when not found.
5879
+ :rtype: typing.Any
5880
+ """
5881
+ ...
5882
+
5883
+ class AnimationBindings(bpy_struct):
5884
+ """Collection of animation bindings"""
5885
+
5886
+ def new(self, animated_id: ID) -> ID:
5887
+ """Add a binding to the animation
5888
+
5889
+ :param animated_id: Data-Block, Data-block that will be animated by this binding
5890
+ :type animated_id: ID
5891
+ :return: Newly created animation binding
5892
+ :rtype: AnimationBinding
5893
+ """
5894
+ ...
5895
+
5896
+ @classmethod
5897
+ def bl_rna_get_subclass(cls, id: str, default=None):
5898
+ """
5899
+
5900
+ :param id: The RNA type identifier.
5901
+ :type id: str
5902
+ :param default:
5903
+ :return: The RNA type or default when not found.
5904
+ :rtype: Struct
5905
+ """
5906
+ ...
5907
+
5908
+ @classmethod
5909
+ def bl_rna_get_subclass_py(cls, id: str, default=None):
5910
+ """
5911
+
5912
+ :param id: The RNA type identifier.
5913
+ :type id: str
5914
+ :param default:
5915
+ :return: The class or default when not found.
5916
+ :rtype: typing.Any
5917
+ """
5918
+ ...
5919
+
5920
+ class AnimationChannelBag(bpy_struct):
5921
+ """Collection of animation channels, typically associated with an animation binding"""
5922
+
5923
+ binding_handle: int
5924
+ """
5925
+
5926
+ :type: int
5927
+ """
5928
+
5929
+ fcurves: bpy_prop_collection[FCurve]
5930
+ """ The individual F-Curves that animate the binding
5931
+
5932
+ :type: bpy_prop_collection[FCurve]
5933
+ """
5934
+
5935
+ @classmethod
5936
+ def bl_rna_get_subclass(cls, id: str, default=None):
5937
+ """
5938
+
5939
+ :param id: The RNA type identifier.
5940
+ :type id: str
5941
+ :param default:
5942
+ :return: The RNA type or default when not found.
5943
+ :rtype: Struct
5944
+ """
5945
+ ...
5946
+
5947
+ @classmethod
5948
+ def bl_rna_get_subclass_py(cls, id: str, default=None):
5949
+ """
5950
+
5951
+ :param id: The RNA type identifier.
5952
+ :type id: str
5953
+ :param default:
5954
+ :return: The class or default when not found.
5955
+ :rtype: typing.Any
5956
+ """
5957
+ ...
5958
+
5959
+ class AnimationChannelBagFCurves(bpy_struct):
5960
+ """Collection of F-Curves for a specific animation binding"""
5961
+
5962
+ @classmethod
5963
+ def bl_rna_get_subclass(cls, id: str, default=None):
5964
+ """
5965
+
5966
+ :param id: The RNA type identifier.
5967
+ :type id: str
5968
+ :param default:
5969
+ :return: The RNA type or default when not found.
5970
+ :rtype: Struct
5971
+ """
5972
+ ...
5973
+
5974
+ @classmethod
5975
+ def bl_rna_get_subclass_py(cls, id: str, default=None):
5976
+ """
5977
+
5978
+ :param id: The RNA type identifier.
5979
+ :type id: str
5980
+ :param default:
5981
+ :return: The class or default when not found.
5982
+ :rtype: typing.Any
5983
+ """
5984
+ ...
5985
+
5986
+ class AnimationChannelBags(bpy_struct):
5987
+ """For each animation binding, a list of animation channels that are meant for that binding"""
5988
+
5989
+ @classmethod
5990
+ def bl_rna_get_subclass(cls, id: str, default=None):
5991
+ """
5992
+
5993
+ :param id: The RNA type identifier.
5994
+ :type id: str
5995
+ :param default:
5996
+ :return: The RNA type or default when not found.
5997
+ :rtype: Struct
5998
+ """
5999
+ ...
6000
+
6001
+ @classmethod
6002
+ def bl_rna_get_subclass_py(cls, id: str, default=None):
6003
+ """
6004
+
6005
+ :param id: The RNA type identifier.
6006
+ :type id: str
6007
+ :param default:
6008
+ :return: The class or default when not found.
6009
+ :rtype: typing.Any
6010
+ """
6011
+ ...
6012
+
6013
+ class AnimationLayer(bpy_struct):
6014
+ """ """
6015
+
6016
+ influence: float
6017
+ """ How much of this layer is used when blending into the lower layers
6018
+
6019
+ :type: float
6020
+ """
6021
+
6022
+ mix_mode: typing.Union[str, int]
6023
+ """ How animation of this layer is blended into the lower layers
6024
+
6025
+ :type: typing.Union[str, int]
6026
+ """
6027
+
6028
+ name: typing.Union[str, typing.Any]
6029
+ """
6030
+
6031
+ :type: typing.Union[str, typing.Any]
6032
+ """
6033
+
6034
+ strips: bpy_prop_collection[AnimationStrip]
6035
+ """ The list of strips that are on this animation layer
6036
+
6037
+ :type: bpy_prop_collection[AnimationStrip]
6038
+ """
6039
+
6040
+ @classmethod
6041
+ def bl_rna_get_subclass(cls, id: str, default=None):
6042
+ """
6043
+
6044
+ :param id: The RNA type identifier.
6045
+ :type id: str
6046
+ :param default:
6047
+ :return: The RNA type or default when not found.
6048
+ :rtype: Struct
6049
+ """
6050
+ ...
6051
+
6052
+ @classmethod
6053
+ def bl_rna_get_subclass_py(cls, id: str, default=None):
6054
+ """
6055
+
6056
+ :param id: The RNA type identifier.
6057
+ :type id: str
6058
+ :param default:
6059
+ :return: The class or default when not found.
6060
+ :rtype: typing.Any
6061
+ """
6062
+ ...
6063
+
6064
+ class AnimationLayers(bpy_struct):
6065
+ """Collection of animation layers"""
6066
+
6067
+ def new(self, name: typing.Union[str, typing.Any]) -> typing.Union[str, typing.Any]:
6068
+ """Add a layer to the Animation. Currently an Animation can only have at most one layer
6069
+
6070
+ :param name: Name, Name of the layer, will be made unique within the Animation data-block
6071
+ :type name: typing.Union[str, typing.Any]
6072
+ :return: Newly created animation layer
6073
+ :rtype: AnimationLayer
6074
+ """
6075
+ ...
6076
+
6077
+ def remove(self, anim_layer: AnimationLayer):
6078
+ """Remove the layer from the animation
6079
+
6080
+ :param anim_layer: Animation Layer, The layer to remove
6081
+ :type anim_layer: AnimationLayer
6082
+ """
6083
+ ...
6084
+
6085
+ @classmethod
6086
+ def bl_rna_get_subclass(cls, id: str, default=None):
6087
+ """
6088
+
6089
+ :param id: The RNA type identifier.
6090
+ :type id: str
6091
+ :param default:
6092
+ :return: The RNA type or default when not found.
6093
+ :rtype: Struct
6094
+ """
6095
+ ...
6096
+
6097
+ @classmethod
6098
+ def bl_rna_get_subclass_py(cls, id: str, default=None):
6099
+ """
6100
+
6101
+ :param id: The RNA type identifier.
6102
+ :type id: str
6103
+ :param default:
6104
+ :return: The class or default when not found.
6105
+ :rtype: typing.Any
6106
+ """
6107
+ ...
6108
+
6109
+ class AnimationStrip(bpy_struct):
6110
+ """ """
6111
+
6112
+ type: typing.Union[str, int]
6113
+ """
6114
+
6115
+ :type: typing.Union[str, int]
6116
+ """
6117
+
6118
+ @classmethod
6119
+ def bl_rna_get_subclass(cls, id: str, default=None):
6120
+ """
6121
+
6122
+ :param id: The RNA type identifier.
6123
+ :type id: str
6124
+ :param default:
6125
+ :return: The RNA type or default when not found.
6126
+ :rtype: Struct
6127
+ """
6128
+ ...
6129
+
6130
+ @classmethod
6131
+ def bl_rna_get_subclass_py(cls, id: str, default=None):
6132
+ """
6133
+
6134
+ :param id: The RNA type identifier.
6135
+ :type id: str
6136
+ :param default:
6137
+ :return: The class or default when not found.
6138
+ :rtype: typing.Any
6139
+ """
6140
+ ...
6141
+
6142
+ class AnimationStrips(bpy_struct):
6143
+ """Collection of animation strips"""
6144
+
6145
+ def new(
6146
+ self, type: typing.Union[str, int, typing.Any] = "KEYFRAME"
6147
+ ) -> typing.Union[str, int, typing.Any]:
6148
+ """Add a new strip to the layer. Currently a layer can only have one strip, with infinite boundaries
6149
+
6150
+ :param type: Type, The type of strip to create
6151
+
6152
+ KEYFRAME
6153
+ Keyframe -- Strip containing keyframes on F-Curves.
6154
+ :type type: typing.Union[str, int, typing.Any]
6155
+ :return: Newly created animation strip
6156
+ :rtype: AnimationStrip
6157
+ """
6158
+ ...
6159
+
6160
+ def remove(self, anim_strip: AnimationStrip):
6161
+ """Remove the strip from the animation layer
6162
+
6163
+ :param anim_strip: Animation Strip, The strip to remove
6164
+ :type anim_strip: AnimationStrip
6165
+ """
6166
+ ...
6167
+
6168
+ @classmethod
6169
+ def bl_rna_get_subclass(cls, id: str, default=None):
6170
+ """
6171
+
6172
+ :param id: The RNA type identifier.
6173
+ :type id: str
6174
+ :param default:
6175
+ :return: The RNA type or default when not found.
6176
+ :rtype: Struct
6177
+ """
6178
+ ...
6179
+
6180
+ @classmethod
6181
+ def bl_rna_get_subclass_py(cls, id: str, default=None):
6182
+ """
6183
+
6184
+ :param id: The RNA type identifier.
6185
+ :type id: str
6186
+ :param default:
6187
+ :return: The class or default when not found.
6188
+ :rtype: typing.Any
6189
+ """
6190
+ ...
6191
+
5772
6192
  class AnyType(bpy_struct):
5773
6193
  """RNA type used for pointers to any possible data"""
5774
6194
 
@@ -7943,6 +8363,12 @@ class BlendData(bpy_struct):
7943
8363
  :type: bpy_prop_collection[Action]
7944
8364
  """
7945
8365
 
8366
+ animations: bpy_prop_collection[Animation]
8367
+ """ Animation data-blocks
8368
+
8369
+ :type: bpy_prop_collection[Animation]
8370
+ """
8371
+
7946
8372
  armatures: bpy_prop_collection[Armature]
7947
8373
  """ Armature data-blocks
7948
8374
 
@@ -8336,6 +8762,71 @@ class BlendDataActions(bpy_struct):
8336
8762
  """
8337
8763
  ...
8338
8764
 
8765
+ class BlendDataAnimations(bpy_struct):
8766
+ """Collection of animation data-blocks"""
8767
+
8768
+ def new(self, name: typing.Union[str, typing.Any]) -> typing.Union[str, typing.Any]:
8769
+ """Add a new animation data-block to the main database
8770
+
8771
+ :param name: Name for the new data-block
8772
+ :type name: typing.Union[str, typing.Any]
8773
+ :return: New animation data-block
8774
+ :rtype: Animation
8775
+ """
8776
+ ...
8777
+
8778
+ def remove(
8779
+ self,
8780
+ animation: typing.Union[Animation, typing.Any],
8781
+ do_unlink: typing.Union[bool, typing.Any] = True,
8782
+ do_id_user: typing.Union[bool, typing.Any] = True,
8783
+ do_ui_user: typing.Union[bool, typing.Any] = True,
8784
+ ):
8785
+ """Remove an animation data-block from the current blendfile
8786
+
8787
+ :param animation: Animation to remove
8788
+ :type animation: typing.Union[Animation, typing.Any]
8789
+ :param do_unlink: Unlink all usages of this animation before deleting it
8790
+ :type do_unlink: typing.Union[bool, typing.Any]
8791
+ :param do_id_user: Decrement user counter of all datablocks used by this animation
8792
+ :type do_id_user: typing.Union[bool, typing.Any]
8793
+ :param do_ui_user: Make sure interface does not reference this animation
8794
+ :type do_ui_user: typing.Union[bool, typing.Any]
8795
+ """
8796
+ ...
8797
+
8798
+ def tag(self, value: bool):
8799
+ """tag
8800
+
8801
+ :param value: Value
8802
+ :type value: bool
8803
+ """
8804
+ ...
8805
+
8806
+ @classmethod
8807
+ def bl_rna_get_subclass(cls, id: str, default=None):
8808
+ """
8809
+
8810
+ :param id: The RNA type identifier.
8811
+ :type id: str
8812
+ :param default:
8813
+ :return: The RNA type or default when not found.
8814
+ :rtype: Struct
8815
+ """
8816
+ ...
8817
+
8818
+ @classmethod
8819
+ def bl_rna_get_subclass_py(cls, id: str, default=None):
8820
+ """
8821
+
8822
+ :param id: The RNA type identifier.
8823
+ :type id: str
8824
+ :param default:
8825
+ :return: The class or default when not found.
8826
+ :rtype: typing.Any
8827
+ """
8828
+ ...
8829
+
8339
8830
  class BlendDataArmatures(bpy_struct):
8340
8831
  """Collection of armatures"""
8341
8832
 
@@ -17256,6 +17747,12 @@ class Collection(bpy_struct):
17256
17747
  :type: typing.Union[str, int]
17257
17748
  """
17258
17749
 
17750
+ exporters: bpy_prop_collection[CollectionExport]
17751
+ """ Export Handlers configured for the collection
17752
+
17753
+ :type: bpy_prop_collection[CollectionExport]
17754
+ """
17755
+
17259
17756
  hide_render: bool
17260
17757
  """ Globally disable in renders
17261
17758
 
@@ -17424,6 +17921,45 @@ class CollectionChildren(bpy_struct):
17424
17921
  """
17425
17922
  ...
17426
17923
 
17924
+ class CollectionExport(bpy_struct):
17925
+ """Exporter configured for the collection"""
17926
+
17927
+ export_properties: typing.Union[PropertyGroup, typing.Any]
17928
+ """ Properties associated with the configured exporter
17929
+
17930
+ :type: typing.Union[PropertyGroup, typing.Any]
17931
+ """
17932
+
17933
+ is_open: bool
17934
+ """ Whether the panel is expanded or closed
17935
+
17936
+ :type: bool
17937
+ """
17938
+
17939
+ @classmethod
17940
+ def bl_rna_get_subclass(cls, id: str, default=None):
17941
+ """
17942
+
17943
+ :param id: The RNA type identifier.
17944
+ :type id: str
17945
+ :param default:
17946
+ :return: The RNA type or default when not found.
17947
+ :rtype: Struct
17948
+ """
17949
+ ...
17950
+
17951
+ @classmethod
17952
+ def bl_rna_get_subclass_py(cls, id: str, default=None):
17953
+ """
17954
+
17955
+ :param id: The RNA type identifier.
17956
+ :type id: str
17957
+ :param default:
17958
+ :return: The class or default when not found.
17959
+ :rtype: typing.Any
17960
+ """
17961
+ ...
17962
+
17427
17963
  class CollectionLightLinking(bpy_struct):
17428
17964
  """Light linking settings of objects and children collections of a collection"""
17429
17965
 
@@ -34485,6 +35021,12 @@ class FieldSettings(bpy_struct):
34485
35021
  class FileAssetSelectIDFilter(bpy_struct):
34486
35022
  """Which asset types to show/hide, when browsing an asset library"""
34487
35023
 
35024
+ experimental_filter_animation: bool
35025
+ """ Show Animation data-blocks
35026
+
35027
+ :type: bool
35028
+ """
35029
+
34488
35030
  experimental_filter_armature: bool
34489
35031
  """ Show Armature data-blocks
34490
35032
 
@@ -34929,6 +35471,12 @@ class FileSelectIDFilter(bpy_struct):
34929
35471
  :type: bool
34930
35472
  """
34931
35473
 
35474
+ filter_animation: bool
35475
+ """ Show Animation data-blocks
35476
+
35477
+ :type: bool
35478
+ """
35479
+
34932
35480
  filter_armature: bool
34933
35481
  """ Show Armature data-blocks
34934
35482
 
@@ -62363,7 +62911,7 @@ class KeyConfigurations(bpy_struct):
62363
62911
  idname: typing.Union[str, typing.Any],
62364
62912
  context: typing.Union[str, int] = "INVOKE_DEFAULT",
62365
62913
  properties: typing.Union[OperatorProperties, typing.Any] = None,
62366
- include: typing.Any = {'"KEYBOARD"', '"MOUSE"', '"ACTIONZONE"', '"NDOF"'},
62914
+ include: typing.Any = {'"NDOF"', '"MOUSE"', '"ACTIONZONE"', '"KEYBOARD"'},
62367
62915
  exclude: typing.Any = {},
62368
62916
  ) -> typing.Any:
62369
62917
  """find_item_from_operator
@@ -62846,7 +63394,7 @@ class KeyMapItems(bpy_struct):
62846
63394
  self,
62847
63395
  idname: typing.Union[str, typing.Any],
62848
63396
  properties: typing.Union[OperatorProperties, typing.Any] = None,
62849
- include: typing.Any = {'"KEYBOARD"', '"MOUSE"', '"ACTIONZONE"', '"NDOF"'},
63397
+ include: typing.Any = {'"NDOF"', '"MOUSE"', '"ACTIONZONE"', '"KEYBOARD"'},
62850
63398
  exclude: typing.Any = {},
62851
63399
  ) -> typing.Any:
62852
63400
  """find_from_operator
@@ -63116,6 +63664,74 @@ class Keyframe(bpy_struct):
63116
63664
  """
63117
63665
  ...
63118
63666
 
63667
+ class KeyframeAnimationStrip(bpy_struct):
63668
+ """Strip with a set of F-Curves for each animation binding"""
63669
+
63670
+ channelbags: bpy_prop_collection[AnimationChannelBag]
63671
+ """
63672
+
63673
+ :type: bpy_prop_collection[AnimationChannelBag]
63674
+ """
63675
+
63676
+ def channels(self, binding_handle: int) -> int:
63677
+ """Find the AnimationChannelBag for a specific Binding
63678
+
63679
+ :param binding_handle: Binding Handle, Number that identifies a specific animation binding
63680
+ :type binding_handle: int
63681
+ :return: Channels
63682
+ :rtype: AnimationChannelBag
63683
+ """
63684
+ ...
63685
+
63686
+ def key_insert(
63687
+ self,
63688
+ binding: AnimationBinding,
63689
+ data_path: typing.Union[str, typing.Any],
63690
+ array_index: int,
63691
+ value: float,
63692
+ time: float,
63693
+ ) -> float:
63694
+ """key_insert
63695
+
63696
+ :param binding: Binding, The binding that identifies which 'thing' should be keyed
63697
+ :type binding: AnimationBinding
63698
+ :param data_path: Data Path, F-Curve data path
63699
+ :type data_path: typing.Union[str, typing.Any]
63700
+ :param array_index: Array Index, Index of the animated array element, or -1 if the property is not an array
63701
+ :type array_index: int
63702
+ :param value: Value to key, Value of the animated property
63703
+ :type value: float
63704
+ :param time: Time of the key, Time, in frames, of the key
63705
+ :type time: float
63706
+ :return: The FCurve this key was inserted on
63707
+ :rtype: FCurve
63708
+ """
63709
+ ...
63710
+
63711
+ @classmethod
63712
+ def bl_rna_get_subclass(cls, id: str, default=None):
63713
+ """
63714
+
63715
+ :param id: The RNA type identifier.
63716
+ :type id: str
63717
+ :param default:
63718
+ :return: The RNA type or default when not found.
63719
+ :rtype: Struct
63720
+ """
63721
+ ...
63722
+
63723
+ @classmethod
63724
+ def bl_rna_get_subclass_py(cls, id: str, default=None):
63725
+ """
63726
+
63727
+ :param id: The RNA type identifier.
63728
+ :type id: str
63729
+ :param default:
63730
+ :return: The class or default when not found.
63731
+ :rtype: typing.Any
63732
+ """
63733
+ ...
63734
+
63119
63735
  class KeyingSet(bpy_struct):
63120
63736
  """Settings that should be keyframed together"""
63121
63737
 
@@ -90655,6 +91271,12 @@ class PreferencesExperimental(bpy_struct):
90655
91271
  :type: bool
90656
91272
  """
90657
91273
 
91274
+ use_animation_baklava: bool
91275
+ """ The new 'Animation' data-block can contain the animation for multiple data-blocks at once
91276
+
91277
+ :type: bool
91278
+ """
91279
+
90658
91280
  use_asset_indexing: bool
90659
91281
  """ Disable the asset indexer, to force every asset library refresh to completely reread assets from disk
90660
91282
 
@@ -125638,6 +126260,10 @@ class UILayout(bpy_struct):
125638
126260
  """Generates the UI layout for the modifier stack"""
125639
126261
  ...
125640
126262
 
126263
+ def template_collection_exporters(self):
126264
+ """Generates the UI layout for collection exporters"""
126265
+ ...
126266
+
125641
126267
  def template_constraints(
125642
126268
  self, use_bone_constraints: typing.Union[bool, typing.Any] = True
125643
126269
  ):
@@ -129461,6 +130087,12 @@ class ViewLayer(bpy_struct):
129461
130087
  :type: typing.Union[FreestyleSettings, typing.Any]
129462
130088
  """
129463
130089
 
130090
+ has_export_collections: typing.Union[bool, typing.Any]
130091
+ """ At least one Collection in this View Layer has an exporter
130092
+
130093
+ :type: typing.Union[bool, typing.Any]
130094
+ """
130095
+
129464
130096
  layer_collection: typing.Union[LayerCollection, typing.Any]
129465
130097
  """ Root of collections hierarchy of this view layer, its 'collection' pointer property is the same as the scene's master collection
129466
130098
 
@@ -131693,6 +132325,12 @@ class WindowManager(bpy_struct):
131693
132325
  :type: typing.Union[str, typing.Any]
131694
132326
  """
131695
132327
 
132328
+ selected_animation: Animation
132329
+ """ Animation assigned to the active Object
132330
+
132331
+ :type: Animation
132332
+ """
132333
+
131696
132334
  windows: bpy_prop_collection[Window]
131697
132335
  """ Open windows
131698
132336
 
@@ -135043,6 +135681,10 @@ COLLECTION_PT_collection_flags: bl_ui.properties_collection.COLLECTION_PT_collec
135043
135681
  """
135044
135682
  """
135045
135683
 
135684
+ COLLECTION_PT_exporters: bl_ui.properties_collection.COLLECTION_PT_exporters
135685
+ """
135686
+ """
135687
+
135046
135688
  COLLECTION_PT_instancing: bl_ui.properties_collection.COLLECTION_PT_instancing
135047
135689
  """
135048
135690
  """
@@ -140247,6 +140889,10 @@ VIEW3D_PT_active_tool_duplicate: bl_ui.space_view3d.VIEW3D_PT_active_tool_duplic
140247
140889
  """
140248
140890
  """
140249
140891
 
140892
+ VIEW3D_PT_animation_layers: bl_ui.temp_anim_layers.VIEW3D_PT_animation_layers
140893
+ """
140894
+ """
140895
+
140250
140896
  VIEW3D_PT_annotation_onion: bl_ui.space_view3d.VIEW3D_PT_annotation_onion
140251
140897
  """
140252
140898
  """
@@ -141183,6 +141829,10 @@ WM_OT_url_open_preset: bl_operators.wm.WM_OT_url_open_preset
141183
141829
  """
141184
141830
  """
141185
141831
 
141832
+ WM_PT_operator_presets: bl_operators.presets.WM_PT_operator_presets
141833
+ """
141834
+ """
141835
+
141186
141836
  WORKSPACE_PT_addons: bl_ui.properties_workspace.WORKSPACE_PT_addons
141187
141837
  """
141188
141838
  """