fake-bpy-module 20240523__py3-none-any.whl → 20240528__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.

Files changed (94) hide show
  1. bl_operators/__init__.pyi +1 -0
  2. bl_operators/image_as_planes/__init__.pyi +457 -0
  3. bl_operators/userpref/__init__.pyi +0 -214
  4. bl_ui/properties_data_modifier/__init__.pyi +284 -0
  5. bl_ui/properties_render/__init__.pyi +1 -1
  6. bl_ui/space_userpref/__init__.pyi +233 -0
  7. bpy/app/__init__.pyi +9 -1
  8. bpy/ops/action/__init__.pyi +21 -0
  9. bpy/ops/anim/__init__.pyi +34 -0
  10. bpy/ops/armature/__init__.pyi +31 -0
  11. bpy/ops/asset/__init__.pyi +5 -0
  12. bpy/ops/bl_pkg/__init__.pyi +28 -17
  13. bpy/ops/boid/__init__.pyi +1 -0
  14. bpy/ops/brush/__init__.pyi +6 -0
  15. bpy/ops/buttons/__init__.pyi +2 -0
  16. bpy/ops/cachefile/__init__.pyi +3 -0
  17. bpy/ops/camera/__init__.pyi +2 -0
  18. bpy/ops/clip/__init__.pyi +49 -0
  19. bpy/ops/cloth/__init__.pyi +1 -0
  20. bpy/ops/collection/__init__.pyi +7 -0
  21. bpy/ops/console/__init__.pyi +11 -0
  22. bpy/ops/constraint/__init__.pyi +15 -0
  23. bpy/ops/curve/__init__.pyi +28 -0
  24. bpy/ops/curves/__init__.pyi +14 -0
  25. bpy/ops/cycles/__init__.pyi +2 -0
  26. bpy/ops/dpaint/__init__.pyi +2 -0
  27. bpy/ops/ed/__init__.pyi +3 -0
  28. bpy/ops/export_anim/__init__.pyi +1 -0
  29. bpy/ops/export_scene/__init__.pyi +20 -3
  30. bpy/ops/file/__init__.pyi +14 -0
  31. bpy/ops/fluid/__init__.pyi +1 -0
  32. bpy/ops/font/__init__.pyi +13 -0
  33. bpy/ops/geometry/__init__.pyi +7 -0
  34. bpy/ops/gizmogroup/__init__.pyi +1 -0
  35. bpy/ops/gpencil/__init__.pyi +106 -0
  36. bpy/ops/graph/__init__.pyi +47 -0
  37. bpy/ops/grease_pencil/__init__.pyi +58 -0
  38. bpy/ops/image/__init__.pyi +308 -0
  39. bpy/ops/import_anim/__init__.pyi +1 -0
  40. bpy/ops/import_curve/__init__.pyi +1 -0
  41. bpy/ops/import_scene/__init__.pyi +2 -0
  42. bpy/ops/info/__init__.pyi +3 -0
  43. bpy/ops/lattice/__init__.pyi +5 -0
  44. bpy/ops/marker/__init__.pyi +9 -0
  45. bpy/ops/mask/__init__.pyi +22 -0
  46. bpy/ops/mball/__init__.pyi +7 -0
  47. bpy/ops/mesh/__init__.pyi +134 -0
  48. bpy/ops/nla/__init__.pyi +20 -0
  49. bpy/ops/node/__init__.pyi +47 -0
  50. bpy/ops/object/__init__.pyi +174 -0
  51. bpy/ops/outliner/__init__.pyi +53 -0
  52. bpy/ops/paint/__init__.pyi +39 -0
  53. bpy/ops/paintcurve/__init__.pyi +4 -0
  54. bpy/ops/palette/__init__.pyi +4 -0
  55. bpy/ops/particle/__init__.pyi +17 -0
  56. bpy/ops/pose/__init__.pyi +24 -0
  57. bpy/ops/poselib/__init__.pyi +4 -0
  58. bpy/ops/preferences/__init__.pyi +26 -14
  59. bpy/ops/ptcache/__init__.pyi +2 -0
  60. bpy/ops/render/__init__.pyi +9 -0
  61. bpy/ops/rigidbody/__init__.pyi +7 -0
  62. bpy/ops/scene/__init__.pyi +16 -0
  63. bpy/ops/screen/__init__.pyi +21 -0
  64. bpy/ops/script/__init__.pyi +2 -0
  65. bpy/ops/sculpt/__init__.pyi +26 -1
  66. bpy/ops/sculpt_curves/__init__.pyi +3 -0
  67. bpy/ops/sequencer/__init__.pyi +57 -0
  68. bpy/ops/sound/__init__.pyi +4 -0
  69. bpy/ops/spreadsheet/__init__.pyi +2 -0
  70. bpy/ops/surface/__init__.pyi +6 -0
  71. bpy/ops/text/__init__.pyi +18 -0
  72. bpy/ops/text_editor/__init__.pyi +1 -0
  73. bpy/ops/texture/__init__.pyi +1 -0
  74. bpy/ops/transform/__init__.pyi +25 -0
  75. bpy/ops/ui/__init__.pyi +13 -0
  76. bpy/ops/uilist/__init__.pyi +3 -0
  77. bpy/ops/uv/__init__.pyi +40 -0
  78. bpy/ops/view2d/__init__.pyi +11 -0
  79. bpy/ops/view3d/__init__.pyi +30 -0
  80. bpy/ops/wm/__init__.pyi +114 -0
  81. bpy/ops/workspace/__init__.pyi +1 -0
  82. bpy/path/__init__.pyi +6 -6
  83. bpy/props/__init__.pyi +11 -1
  84. bpy/types/__init__.pyi +594 -342
  85. bpy/utils/__init__.pyi +10 -8
  86. bpy_extras/anim_utils/__init__.pyi +3 -3
  87. bpy_extras/view3d_utils/__init__.pyi +2 -0
  88. {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/METADATA +1 -1
  89. {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/RECORD +94 -93
  90. gpu/types/__init__.pyi +4 -2
  91. gpu_extras/batch/__init__.pyi +1 -1
  92. gpu_extras/presets/__init__.pyi +1 -1
  93. {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/WHEEL +0 -0
  94. {fake_bpy_module-20240523.dist-info → fake_bpy_module-20240528.dist-info}/top_level.txt +0 -0
bpy/types/__init__.pyi CHANGED
@@ -32365,6 +32365,12 @@ object, placing it into a view layer, selecting it and making it active.
32365
32365
  * bpy.context.active_gpencil_frame
32366
32366
  * GreasePencilv3.layers
32367
32367
  * GreasePencilv3Layers.active_layer
32368
+ * GreasePencilv3Layers.move
32369
+ * GreasePencilv3Layers.move_bottom
32370
+ * GreasePencilv3Layers.move_to_layer_group
32371
+ * GreasePencilv3Layers.move_top
32372
+ * GreasePencilv3Layers.new
32373
+ * GreasePencilv3Layers.remove
32368
32374
 
32369
32375
  :columns: 2
32370
32376
 
@@ -57289,8 +57295,19 @@ of the scene and only show nodes of the renderer they are designed for.
57289
57295
 
57290
57296
  --------------------
57291
57297
 
57298
+ * GreasePencilLayer.parent_group
57292
57299
  * GreasePencilv3.layer_groups
57293
57300
  * GreasePencilv3LayerGroup.active_group
57301
+ * GreasePencilv3LayerGroup.move
57302
+ * GreasePencilv3LayerGroup.move_bottom
57303
+ * GreasePencilv3LayerGroup.move_to_layer_group
57304
+ * GreasePencilv3LayerGroup.move_to_layer_group
57305
+ * GreasePencilv3LayerGroup.move_top
57306
+ * GreasePencilv3LayerGroup.new
57307
+ * GreasePencilv3LayerGroup.new
57308
+ * GreasePencilv3LayerGroup.remove
57309
+ * GreasePencilv3Layers.move_to_layer_group
57310
+ * GreasePencilv3Layers.new
57294
57311
 
57295
57312
  :columns: 2
57296
57313
 
@@ -75722,6 +75739,7 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
75722
75739
  * bpy.context.active_operator
75723
75740
  * SpaceFileBrowser.active_operator
75724
75741
  * SpaceFileBrowser.operator
75742
+ * Window.modal_operators
75725
75743
  * WindowManager.fileselect_add
75726
75744
  * WindowManager.invoke_confirm
75727
75745
  * WindowManager.invoke_popup
@@ -97852,6 +97870,7 @@ import bl_operators.constraint
97852
97870
  import bl_operators.file
97853
97871
  import bl_operators.freestyle
97854
97872
  import bl_operators.image
97873
+ import bl_operators.image_as_planes
97855
97874
  import bl_operators.node
97856
97875
  import bl_operators.object
97857
97876
  import bl_operators.presets
@@ -98004,10 +98023,12 @@ class bpy_prop_collection(typing.Generic[GenericType1]):
98004
98023
  """
98005
98024
  ...
98006
98025
 
98007
- def items(self):
98026
+ def items(self) -> list[tuple[str, GenericType1]]:
98008
98027
  """Return the identifiers of collection members
98009
98028
  (matching Python's dict.items() functionality).
98010
98029
 
98030
+ :return:
98031
+ :rtype: list[tuple[str, GenericType1]]
98011
98032
  """
98012
98033
  ...
98013
98034
 
@@ -98049,13 +98070,11 @@ class bpy_prop_collection(typing.Generic[GenericType1]):
98049
98070
  """
98050
98071
  ...
98051
98072
 
98052
- def __delitem__(self, key: int | str) -> GenericType1:
98073
+ def __delitem__(self, key: int | str):
98053
98074
  """
98054
98075
 
98055
98076
  :param key:
98056
98077
  :type key: int | str
98057
- :return:
98058
- :rtype: GenericType1
98059
98078
  """
98060
98079
  ...
98061
98080
 
@@ -98363,30 +98382,28 @@ class bpy_struct(typing.Generic[GenericType1]):
98363
98382
  """
98364
98383
  ...
98365
98384
 
98366
- def __delitem__(self, key: int | str) -> typing.Any:
98385
+ def __delitem__(self, key: int | str):
98367
98386
  """
98368
98387
 
98369
98388
  :param key:
98370
98389
  :type key: int | str
98371
- :return:
98372
- :rtype: typing.Any
98373
98390
  """
98374
98391
  ...
98375
98392
 
98376
98393
  class bpy_prop_array(typing.Generic[GenericType1]):
98377
- def foreach_get(self, attr, seq):
98394
+ def foreach_get(self, seq: collections.abc.MutableSequence[GenericType1]):
98378
98395
  """
98379
98396
 
98380
- :param attr:
98381
98397
  :param seq:
98398
+ :type seq: collections.abc.MutableSequence[GenericType1]
98382
98399
  """
98383
98400
  ...
98384
98401
 
98385
- def foreach_set(self, attr, seq):
98402
+ def foreach_set(self, seq: typing.Sequence[GenericType1]):
98386
98403
  """
98387
98404
 
98388
- :param attr:
98389
98405
  :param seq:
98406
+ :type seq: typing.Sequence[GenericType1]
98390
98407
  """
98391
98408
  ...
98392
98409
 
@@ -98410,13 +98427,11 @@ class bpy_prop_array(typing.Generic[GenericType1]):
98410
98427
  """
98411
98428
  ...
98412
98429
 
98413
- def __delitem__(self, key: int | str) -> GenericType1:
98430
+ def __delitem__(self, key: int | str):
98414
98431
  """
98415
98432
 
98416
98433
  :param key:
98417
98434
  :type key: int | str
98418
- :return:
98419
- :rtype: GenericType1
98420
98435
  """
98421
98436
  ...
98422
98437
 
@@ -99010,16 +99025,16 @@ class ActionLayers(bpy_struct, bpy_prop_collection[ActionLayer]):
99010
99025
  class ActionPoseMarkers(bpy_struct, bpy_prop_collection[TimelineMarker]):
99011
99026
  """Collection of timeline markers"""
99012
99027
 
99013
- active: TimelineMarker
99028
+ active: TimelineMarker | None
99014
99029
  """ Active pose marker for this action
99015
99030
 
99016
- :type: TimelineMarker
99031
+ :type: TimelineMarker | None
99017
99032
  """
99018
99033
 
99019
- active_index: typing.Optional[int]
99034
+ active_index: int | None
99020
99035
  """ Index of active pose marker
99021
99036
 
99022
- :type: typing.Optional[int]
99037
+ :type: int | None
99023
99038
  """
99024
99039
 
99025
99040
  def new(self, name: str | typing.Any) -> TimelineMarker:
@@ -99752,10 +99767,10 @@ class AreaSpaces(bpy_struct, bpy_prop_collection[Space]):
99752
99767
  class ArmatureBones(bpy_struct, bpy_prop_collection[Bone]):
99753
99768
  """Collection of armature bones"""
99754
99769
 
99755
- active: Bone
99770
+ active: Bone | None
99756
99771
  """ Armature's active bone
99757
99772
 
99758
- :type: Bone
99773
+ :type: Bone | None
99759
99774
  """
99760
99775
 
99761
99776
  @classmethod
@@ -99832,10 +99847,10 @@ class ArmatureConstraintTargets(bpy_struct, bpy_prop_collection[ConstraintTarget
99832
99847
  class ArmatureEditBones(bpy_struct, bpy_prop_collection[EditBone]):
99833
99848
  """Collection of armature edit bones"""
99834
99849
 
99835
- active: EditBone
99850
+ active: EditBone | None
99836
99851
  """ Armatures active edit bone
99837
99852
 
99838
- :type: EditBone
99853
+ :type: EditBone | None
99839
99854
  """
99840
99855
 
99841
99856
  def new(self, name: str | typing.Any) -> EditBone:
@@ -99986,10 +100001,10 @@ class AssetLibraryReference(bpy_struct):
99986
100001
  class AssetMetaData(bpy_struct):
99987
100002
  """Additional data stored for an asset data-block"""
99988
100003
 
99989
- active_tag: typing.Optional[int]
100004
+ active_tag: int | None
99990
100005
  """ Index of the tag set for editing
99991
100006
 
99992
- :type: typing.Optional[int]
100007
+ :type: int | None
99993
100008
  """
99994
100009
 
99995
100010
  author: str
@@ -100438,22 +100453,22 @@ class Attribute(bpy_struct):
100438
100453
  class AttributeGroup(bpy_struct, bpy_prop_collection[Attribute]):
100439
100454
  """Group of geometry attributes"""
100440
100455
 
100441
- active: Attribute
100456
+ active: Attribute | None
100442
100457
  """ Active attribute
100443
100458
 
100444
- :type: Attribute
100459
+ :type: Attribute | None
100445
100460
  """
100446
100461
 
100447
- active_color: typing.Optional[Attribute]
100462
+ active_color: Attribute | None
100448
100463
  """ Active color attribute for display and editing
100449
100464
 
100450
- :type: typing.Optional[Attribute]
100465
+ :type: Attribute | None
100451
100466
  """
100452
100467
 
100453
- active_color_index: typing.Optional[int]
100468
+ active_color_index: int | None
100454
100469
  """ Active color attribute index
100455
100470
 
100456
- :type: typing.Optional[int]
100471
+ :type: int | None
100457
100472
  """
100458
100473
 
100459
100474
  active_color_name: str
@@ -100462,10 +100477,10 @@ class AttributeGroup(bpy_struct, bpy_prop_collection[Attribute]):
100462
100477
  :type: str
100463
100478
  """
100464
100479
 
100465
- active_index: typing.Optional[int]
100480
+ active_index: int | None
100466
100481
  """ Active attribute index
100467
100482
 
100468
- :type: typing.Optional[int]
100483
+ :type: int | None
100469
100484
  """
100470
100485
 
100471
100486
  default_color_name: str
@@ -103715,10 +103730,10 @@ class BoidSettings(bpy_struct):
103715
103730
  :type: BoidRule
103716
103731
  """
103717
103732
 
103718
- active_boid_state_index: typing.Optional[int]
103733
+ active_boid_state_index: int | None
103719
103734
  """
103720
103735
 
103721
- :type: typing.Optional[int]
103736
+ :type: int | None
103722
103737
  """
103723
103738
 
103724
103739
  aggression: float
@@ -103892,10 +103907,10 @@ class BoidState(bpy_struct):
103892
103907
  :type: BoidRule
103893
103908
  """
103894
103909
 
103895
- active_boid_rule_index: typing.Optional[int]
103910
+ active_boid_rule_index: int | None
103896
103911
  """
103897
103912
 
103898
- :type: typing.Optional[int]
103913
+ :type: int | None
103899
103914
  """
103900
103915
 
103901
103916
  falloff: float
@@ -104639,16 +104654,16 @@ class BoneCollectionMemberships(bpy_struct, bpy_prop_collection[BoneCollection])
104639
104654
  class BoneCollections(bpy_struct):
104640
104655
  """The Bone Collections of this Armature"""
104641
104656
 
104642
- active: BoneCollection
104657
+ active: BoneCollection | None
104643
104658
  """ Armature's active bone collection
104644
104659
 
104645
- :type: BoneCollection
104660
+ :type: BoneCollection | None
104646
104661
  """
104647
104662
 
104648
- active_index: typing.Optional[int]
104663
+ active_index: int | None
104649
104664
  """ The index of the Armature's active bone collection; -1 when there is no active collection. Note that this is indexing the underlying array of bone collections, which may not be in the order you expect. Root collections are listed first, and siblings are always sequential. Apart from that, bone collections can be in any order, and thus incrementing or decrementing this index can make the active bone collection jump around in unexpected ways. For a more predictable interface, use active or active_name
104650
104665
 
104651
- :type: typing.Optional[int]
104666
+ :type: int | None
104652
104667
  """
104653
104668
 
104654
104669
  active_name: str
@@ -105224,10 +105239,10 @@ class BrushCurvesSculptSettings(bpy_struct):
105224
105239
  class BrushGpencilSettings(bpy_struct):
105225
105240
  """Settings for grease pencil brush"""
105226
105241
 
105227
- active_smooth_factor: typing.Optional[float]
105242
+ active_smooth_factor: float | None
105228
105243
  """ Amount of smoothing while drawing
105229
105244
 
105230
- :type: typing.Optional[float]
105245
+ :type: float | None
105231
105246
  """
105232
105247
 
105233
105248
  angle: float
@@ -105878,10 +105893,10 @@ class CacheFileLayer(bpy_struct):
105878
105893
  class CacheFileLayers(bpy_struct, bpy_prop_collection[CacheFileLayer]):
105879
105894
  """Collection of cache layers"""
105880
105895
 
105881
- active: CacheFileLayer
105896
+ active: CacheFileLayer | None
105882
105897
  """ Active layer of the CacheFile
105883
105898
 
105884
- :type: CacheFileLayer
105899
+ :type: CacheFileLayer | None
105885
105900
  """
105886
105901
 
105887
105902
  def new(self, filepath: str | typing.Any) -> CacheFileLayer:
@@ -107846,10 +107861,10 @@ class ConsoleLine(bpy_struct):
107846
107861
  class Constraint(bpy_struct):
107847
107862
  """Constraint modifying the transformation of objects and bones"""
107848
107863
 
107849
- active: bool
107864
+ active: bool | None
107850
107865
  """ Constraint is the one being edited
107851
107866
 
107852
- :type: bool
107867
+ :type: bool | None
107853
107868
  """
107854
107869
 
107855
107870
  enabled: bool
@@ -108517,10 +108532,10 @@ class Context(bpy_struct):
108517
108532
  :type: Mask
108518
108533
  """
108519
108534
 
108520
- active_file: typing.Optional[FileSelectEntry]
108535
+ active_file: FileSelectEntry | None
108521
108536
  """
108522
108537
 
108523
- :type: typing.Optional[FileSelectEntry]
108538
+ :type: FileSelectEntry | None
108524
108539
  """
108525
108540
 
108526
108541
  selected_files: typing.Any
@@ -108551,10 +108566,10 @@ class Context(bpy_struct):
108551
108566
  """
108552
108567
 
108553
108568
  selected_nodes: typing.Any
108554
- active_node: typing.Optional[Node]
108569
+ active_node: Node | None
108555
108570
  """
108556
108571
 
108557
- :type: typing.Optional[Node]
108572
+ :type: Node | None
108558
108573
  """
108559
108574
 
108560
108575
  light: Light
@@ -108601,22 +108616,22 @@ class Context(bpy_struct):
108601
108616
  visible_pose_bones: typing.Any
108602
108617
  selected_pose_bones: typing.Any
108603
108618
  selected_pose_bones_from_active_object: typing.Any
108604
- active_bone: typing.Optional[EditBone]
108619
+ active_bone: EditBone | None
108605
108620
  """
108606
108621
 
108607
- :type: typing.Optional[EditBone]
108622
+ :type: EditBone | None
108608
108623
  """
108609
108624
 
108610
- active_pose_bone: typing.Optional[PoseBone]
108625
+ active_pose_bone: PoseBone | None
108611
108626
  """
108612
108627
 
108613
- :type: typing.Optional[PoseBone]
108628
+ :type: PoseBone | None
108614
108629
  """
108615
108630
 
108616
- active_object: typing.Optional[Object]
108631
+ active_object: Object | None
108617
108632
  """
108618
108633
 
108619
- :type: typing.Optional[Object]
108634
+ :type: Object | None
108620
108635
  """
108621
108636
 
108622
108637
  object: Object
@@ -108667,25 +108682,25 @@ class Context(bpy_struct):
108667
108682
  :type: Object
108668
108683
  """
108669
108684
 
108670
- active_sequence_strip: typing.Optional[Sequence]
108685
+ active_sequence_strip: Sequence | None
108671
108686
  """
108672
108687
 
108673
- :type: typing.Optional[Sequence]
108688
+ :type: Sequence | None
108674
108689
  """
108675
108690
 
108676
108691
  sequences: typing.Any
108677
108692
  selected_sequences: typing.Any
108678
108693
  selected_editable_sequences: typing.Any
108679
- active_nla_track: typing.Optional[NlaTrack]
108694
+ active_nla_track: NlaTrack | None
108680
108695
  """
108681
108696
 
108682
- :type: typing.Optional[NlaTrack]
108697
+ :type: NlaTrack | None
108683
108698
  """
108684
108699
 
108685
- active_nla_strip: typing.Optional[NlaStrip]
108700
+ active_nla_strip: NlaStrip | None
108686
108701
  """
108687
108702
 
108688
- :type: typing.Optional[NlaStrip]
108703
+ :type: NlaStrip | None
108689
108704
  """
108690
108705
 
108691
108706
  selected_nla_strips: typing.Any
@@ -108719,22 +108734,22 @@ class Context(bpy_struct):
108719
108734
  editable_gpencil_strokes: typing.Any
108720
108735
  active_gpencil_layer: typing.Any
108721
108736
  active_gpencil_frame: typing.Any
108722
- active_annotation_layer: typing.Optional[GPencilLayer]
108737
+ active_annotation_layer: GPencilLayer | None
108723
108738
  """
108724
108739
 
108725
- :type: typing.Optional[GPencilLayer]
108740
+ :type: GPencilLayer | None
108726
108741
  """
108727
108742
 
108728
- active_operator: typing.Optional[Operator]
108743
+ active_operator: Operator | None
108729
108744
  """
108730
108745
 
108731
- :type: typing.Optional[Operator]
108746
+ :type: Operator | None
108732
108747
  """
108733
108748
 
108734
- active_action: typing.Optional[Action]
108749
+ active_action: Action | None
108735
108750
  """
108736
108751
 
108737
- :type: typing.Optional[Action]
108752
+ :type: Action | None
108738
108753
  """
108739
108754
 
108740
108755
  selected_visible_actions: typing.Any
@@ -108743,10 +108758,10 @@ class Context(bpy_struct):
108743
108758
  editable_fcurves: typing.Any
108744
108759
  selected_visible_fcurves: typing.Any
108745
108760
  selected_editable_fcurves: typing.Any
108746
- active_editable_fcurve: typing.Optional[FCurve]
108761
+ active_editable_fcurve: FCurve | None
108747
108762
  """
108748
108763
 
108749
- :type: typing.Optional[FCurve]
108764
+ :type: FCurve | None
108750
108765
  """
108751
108766
 
108752
108767
  selected_editable_keyframes: typing.Any
@@ -108781,10 +108796,10 @@ Returns a tuple of the data-block, data path to the property, and array index.
108781
108796
  :type: Text
108782
108797
  """
108783
108798
 
108784
- active_object: typing.Optional[Object]
108799
+ active_object: Object | None
108785
108800
  """
108786
108801
 
108787
- :type: typing.Optional[Object]
108802
+ :type: Object | None
108788
108803
  """
108789
108804
 
108790
108805
  selected_ids: typing.Any
@@ -108833,7 +108848,11 @@ Returns a tuple of the data-block, data path to the property, and array index.
108833
108848
  ...
108834
108849
 
108835
108850
  def temp_override(
108836
- self, window: Window | None, area: Area | None, region: Region | None, keywords
108851
+ self,
108852
+ window: Window | None,
108853
+ area: Area | None,
108854
+ region: Region | None,
108855
+ **keywords,
108837
108856
  ):
108838
108857
  """Context manager to temporarily override members in the context.Overriding the context can be used to temporarily activate another window / area & region,
108839
108858
  as well as other members such as the active_object or bone.Notes:Overriding the context can be useful to set the context after loading files
@@ -109208,6 +109227,12 @@ class CurvePaintSettings(bpy_struct):
109208
109227
  :type: bool
109209
109228
  """
109210
109229
 
109230
+ use_project_only_selected: bool
109231
+ """ Project the strokes only onto selected objects
109232
+
109233
+ :type: bool
109234
+ """
109235
+
109211
109236
  use_stroke_endpoints: bool
109212
109237
  """ Use the start of the stroke for the depth
109213
109238
 
@@ -109526,10 +109551,10 @@ class CurveSlice(bpy_struct):
109526
109551
  class CurveSplines(bpy_struct, bpy_prop_collection[Spline]):
109527
109552
  """Collection of curve splines"""
109528
109553
 
109529
- active: Spline
109554
+ active: Spline | None
109530
109555
  """ Active curve spline
109531
109556
 
109532
- :type: Spline
109557
+ :type: Spline | None
109533
109558
  """
109534
109559
 
109535
109560
  def new(self, type: str | None) -> Spline:
@@ -111051,10 +111076,10 @@ class DynamicPaintSurfaces(bpy_struct, bpy_prop_collection[DynamicPaintSurface])
111051
111076
  :type: DynamicPaintSurface
111052
111077
  """
111053
111078
 
111054
- active_index: typing.Optional[int]
111079
+ active_index: int | None
111055
111080
  """
111056
111081
 
111057
- :type: typing.Optional[int]
111082
+ :type: int | None
111058
111083
  """
111059
111084
 
111060
111085
  @classmethod
@@ -111497,6 +111522,7 @@ Utility function for (tail - head)(readonly)"""
111497
111522
  def transform(
111498
111523
  self,
111499
111524
  matrix: typing.Sequence[float] | mathutils.Matrix | None,
111525
+ *,
111500
111526
  scale: bool | None = True,
111501
111527
  roll: bool | None = True,
111502
111528
  ):
@@ -112219,10 +112245,10 @@ class FCurveKeyframePoints(bpy_struct, bpy_prop_collection[Keyframe]):
112219
112245
  class FCurveModifiers(bpy_struct, bpy_prop_collection[FModifier]):
112220
112246
  """Collection of F-Curve Modifiers"""
112221
112247
 
112222
- active: FModifier
112248
+ active: FModifier | None
112223
112249
  """ Active F-Curve Modifier
112224
112250
 
112225
- :type: FModifier
112251
+ :type: FModifier | None
112226
112252
  """
112227
112253
 
112228
112254
  def new(self, type: str | None) -> FModifier:
@@ -112456,10 +112482,10 @@ class FFmpegSettings(bpy_struct):
112456
112482
  class FModifier(bpy_struct):
112457
112483
  """Modifier for values of F-Curve"""
112458
112484
 
112459
- active: bool
112485
+ active: bool | None
112460
112486
  """ F-Curve modifier will show settings in the editor
112461
112487
 
112462
- :type: bool
112488
+ :type: bool | None
112463
112489
  """
112464
112490
 
112465
112491
  blend_in: float
@@ -117483,6 +117509,7 @@ class Gizmo(bpy_struct):
117483
117509
  def draw_custom_shape(
117484
117510
  self,
117485
117511
  shape,
117512
+ *,
117486
117513
  matrix: typing.Sequence[float] | mathutils.Matrix | None = None,
117487
117514
  select_id=None,
117488
117515
  ):
@@ -118059,12 +118086,40 @@ class GreasePencilLayer(bpy_struct):
118059
118086
  :type: bool
118060
118087
  """
118061
118088
 
118089
+ lock_frame: bool
118090
+ """ Lock current frame displayed by layer
118091
+
118092
+ :type: bool
118093
+ """
118094
+
118062
118095
  mask_layers: GreasePencilLayerMasks
118063
118096
  """ List of Masking Layers
118064
118097
 
118065
118098
  :type: GreasePencilLayerMasks
118066
118099
  """
118067
118100
 
118101
+ matrix_local: list[list[float]] | tuple[
118102
+ tuple[float, float, float, float],
118103
+ tuple[float, float, float, float],
118104
+ tuple[float, float, float, float],
118105
+ tuple[float, float, float, float],
118106
+ ] | mathutils.Matrix
118107
+ """ Local transformation matrix of the layer
118108
+
118109
+ :type: list[list[float]] | tuple[tuple[float, float, float, float], tuple[float, float, float, float], tuple[float, float, float, float], tuple[float, float, float, float]] | mathutils.Matrix
118110
+ """
118111
+
118112
+ matrix_parent_inverse: list[list[float]] | tuple[
118113
+ tuple[float, float, float, float],
118114
+ tuple[float, float, float, float],
118115
+ tuple[float, float, float, float],
118116
+ tuple[float, float, float, float],
118117
+ ] | mathutils.Matrix
118118
+ """ Inverse of layer's parent transformation matrix
118119
+
118120
+ :type: list[list[float]] | tuple[tuple[float, float, float, float], tuple[float, float, float, float], tuple[float, float, float, float], tuple[float, float, float, float]] | mathutils.Matrix
118121
+ """
118122
+
118068
118123
  name: str
118069
118124
  """ Layer name
118070
118125
 
@@ -118089,6 +118144,12 @@ class GreasePencilLayer(bpy_struct):
118089
118144
  :type: str
118090
118145
  """
118091
118146
 
118147
+ parent_group: GreasePencilLayerGroup
118148
+ """ The parent layer group this layer is part of
118149
+
118150
+ :type: GreasePencilLayerGroup
118151
+ """
118152
+
118092
118153
  pass_index: int
118093
118154
  """ Index number for the "Layer Index" pass
118094
118155
 
@@ -118107,6 +118168,12 @@ class GreasePencilLayer(bpy_struct):
118107
118168
  :type: list[float] | tuple[float, float, float] | mathutils.Vector
118108
118169
  """
118109
118170
 
118171
+ select: bool
118172
+ """ Layer is selected for editing in the Dope Sheet
118173
+
118174
+ :type: bool
118175
+ """
118176
+
118110
118177
  translation: list[float] | tuple[float, float, float] | mathutils.Vector
118111
118178
  """ Translation of the layer
118112
118179
 
@@ -118272,10 +118339,10 @@ class GreasePencilLayerMask(bpy_struct):
118272
118339
  class GreasePencilLayerMasks(bpy_struct, bpy_prop_collection[GreasePencilLayerMask]):
118273
118340
  """Collection of grease pencil masking layers"""
118274
118341
 
118275
- active_mask_index: typing.Optional[int]
118342
+ active_mask_index: int | None
118276
118343
  """ Active index in layer mask array
118277
118344
 
118278
- :type: typing.Optional[int]
118345
+ :type: int | None
118279
118346
  """
118280
118347
 
118281
118348
  @classmethod
@@ -118305,22 +118372,22 @@ class GreasePencilLayerMasks(bpy_struct, bpy_prop_collection[GreasePencilLayerMa
118305
118372
  class GreasePencilLayers(bpy_struct, bpy_prop_collection[GPencilLayer]):
118306
118373
  """Collection of grease pencil layers"""
118307
118374
 
118308
- active: GPencilLayer
118375
+ active: GPencilLayer | None
118309
118376
  """ Active grease pencil layer
118310
118377
 
118311
- :type: GPencilLayer
118378
+ :type: GPencilLayer | None
118312
118379
  """
118313
118380
 
118314
- active_index: typing.Optional[int]
118381
+ active_index: int | None
118315
118382
  """ Index of active grease pencil layer
118316
118383
 
118317
- :type: typing.Optional[int]
118384
+ :type: int | None
118318
118385
  """
118319
118386
 
118320
- active_note: typing.Optional[str]
118387
+ active_note: str | None
118321
118388
  """ Note/Layer to add annotation strokes to
118322
118389
 
118323
- :type: typing.Optional[str]
118390
+ :type: str | None
118324
118391
  """
118325
118392
 
118326
118393
  def new(
@@ -118382,10 +118449,10 @@ class GreasePencilLayers(bpy_struct, bpy_prop_collection[GPencilLayer]):
118382
118449
  class GreasePencilMaskLayers(bpy_struct, bpy_prop_collection[GPencilLayerMask]):
118383
118450
  """Collection of grease pencil masking layers"""
118384
118451
 
118385
- active_mask_index: typing.Optional[int]
118452
+ active_mask_index: int | None
118386
118453
  """ Active index in layer mask array
118387
118454
 
118388
- :type: typing.Optional[int]
118455
+ :type: int | None
118389
118456
  """
118390
118457
 
118391
118458
  def add(self, layer: GPencilLayer):
@@ -118488,12 +118555,80 @@ class GreasePencilTimeModifierSegment(bpy_struct):
118488
118555
  class GreasePencilv3LayerGroup(bpy_struct, bpy_prop_collection[GreasePencilLayerGroup]):
118489
118556
  """Collection of Grease Pencil layers"""
118490
118557
 
118491
- active_group: typing.Optional[GreasePencilLayerGroup]
118492
- """ Active Grease Pencil layer
118558
+ active_group: GreasePencilLayerGroup | None
118559
+ """ Active Grease Pencil layer group
118493
118560
 
118494
- :type: typing.Optional[GreasePencilLayerGroup]
118561
+ :type: GreasePencilLayerGroup | None
118495
118562
  """
118496
118563
 
118564
+ def new(
118565
+ self, name: str | typing.Any, parent_group: GreasePencilLayerGroup | None = None
118566
+ ) -> GreasePencilLayerGroup:
118567
+ """Add a new Grease Pencil layer group
118568
+
118569
+ :param name: Name, Name of the layer group
118570
+ :type name: str | typing.Any
118571
+ :param parent_group: The parent layer group the new group will be created in (use None for the main stack)
118572
+ :type parent_group: GreasePencilLayerGroup | None
118573
+ :return: The newly created layer group
118574
+ :rtype: GreasePencilLayerGroup
118575
+ """
118576
+ ...
118577
+
118578
+ def remove(
118579
+ self,
118580
+ layer_group: GreasePencilLayerGroup,
118581
+ keep_children: bool | typing.Any | None = False,
118582
+ ):
118583
+ """Remove a new Grease Pencil layer group
118584
+
118585
+ :param layer_group: The layer group to remove
118586
+ :type layer_group: GreasePencilLayerGroup
118587
+ :param keep_children: Keep the children nodes of the group and only delete the group itself
118588
+ :type keep_children: bool | typing.Any | None
118589
+ """
118590
+ ...
118591
+
118592
+ def move(self, layer_group: GreasePencilLayerGroup, type: str | None):
118593
+ """Move a layer group in the parent layer group or main stack
118594
+
118595
+ :param layer_group: The layer group to move
118596
+ :type layer_group: GreasePencilLayerGroup
118597
+ :param type: Direction of movement
118598
+ :type type: str | None
118599
+ """
118600
+ ...
118601
+
118602
+ def move_top(self, layer_group: GreasePencilLayerGroup):
118603
+ """Move a layer group to the top of the parent layer group or main stack
118604
+
118605
+ :param layer_group: The layer group to move
118606
+ :type layer_group: GreasePencilLayerGroup
118607
+ """
118608
+ ...
118609
+
118610
+ def move_bottom(self, layer_group: GreasePencilLayerGroup):
118611
+ """Move a layer group to the bottom of the parent layer group or main stack
118612
+
118613
+ :param layer_group: The layer group to move
118614
+ :type layer_group: GreasePencilLayerGroup
118615
+ """
118616
+ ...
118617
+
118618
+ def move_to_layer_group(
118619
+ self,
118620
+ layer_group: GreasePencilLayerGroup,
118621
+ parent_group: GreasePencilLayerGroup | None,
118622
+ ):
118623
+ """Move a layer group into a parent layer group
118624
+
118625
+ :param layer_group: The layer group to move
118626
+ :type layer_group: GreasePencilLayerGroup
118627
+ :param parent_group: The parent layer group the layer group will be moved into (use None for the main stack)
118628
+ :type parent_group: GreasePencilLayerGroup | None
118629
+ """
118630
+ ...
118631
+
118497
118632
  @classmethod
118498
118633
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
118499
118634
  """
@@ -118521,12 +118656,77 @@ class GreasePencilv3LayerGroup(bpy_struct, bpy_prop_collection[GreasePencilLayer
118521
118656
  class GreasePencilv3Layers(bpy_struct, bpy_prop_collection[GreasePencilLayer]):
118522
118657
  """Collection of Grease Pencil layers"""
118523
118658
 
118524
- active_layer: typing.Optional[GreasePencilLayer]
118659
+ active_layer: GreasePencilLayer | None
118525
118660
  """ Active Grease Pencil layer
118526
118661
 
118527
- :type: typing.Optional[GreasePencilLayer]
118662
+ :type: GreasePencilLayer | None
118528
118663
  """
118529
118664
 
118665
+ def new(
118666
+ self,
118667
+ name: str | typing.Any,
118668
+ set_active: bool | typing.Any | None = True,
118669
+ layer_group: GreasePencilLayerGroup | None = None,
118670
+ ) -> GreasePencilLayer:
118671
+ """Add a new Grease Pencil layer
118672
+
118673
+ :param name: Name, Name of the layer
118674
+ :type name: str | typing.Any
118675
+ :param set_active: Set Active, Set the newly created layer as the active layer
118676
+ :type set_active: bool | typing.Any | None
118677
+ :param layer_group: The layer group the new layer will be created in (use None for the main stack)
118678
+ :type layer_group: GreasePencilLayerGroup | None
118679
+ :return: The newly created layer
118680
+ :rtype: GreasePencilLayer
118681
+ """
118682
+ ...
118683
+
118684
+ def remove(self, layer: GreasePencilLayer):
118685
+ """Remove a Grease Pencil layer
118686
+
118687
+ :param layer: The layer to remove
118688
+ :type layer: GreasePencilLayer
118689
+ """
118690
+ ...
118691
+
118692
+ def move(self, layer: GreasePencilLayer, type: str | None):
118693
+ """Move a Grease Pencil layer in the layer group or main stack
118694
+
118695
+ :param layer: The layer to move
118696
+ :type layer: GreasePencilLayer
118697
+ :param type: Direction of movement
118698
+ :type type: str | None
118699
+ """
118700
+ ...
118701
+
118702
+ def move_top(self, layer: GreasePencilLayer):
118703
+ """Move a Grease Pencil layer to the top of the layer group or main stack
118704
+
118705
+ :param layer: The layer to move
118706
+ :type layer: GreasePencilLayer
118707
+ """
118708
+ ...
118709
+
118710
+ def move_bottom(self, layer: GreasePencilLayer):
118711
+ """Move a Grease Pencil layer to the bottom of the layer group or main stack
118712
+
118713
+ :param layer: The layer to move
118714
+ :type layer: GreasePencilLayer
118715
+ """
118716
+ ...
118717
+
118718
+ def move_to_layer_group(
118719
+ self, layer: GreasePencilLayer, layer_group: GreasePencilLayerGroup | None
118720
+ ):
118721
+ """Move a Grease Pencil layer into a layer group
118722
+
118723
+ :param layer: The layer to move
118724
+ :type layer: GreasePencilLayer
118725
+ :param layer_group: The layer group the layer will be moved into (use None for the main stack)
118726
+ :type layer_group: GreasePencilLayerGroup | None
118727
+ """
118728
+ ...
118729
+
118530
118730
  @classmethod
118531
118731
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
118532
118732
  """
@@ -119972,10 +120172,10 @@ class KeyConfigPreferences(bpy_struct):
119972
120172
  class KeyConfigurations(bpy_struct, bpy_prop_collection[KeyConfig]):
119973
120173
  """Collection of KeyConfigs"""
119974
120174
 
119975
- active: KeyConfig
120175
+ active: KeyConfig | None
119976
120176
  """ Active key configuration (preset)
119977
120177
 
119978
- :type: KeyConfig
120178
+ :type: KeyConfig | None
119979
120179
  """
119980
120180
 
119981
120181
  addon: KeyConfig
@@ -120182,10 +120382,10 @@ class KeyMap(bpy_struct):
120182
120382
  class KeyMapItem(bpy_struct):
120183
120383
  """Item in a Key Map"""
120184
120384
 
120185
- active: bool
120385
+ active: bool | None
120186
120386
  """ Activate or deactivate item
120187
120387
 
120188
- :type: bool
120388
+ :type: bool | None
120189
120389
  """
120190
120390
 
120191
120391
  alt: int
@@ -121027,16 +121227,16 @@ class KeyingSetPath(bpy_struct):
121027
121227
  class KeyingSetPaths(bpy_struct, bpy_prop_collection[KeyingSetPath]):
121028
121228
  """Collection of keying set paths"""
121029
121229
 
121030
- active: KeyingSetPath
121230
+ active: KeyingSetPath | None
121031
121231
  """ Active Keying Set used to insert/delete keyframes
121032
121232
 
121033
- :type: KeyingSetPath
121233
+ :type: KeyingSetPath | None
121034
121234
  """
121035
121235
 
121036
- active_index: typing.Optional[int]
121236
+ active_index: int | None
121037
121237
  """ Current Keying Set index
121038
121238
 
121039
- :type: typing.Optional[int]
121239
+ :type: int | None
121040
121240
  """
121041
121241
 
121042
121242
  def add(
@@ -121103,16 +121303,16 @@ class KeyingSetPaths(bpy_struct, bpy_prop_collection[KeyingSetPath]):
121103
121303
  class KeyingSets(bpy_struct, bpy_prop_collection[KeyingSet]):
121104
121304
  """Scene keying sets"""
121105
121305
 
121106
- active: KeyingSet
121306
+ active: KeyingSet | None
121107
121307
  """ Active Keying Set used to insert/delete keyframes
121108
121308
 
121109
- :type: KeyingSet
121309
+ :type: KeyingSet | None
121110
121310
  """
121111
121311
 
121112
- active_index: typing.Optional[int]
121312
+ active_index: int | None
121113
121313
  """ Current Keying Set index (negative for 'builtin' and positive for 'absolute')
121114
121314
 
121115
- :type: typing.Optional[int]
121315
+ :type: int | None
121116
121316
  """
121117
121317
 
121118
121318
  def new(
@@ -121158,16 +121358,16 @@ class KeyingSets(bpy_struct, bpy_prop_collection[KeyingSet]):
121158
121358
  class KeyingSetsAll(bpy_struct, bpy_prop_collection[KeyingSet]):
121159
121359
  """All available keying sets"""
121160
121360
 
121161
- active: KeyingSet
121361
+ active: KeyingSet | None
121162
121362
  """ Active Keying Set used to insert/delete keyframes
121163
121363
 
121164
- :type: KeyingSet
121364
+ :type: KeyingSet | None
121165
121365
  """
121166
121366
 
121167
- active_index: typing.Optional[int]
121367
+ active_index: int | None
121168
121368
  """ Current Keying Set index (negative for 'builtin' and positive for 'absolute')
121169
121369
 
121170
- :type: typing.Optional[int]
121370
+ :type: int | None
121171
121371
  """
121172
121372
 
121173
121373
  @classmethod
@@ -121355,10 +121555,10 @@ class LayerCollection(bpy_struct):
121355
121555
  class LayerObjects(bpy_struct, bpy_prop_collection[Object]):
121356
121556
  """Collections of objects"""
121357
121557
 
121358
- active: Object
121558
+ active: Object | None
121359
121559
  """ Active object for this layer
121360
121560
 
121361
- :type: Object
121561
+ :type: Object | None
121362
121562
  """
121363
121563
 
121364
121564
  selected: bpy_prop_collection[Object]
@@ -121817,10 +122017,10 @@ class Linesets(bpy_struct, bpy_prop_collection[FreestyleLineSet]):
121817
122017
  :type: FreestyleLineSet
121818
122018
  """
121819
122019
 
121820
- active_index: typing.Optional[int]
122020
+ active_index: int | None
121821
122021
  """ Index of active line set slot
121822
122022
 
121823
- :type: typing.Optional[int]
122023
+ :type: int | None
121824
122024
  """
121825
122025
 
121826
122026
  def new(self, name: str | typing.Any) -> FreestyleLineSet:
@@ -121868,16 +122068,16 @@ class Linesets(bpy_struct, bpy_prop_collection[FreestyleLineSet]):
121868
122068
  class LoopColors(bpy_struct, bpy_prop_collection[MeshLoopColorLayer]):
121869
122069
  """Collection of vertex colors"""
121870
122070
 
121871
- active: MeshLoopColorLayer
122071
+ active: MeshLoopColorLayer | None
121872
122072
  """ Active vertex color layer
121873
122073
 
121874
- :type: MeshLoopColorLayer
122074
+ :type: MeshLoopColorLayer | None
121875
122075
  """
121876
122076
 
121877
- active_index: typing.Optional[int]
122077
+ active_index: int | None
121878
122078
  """ Active vertex color index
121879
122079
 
121880
- :type: typing.Optional[int]
122080
+ :type: int | None
121881
122081
  """
121882
122082
 
121883
122083
  def new(
@@ -122140,10 +122340,10 @@ class MaskLayer(bpy_struct):
122140
122340
  class MaskLayers(bpy_struct, bpy_prop_collection[MaskLayer]):
122141
122341
  """Collection of layers used by mask"""
122142
122342
 
122143
- active: MaskLayer
122343
+ active: MaskLayer | None
122144
122344
  """ Active layer in this mask
122145
122345
 
122146
- :type: MaskLayer
122346
+ :type: MaskLayer | None
122147
122347
  """
122148
122348
 
122149
122349
  def new(self, name: str | typing.Any = "") -> MaskLayer:
@@ -122490,16 +122690,16 @@ class MaskSplinePoints(bpy_struct, bpy_prop_collection[MaskSplinePoint]):
122490
122690
  class MaskSplines(bpy_struct, bpy_prop_collection[MaskSpline]):
122491
122691
  """Collection of masking splines"""
122492
122692
 
122493
- active: MaskSpline
122693
+ active: MaskSpline | None
122494
122694
  """ Active spline of masking layer
122495
122695
 
122496
- :type: MaskSpline
122696
+ :type: MaskSpline | None
122497
122697
  """
122498
122698
 
122499
- active_point: typing.Optional[MaskSplinePoint]
122699
+ active_point: MaskSplinePoint | None
122500
122700
  """ Active point of masking layer
122501
122701
 
122502
- :type: typing.Optional[MaskSplinePoint]
122702
+ :type: MaskSplinePoint | None
122503
122703
  """
122504
122704
 
122505
122705
  def new(self) -> MaskSpline:
@@ -122933,6 +123133,7 @@ class Menu(bpy_struct):
122933
123133
  self,
122934
123134
  searchpaths: list[str] | None,
122935
123135
  operator: str | None,
123136
+ *,
122936
123137
  props_default: dict | None = None,
122937
123138
  prop_filepath: str | None = "filepath",
122938
123139
  filter_ext: typing.Callable | None = None,
@@ -123229,16 +123430,16 @@ class MeshLoopColor(bpy_struct):
123229
123430
  class MeshLoopColorLayer(bpy_struct):
123230
123431
  """Layer of vertex colors in a Mesh data-block"""
123231
123432
 
123232
- active: bool
123433
+ active: bool | None
123233
123434
  """ Sets the layer as active for display and editing
123234
123435
 
123235
- :type: bool
123436
+ :type: bool | None
123236
123437
  """
123237
123438
 
123238
- active_render: typing.Optional[bool]
123439
+ active_render: bool | None
123239
123440
  """ Sets the layer as active for rendering
123240
123441
 
123241
- :type: typing.Optional[bool]
123442
+ :type: bool | None
123242
123443
  """
123243
123444
 
123244
123445
  data: bpy_prop_collection[MeshLoopColor]
@@ -123575,10 +123776,10 @@ class MeshPolygon(bpy_struct):
123575
123776
  class MeshPolygons(bpy_struct, bpy_prop_collection[MeshPolygon]):
123576
123777
  """Collection of mesh polygons"""
123577
123778
 
123578
- active: int
123779
+ active: int | None
123579
123780
  """ The active face for this mesh
123580
123781
 
123581
- :type: int
123782
+ :type: int | None
123582
123783
  """
123583
123784
 
123584
123785
  def add(self, count: int | None):
@@ -123840,22 +124041,22 @@ class MeshUVLoop(bpy_struct):
123840
124041
  ...
123841
124042
 
123842
124043
  class MeshUVLoopLayer(bpy_struct):
123843
- active: bool
124044
+ active: bool | None
123844
124045
  """ Set the map as active for display and editing
123845
124046
 
123846
- :type: bool
124047
+ :type: bool | None
123847
124048
  """
123848
124049
 
123849
- active_clone: typing.Optional[bool]
124050
+ active_clone: bool | None
123850
124051
  """ Set the map as active for cloning
123851
124052
 
123852
- :type: typing.Optional[bool]
124053
+ :type: bool | None
123853
124054
  """
123854
124055
 
123855
- active_render: typing.Optional[bool]
124056
+ active_render: bool | None
123856
124057
  """ Set the UV map as active for rendering
123857
124058
 
123858
- :type: typing.Optional[bool]
124059
+ :type: bool | None
123859
124060
  """
123860
124061
 
123861
124062
  data: bpy_prop_collection[MeshUVLoop]
@@ -124637,10 +124838,10 @@ class MovieReconstructedCamera(bpy_struct):
124637
124838
  class MovieTracking(bpy_struct):
124638
124839
  """Match-moving data for tracking"""
124639
124840
 
124640
- active_object_index: typing.Optional[int]
124841
+ active_object_index: int | None
124641
124842
  """ Index of active object
124642
124843
 
124643
- :type: typing.Optional[int]
124844
+ :type: int | None
124644
124845
  """
124645
124846
 
124646
124847
  camera: MovieTrackingCamera
@@ -125141,10 +125342,10 @@ class MovieTrackingObjectPlaneTracks(
125141
125342
  ):
125142
125343
  """Collection of tracking plane tracks"""
125143
125344
 
125144
- active: MovieTrackingTrack
125345
+ active: MovieTrackingTrack | None
125145
125346
  """ Active track in this tracking data object
125146
125347
 
125147
- :type: MovieTrackingTrack
125348
+ :type: MovieTrackingTrack | None
125148
125349
  """
125149
125350
 
125150
125351
  @classmethod
@@ -125174,10 +125375,10 @@ class MovieTrackingObjectPlaneTracks(
125174
125375
  class MovieTrackingObjectTracks(bpy_struct, bpy_prop_collection[MovieTrackingTrack]):
125175
125376
  """Collection of movie tracking tracks"""
125176
125377
 
125177
- active: MovieTrackingTrack
125378
+ active: MovieTrackingTrack | None
125178
125379
  """ Active track in this tracking data object
125179
125380
 
125180
- :type: MovieTrackingTrack
125381
+ :type: MovieTrackingTrack | None
125181
125382
  """
125182
125383
 
125183
125384
  def new(
@@ -125221,10 +125422,10 @@ class MovieTrackingObjectTracks(bpy_struct, bpy_prop_collection[MovieTrackingTra
125221
125422
  class MovieTrackingObjects(bpy_struct, bpy_prop_collection[MovieTrackingObject]):
125222
125423
  """Collection of movie tracking objects"""
125223
125424
 
125224
- active: MovieTrackingObject
125425
+ active: MovieTrackingObject | None
125225
125426
  """ Active object in this tracking data object
125226
125427
 
125227
- :type: MovieTrackingObject
125428
+ :type: MovieTrackingObject | None
125228
125429
  """
125229
125430
 
125230
125431
  def new(self, name: str | typing.Any) -> MovieTrackingObject:
@@ -125445,10 +125646,10 @@ class MovieTrackingPlaneTracks(
125445
125646
  ):
125446
125647
  """Collection of movie tracking plane tracks"""
125447
125648
 
125448
- active: MovieTrackingPlaneTrack
125649
+ active: MovieTrackingPlaneTrack | None
125449
125650
  """ Active plane track in this tracking data object. Deprecated, use objects[name].plane_tracks.active
125450
125651
 
125451
- :type: MovieTrackingPlaneTrack
125652
+ :type: MovieTrackingPlaneTrack | None
125452
125653
  """
125453
125654
 
125454
125655
  @classmethod
@@ -125766,16 +125967,16 @@ class MovieTrackingSettings(bpy_struct):
125766
125967
  class MovieTrackingStabilization(bpy_struct):
125767
125968
  """2D stabilization based on tracking markers"""
125768
125969
 
125769
- active_rotation_track_index: typing.Optional[int]
125970
+ active_rotation_track_index: int | None
125770
125971
  """ Index of active track in rotation stabilization tracks list
125771
125972
 
125772
- :type: typing.Optional[int]
125973
+ :type: int | None
125773
125974
  """
125774
125975
 
125775
- active_track_index: typing.Optional[int]
125976
+ active_track_index: int | None
125776
125977
  """ Index of active track in translation stabilization tracks list
125777
125978
 
125778
- :type: typing.Optional[int]
125979
+ :type: int | None
125779
125980
  """
125780
125981
 
125781
125982
  anchor_frame: int
@@ -126108,10 +126309,10 @@ class MovieTrackingTrack(bpy_struct):
126108
126309
  class MovieTrackingTracks(bpy_struct, bpy_prop_collection[MovieTrackingTrack]):
126109
126310
  """Collection of movie tracking tracks"""
126110
126311
 
126111
- active: MovieTrackingTrack
126312
+ active: MovieTrackingTrack | None
126112
126313
  """ Active track in this tracking data object. Deprecated, use objects[name].tracks.active
126113
126314
 
126114
- :type: MovieTrackingTrack
126315
+ :type: MovieTrackingTrack | None
126115
126316
  """
126116
126317
 
126117
126318
  def new(
@@ -126533,10 +126734,10 @@ class NlaTrack(bpy_struct):
126533
126734
  class NlaTracks(bpy_struct, bpy_prop_collection[NlaTrack]):
126534
126735
  """Collection of NLA Tracks"""
126535
126736
 
126536
- active: NlaTrack
126737
+ active: NlaTrack | None
126537
126738
  """ Active NLA Track
126538
126739
 
126539
- :type: NlaTrack
126740
+ :type: NlaTrack | None
126540
126741
  """
126541
126742
 
126542
126743
  def new(self, prev: NlaTrack | None = None) -> NlaTrack:
@@ -127906,16 +128107,16 @@ class NodeSocket(bpy_struct):
127906
128107
  class NodeTreeInterface(bpy_struct):
127907
128108
  """Declaration of sockets and ui panels of a node group"""
127908
128109
 
127909
- active: NodeTreeInterfaceItem
128110
+ active: NodeTreeInterfaceItem | None
127910
128111
  """ Active item
127911
128112
 
127912
- :type: NodeTreeInterfaceItem
128113
+ :type: NodeTreeInterfaceItem | None
127913
128114
  """
127914
128115
 
127915
- active_index: typing.Optional[int]
128116
+ active_index: int | None
127916
128117
  """ Index of the active item
127917
128118
 
127918
- :type: typing.Optional[int]
128119
+ :type: int | None
127919
128120
  """
127920
128121
 
127921
128122
  items_tree: bpy_prop_collection[NodeTreeInterfaceItem]
@@ -128140,10 +128341,10 @@ class NodeTreePath(bpy_struct):
128140
128341
  class Nodes(bpy_struct, bpy_prop_collection[Node]):
128141
128342
  """Collection of Nodes"""
128142
128343
 
128143
- active: Node
128344
+ active: Node | None
128144
128345
  """ Active node in this tree
128145
128346
 
128146
- :type: Node
128347
+ :type: Node | None
128147
128348
  """
128148
128349
 
128149
128350
  def new(self, type: str | typing.Any) -> Node:
@@ -128276,10 +128477,10 @@ class NodesModifierBakeDataBlocks(
128276
128477
  ):
128277
128478
  """Collection of data-blocks that can be referenced by baked data"""
128278
128479
 
128279
- active_index: typing.Optional[int]
128480
+ active_index: int | None
128280
128481
  """
128281
128482
 
128282
- :type: typing.Optional[int]
128483
+ :type: int | None
128283
128484
  """
128284
128485
 
128285
128486
  @classmethod
@@ -128488,10 +128689,10 @@ class ObjectBase(bpy_struct):
128488
128689
  class ObjectConstraints(bpy_struct, bpy_prop_collection[Constraint]):
128489
128690
  """Collection of object constraints"""
128490
128691
 
128491
- active: Constraint
128692
+ active: Constraint | None
128492
128693
  """ Active Object constraint
128493
128694
 
128494
- :type: Constraint
128695
+ :type: Constraint | None
128495
128696
  """
128496
128697
 
128497
128698
  def new(self, type: str | None) -> Constraint:
@@ -128741,10 +128942,10 @@ class ObjectLineArt(bpy_struct):
128741
128942
  class ObjectModifiers(bpy_struct, bpy_prop_collection[Modifier]):
128742
128943
  """Collection of object modifiers"""
128743
128944
 
128744
- active: Modifier
128945
+ active: Modifier | None
128745
128946
  """ The active modifier in the list
128746
128947
 
128747
- :type: Modifier
128948
+ :type: Modifier | None
128748
128949
  """
128749
128950
 
128750
128951
  def new(self, name: str | typing.Any, type: str | None) -> Modifier:
@@ -129044,7 +129245,7 @@ expanding an operator into a menu.
129044
129245
  """
129045
129246
  ...
129046
129247
 
129047
- def as_keywords(self, ignore=()):
129248
+ def as_keywords(self, *, ignore=()):
129048
129249
  """Return a copy of the properties as a dictionary
129049
129250
 
129050
129251
  :param ignore:
@@ -129076,7 +129277,7 @@ expanding an operator into a menu.
129076
129277
  ...
129077
129278
 
129078
129279
  @classmethod
129079
- def poll_message_set(cls, message: str | None, args):
129280
+ def poll_message_set(cls, message: str | None, *args):
129080
129281
  """Set the message to show in the tool-tip when poll fails.When message is callable, additional user defined positional arguments are passed to the message function.
129081
129282
 
129082
129283
  :param message: The message or a function that returns the message.
@@ -129484,10 +129685,10 @@ class PaletteColor(bpy_struct):
129484
129685
  class PaletteColors(bpy_struct, bpy_prop_collection[PaletteColor]):
129485
129686
  """Collection of palette colors"""
129486
129687
 
129487
- active: PaletteColor
129688
+ active: PaletteColor | None
129488
129689
  """
129489
129690
 
129490
- :type: PaletteColor
129691
+ :type: PaletteColor | None
129491
129692
  """
129492
129693
 
129493
129694
  def new(self) -> PaletteColor:
@@ -130319,10 +130520,10 @@ class ParticleSystem(bpy_struct):
130319
130520
  :type: ParticleTarget
130320
130521
  """
130321
130522
 
130322
- active_particle_target_index: typing.Optional[int]
130523
+ active_particle_target_index: int | None
130323
130524
  """
130324
130525
 
130325
- :type: typing.Optional[int]
130526
+ :type: int | None
130326
130527
  """
130327
130528
 
130328
130529
  child_particles: bpy_prop_collection[ChildParticle]
@@ -130691,10 +130892,10 @@ class ParticleSystems(bpy_struct, bpy_prop_collection[ParticleSystem]):
130691
130892
  :type: ParticleSystem
130692
130893
  """
130693
130894
 
130694
- active_index: typing.Optional[int]
130895
+ active_index: int | None
130695
130896
  """ Index of active particle system slot
130696
130897
 
130697
- :type: typing.Optional[int]
130898
+ :type: int | None
130698
130899
  """
130699
130900
 
130700
130901
  @classmethod
@@ -131162,10 +131363,10 @@ class PointCacheItem(bpy_struct):
131162
131363
  class PointCaches(bpy_struct, bpy_prop_collection[PointCacheItem]):
131163
131364
  """Collection of point caches"""
131164
131365
 
131165
- active_index: typing.Optional[int]
131366
+ active_index: int | None
131166
131367
  """
131167
131368
 
131168
- :type: typing.Optional[int]
131369
+ :type: int | None
131169
131370
  """
131170
131371
 
131171
131372
  @classmethod
@@ -131867,10 +132068,10 @@ Utility function for (tail - head)(readonly)"""
131867
132068
  class PoseBoneConstraints(bpy_struct, bpy_prop_collection[Constraint]):
131868
132069
  """Collection of pose bone constraints"""
131869
132070
 
131870
- active: Constraint
132071
+ active: Constraint | None
131871
132072
  """ Active PoseChannel constraint
131872
132073
 
131873
- :type: Constraint
132074
+ :type: Constraint | None
131874
132075
  """
131875
132076
 
131876
132077
  def new(self, type: str | None) -> Constraint:
@@ -131938,10 +132139,10 @@ class PoseBoneConstraints(bpy_struct, bpy_prop_collection[Constraint]):
131938
132139
  class Preferences(bpy_struct):
131939
132140
  """Global preferences"""
131940
132141
 
131941
- active_section: typing.Optional[str]
132142
+ active_section: str | None
131942
132143
  """ Active section of the preferences shown in the user interface
131943
132144
 
131944
- :type: typing.Optional[str]
132145
+ :type: str | None
131945
132146
  """
131946
132147
 
131947
132148
  addons: Addons
@@ -132630,10 +132831,10 @@ class PreferencesExperimental(bpy_struct):
132630
132831
  class PreferencesExtensions(bpy_struct):
132631
132832
  """Settings for extensions"""
132632
132833
 
132633
- active_repo: typing.Optional[int]
132834
+ active_repo: int | None
132634
132835
  """ Index of the extensions repository being edited in the Preferences UI
132635
132836
 
132636
- :type: typing.Optional[int]
132837
+ :type: int | None
132637
132838
  """
132638
132839
 
132639
132840
  repos: UserExtensionRepoCollection
@@ -132675,10 +132876,10 @@ class PreferencesExtensions(bpy_struct):
132675
132876
  class PreferencesFilePaths(bpy_struct):
132676
132877
  """Default paths for external files"""
132677
132878
 
132678
- active_asset_library: typing.Optional[int]
132879
+ active_asset_library: int | None
132679
132880
  """ Index of the asset library being edited in the Preferences UI
132680
132881
 
132681
- :type: typing.Optional[int]
132882
+ :type: int | None
132682
132883
  """
132683
132884
 
132684
132885
  animation_player: str
@@ -133404,6 +133605,12 @@ class PreferencesSystem(bpy_struct):
133404
133605
  :type: bool
133405
133606
  """
133406
133607
 
133608
+ use_online_access: bool
133609
+ """ Allow internet access. Blender may access configured online extension repositories. Installed third party add-ons may access the internet for their own functionality
133610
+
133611
+ :type: bool
133612
+ """
133613
+
133407
133614
  use_overlay_smooth_wire: bool
133408
133615
  """ Enable overlay smooth wires, reducing aliasing
133409
133616
 
@@ -134396,7 +134603,7 @@ class RaytraceEEVEE(bpy_struct):
134396
134603
  """
134397
134604
 
134398
134605
  trace_max_roughness: float
134399
- """ Maximum roughness to use the tracing pipeline for. Higher roughness surfaces will use horizon scan. A value of 1 will disable horizon scan
134606
+ """ Maximum roughness to use the tracing pipeline for. Higher roughness surfaces will use fast GI approximation. A value of 1 will disable fast GI approximation
134400
134607
 
134401
134608
  :type: float
134402
134609
  """
@@ -134465,10 +134672,10 @@ class ReadOnlyInteger(bpy_struct):
134465
134672
  class Region(bpy_struct):
134466
134673
  """Region in a subdivided screen area"""
134467
134674
 
134468
- active_panel_category: typing.Optional[str]
134675
+ active_panel_category: str | None
134469
134676
  """ The current active panel category, may be Null if the region does not support this feature (NOTE: these categories are generated at runtime, so list may be empty at initialization, before any drawing took place)
134470
134677
 
134471
- :type: typing.Optional[str]
134678
+ :type: str | None
134472
134679
  """
134473
134680
 
134474
134681
  alignment: str
@@ -136415,16 +136622,16 @@ class RenderSlot(bpy_struct):
136415
136622
  class RenderSlots(bpy_struct, bpy_prop_collection[RenderSlot]):
136416
136623
  """Collection of render layers"""
136417
136624
 
136418
- active: RenderSlot
136625
+ active: RenderSlot | None
136419
136626
  """ Active render slot of the image
136420
136627
 
136421
- :type: RenderSlot
136628
+ :type: RenderSlot | None
136422
136629
  """
136423
136630
 
136424
- active_index: typing.Optional[int]
136631
+ active_index: int | None
136425
136632
  """ Active render slot of the image
136426
136633
 
136427
- :type: typing.Optional[int]
136634
+ :type: int | None
136428
136635
  """
136429
136636
 
136430
136637
  def new(self, name: str | typing.Any = "") -> RenderSlot:
@@ -136501,10 +136708,10 @@ class RenderViews(bpy_struct, bpy_prop_collection[SceneRenderView]):
136501
136708
  :type: SceneRenderView
136502
136709
  """
136503
136710
 
136504
- active_index: typing.Optional[int]
136711
+ active_index: int | None
136505
136712
  """ Active index in render view array
136506
136713
 
136507
- :type: typing.Optional[int]
136714
+ :type: int | None
136508
136715
  """
136509
136716
 
136510
136717
  def new(self, name: str | typing.Any) -> SceneRenderView:
@@ -137570,6 +137777,30 @@ class SceneEEVEE(bpy_struct):
137570
137777
  :type: float
137571
137778
  """
137572
137779
 
137780
+ fast_gi_distance: float
137781
+ """ If non-zero, the maximum distance at which other surfaces will contribute to the fast GI approximation
137782
+
137783
+ :type: float
137784
+ """
137785
+
137786
+ fast_gi_method: str
137787
+ """ Fast GI approximation method
137788
+
137789
+ :type: str
137790
+ """
137791
+
137792
+ fast_gi_ray_count: int
137793
+ """ Amount of GI ray to trace for each pixel
137794
+
137795
+ :type: int
137796
+ """
137797
+
137798
+ fast_gi_step_count: int
137799
+ """ Amount of screen sample per GI ray
137800
+
137801
+ :type: int
137802
+ """
137803
+
137573
137804
  gi_auto_bake: bool
137574
137805
  """ Auto bake indirect lighting when editing probes
137575
137806
 
@@ -138703,10 +138934,10 @@ class SequenceCrop(bpy_struct):
138703
138934
  class SequenceEditor(bpy_struct):
138704
138935
  """Sequence editing data for a Scene data-block"""
138705
138936
 
138706
- active_strip: typing.Optional[Sequence]
138937
+ active_strip: Sequence | None
138707
138938
  """ Sequencer's active strip
138708
138939
 
138709
- :type: typing.Optional[Sequence]
138940
+ :type: Sequence | None
138710
138941
  """
138711
138942
 
138712
138943
  channels: bpy_prop_collection[SequenceTimelineChannel]
@@ -142563,10 +142794,10 @@ class ThemeAssetShelf(bpy_struct):
142563
142794
  class ThemeBoneColorSet(bpy_struct):
142564
142795
  """Theme settings for bone color sets"""
142565
142796
 
142566
- active: list[float] | tuple[float, float, float] | mathutils.Color
142797
+ active: list[float] | tuple[float, float, float] | mathutils.Color | None
142567
142798
  """ Color used for active bones
142568
142799
 
142569
- :type: list[float] | tuple[float, float, float] | mathutils.Color
142800
+ :type: list[float] | tuple[float, float, float] | mathutils.Color | None
142570
142801
  """
142571
142802
 
142572
142803
  normal: list[float] | tuple[float, float, float] | mathutils.Color
@@ -142614,12 +142845,10 @@ class ThemeBoneColorSet(bpy_struct):
142614
142845
  class ThemeClipEditor(bpy_struct):
142615
142846
  """Theme settings for the Movie Clip Editor"""
142616
142847
 
142617
- active_marker: typing.Optional[
142618
- list[float] | tuple[float, float, float] | mathutils.Color
142619
- ]
142848
+ active_marker: list[float] | tuple[float, float, float] | mathutils.Color | None
142620
142849
  """ Color of active marker
142621
142850
 
142622
- :type: typing.Optional[list[float] | tuple[float, float, float] | mathutils.Color]
142851
+ :type: list[float] | tuple[float, float, float] | mathutils.Color | None
142623
142852
  """
142624
142853
 
142625
142854
  disabled_marker: list[float] | tuple[float, float, float] | mathutils.Color
@@ -142937,10 +143166,10 @@ class ThemeConsole(bpy_struct):
142937
143166
  class ThemeDopeSheet(bpy_struct):
142938
143167
  """Theme settings for the Dope Sheet"""
142939
143168
 
142940
- active_channels_group: typing.Optional[bpy_prop_array[float]]
143169
+ active_channels_group: bpy_prop_array[float] | None
142941
143170
  """
142942
143171
 
142943
- :type: typing.Optional[bpy_prop_array[float]]
143172
+ :type: bpy_prop_array[float] | None
142944
143173
  """
142945
143174
 
142946
143175
  channel_group: bpy_prop_array[float]
@@ -143347,12 +143576,12 @@ class ThemeGradientColors(bpy_struct):
143347
143576
  class ThemeGraphEditor(bpy_struct):
143348
143577
  """Theme settings for the graph editor"""
143349
143578
 
143350
- active_channels_group: typing.Optional[
143351
- list[float] | tuple[float, float, float] | mathutils.Color
143352
- ]
143579
+ active_channels_group: list[float] | tuple[
143580
+ float, float, float
143581
+ ] | mathutils.Color | None
143353
143582
  """
143354
143583
 
143355
- :type: typing.Optional[list[float] | tuple[float, float, float] | mathutils.Color]
143584
+ :type: list[float] | tuple[float, float, float] | mathutils.Color | None
143356
143585
  """
143357
143586
 
143358
143587
  channel_group: list[float] | tuple[float, float, float] | mathutils.Color
@@ -143994,16 +144223,16 @@ class ThemeInfo(bpy_struct):
143994
144223
  class ThemeNLAEditor(bpy_struct):
143995
144224
  """Theme settings for the NLA Editor"""
143996
144225
 
143997
- active_action: typing.Optional[bpy_prop_array[float]]
144226
+ active_action: bpy_prop_array[float] | None
143998
144227
  """ Animation data-block has active action
143999
144228
 
144000
- :type: typing.Optional[bpy_prop_array[float]]
144229
+ :type: bpy_prop_array[float] | None
144001
144230
  """
144002
144231
 
144003
- active_action_unset: typing.Optional[bpy_prop_array[float]]
144232
+ active_action_unset: bpy_prop_array[float] | None
144004
144233
  """ Animation data-block doesn't have active action
144005
144234
 
144006
- :type: typing.Optional[bpy_prop_array[float]]
144235
+ :type: bpy_prop_array[float] | None
144007
144236
  """
144008
144237
 
144009
144238
  dopesheet_channel: list[float] | tuple[float, float, float] | mathutils.Color
@@ -144404,18 +144633,16 @@ class ThemeNodeEditor(bpy_struct):
144404
144633
  class ThemeOutliner(bpy_struct):
144405
144634
  """Theme settings for the Outliner"""
144406
144635
 
144407
- active: list[float] | tuple[float, float, float] | mathutils.Color
144636
+ active: list[float] | tuple[float, float, float] | mathutils.Color | None
144408
144637
  """
144409
144638
 
144410
- :type: list[float] | tuple[float, float, float] | mathutils.Color
144639
+ :type: list[float] | tuple[float, float, float] | mathutils.Color | None
144411
144640
  """
144412
144641
 
144413
- active_object: typing.Optional[
144414
- list[float] | tuple[float, float, float] | mathutils.Color
144415
- ]
144642
+ active_object: list[float] | tuple[float, float, float] | mathutils.Color | None
144416
144643
  """
144417
144644
 
144418
- :type: typing.Optional[list[float] | tuple[float, float, float] | mathutils.Color]
144645
+ :type: list[float] | tuple[float, float, float] | mathutils.Color | None
144419
144646
  """
144420
144647
 
144421
144648
  edited_object: bpy_prop_array[float]
@@ -144559,10 +144786,10 @@ class ThemePreferences(bpy_struct):
144559
144786
  class ThemeProperties(bpy_struct):
144560
144787
  """Theme settings for the Properties"""
144561
144788
 
144562
- active_modifier: typing.Optional[bpy_prop_array[float]]
144789
+ active_modifier: bpy_prop_array[float] | None
144563
144790
  """
144564
144791
 
144565
- :type: typing.Optional[bpy_prop_array[float]]
144792
+ :type: bpy_prop_array[float] | None
144566
144793
  """
144567
144794
 
144568
144795
  match: list[float] | tuple[float, float, float] | mathutils.Color
@@ -144604,12 +144831,10 @@ class ThemeProperties(bpy_struct):
144604
144831
  class ThemeSequenceEditor(bpy_struct):
144605
144832
  """Theme settings for the Sequence Editor"""
144606
144833
 
144607
- active_strip: typing.Optional[
144608
- list[float] | tuple[float, float, float] | mathutils.Color
144609
- ]
144834
+ active_strip: list[float] | tuple[float, float, float] | mathutils.Color | None
144610
144835
  """
144611
144836
 
144612
- :type: typing.Optional[list[float] | tuple[float, float, float] | mathutils.Color]
144837
+ :type: list[float] | tuple[float, float, float] | mathutils.Color | None
144613
144838
  """
144614
144839
 
144615
144840
  audio_strip: list[float] | tuple[float, float, float] | mathutils.Color
@@ -146977,6 +147202,18 @@ class ToolSettings(bpy_struct):
146977
147202
  :type: UnifiedPaintSettings
146978
147203
  """
146979
147204
 
147205
+ use_annotation_project_only_selected: bool
147206
+ """ Project the strokes only onto selected objects
147207
+
147208
+ :type: bool
147209
+ """
147210
+
147211
+ use_annotation_stroke_endpoints: bool
147212
+ """ Only use the first and last parts of the stroke for snapping
147213
+
147214
+ :type: bool
147215
+ """
147216
+
146980
147217
  use_auto_normalize: bool
146981
147218
  """ Ensure all bone-deforming vertex groups add up to 1.0 while weight painting
146982
147219
 
@@ -147007,6 +147244,12 @@ class ToolSettings(bpy_struct):
147007
147244
  :type: bool
147008
147245
  """
147009
147246
 
147247
+ use_gpencil_project_only_selected: bool
147248
+ """ Project the strokes only onto selected objects
147249
+
147250
+ :type: bool
147251
+ """
147252
+
147010
147253
  use_gpencil_select_mask_point: bool
147011
147254
  """ Only sculpt selected stroke points
147012
147255
 
@@ -147025,12 +147268,6 @@ class ToolSettings(bpy_struct):
147025
147268
  :type: bool
147026
147269
  """
147027
147270
 
147028
- use_gpencil_stroke_endpoints: bool
147029
- """ Only use the first and last parts of the stroke for snapping
147030
-
147031
- :type: bool
147032
- """
147033
-
147034
147271
  use_gpencil_thumbnail_list: bool
147035
147272
  """ Show compact list of colors instead of thumbnails
147036
147273
 
@@ -147559,10 +147796,10 @@ class UDIMTiles(bpy_struct, bpy_prop_collection[UDIMTile]):
147559
147796
  :type: UDIMTile
147560
147797
  """
147561
147798
 
147562
- active_index: typing.Optional[int]
147799
+ active_index: int | None
147563
147800
  """ Active index in tiles array
147564
147801
 
147565
- :type: typing.Optional[int]
147802
+ :type: int | None
147566
147803
  """
147567
147804
 
147568
147805
  def new(self, tile_number: int | None, label: str | typing.Any = "") -> UDIMTile:
@@ -147628,16 +147865,16 @@ class UILayout(bpy_struct):
147628
147865
  :type: bool
147629
147866
  """
147630
147867
 
147631
- active: bool
147868
+ active: bool | None
147632
147869
  """
147633
147870
 
147634
- :type: bool
147871
+ :type: bool | None
147635
147872
  """
147636
147873
 
147637
- active_default: typing.Optional[bool]
147874
+ active_default: bool | None
147638
147875
  """ When true, an operator button defined after this will be activated when pressing return(use with popup dialogs)
147639
147876
 
147640
- :type: typing.Optional[bool]
147877
+ :type: bool | None
147641
147878
  """
147642
147879
 
147643
147880
  alert: bool
@@ -148456,6 +148693,16 @@ class UILayout(bpy_struct):
148456
148693
  """
148457
148694
  ...
148458
148695
 
148696
+ def context_string_set(self, name: str | typing.Any, value: str | typing.Any):
148697
+ """context_string_set
148698
+
148699
+ :param name: Name, Name of entry in the context
148700
+ :type name: str | typing.Any
148701
+ :param value: Value, String to put in context
148702
+ :type value: str | typing.Any
148703
+ """
148704
+ ...
148705
+
148459
148706
  def template_header(self):
148460
148707
  """Inserts common Space header UI (editor type selector)"""
148461
148708
  ...
@@ -149782,16 +150029,16 @@ class USDHook(bpy_struct):
149782
150029
  class UVLoopLayers(bpy_struct, bpy_prop_collection[MeshUVLoopLayer]):
149783
150030
  """Collection of UV map layers"""
149784
150031
 
149785
- active: MeshUVLoopLayer
150032
+ active: MeshUVLoopLayer | None
149786
150033
  """ Active UV Map layer
149787
150034
 
149788
- :type: MeshUVLoopLayer
150035
+ :type: MeshUVLoopLayer | None
149789
150036
  """
149790
150037
 
149791
- active_index: typing.Optional[int]
150038
+ active_index: int | None
149792
150039
  """ Active UV map index
149793
150040
 
149794
- :type: typing.Optional[int]
150041
+ :type: int | None
149795
150042
  """
149796
150043
 
149797
150044
  def new(
@@ -150472,16 +150719,16 @@ class VertexGroupElement(bpy_struct):
150472
150719
  class VertexGroups(bpy_struct, bpy_prop_collection[VertexGroup]):
150473
150720
  """Collection of vertex groups"""
150474
150721
 
150475
- active: VertexGroup
150722
+ active: VertexGroup | None
150476
150723
  """ Vertex groups of the object
150477
150724
 
150478
- :type: VertexGroup
150725
+ :type: VertexGroup | None
150479
150726
  """
150480
150727
 
150481
- active_index: typing.Optional[int]
150728
+ active_index: int | None
150482
150729
  """ Active index in vertex group array
150483
150730
 
150484
- :type: typing.Optional[int]
150731
+ :type: int | None
150485
150732
  """
150486
150733
 
150487
150734
  def new(self, name: str | typing.Any = "Group") -> VertexGroup:
@@ -150788,6 +151035,12 @@ class View3DOverlay(bpy_struct):
150788
151035
  :type: bool
150789
151036
  """
150790
151037
 
151038
+ show_camera_guides: bool
151039
+ """ Show camera composition guides
151040
+
151041
+ :type: bool
151042
+ """
151043
+
150791
151044
  show_cursor: bool
150792
151045
  """ Display 3D Cursor Overlay
150793
151046
 
@@ -151484,10 +151737,10 @@ class ViewLayer(bpy_struct):
151484
151737
  :type: AOV
151485
151738
  """
151486
151739
 
151487
- active_aov_index: typing.Optional[int]
151740
+ active_aov_index: int | None
151488
151741
  """ Index of active AOV
151489
151742
 
151490
- :type: typing.Optional[int]
151743
+ :type: int | None
151491
151744
  """
151492
151745
 
151493
151746
  active_layer_collection: LayerCollection
@@ -151502,10 +151755,10 @@ class ViewLayer(bpy_struct):
151502
151755
  :type: Lightgroup
151503
151756
  """
151504
151757
 
151505
- active_lightgroup_index: typing.Optional[int]
151758
+ active_lightgroup_index: int | None
151506
151759
  """ Index of active lightgroup
151507
151760
 
151508
- :type: typing.Optional[int]
151761
+ :type: int | None
151509
151762
  """
151510
151763
 
151511
151764
  aovs: AOVs
@@ -152171,10 +152424,10 @@ class VolumeGrid(bpy_struct):
152171
152424
  class VolumeGrids(bpy_struct, bpy_prop_collection[VolumeGrid]):
152172
152425
  """3D volume grids"""
152173
152426
 
152174
- active_index: typing.Optional[int]
152427
+ active_index: int | None
152175
152428
  """ Index of active volume grid
152176
152429
 
152177
- :type: typing.Optional[int]
152430
+ :type: int | None
152178
152431
  """
152179
152432
 
152180
152433
  error_message: str
@@ -152382,6 +152635,12 @@ class Window(bpy_struct):
152382
152635
  :type: int
152383
152636
  """
152384
152637
 
152638
+ modal_operators: bpy_prop_collection[Operator]
152639
+ """ A list of currently running modal operators
152640
+
152641
+ :type: bpy_prop_collection[Operator]
152642
+ """
152643
+
152385
152644
  parent: Window
152386
152645
  """ Active workspace and scene follow this window
152387
152646
 
@@ -153772,10 +154031,10 @@ class XrSessionState(bpy_struct):
153772
154031
  :type: XrActionMaps
153773
154032
  """
153774
154033
 
153775
- active_actionmap: typing.Optional[int]
154034
+ active_actionmap: int | None
153776
154035
  """
153777
154036
 
153778
- :type: typing.Optional[int]
154037
+ :type: int | None
153779
154038
  """
153780
154039
 
153781
154040
  navigation_location: list[float] | tuple[float, float, float] | mathutils.Vector
@@ -163417,10 +163676,10 @@ class Brush(ID, bpy_struct):
163417
163676
  ...
163418
163677
 
163419
163678
  class CacheFile(ID, bpy_struct):
163420
- active_index: typing.Optional[int]
163679
+ active_index: int | None
163421
163680
  """
163422
163681
 
163423
- :type: typing.Optional[int]
163682
+ :type: int | None
163424
163683
  """
163425
163684
 
163426
163685
  animation_data: AnimData
@@ -163876,10 +164135,10 @@ class Camera(ID, bpy_struct):
163876
164135
  class Collection(ID, bpy_struct):
163877
164136
  """Collection of Object data-blocks"""
163878
164137
 
163879
- active_exporter_index: typing.Optional[int]
164138
+ active_exporter_index: int | None
163880
164139
  """ Active index in the exporters list
163881
164140
 
163882
- :type: typing.Optional[int]
164141
+ :type: int | None
163883
164142
  """
163884
164143
 
163885
164144
  all_objects: bpy_prop_collection[Object]
@@ -164443,16 +164702,16 @@ class Curves(ID, bpy_struct):
164443
164702
  class FreestyleLineStyle(ID, bpy_struct):
164444
164703
  """Freestyle line style, reusable by multiple line sets"""
164445
164704
 
164446
- active_texture: typing.Optional[Texture]
164705
+ active_texture: Texture | None
164447
164706
  """ Active texture slot being displayed
164448
164707
 
164449
- :type: typing.Optional[Texture]
164708
+ :type: Texture | None
164450
164709
  """
164451
164710
 
164452
- active_texture_index: typing.Optional[int]
164711
+ active_texture_index: int | None
164453
164712
  """ Index of active texture slot
164454
164713
 
164455
- :type: typing.Optional[int]
164714
+ :type: int | None
164456
164715
  """
164457
164716
 
164458
164717
  alpha: float
@@ -166174,10 +166433,10 @@ class LightProbe(ID, bpy_struct):
166174
166433
  class Mask(ID, bpy_struct):
166175
166434
  """Mask data-block defining mask for compositing"""
166176
166435
 
166177
- active_layer_index: typing.Optional[int]
166436
+ active_layer_index: int | None
166178
166437
  """ Index of active layer in list of all mask's layers
166179
166438
 
166180
- :type: typing.Optional[int]
166439
+ :type: int | None
166181
166440
  """
166182
166441
 
166183
166442
  animation_data: AnimData
@@ -167427,16 +167686,16 @@ class NodeTree(ID, bpy_struct):
167427
167686
  class Object(ID, bpy_struct):
167428
167687
  """Object data-block defining an object in a scene"""
167429
167688
 
167430
- active_material: typing.Optional[Material]
167689
+ active_material: Material | None
167431
167690
  """ Active material being displayed
167432
167691
 
167433
- :type: typing.Optional[Material]
167692
+ :type: Material | None
167434
167693
  """
167435
167694
 
167436
- active_material_index: typing.Optional[int]
167695
+ active_material_index: int | None
167437
167696
  """ Index of active material slot
167438
167697
 
167439
- :type: typing.Optional[int]
167698
+ :type: int | None
167440
167699
  """
167441
167700
 
167442
167701
  active_shape_key: ShapeKey
@@ -167445,10 +167704,10 @@ class Object(ID, bpy_struct):
167445
167704
  :type: ShapeKey
167446
167705
  """
167447
167706
 
167448
- active_shape_key_index: typing.Optional[int]
167707
+ active_shape_key_index: int | None
167449
167708
  """ Current shape key index
167450
167709
 
167451
- :type: typing.Optional[int]
167710
+ :type: int | None
167452
167711
  """
167453
167712
 
167454
167713
  add_rest_position_attribute: bool
@@ -168688,22 +168947,22 @@ class ParticleSettings(ID, bpy_struct):
168688
168947
  :type: ParticleDupliWeight
168689
168948
  """
168690
168949
 
168691
- active_instanceweight_index: typing.Optional[int]
168950
+ active_instanceweight_index: int | None
168692
168951
  """
168693
168952
 
168694
- :type: typing.Optional[int]
168953
+ :type: int | None
168695
168954
  """
168696
168955
 
168697
- active_texture: typing.Optional[Texture]
168956
+ active_texture: Texture | None
168698
168957
  """ Active texture slot being displayed
168699
168958
 
168700
- :type: typing.Optional[Texture]
168959
+ :type: Texture | None
168701
168960
  """
168702
168961
 
168703
- active_texture_index: typing.Optional[int]
168962
+ active_texture_index: int | None
168704
168963
  """ Index of active texture slot
168705
168964
 
168706
- :type: typing.Optional[int]
168965
+ :type: int | None
168707
168966
  """
168708
168967
 
168709
168968
  adaptive_angle: int
@@ -169768,10 +170027,10 @@ class PointCloud(ID, bpy_struct):
169768
170027
  class Scene(ID, bpy_struct):
169769
170028
  """Scene data-block, consisting in objects and defining time and render related settings"""
169770
170029
 
169771
- active_clip: typing.Optional[MovieClip]
170030
+ active_clip: MovieClip | None
169772
170031
  """ Active Movie Clip that can be used by motion tracking constraints or as a camera's background image
169773
170032
 
169774
- :type: typing.Optional[MovieClip]
170033
+ :type: MovieClip | None
169775
170034
  """
169776
170035
 
169777
170036
  animation_data: AnimData
@@ -171531,7 +171790,9 @@ class WindowManager(ID, bpy_struct):
171531
171790
  """Tag for refreshing the interface after scripts have been reloaded"""
171532
171791
  ...
171533
171792
 
171534
- def popover(self, draw_func, ui_units_x=0, keymap=None, from_active_button=False):
171793
+ def popover(
171794
+ self, draw_func, *, ui_units_x=0, keymap=None, from_active_button=False
171795
+ ):
171535
171796
  """
171536
171797
 
171537
171798
  :param draw_func:
@@ -171541,7 +171802,7 @@ class WindowManager(ID, bpy_struct):
171541
171802
  """
171542
171803
  ...
171543
171804
 
171544
- def popup_menu(self, draw_func, title="", icon="NONE"):
171805
+ def popup_menu(self, draw_func, *, title="", icon="NONE"):
171545
171806
  """Popup menus can be useful for creating menus without having to register menu classes.Note that they will not block the scripts execution, so the caller can't wait for user input.
171546
171807
 
171547
171808
  :param draw_func:
@@ -171550,7 +171811,7 @@ class WindowManager(ID, bpy_struct):
171550
171811
  """
171551
171812
  ...
171552
171813
 
171553
- def popup_menu_pie(self, event, draw_func, title="", icon="NONE"):
171814
+ def popup_menu_pie(self, event, draw_func, *, title="", icon="NONE"):
171554
171815
  """
171555
171816
 
171556
171817
  :param event:
@@ -171622,16 +171883,16 @@ class WindowManager(ID, bpy_struct):
171622
171883
  class WorkSpace(ID, bpy_struct):
171623
171884
  """Workspace data-block, defining the working environment for the user"""
171624
171885
 
171625
- active_addon: typing.Optional[int]
171886
+ active_addon: int | None
171626
171887
  """ Active Add-on in the Workspace Add-ons filter
171627
171888
 
171628
- :type: typing.Optional[int]
171889
+ :type: int | None
171629
171890
  """
171630
171891
 
171631
- active_pose_asset_index: typing.Optional[int]
171892
+ active_pose_asset_index: int | None
171632
171893
  """ Per workspace index of the active pose asset
171633
171894
 
171634
- :type: typing.Optional[int]
171895
+ :type: int | None
171635
171896
  """
171636
171897
 
171637
171898
  asset_library_reference: str
@@ -171780,6 +172041,18 @@ class World(ID, bpy_struct):
171780
172041
  :type: float
171781
172042
  """
171782
172043
 
172044
+ sun_shadow_filter_radius: float
172045
+ """ Blur shadow aliasing using Percentage Closer Filtering
172046
+
172047
+ :type: float
172048
+ """
172049
+
172050
+ sun_shadow_jitter_overblur: float
172051
+ """ Apply shadow tracing to each jittered sample to reduce under-sampling artifacts
172052
+
172053
+ :type: float
172054
+ """
172055
+
171783
172056
  sun_shadow_maximum_resolution: float
171784
172057
  """ Maximum size of a shadow map pixel. Higher values use less memory at the cost of shadow quality
171785
172058
 
@@ -171810,6 +172083,12 @@ class World(ID, bpy_struct):
171810
172083
  :type: bool
171811
172084
  """
171812
172085
 
172086
+ use_sun_shadow_jitter: bool
172087
+ """ Enable jittered soft shadows to increase shadow precision (disabled in viewport unless enabled in the render settings). Has a high performance impact
172088
+
172089
+ :type: bool
172090
+ """
172091
+
171813
172092
  @classmethod
171814
172093
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
171815
172094
  """
@@ -180106,13 +180385,6 @@ class SurfaceModifier(Modifier, bpy_struct):
180106
180385
  class TriangulateModifier(Modifier, bpy_struct):
180107
180386
  """Triangulate Mesh"""
180108
180387
 
180109
- keep_custom_normals: bool
180110
- """ Try to preserve custom normals.
180111
- Warning: Depending on chosen triangulation method, shading may not be fully preserved, "Fixed" method usually gives the best result here
180112
-
180113
- :type: bool
180114
- """
180115
-
180116
180388
  min_vertices: int
180117
180389
  """ Triangulate only polygons with vertex count greater than or equal to this number
180118
180390
 
@@ -190742,10 +191014,10 @@ class SurfaceCurve(Curve, ID, bpy_struct):
190742
191014
  class TextCurve(Curve, ID, bpy_struct):
190743
191015
  """Curve data-block used for storing text"""
190744
191016
 
190745
- active_textbox: typing.Optional[int]
191017
+ active_textbox: int | None
190746
191018
  """
190747
191019
 
190748
- :type: typing.Optional[int]
191020
+ :type: int | None
190749
191021
  """
190750
191022
 
190751
191023
  align_x: str
@@ -191004,13 +191276,7 @@ class AreaLight(Light, ID, bpy_struct):
191004
191276
  """
191005
191277
 
191006
191278
  shadow_maximum_resolution: float
191007
- """ Maximum size of a shadow map pixel. Higher values use less memory at the cost of shadow quality
191008
-
191009
- :type: float
191010
- """
191011
-
191012
- shadow_resolution_scale: float
191013
- """ Scale the Shadow Map target resolution, where 1.0 tries to match shadow map and screen pixel density. (The scale is applied on top of the scene Simplify Shadow Resolution)
191279
+ """ Minimum size of a shadow map pixel. Higher values use less memory at the cost of shadow quality
191014
191280
 
191015
191281
  :type: float
191016
191282
  """
@@ -191145,13 +191411,7 @@ class PointLight(Light, ID, bpy_struct):
191145
191411
  """
191146
191412
 
191147
191413
  shadow_maximum_resolution: float
191148
- """ Maximum size of a shadow map pixel. Higher values use less memory at the cost of shadow quality
191149
-
191150
- :type: float
191151
- """
191152
-
191153
- shadow_resolution_scale: float
191154
- """ Scale the Shadow Map target resolution, where 1.0 tries to match shadow map and screen pixel density. (The scale is applied on top of the scene Simplify Shadow Resolution)
191414
+ """ Minimum size of a shadow map pixel. Higher values use less memory at the cost of shadow quality
191155
191415
 
191156
191416
  :type: float
191157
191417
  """
@@ -191268,13 +191528,7 @@ class SpotLight(Light, ID, bpy_struct):
191268
191528
  """
191269
191529
 
191270
191530
  shadow_maximum_resolution: float
191271
- """ Maximum size of a shadow map pixel. Higher values use less memory at the cost of shadow quality
191272
-
191273
- :type: float
191274
- """
191275
-
191276
- shadow_resolution_scale: float
191277
- """ Scale the Shadow Map target resolution, where 1.0 tries to match shadow map and screen pixel density. (The scale is applied on top of the scene Simplify Shadow Resolution)
191531
+ """ Minimum size of a shadow map pixel. Higher values use less memory at the cost of shadow quality
191278
191532
 
191279
191533
  :type: float
191280
191534
  """
@@ -191445,13 +191699,7 @@ class SunLight(Light, ID, bpy_struct):
191445
191699
  """
191446
191700
 
191447
191701
  shadow_maximum_resolution: float
191448
- """ Maximum size of a shadow map pixel. Higher values use less memory at the cost of shadow quality
191449
-
191450
- :type: float
191451
- """
191452
-
191453
- shadow_resolution_scale: float
191454
- """ Scale the Shadow Map target resolution, where 1.0 tries to match shadow map and screen pixel density. (The scale is applied on top of the scene Simplify Shadow Resolution)
191702
+ """ Minimum size of a shadow map pixel. Higher values use less memory at the cost of shadow quality
191455
191703
 
191456
191704
  :type: float
191457
191705
  """
@@ -206271,10 +206519,10 @@ class CompositorNodeNormalize(CompositorNode, NodeInternal, Node, bpy_struct):
206271
206519
  class CompositorNodeOutputFile(CompositorNode, NodeInternal, Node, bpy_struct):
206272
206520
  """Write image file to disk"""
206273
206521
 
206274
- active_input_index: typing.Optional[int]
206522
+ active_input_index: int | None
206275
206523
  """ Active input index in details view list
206276
206524
 
206277
- :type: typing.Optional[int]
206525
+ :type: int | None
206278
206526
  """
206279
206527
 
206280
206528
  base_path: str
@@ -211245,16 +211493,16 @@ class GeometryNodeAttributeStatistic(GeometryNode, NodeInternal, Node, bpy_struc
211245
211493
  class GeometryNodeBake(GeometryNode, NodeInternal, Node, bpy_struct):
211246
211494
  """Cache the incoming data so that it can be used without recomputation"""
211247
211495
 
211248
- active_index: typing.Optional[int]
211496
+ active_index: int | None
211249
211497
  """ Index of the active item
211250
211498
 
211251
- :type: typing.Optional[int]
211499
+ :type: int | None
211252
211500
  """
211253
211501
 
211254
- active_item: typing.Optional[RepeatItem]
211502
+ active_item: RepeatItem | None
211255
211503
  """ Index of the active item
211256
211504
 
211257
- :type: typing.Optional[RepeatItem]
211505
+ :type: RepeatItem | None
211258
211506
  """
211259
211507
 
211260
211508
  bake_items: NodeGeometryBakeItems
@@ -216636,16 +216884,16 @@ class GeometryNodeMaterialSelection(GeometryNode, NodeInternal, Node, bpy_struct
216636
216884
  class GeometryNodeMenuSwitch(GeometryNode, NodeInternal, Node, bpy_struct):
216637
216885
  """Select from multiple inputs by name"""
216638
216886
 
216639
- active_index: typing.Optional[int]
216887
+ active_index: int | None
216640
216888
  """ Index of the active item
216641
216889
 
216642
- :type: typing.Optional[int]
216890
+ :type: int | None
216643
216891
  """
216644
216892
 
216645
- active_item: typing.Optional[NodeEnumItem]
216893
+ active_item: NodeEnumItem | None
216646
216894
  """ Active item
216647
216895
 
216648
- :type: typing.Optional[NodeEnumItem]
216896
+ :type: NodeEnumItem | None
216649
216897
  """
216650
216898
 
216651
216899
  data_type: str
@@ -218572,16 +218820,16 @@ class GeometryNodeRepeatInput(GeometryNode, NodeInternal, Node, bpy_struct):
218572
218820
  ...
218573
218821
 
218574
218822
  class GeometryNodeRepeatOutput(GeometryNode, NodeInternal, Node, bpy_struct):
218575
- active_index: typing.Optional[int]
218823
+ active_index: int | None
218576
218824
  """ Index of the active item
218577
218825
 
218578
- :type: typing.Optional[int]
218826
+ :type: int | None
218579
218827
  """
218580
218828
 
218581
- active_item: typing.Optional[RepeatItem]
218829
+ active_item: RepeatItem | None
218582
218830
  """ Index of the active item
218583
218831
 
218584
- :type: typing.Optional[RepeatItem]
218832
+ :type: RepeatItem | None
218585
218833
  """
218586
218834
 
218587
218835
  inspection_index: int
@@ -220528,16 +220776,16 @@ class GeometryNodeSimulationInput(GeometryNode, NodeInternal, Node, bpy_struct):
220528
220776
  class GeometryNodeSimulationOutput(GeometryNode, NodeInternal, Node, bpy_struct):
220529
220777
  """Output data from the simulation zone"""
220530
220778
 
220531
- active_index: typing.Optional[int]
220779
+ active_index: int | None
220532
220780
  """ Index of the active item
220533
220781
 
220534
- :type: typing.Optional[int]
220782
+ :type: int | None
220535
220783
  """
220536
220784
 
220537
- active_item: typing.Optional[SimulationStateItem]
220785
+ active_item: SimulationStateItem | None
220538
220786
  """ Index of the active item
220539
220787
 
220540
- :type: typing.Optional[SimulationStateItem]
220788
+ :type: SimulationStateItem | None
220541
220789
  """
220542
220790
 
220543
220791
  state_items: NodeGeometrySimulationOutputItems
@@ -232307,6 +232555,8 @@ IMAGE_MT_view_pie: bl_ui.space_image.IMAGE_MT_view_pie
232307
232555
 
232308
232556
  IMAGE_MT_view_zoom: bl_ui.space_image.IMAGE_MT_view_zoom
232309
232557
 
232558
+ IMAGE_OT_import_as_mesh_planes: bl_operators.image_as_planes.IMAGE_OT_import_as_mesh_planes
232559
+
232310
232560
  IMAGE_OT_open_images: bl_operators.image.IMAGE_OT_open_images
232311
232561
 
232312
232562
  IMAGE_PT_active_mask_point: bl_ui.space_image.IMAGE_PT_active_mask_point
@@ -232765,6 +233015,8 @@ OBJECT_MT_modifier_add_edit: bl_ui.properties_data_modifier.OBJECT_MT_modifier_a
232765
233015
 
232766
233016
  OBJECT_MT_modifier_add_generate: bl_ui.properties_data_modifier.OBJECT_MT_modifier_add_generate
232767
233017
 
233018
+ OBJECT_MT_modifier_add_normals: bl_ui.properties_data_modifier.OBJECT_MT_modifier_add_normals
233019
+
232768
233020
  OBJECT_MT_modifier_add_physics: bl_ui.properties_data_modifier.OBJECT_MT_modifier_add_physics
232769
233021
 
232770
233022
  OBJECT_OT_assign_property_defaults: bl_operators.object.OBJECT_OT_assign_property_defaults
@@ -233271,8 +233523,6 @@ PREFERENCES_OT_studiolight_install: bl_operators.userpref.PREFERENCES_OT_studiol
233271
233523
 
233272
233524
  PREFERENCES_OT_studiolight_new: bl_operators.userpref.PREFERENCES_OT_studiolight_new
233273
233525
 
233274
- PREFERENCES_OT_studiolight_show: bl_operators.userpref.PREFERENCES_OT_studiolight_show
233275
-
233276
233526
  PREFERENCES_OT_studiolight_uninstall: bl_operators.userpref.PREFERENCES_OT_studiolight_uninstall
233277
233527
 
233278
233528
  PREFERENCES_OT_theme_install: bl_operators.userpref.PREFERENCES_OT_theme_install
@@ -233323,7 +233573,7 @@ RENDER_PT_eevee_next_depth_of_field: bl_ui.properties_render.RENDER_PT_eevee_nex
233323
233573
 
233324
233574
  RENDER_PT_eevee_next_film: bl_ui.properties_render.RENDER_PT_eevee_next_film
233325
233575
 
233326
- RENDER_PT_eevee_next_horizon_scan: bl_ui.properties_render.RENDER_PT_eevee_next_horizon_scan
233576
+ RENDER_PT_eevee_next_gi_approximation: bl_ui.properties_render.RENDER_PT_eevee_next_gi_approximation
233327
233577
 
233328
233578
  RENDER_PT_eevee_next_motion_blur: bl_ui.properties_render.RENDER_PT_eevee_next_motion_blur
233329
233579
 
@@ -233931,6 +234181,8 @@ USERPREF_PT_system_cycles_devices: bl_ui.space_userpref.USERPREF_PT_system_cycle
233931
234181
 
233932
234182
  USERPREF_PT_system_memory: bl_ui.space_userpref.USERPREF_PT_system_memory
233933
234183
 
234184
+ USERPREF_PT_system_network: bl_ui.space_userpref.USERPREF_PT_system_network
234185
+
233934
234186
  USERPREF_PT_system_os_settings: bl_ui.space_userpref.USERPREF_PT_system_os_settings
233935
234187
 
233936
234188
  USERPREF_PT_system_sound: bl_ui.space_userpref.USERPREF_PT_system_sound