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

bpy/types/__init__.pyi CHANGED
@@ -116060,11 +116060,11 @@ class AssetShelf(bpy_struct):
116060
116060
  """
116061
116061
 
116062
116062
  @classmethod
116063
- def poll(cls, context: Context | None) -> bool:
116063
+ def poll(cls, context: Context) -> bool:
116064
116064
  """If this method returns a non-null output, the asset shelf will be visible
116065
116065
 
116066
116066
  :param context:
116067
- :type context: Context | None
116067
+ :type context: Context
116068
116068
  :return:
116069
116069
  :rtype: bool
116070
116070
  """
@@ -116090,14 +116090,14 @@ class AssetShelf(bpy_struct):
116090
116090
  @classmethod
116091
116091
  def draw_context_menu(
116092
116092
  cls,
116093
- context: Context | None,
116093
+ context: Context,
116094
116094
  asset: AssetRepresentation | None,
116095
116095
  layout: UILayout | None,
116096
116096
  ):
116097
116097
  """Draw UI elements into the context menu UI layout displayed on right click
116098
116098
 
116099
116099
  :param context:
116100
- :type context: Context | None
116100
+ :type context: Context
116101
116101
  :param asset:
116102
116102
  :type asset: AssetRepresentation | None
116103
116103
  :param layout:
@@ -126740,6 +126740,12 @@ class CompositorNodeDenoise(CompositorNode, NodeInternal, Node, bpy_struct):
126740
126740
  :type: typing.Literal['NONE','FAST','ACCURATE']
126741
126741
  """
126742
126742
 
126743
+ quality: typing.Literal["FOLLOW_SCENE", "HIGH", "BALANCED", "FAST"]
126744
+ """ Denoising quality
126745
+
126746
+ :type: typing.Literal['FOLLOW_SCENE','HIGH','BALANCED','FAST']
126747
+ """
126748
+
126743
126749
  use_hdr: bool
126744
126750
  """ Process HDR images
126745
126751
 
@@ -138998,11 +139004,11 @@ For Example: ".blend;.ble"
138998
139004
  """
138999
139005
 
139000
139006
  @classmethod
139001
- def poll_drop(cls, context: Context | None) -> bool:
139007
+ def poll_drop(cls, context: Context) -> bool:
139002
139008
  """If this method returns True, can be used to handle the drop of a drag-and-drop action
139003
139009
 
139004
139010
  :param context:
139005
- :type context: Context | None
139011
+ :type context: Context
139006
139012
  :return:
139007
139013
  :rtype: bool
139008
139014
  """
@@ -157677,29 +157683,29 @@ class Gizmo(bpy_struct):
157677
157683
  :type: bool
157678
157684
  """
157679
157685
 
157680
- def draw(self, context: Context | None):
157686
+ def draw(self, context: Context):
157681
157687
  """
157682
157688
 
157683
157689
  :param context:
157684
- :type context: Context | None
157690
+ :type context: Context
157685
157691
  """
157686
157692
 
157687
- def draw_select(self, context: Context | None, *, select_id: int | None = 0):
157693
+ def draw_select(self, context: Context, *, select_id: int | None = 0):
157688
157694
  """
157689
157695
 
157690
157696
  :param context:
157691
- :type context: Context | None
157697
+ :type context: Context
157692
157698
  :param select_id:
157693
157699
  :type select_id: int | None
157694
157700
  """
157695
157701
 
157696
157702
  def test_select(
157697
- self, context: Context | None, location: collections.abc.Iterable[int]
157703
+ self, context: Context, location: collections.abc.Iterable[int]
157698
157704
  ) -> int:
157699
157705
  """
157700
157706
 
157701
157707
  :param context:
157702
- :type context: Context | None
157708
+ :type context: Context
157703
157709
  :param location: Location, Region coordinates
157704
157710
  :type location: collections.abc.Iterable[int]
157705
157711
  :return: Use -1 to skip this gizmo
@@ -157708,14 +157714,14 @@ class Gizmo(bpy_struct):
157708
157714
 
157709
157715
  def modal(
157710
157716
  self,
157711
- context: Context | None,
157717
+ context: Context,
157712
157718
  event: Event,
157713
157719
  tweak: set[typing.Literal["PRECISE", "SNAP"]] | None,
157714
157720
  ) -> set[bpy.typing.OperatorReturnItems]:
157715
157721
  """
157716
157722
 
157717
157723
  :param context:
157718
- :type context: Context | None
157724
+ :type context: Context
157719
157725
  :param event:
157720
157726
  :type event: Event
157721
157727
  :param tweak: Tweak
@@ -157726,23 +157732,23 @@ class Gizmo(bpy_struct):
157726
157732
 
157727
157733
  def setup(self): ...
157728
157734
  def invoke(
157729
- self, context: Context | None, event: Event
157735
+ self, context: Context, event: Event
157730
157736
  ) -> set[bpy.typing.OperatorReturnItems]:
157731
157737
  """
157732
157738
 
157733
157739
  :param context:
157734
- :type context: Context | None
157740
+ :type context: Context
157735
157741
  :param event:
157736
157742
  :type event: Event
157737
157743
  :return: result
157738
157744
  :rtype: set[bpy.typing.OperatorReturnItems]
157739
157745
  """
157740
157746
 
157741
- def exit(self, context: Context | None, cancel: bool | None):
157747
+ def exit(self, context: Context, cancel: bool | None):
157742
157748
  """
157743
157749
 
157744
157750
  :param context:
157745
- :type context: Context | None
157751
+ :type context: Context
157746
157752
  :param cancel: Cancel, otherwise confirm
157747
157753
  :type cancel: bool | None
157748
157754
  """
@@ -158000,11 +158006,11 @@ class GizmoGroup(bpy_struct):
158000
158006
  """
158001
158007
 
158002
158008
  @classmethod
158003
- def poll(cls, context: Context | None) -> bool:
158009
+ def poll(cls, context: Context) -> bool:
158004
158010
  """Test if the gizmo group can be called or not
158005
158011
 
158006
158012
  :param context:
158007
- :type context: Context | None
158013
+ :type context: Context
158008
158014
  :return:
158009
158015
  :rtype: bool
158010
158016
  """
@@ -158019,32 +158025,32 @@ class GizmoGroup(bpy_struct):
158019
158025
  :rtype: KeyMap
158020
158026
  """
158021
158027
 
158022
- def setup(self, context: Context | None):
158028
+ def setup(self, context: Context):
158023
158029
  """Create gizmos function for the gizmo group
158024
158030
 
158025
158031
  :param context:
158026
- :type context: Context | None
158032
+ :type context: Context
158027
158033
  """
158028
158034
 
158029
- def refresh(self, context: Context | None):
158035
+ def refresh(self, context: Context):
158030
158036
  """Refresh data (called on common state changes such as selection)
158031
158037
 
158032
158038
  :param context:
158033
- :type context: Context | None
158039
+ :type context: Context
158034
158040
  """
158035
158041
 
158036
- def draw_prepare(self, context: Context | None):
158042
+ def draw_prepare(self, context: Context):
158037
158043
  """Run before each redraw
158038
158044
 
158039
158045
  :param context:
158040
- :type context: Context | None
158046
+ :type context: Context
158041
158047
  """
158042
158048
 
158043
- def invoke_prepare(self, context: Context | None, gizmo: Gizmo):
158049
+ def invoke_prepare(self, context: Context, gizmo: Gizmo):
158044
158050
  """Run before invoke
158045
158051
 
158046
158052
  :param context:
158047
- :type context: Context | None
158053
+ :type context: Context
158048
158054
  :param gizmo:
158049
158055
  :type gizmo: Gizmo
158050
158056
  """
@@ -163242,11 +163248,11 @@ class Header(bpy_struct):
163242
163248
  :type: UILayout
163243
163249
  """
163244
163250
 
163245
- def draw(self, context: Context | None):
163251
+ def draw(self, context: Context):
163246
163252
  """Draw UI elements into the header UI layout
163247
163253
 
163248
163254
  :param context:
163249
- :type context: Context | None
163255
+ :type context: Context
163250
163256
  """
163251
163257
 
163252
163258
  @classmethod
@@ -166623,29 +166629,29 @@ class KeyingSetInfo(bpy_struct):
166623
166629
  :type: set[bpy.typing.KeyingFlagItems]
166624
166630
  """
166625
166631
 
166626
- def poll(self, context: Context | None) -> bool:
166632
+ def poll(self, context: Context) -> bool:
166627
166633
  """Test if Keying Set can be used or not
166628
166634
 
166629
166635
  :param context:
166630
- :type context: Context | None
166636
+ :type context: Context
166631
166637
  :return:
166632
166638
  :rtype: bool
166633
166639
  """
166634
166640
 
166635
- def iterator(self, context: Context | None, ks: KeyingSet | None):
166641
+ def iterator(self, context: Context, ks: KeyingSet | None):
166636
166642
  """Call generate() on the structs which have properties to be keyframed
166637
166643
 
166638
166644
  :param context:
166639
- :type context: Context | None
166645
+ :type context: Context
166640
166646
  :param ks:
166641
166647
  :type ks: KeyingSet | None
166642
166648
  """
166643
166649
 
166644
- def generate(self, context: Context | None, ks: KeyingSet | None, data: typing.Any):
166650
+ def generate(self, context: Context, ks: KeyingSet | None, data: typing.Any):
166645
166651
  """Add Paths to the Keying Set to keyframe the properties of the given data
166646
166652
 
166647
166653
  :param context:
166648
- :type context: Context | None
166654
+ :type context: Context
166649
166655
  :param ks:
166650
166656
  :type ks: KeyingSet | None
166651
166657
  :param data:
@@ -172296,20 +172302,20 @@ class Macro(bpy_struct):
172296
172302
  """
172297
172303
 
172298
172304
  @classmethod
172299
- def poll(cls, context: Context | None) -> bool:
172305
+ def poll(cls, context: Context) -> bool:
172300
172306
  """Test if the operator can be called or not
172301
172307
 
172302
172308
  :param context:
172303
- :type context: Context | None
172309
+ :type context: Context
172304
172310
  :return:
172305
172311
  :rtype: bool
172306
172312
  """
172307
172313
 
172308
- def draw(self, context: Context | None):
172314
+ def draw(self, context: Context):
172309
172315
  """Draw function for the operator
172310
172316
 
172311
172317
  :param context:
172312
- :type context: Context | None
172318
+ :type context: Context
172313
172319
  """
172314
172320
 
172315
172321
  @classmethod
@@ -173720,20 +173726,20 @@ class Menu(bpy_struct):
173720
173726
  """
173721
173727
 
173722
173728
  @classmethod
173723
- def poll(cls, context: Context | None) -> bool:
173729
+ def poll(cls, context: Context) -> bool:
173724
173730
  """If this method returns a non-null output, then the menu can be drawn
173725
173731
 
173726
173732
  :param context:
173727
- :type context: Context | None
173733
+ :type context: Context
173728
173734
  :return:
173729
173735
  :rtype: bool
173730
173736
  """
173731
173737
 
173732
- def draw(self, context: Context | None):
173738
+ def draw(self, context: Context):
173733
173739
  """Draw UI elements into the menu UI layout
173734
173740
 
173735
173741
  :param context:
173736
- :type context: Context | None
173742
+ :type context: Context
173737
173743
  """
173738
173744
 
173739
173745
  @classmethod
@@ -178778,11 +178784,11 @@ class Node(bpy_struct):
178778
178784
  :type: float
178779
178785
  """
178780
178786
 
178781
- def socket_value_update(self, context: Context | None):
178787
+ def socket_value_update(self, context: Context):
178782
178788
  """Update after property changes
178783
178789
 
178784
178790
  :param context:
178785
- :type context: Context | None
178791
+ :type context: Context
178786
178792
  """
178787
178793
 
178788
178794
  @classmethod
@@ -178822,11 +178828,11 @@ class Node(bpy_struct):
178822
178828
  :type link: NodeLink
178823
178829
  """
178824
178830
 
178825
- def init(self, context: Context | None):
178831
+ def init(self, context: Context):
178826
178832
  """Initialize a new instance of this node
178827
178833
 
178828
178834
  :param context:
178829
- :type context: Context | None
178835
+ :type context: Context
178830
178836
  """
178831
178837
 
178832
178838
  def copy(self, node: typing_extensions.Self):
@@ -178839,20 +178845,20 @@ class Node(bpy_struct):
178839
178845
  def free(self):
178840
178846
  """Clean up node on removal"""
178841
178847
 
178842
- def draw_buttons(self, context: Context | None, layout: UILayout):
178848
+ def draw_buttons(self, context: Context, layout: UILayout):
178843
178849
  """Draw node buttons
178844
178850
 
178845
178851
  :param context:
178846
- :type context: Context | None
178852
+ :type context: Context
178847
178853
  :param layout: Layout, Layout in the UI
178848
178854
  :type layout: UILayout
178849
178855
  """
178850
178856
 
178851
- def draw_buttons_ext(self, context: Context | None, layout: UILayout):
178857
+ def draw_buttons_ext(self, context: Context, layout: UILayout):
178852
178858
  """Draw node buttons in the sidebar
178853
178859
 
178854
178860
  :param context:
178855
- :type context: Context | None
178861
+ :type context: Context
178856
178862
  :param layout: Layout, Layout in the UI
178857
178863
  :type layout: UILayout
178858
178864
  """
@@ -179348,20 +179354,20 @@ class NodeInternal(Node, bpy_struct):
179348
179354
  def update(self):
179349
179355
  """Update on node graph topology changes (adding or removing nodes and links)"""
179350
179356
 
179351
- def draw_buttons(self, context: Context | None, layout: UILayout):
179357
+ def draw_buttons(self, context: Context, layout: UILayout):
179352
179358
  """Draw node buttons
179353
179359
 
179354
179360
  :param context:
179355
- :type context: Context | None
179361
+ :type context: Context
179356
179362
  :param layout: Layout, Layout in the UI
179357
179363
  :type layout: UILayout
179358
179364
  """
179359
179365
 
179360
- def draw_buttons_ext(self, context: Context | None, layout: UILayout):
179366
+ def draw_buttons_ext(self, context: Context, layout: UILayout):
179361
179367
  """Draw node buttons in the sidebar
179362
179368
 
179363
179369
  :param context:
179364
- :type context: Context | None
179370
+ :type context: Context
179365
179371
  :param layout: Layout, Layout in the UI
179366
179372
  :type layout: UILayout
179367
179373
  """
@@ -179781,11 +179787,11 @@ class NodeSocket(bpy_struct):
179781
179787
  :type: NodeLinks | None
179782
179788
  """
179783
179789
 
179784
- def draw(self, context: Context | None, layout: UILayout, node: Node, text: str):
179790
+ def draw(self, context: Context, layout: UILayout, node: Node, text: str):
179785
179791
  """Draw socket
179786
179792
 
179787
179793
  :param context:
179788
- :type context: Context | None
179794
+ :type context: Context
179789
179795
  :param layout: Layout, Layout in the UI
179790
179796
  :type layout: UILayout
179791
179797
  :param node: Node, Node the socket belongs to
@@ -179794,11 +179800,11 @@ class NodeSocket(bpy_struct):
179794
179800
  :type text: str
179795
179801
  """
179796
179802
 
179797
- def draw_color(self, context: Context | None, node: Node) -> bpy_prop_array[float]:
179803
+ def draw_color(self, context: Context, node: Node) -> bpy_prop_array[float]:
179798
179804
  """Color of the socket icon
179799
179805
 
179800
179806
  :param context:
179801
- :type context: Context | None
179807
+ :type context: Context
179802
179808
  :param node: Node, Node the socket belongs to
179803
179809
  :type node: Node
179804
179810
  :return: Color
@@ -180786,11 +180792,11 @@ class NodeSocketStandard(NodeSocket, bpy_struct):
180786
180792
  :type: NodeLinks | None
180787
180793
  """
180788
180794
 
180789
- def draw(self, context: Context | None, layout: UILayout, node: Node, text: str):
180795
+ def draw(self, context: Context, layout: UILayout, node: Node, text: str):
180790
180796
  """Draw socket
180791
180797
 
180792
180798
  :param context:
180793
- :type context: Context | None
180799
+ :type context: Context
180794
180800
  :param layout: Layout, Layout in the UI
180795
180801
  :type layout: UILayout
180796
180802
  :param node: Node, Node the socket belongs to
@@ -180799,11 +180805,11 @@ class NodeSocketStandard(NodeSocket, bpy_struct):
180799
180805
  :type text: str
180800
180806
  """
180801
180807
 
180802
- def draw_color(self, context: Context | None, node: Node) -> bpy_prop_array[float]:
180808
+ def draw_color(self, context: Context, node: Node) -> bpy_prop_array[float]:
180803
180809
  """Color of the socket icon
180804
180810
 
180805
180811
  :param context:
180806
- :type context: Context | None
180812
+ :type context: Context
180807
180813
  :param node: Node, Node the socket belongs to
180808
180814
  :type node: Node
180809
180815
  :return: Color
@@ -181354,11 +181360,11 @@ class NodeTree(ID, bpy_struct):
181354
181360
  :type: mathutils.Vector
181355
181361
  """
181356
181362
 
181357
- def interface_update(self, context: Context | None):
181363
+ def interface_update(self, context: Context):
181358
181364
  """Updated node group interface
181359
181365
 
181360
181366
  :param context:
181361
- :type context: Context | None
181367
+ :type context: Context
181362
181368
  """
181363
181369
 
181364
181370
  def contains_tree(self, sub_tree: typing_extensions.Self) -> bool:
@@ -181371,11 +181377,11 @@ class NodeTree(ID, bpy_struct):
181371
181377
  """
181372
181378
 
181373
181379
  @classmethod
181374
- def poll(cls, context: Context | None) -> bool:
181380
+ def poll(cls, context: Context) -> bool:
181375
181381
  """Check visibility in the editor
181376
181382
 
181377
181383
  :param context:
181378
- :type context: Context | None
181384
+ :type context: Context
181379
181385
  :return:
181380
181386
  :rtype: bool
181381
181387
  """
@@ -181384,11 +181390,11 @@ class NodeTree(ID, bpy_struct):
181384
181390
  """Update on editor changes"""
181385
181391
 
181386
181392
  @classmethod
181387
- def get_from_context(cls, context: Context | None):
181393
+ def get_from_context(cls, context: Context):
181388
181394
  """Get a node tree from the context
181389
181395
 
181390
181396
  :param context:
181391
- :type context: Context | None
181397
+ :type context: Context
181392
181398
  :return: result_1, Active node tree from context, `NodeTree`
181393
181399
 
181394
181400
  result_2, ID data-block that owns the node tree, `ID`
@@ -181763,11 +181769,11 @@ class NodeTreeInterfaceSocket(NodeTreeInterfaceItem, bpy_struct):
181763
181769
  :type: str
181764
181770
  """
181765
181771
 
181766
- def draw(self, context: Context | None, layout: UILayout):
181772
+ def draw(self, context: Context, layout: UILayout):
181767
181773
  """Draw properties of the socket interface
181768
181774
 
181769
181775
  :param context:
181770
- :type context: Context | None
181776
+ :type context: Context
181771
181777
  :param layout: Layout, Layout in the UI
181772
181778
  :type layout: UILayout
181773
181779
  """
@@ -181825,11 +181831,11 @@ class NodeTreeInterfaceSocketBool(
181825
181831
  :type: bool
181826
181832
  """
181827
181833
 
181828
- def draw(self, context: Context | None, layout: UILayout):
181834
+ def draw(self, context: Context, layout: UILayout):
181829
181835
  """Draw interface socket settings
181830
181836
 
181831
181837
  :param context:
181832
- :type context: Context | None
181838
+ :type context: Context
181833
181839
  :param layout: Layout, Layout in the UI
181834
181840
  :type layout: UILayout
181835
181841
  """
@@ -181887,11 +181893,11 @@ class NodeTreeInterfaceSocketCollection(
181887
181893
  :type: Collection | None
181888
181894
  """
181889
181895
 
181890
- def draw(self, context: Context | None, layout: UILayout):
181896
+ def draw(self, context: Context, layout: UILayout):
181891
181897
  """Draw interface socket settings
181892
181898
 
181893
181899
  :param context:
181894
- :type context: Context | None
181900
+ :type context: Context
181895
181901
  :param layout: Layout, Layout in the UI
181896
181902
  :type layout: UILayout
181897
181903
  """
@@ -181949,11 +181955,11 @@ class NodeTreeInterfaceSocketColor(
181949
181955
  :type: bpy_prop_array[float]
181950
181956
  """
181951
181957
 
181952
- def draw(self, context: Context | None, layout: UILayout):
181958
+ def draw(self, context: Context, layout: UILayout):
181953
181959
  """Draw interface socket settings
181954
181960
 
181955
181961
  :param context:
181956
- :type context: Context | None
181962
+ :type context: Context
181957
181963
  :param layout: Layout, Layout in the UI
181958
181964
  :type layout: UILayout
181959
181965
  """
@@ -182029,11 +182035,11 @@ class NodeTreeInterfaceSocketFloat(
182029
182035
  :type: str
182030
182036
  """
182031
182037
 
182032
- def draw(self, context: Context | None, layout: UILayout):
182038
+ def draw(self, context: Context, layout: UILayout):
182033
182039
  """Draw interface socket settings
182034
182040
 
182035
182041
  :param context:
182036
- :type context: Context | None
182042
+ :type context: Context
182037
182043
  :param layout: Layout, Layout in the UI
182038
182044
  :type layout: UILayout
182039
182045
  """
@@ -182109,11 +182115,11 @@ class NodeTreeInterfaceSocketFloatAngle(
182109
182115
  :type: str
182110
182116
  """
182111
182117
 
182112
- def draw(self, context: Context | None, layout: UILayout):
182118
+ def draw(self, context: Context, layout: UILayout):
182113
182119
  """Draw interface socket settings
182114
182120
 
182115
182121
  :param context:
182116
- :type context: Context | None
182122
+ :type context: Context
182117
182123
  :param layout: Layout, Layout in the UI
182118
182124
  :type layout: UILayout
182119
182125
  """
@@ -182189,11 +182195,11 @@ class NodeTreeInterfaceSocketFloatColorTemperature(
182189
182195
  :type: str
182190
182196
  """
182191
182197
 
182192
- def draw(self, context: Context | None, layout: UILayout):
182198
+ def draw(self, context: Context, layout: UILayout):
182193
182199
  """Draw interface socket settings
182194
182200
 
182195
182201
  :param context:
182196
- :type context: Context | None
182202
+ :type context: Context
182197
182203
  :param layout: Layout, Layout in the UI
182198
182204
  :type layout: UILayout
182199
182205
  """
@@ -182269,11 +182275,11 @@ class NodeTreeInterfaceSocketFloatDistance(
182269
182275
  :type: str
182270
182276
  """
182271
182277
 
182272
- def draw(self, context: Context | None, layout: UILayout):
182278
+ def draw(self, context: Context, layout: UILayout):
182273
182279
  """Draw interface socket settings
182274
182280
 
182275
182281
  :param context:
182276
- :type context: Context | None
182282
+ :type context: Context
182277
182283
  :param layout: Layout, Layout in the UI
182278
182284
  :type layout: UILayout
182279
182285
  """
@@ -182349,11 +182355,11 @@ class NodeTreeInterfaceSocketFloatFactor(
182349
182355
  :type: str
182350
182356
  """
182351
182357
 
182352
- def draw(self, context: Context | None, layout: UILayout):
182358
+ def draw(self, context: Context, layout: UILayout):
182353
182359
  """Draw interface socket settings
182354
182360
 
182355
182361
  :param context:
182356
- :type context: Context | None
182362
+ :type context: Context
182357
182363
  :param layout: Layout, Layout in the UI
182358
182364
  :type layout: UILayout
182359
182365
  """
@@ -182429,11 +182435,11 @@ class NodeTreeInterfaceSocketFloatFrequency(
182429
182435
  :type: str
182430
182436
  """
182431
182437
 
182432
- def draw(self, context: Context | None, layout: UILayout):
182438
+ def draw(self, context: Context, layout: UILayout):
182433
182439
  """Draw interface socket settings
182434
182440
 
182435
182441
  :param context:
182436
- :type context: Context | None
182442
+ :type context: Context
182437
182443
  :param layout: Layout, Layout in the UI
182438
182444
  :type layout: UILayout
182439
182445
  """
@@ -182509,11 +182515,11 @@ class NodeTreeInterfaceSocketFloatPercentage(
182509
182515
  :type: str
182510
182516
  """
182511
182517
 
182512
- def draw(self, context: Context | None, layout: UILayout):
182518
+ def draw(self, context: Context, layout: UILayout):
182513
182519
  """Draw interface socket settings
182514
182520
 
182515
182521
  :param context:
182516
- :type context: Context | None
182522
+ :type context: Context
182517
182523
  :param layout: Layout, Layout in the UI
182518
182524
  :type layout: UILayout
182519
182525
  """
@@ -182589,11 +182595,11 @@ class NodeTreeInterfaceSocketFloatTime(
182589
182595
  :type: str
182590
182596
  """
182591
182597
 
182592
- def draw(self, context: Context | None, layout: UILayout):
182598
+ def draw(self, context: Context, layout: UILayout):
182593
182599
  """Draw interface socket settings
182594
182600
 
182595
182601
  :param context:
182596
- :type context: Context | None
182602
+ :type context: Context
182597
182603
  :param layout: Layout, Layout in the UI
182598
182604
  :type layout: UILayout
182599
182605
  """
@@ -182669,11 +182675,11 @@ class NodeTreeInterfaceSocketFloatTimeAbsolute(
182669
182675
  :type: str
182670
182676
  """
182671
182677
 
182672
- def draw(self, context: Context | None, layout: UILayout):
182678
+ def draw(self, context: Context, layout: UILayout):
182673
182679
  """Draw interface socket settings
182674
182680
 
182675
182681
  :param context:
182676
- :type context: Context | None
182682
+ :type context: Context
182677
182683
  :param layout: Layout, Layout in the UI
182678
182684
  :type layout: UILayout
182679
182685
  """
@@ -182749,11 +182755,11 @@ class NodeTreeInterfaceSocketFloatUnsigned(
182749
182755
  :type: str
182750
182756
  """
182751
182757
 
182752
- def draw(self, context: Context | None, layout: UILayout):
182758
+ def draw(self, context: Context, layout: UILayout):
182753
182759
  """Draw interface socket settings
182754
182760
 
182755
182761
  :param context:
182756
- :type context: Context | None
182762
+ :type context: Context
182757
182763
  :param layout: Layout, Layout in the UI
182758
182764
  :type layout: UILayout
182759
182765
  """
@@ -182829,11 +182835,11 @@ class NodeTreeInterfaceSocketFloatWavelength(
182829
182835
  :type: str
182830
182836
  """
182831
182837
 
182832
- def draw(self, context: Context | None, layout: UILayout):
182838
+ def draw(self, context: Context, layout: UILayout):
182833
182839
  """Draw interface socket settings
182834
182840
 
182835
182841
  :param context:
182836
- :type context: Context | None
182842
+ :type context: Context
182837
182843
  :param layout: Layout, Layout in the UI
182838
182844
  :type layout: UILayout
182839
182845
  """
@@ -182885,11 +182891,11 @@ class NodeTreeInterfaceSocketGeometry(
182885
182891
  ):
182886
182892
  """Geometry socket of a node"""
182887
182893
 
182888
- def draw(self, context: Context | None, layout: UILayout):
182894
+ def draw(self, context: Context, layout: UILayout):
182889
182895
  """Draw interface socket settings
182890
182896
 
182891
182897
  :param context:
182892
- :type context: Context | None
182898
+ :type context: Context
182893
182899
  :param layout: Layout, Layout in the UI
182894
182900
  :type layout: UILayout
182895
182901
  """
@@ -182947,11 +182953,11 @@ class NodeTreeInterfaceSocketImage(
182947
182953
  :type: Image | None
182948
182954
  """
182949
182955
 
182950
- def draw(self, context: Context | None, layout: UILayout):
182956
+ def draw(self, context: Context, layout: UILayout):
182951
182957
  """Draw interface socket settings
182952
182958
 
182953
182959
  :param context:
182954
- :type context: Context | None
182960
+ :type context: Context
182955
182961
  :param layout: Layout, Layout in the UI
182956
182962
  :type layout: UILayout
182957
182963
  """
@@ -183027,11 +183033,11 @@ class NodeTreeInterfaceSocketInt(
183027
183033
  :type: str
183028
183034
  """
183029
183035
 
183030
- def draw(self, context: Context | None, layout: UILayout):
183036
+ def draw(self, context: Context, layout: UILayout):
183031
183037
  """Draw interface socket settings
183032
183038
 
183033
183039
  :param context:
183034
- :type context: Context | None
183040
+ :type context: Context
183035
183041
  :param layout: Layout, Layout in the UI
183036
183042
  :type layout: UILayout
183037
183043
  """
@@ -183107,11 +183113,11 @@ class NodeTreeInterfaceSocketIntFactor(
183107
183113
  :type: str
183108
183114
  """
183109
183115
 
183110
- def draw(self, context: Context | None, layout: UILayout):
183116
+ def draw(self, context: Context, layout: UILayout):
183111
183117
  """Draw interface socket settings
183112
183118
 
183113
183119
  :param context:
183114
- :type context: Context | None
183120
+ :type context: Context
183115
183121
  :param layout: Layout, Layout in the UI
183116
183122
  :type layout: UILayout
183117
183123
  """
@@ -183187,11 +183193,11 @@ class NodeTreeInterfaceSocketIntPercentage(
183187
183193
  :type: str
183188
183194
  """
183189
183195
 
183190
- def draw(self, context: Context | None, layout: UILayout):
183196
+ def draw(self, context: Context, layout: UILayout):
183191
183197
  """Draw interface socket settings
183192
183198
 
183193
183199
  :param context:
183194
- :type context: Context | None
183200
+ :type context: Context
183195
183201
  :param layout: Layout, Layout in the UI
183196
183202
  :type layout: UILayout
183197
183203
  """
@@ -183267,11 +183273,11 @@ class NodeTreeInterfaceSocketIntUnsigned(
183267
183273
  :type: str
183268
183274
  """
183269
183275
 
183270
- def draw(self, context: Context | None, layout: UILayout):
183276
+ def draw(self, context: Context, layout: UILayout):
183271
183277
  """Draw interface socket settings
183272
183278
 
183273
183279
  :param context:
183274
- :type context: Context | None
183280
+ :type context: Context
183275
183281
  :param layout: Layout, Layout in the UI
183276
183282
  :type layout: UILayout
183277
183283
  """
@@ -183329,11 +183335,11 @@ class NodeTreeInterfaceSocketMaterial(
183329
183335
  :type: Material | None
183330
183336
  """
183331
183337
 
183332
- def draw(self, context: Context | None, layout: UILayout):
183338
+ def draw(self, context: Context, layout: UILayout):
183333
183339
  """Draw interface socket settings
183334
183340
 
183335
183341
  :param context:
183336
- :type context: Context | None
183342
+ :type context: Context
183337
183343
  :param layout: Layout, Layout in the UI
183338
183344
  :type layout: UILayout
183339
183345
  """
@@ -183385,11 +183391,11 @@ class NodeTreeInterfaceSocketMatrix(
183385
183391
  ):
183386
183392
  """Matrix value socket of a node"""
183387
183393
 
183388
- def draw(self, context: Context | None, layout: UILayout):
183394
+ def draw(self, context: Context, layout: UILayout):
183389
183395
  """Draw interface socket settings
183390
183396
 
183391
183397
  :param context:
183392
- :type context: Context | None
183398
+ :type context: Context
183393
183399
  :param layout: Layout, Layout in the UI
183394
183400
  :type layout: UILayout
183395
183401
  """
@@ -183447,11 +183453,11 @@ class NodeTreeInterfaceSocketMenu(
183447
183453
  :type: str
183448
183454
  """
183449
183455
 
183450
- def draw(self, context: Context | None, layout: UILayout):
183456
+ def draw(self, context: Context, layout: UILayout):
183451
183457
  """Draw interface socket settings
183452
183458
 
183453
183459
  :param context:
183454
- :type context: Context | None
183460
+ :type context: Context
183455
183461
  :param layout: Layout, Layout in the UI
183456
183462
  :type layout: UILayout
183457
183463
  """
@@ -183509,11 +183515,11 @@ class NodeTreeInterfaceSocketObject(
183509
183515
  :type: Object | None
183510
183516
  """
183511
183517
 
183512
- def draw(self, context: Context | None, layout: UILayout):
183518
+ def draw(self, context: Context, layout: UILayout):
183513
183519
  """Draw interface socket settings
183514
183520
 
183515
183521
  :param context:
183516
- :type context: Context | None
183522
+ :type context: Context
183517
183523
  :param layout: Layout, Layout in the UI
183518
183524
  :type layout: UILayout
183519
183525
  """
@@ -183571,11 +183577,11 @@ class NodeTreeInterfaceSocketRotation(
183571
183577
  :type: mathutils.Euler
183572
183578
  """
183573
183579
 
183574
- def draw(self, context: Context | None, layout: UILayout):
183580
+ def draw(self, context: Context, layout: UILayout):
183575
183581
  """Draw interface socket settings
183576
183582
 
183577
183583
  :param context:
183578
- :type context: Context | None
183584
+ :type context: Context
183579
183585
  :param layout: Layout, Layout in the UI
183580
183586
  :type layout: UILayout
183581
183587
  """
@@ -183627,11 +183633,11 @@ class NodeTreeInterfaceSocketShader(
183627
183633
  ):
183628
183634
  """Shader socket of a node"""
183629
183635
 
183630
- def draw(self, context: Context | None, layout: UILayout):
183636
+ def draw(self, context: Context, layout: UILayout):
183631
183637
  """Draw interface socket settings
183632
183638
 
183633
183639
  :param context:
183634
- :type context: Context | None
183640
+ :type context: Context
183635
183641
  :param layout: Layout, Layout in the UI
183636
183642
  :type layout: UILayout
183637
183643
  """
@@ -183695,11 +183701,11 @@ class NodeTreeInterfaceSocketString(
183695
183701
  :type: str
183696
183702
  """
183697
183703
 
183698
- def draw(self, context: Context | None, layout: UILayout):
183704
+ def draw(self, context: Context, layout: UILayout):
183699
183705
  """Draw interface socket settings
183700
183706
 
183701
183707
  :param context:
183702
- :type context: Context | None
183708
+ :type context: Context
183703
183709
  :param layout: Layout, Layout in the UI
183704
183710
  :type layout: UILayout
183705
183711
  """
@@ -183763,11 +183769,11 @@ class NodeTreeInterfaceSocketStringFilePath(
183763
183769
  :type: str
183764
183770
  """
183765
183771
 
183766
- def draw(self, context: Context | None, layout: UILayout):
183772
+ def draw(self, context: Context, layout: UILayout):
183767
183773
  """Draw interface socket settings
183768
183774
 
183769
183775
  :param context:
183770
- :type context: Context | None
183776
+ :type context: Context
183771
183777
  :param layout: Layout, Layout in the UI
183772
183778
  :type layout: UILayout
183773
183779
  """
@@ -183825,11 +183831,11 @@ class NodeTreeInterfaceSocketTexture(
183825
183831
  :type: Texture | None
183826
183832
  """
183827
183833
 
183828
- def draw(self, context: Context | None, layout: UILayout):
183834
+ def draw(self, context: Context, layout: UILayout):
183829
183835
  """Draw interface socket settings
183830
183836
 
183831
183837
  :param context:
183832
- :type context: Context | None
183838
+ :type context: Context
183833
183839
  :param layout: Layout, Layout in the UI
183834
183840
  :type layout: UILayout
183835
183841
  """
@@ -183905,11 +183911,11 @@ class NodeTreeInterfaceSocketVector(
183905
183911
  :type: str
183906
183912
  """
183907
183913
 
183908
- def draw(self, context: Context | None, layout: UILayout):
183914
+ def draw(self, context: Context, layout: UILayout):
183909
183915
  """Draw interface socket settings
183910
183916
 
183911
183917
  :param context:
183912
- :type context: Context | None
183918
+ :type context: Context
183913
183919
  :param layout: Layout, Layout in the UI
183914
183920
  :type layout: UILayout
183915
183921
  """
@@ -183985,11 +183991,11 @@ class NodeTreeInterfaceSocketVectorAcceleration(
183985
183991
  :type: str
183986
183992
  """
183987
183993
 
183988
- def draw(self, context: Context | None, layout: UILayout):
183994
+ def draw(self, context: Context, layout: UILayout):
183989
183995
  """Draw interface socket settings
183990
183996
 
183991
183997
  :param context:
183992
- :type context: Context | None
183998
+ :type context: Context
183993
183999
  :param layout: Layout, Layout in the UI
183994
184000
  :type layout: UILayout
183995
184001
  """
@@ -184065,11 +184071,11 @@ class NodeTreeInterfaceSocketVectorDirection(
184065
184071
  :type: str
184066
184072
  """
184067
184073
 
184068
- def draw(self, context: Context | None, layout: UILayout):
184074
+ def draw(self, context: Context, layout: UILayout):
184069
184075
  """Draw interface socket settings
184070
184076
 
184071
184077
  :param context:
184072
- :type context: Context | None
184078
+ :type context: Context
184073
184079
  :param layout: Layout, Layout in the UI
184074
184080
  :type layout: UILayout
184075
184081
  """
@@ -184145,11 +184151,11 @@ class NodeTreeInterfaceSocketVectorEuler(
184145
184151
  :type: str
184146
184152
  """
184147
184153
 
184148
- def draw(self, context: Context | None, layout: UILayout):
184154
+ def draw(self, context: Context, layout: UILayout):
184149
184155
  """Draw interface socket settings
184150
184156
 
184151
184157
  :param context:
184152
- :type context: Context | None
184158
+ :type context: Context
184153
184159
  :param layout: Layout, Layout in the UI
184154
184160
  :type layout: UILayout
184155
184161
  """
@@ -184225,11 +184231,11 @@ class NodeTreeInterfaceSocketVectorTranslation(
184225
184231
  :type: str
184226
184232
  """
184227
184233
 
184228
- def draw(self, context: Context | None, layout: UILayout):
184234
+ def draw(self, context: Context, layout: UILayout):
184229
184235
  """Draw interface socket settings
184230
184236
 
184231
184237
  :param context:
184232
- :type context: Context | None
184238
+ :type context: Context
184233
184239
  :param layout: Layout, Layout in the UI
184234
184240
  :type layout: UILayout
184235
184241
  """
@@ -184305,11 +184311,11 @@ class NodeTreeInterfaceSocketVectorVelocity(
184305
184311
  :type: str
184306
184312
  """
184307
184313
 
184308
- def draw(self, context: Context | None, layout: UILayout):
184314
+ def draw(self, context: Context, layout: UILayout):
184309
184315
  """Draw interface socket settings
184310
184316
 
184311
184317
  :param context:
184312
- :type context: Context | None
184318
+ :type context: Context
184313
184319
  :param layout: Layout, Layout in the UI
184314
184320
  :type layout: UILayout
184315
184321
  """
@@ -184385,11 +184391,11 @@ class NodeTreeInterfaceSocketVectorXYZ(
184385
184391
  :type: str
184386
184392
  """
184387
184393
 
184388
- def draw(self, context: Context | None, layout: UILayout):
184394
+ def draw(self, context: Context, layout: UILayout):
184389
184395
  """Draw interface socket settings
184390
184396
 
184391
184397
  :param context:
184392
- :type context: Context | None
184398
+ :type context: Context
184393
184399
  :param layout: Layout, Layout in the UI
184394
184400
  :type layout: UILayout
184395
184401
  """
@@ -186577,40 +186583,40 @@ expanding an operator into a menu.
186577
186583
  """
186578
186584
 
186579
186585
  @classmethod
186580
- def poll(cls, context: Context | None) -> bool:
186586
+ def poll(cls, context: Context) -> bool:
186581
186587
  """Test if the operator can be called or not
186582
186588
 
186583
186589
  :param context:
186584
- :type context: Context | None
186590
+ :type context: Context
186585
186591
  :return:
186586
186592
  :rtype: bool
186587
186593
  """
186588
186594
 
186589
- def execute(self, context: Context | None) -> set[bpy.typing.OperatorReturnItems]:
186595
+ def execute(self, context: Context) -> set[bpy.typing.OperatorReturnItems]:
186590
186596
  """Execute the operator
186591
186597
 
186592
186598
  :param context:
186593
- :type context: Context | None
186599
+ :type context: Context
186594
186600
  :return: result
186595
186601
  :rtype: set[bpy.typing.OperatorReturnItems]
186596
186602
  """
186597
186603
 
186598
- def check(self, context: Context | None) -> bool:
186604
+ def check(self, context: Context) -> bool:
186599
186605
  """Check the operator settings, return True to signal a change to redraw
186600
186606
 
186601
186607
  :param context:
186602
- :type context: Context | None
186608
+ :type context: Context
186603
186609
  :return: result
186604
186610
  :rtype: bool
186605
186611
  """
186606
186612
 
186607
186613
  def invoke(
186608
- self, context: Context | None, event: Event
186614
+ self, context: Context, event: Event
186609
186615
  ) -> set[bpy.typing.OperatorReturnItems]:
186610
186616
  """Invoke the operator
186611
186617
 
186612
186618
  :param context:
186613
- :type context: Context | None
186619
+ :type context: Context
186614
186620
  :param event:
186615
186621
  :type event: Event
186616
186622
  :return: result
@@ -186618,40 +186624,38 @@ expanding an operator into a menu.
186618
186624
  """
186619
186625
 
186620
186626
  def modal(
186621
- self, context: Context | None, event: Event
186627
+ self, context: Context, event: Event
186622
186628
  ) -> set[bpy.typing.OperatorReturnItems]:
186623
186629
  """Modal operator function
186624
186630
 
186625
186631
  :param context:
186626
- :type context: Context | None
186632
+ :type context: Context
186627
186633
  :param event:
186628
186634
  :type event: Event
186629
186635
  :return: result
186630
186636
  :rtype: set[bpy.typing.OperatorReturnItems]
186631
186637
  """
186632
186638
 
186633
- def draw(self, context: Context | None):
186639
+ def draw(self, context: Context):
186634
186640
  """Draw function for the operator
186635
186641
 
186636
186642
  :param context:
186637
- :type context: Context | None
186643
+ :type context: Context
186638
186644
  """
186639
186645
 
186640
- def cancel(self, context: Context | None):
186646
+ def cancel(self, context: Context):
186641
186647
  """Called when the operator is canceled
186642
186648
 
186643
186649
  :param context:
186644
- :type context: Context | None
186650
+ :type context: Context
186645
186651
  """
186646
186652
 
186647
186653
  @classmethod
186648
- def description(
186649
- cls, context: Context | None, properties: OperatorProperties
186650
- ) -> str:
186654
+ def description(cls, context: Context, properties: OperatorProperties) -> str:
186651
186655
  """Compute a description string that depends on parameters
186652
186656
 
186653
186657
  :param context:
186654
- :type context: Context | None
186658
+ :type context: Context
186655
186659
  :param properties:
186656
186660
  :type properties: OperatorProperties
186657
186661
  :return: result
@@ -187612,34 +187616,34 @@ class Panel(bpy_struct):
187612
187616
  """
187613
187617
 
187614
187618
  @classmethod
187615
- def poll(cls, context: Context | None) -> bool:
187619
+ def poll(cls, context: Context) -> bool:
187616
187620
  """If this method returns a non-null output, then the panel can be drawn
187617
187621
 
187618
187622
  :param context:
187619
- :type context: Context | None
187623
+ :type context: Context
187620
187624
  :return:
187621
187625
  :rtype: bool
187622
187626
  """
187623
187627
 
187624
- def draw(self, context: Context | None):
187628
+ def draw(self, context: Context):
187625
187629
  """Draw UI elements into the panel UI layout
187626
187630
 
187627
187631
  :param context:
187628
- :type context: Context | None
187632
+ :type context: Context
187629
187633
  """
187630
187634
 
187631
- def draw_header(self, context: Context | None):
187635
+ def draw_header(self, context: Context):
187632
187636
  """Draw UI elements into the panel's header UI layout
187633
187637
 
187634
187638
  :param context:
187635
- :type context: Context | None
187639
+ :type context: Context
187636
187640
  """
187637
187641
 
187638
- def draw_header_preset(self, context: Context | None):
187642
+ def draw_header_preset(self, context: Context):
187639
187643
  """Draw UI elements for presets in the panel's header
187640
187644
 
187641
187645
  :param context:
187642
- :type context: Context | None
187646
+ :type context: Context
187643
187647
  """
187644
187648
 
187645
187649
  @classmethod
@@ -194436,11 +194440,11 @@ class RenderEngine(bpy_struct):
194436
194440
  def render_frame_finish(self):
194437
194441
  """Perform finishing operations after all view layers in a frame were rendered"""
194438
194442
 
194439
- def draw(self, context: Context | None, depsgraph: Depsgraph | None):
194443
+ def draw(self, context: Context, depsgraph: Depsgraph | None):
194440
194444
  """Draw render image
194441
194445
 
194442
194446
  :param context:
194443
- :type context: Context | None
194447
+ :type context: Context
194444
194448
  :param depsgraph:
194445
194449
  :type depsgraph: Depsgraph | None
194446
194450
  """
@@ -194470,20 +194474,20 @@ class RenderEngine(bpy_struct):
194470
194474
  :type height: int | None
194471
194475
  """
194472
194476
 
194473
- def view_update(self, context: Context | None, depsgraph: Depsgraph | None):
194477
+ def view_update(self, context: Context, depsgraph: Depsgraph | None):
194474
194478
  """Update on data changes for viewport render
194475
194479
 
194476
194480
  :param context:
194477
- :type context: Context | None
194481
+ :type context: Context
194478
194482
  :param depsgraph:
194479
194483
  :type depsgraph: Depsgraph | None
194480
194484
  """
194481
194485
 
194482
- def view_draw(self, context: Context | None, depsgraph: Depsgraph | None):
194486
+ def view_draw(self, context: Context, depsgraph: Depsgraph | None):
194483
194487
  """Draw viewport render
194484
194488
 
194485
194489
  :param context:
194486
- :type context: Context | None
194490
+ :type context: Context
194487
194491
  :param depsgraph:
194488
194492
  :type depsgraph: Depsgraph | None
194489
194493
  """
@@ -195236,6 +195240,18 @@ class RenderSettings(bpy_struct):
195236
195240
  :type: float
195237
195241
  """
195238
195242
 
195243
+ compositor_denoise_final_quality: typing.Literal["HIGH", "BALANCED", "FAST"]
195244
+ """ The quality used by denoise nodes during the compositing of final renders if the nodes' quality option is set to Follow Scene
195245
+
195246
+ :type: typing.Literal['HIGH','BALANCED','FAST']
195247
+ """
195248
+
195249
+ compositor_denoise_preview_quality: typing.Literal["HIGH", "BALANCED", "FAST"]
195250
+ """ The quality used by denoise nodes during viewport and interactive compositing if the nodes' quality option is set to Follow Scene
195251
+
195252
+ :type: typing.Literal['HIGH','BALANCED','FAST']
195253
+ """
195254
+
195239
195255
  compositor_device: typing.Literal["CPU", "GPU"]
195240
195256
  """ Set how compositing is executed
195241
195257
 
@@ -224714,7 +224730,7 @@ class UIList(bpy_struct):
224714
224730
 
224715
224731
  def draw_item(
224716
224732
  self,
224717
- context: Context | None,
224733
+ context: Context,
224718
224734
  layout: UILayout,
224719
224735
  data: typing.Any | None,
224720
224736
  item: typing.Any | None,
@@ -224728,7 +224744,7 @@ class UIList(bpy_struct):
224728
224744
  """Draw an item in the list (NOTE: when you define your own draw_item function, you may want to check given 'item' is of the right type...)
224729
224745
 
224730
224746
  :param context:
224731
- :type context: Context | None
224747
+ :type context: Context
224732
224748
  :param layout: Layout to draw the item
224733
224749
  :type layout: UILayout
224734
224750
  :param data: Data from which to take Collection property
@@ -224747,22 +224763,20 @@ class UIList(bpy_struct):
224747
224763
  :type flt_flag: int | None
224748
224764
  """
224749
224765
 
224750
- def draw_filter(self, context: Context | None, layout: UILayout):
224766
+ def draw_filter(self, context: Context, layout: UILayout):
224751
224767
  """Draw filtering options
224752
224768
 
224753
224769
  :param context:
224754
- :type context: Context | None
224770
+ :type context: Context
224755
224771
  :param layout: Layout to draw the item
224756
224772
  :type layout: UILayout
224757
224773
  """
224758
224774
 
224759
- def filter_items(
224760
- self, context: Context | None, data: typing.Any | None, property: str
224761
- ):
224775
+ def filter_items(self, context: Context, data: typing.Any | None, property: str):
224762
224776
  """Filter and/or re-order items of the collection (output filter results in filter_flags, and reorder results in filter_neworder arrays)
224763
224777
 
224764
224778
  :param context:
224765
- :type context: Context | None
224779
+ :type context: Context
224766
224780
  :param data: Data from which to take Collection property
224767
224781
  :type data: typing.Any | None
224768
224782
  :param property: Identifier of property in data, for the collection
@@ -231873,29 +231887,29 @@ class XrSessionState(bpy_struct):
231873
231887
  """
231874
231888
 
231875
231889
  @classmethod
231876
- def is_running(cls, context: Context | None) -> bool:
231890
+ def is_running(cls, context: Context) -> bool:
231877
231891
  """Query if the VR session is currently running
231878
231892
 
231879
231893
  :param context:
231880
- :type context: Context | None
231894
+ :type context: Context
231881
231895
  :return: Result
231882
231896
  :rtype: bool
231883
231897
  """
231884
231898
 
231885
231899
  @classmethod
231886
- def reset_to_base_pose(cls, context: Context | None):
231900
+ def reset_to_base_pose(cls, context: Context):
231887
231901
  """Force resetting of position and rotation deltas
231888
231902
 
231889
231903
  :param context:
231890
- :type context: Context | None
231904
+ :type context: Context
231891
231905
  """
231892
231906
 
231893
231907
  @classmethod
231894
- def action_set_create(cls, context: Context | None, actionmap: XrActionMap) -> bool:
231908
+ def action_set_create(cls, context: Context, actionmap: XrActionMap) -> bool:
231895
231909
  """Create a VR action set
231896
231910
 
231897
231911
  :param context:
231898
- :type context: Context | None
231912
+ :type context: Context
231899
231913
  :param actionmap:
231900
231914
  :type actionmap: XrActionMap
231901
231915
  :return: Result
@@ -231904,15 +231918,12 @@ class XrSessionState(bpy_struct):
231904
231918
 
231905
231919
  @classmethod
231906
231920
  def action_create(
231907
- cls,
231908
- context: Context | None,
231909
- actionmap: XrActionMap,
231910
- actionmap_item: XrActionMapItem,
231921
+ cls, context: Context, actionmap: XrActionMap, actionmap_item: XrActionMapItem
231911
231922
  ) -> bool:
231912
231923
  """Create a VR action
231913
231924
 
231914
231925
  :param context:
231915
- :type context: Context | None
231926
+ :type context: Context
231916
231927
  :param actionmap:
231917
231928
  :type actionmap: XrActionMap
231918
231929
  :param actionmap_item:
@@ -231924,7 +231935,7 @@ class XrSessionState(bpy_struct):
231924
231935
  @classmethod
231925
231936
  def action_binding_create(
231926
231937
  cls,
231927
- context: Context | None,
231938
+ context: Context,
231928
231939
  actionmap: XrActionMap,
231929
231940
  actionmap_item: XrActionMapItem,
231930
231941
  actionmap_binding: XrActionMapBinding,
@@ -231932,7 +231943,7 @@ class XrSessionState(bpy_struct):
231932
231943
  """Create a VR action binding
231933
231944
 
231934
231945
  :param context:
231935
- :type context: Context | None
231946
+ :type context: Context
231936
231947
  :param actionmap:
231937
231948
  :type actionmap: XrActionMap
231938
231949
  :param actionmap_item:
@@ -231944,11 +231955,11 @@ class XrSessionState(bpy_struct):
231944
231955
  """
231945
231956
 
231946
231957
  @classmethod
231947
- def active_action_set_set(cls, context: Context | None, action_set: str) -> bool:
231958
+ def active_action_set_set(cls, context: Context, action_set: str) -> bool:
231948
231959
  """Set the active VR action set
231949
231960
 
231950
231961
  :param context:
231951
- :type context: Context | None
231962
+ :type context: Context
231952
231963
  :param action_set: Action Set, Action set name
231953
231964
  :type action_set: str
231954
231965
  :return: Result
@@ -231957,12 +231968,12 @@ class XrSessionState(bpy_struct):
231957
231968
 
231958
231969
  @classmethod
231959
231970
  def controller_pose_actions_set(
231960
- cls, context: Context | None, action_set: str, grip_action: str, aim_action: str
231971
+ cls, context: Context, action_set: str, grip_action: str, aim_action: str
231961
231972
  ) -> bool:
231962
231973
  """Set the actions that determine the VR controller poses
231963
231974
 
231964
231975
  :param context:
231965
- :type context: Context | None
231976
+ :type context: Context
231966
231977
  :param action_set: Action Set, Action set name
231967
231978
  :type action_set: str
231968
231979
  :param grip_action: Grip Action, Name of the action representing the controller grips
@@ -231975,16 +231986,12 @@ class XrSessionState(bpy_struct):
231975
231986
 
231976
231987
  @classmethod
231977
231988
  def action_state_get(
231978
- cls,
231979
- context: Context | None,
231980
- action_set_name: str,
231981
- action_name: str,
231982
- user_path: str,
231989
+ cls, context: Context, action_set_name: str, action_name: str, user_path: str
231983
231990
  ) -> bpy_prop_array[float]:
231984
231991
  """Get the current state of a VR action
231985
231992
 
231986
231993
  :param context:
231987
- :type context: Context | None
231994
+ :type context: Context
231988
231995
  :param action_set_name: Action Set, Action set name
231989
231996
  :type action_set_name: str
231990
231997
  :param action_name: Action, Action name
@@ -231998,7 +232005,7 @@ class XrSessionState(bpy_struct):
231998
232005
  @classmethod
231999
232006
  def haptic_action_apply(
232000
232007
  cls,
232001
- context: Context | None,
232008
+ context: Context,
232002
232009
  action_set_name: str,
232003
232010
  action_name: str,
232004
232011
  user_path: str,
@@ -232009,7 +232016,7 @@ class XrSessionState(bpy_struct):
232009
232016
  """Apply a VR haptic action
232010
232017
 
232011
232018
  :param context:
232012
- :type context: Context | None
232019
+ :type context: Context
232013
232020
  :param action_set_name: Action Set, Action set name
232014
232021
  :type action_set_name: str
232015
232022
  :param action_name: Action, Action name
@@ -232028,16 +232035,12 @@ class XrSessionState(bpy_struct):
232028
232035
 
232029
232036
  @classmethod
232030
232037
  def haptic_action_stop(
232031
- cls,
232032
- context: Context | None,
232033
- action_set_name: str,
232034
- action_name: str,
232035
- user_path: str,
232038
+ cls, context: Context, action_set_name: str, action_name: str, user_path: str
232036
232039
  ):
232037
232040
  """Stop a VR haptic action
232038
232041
 
232039
232042
  :param context:
232040
- :type context: Context | None
232043
+ :type context: Context
232041
232044
  :param action_set_name: Action Set, Action set name
232042
232045
  :type action_set_name: str
232043
232046
  :param action_name: Action, Action name
@@ -232048,12 +232051,12 @@ class XrSessionState(bpy_struct):
232048
232051
 
232049
232052
  @classmethod
232050
232053
  def controller_grip_location_get(
232051
- cls, context: Context | None, index: int | None
232054
+ cls, context: Context, index: int | None
232052
232055
  ) -> mathutils.Vector:
232053
232056
  """Get the last known controller grip location in world space
232054
232057
 
232055
232058
  :param context:
232056
- :type context: Context | None
232059
+ :type context: Context
232057
232060
  :param index: Index, Controller index
232058
232061
  :type index: int | None
232059
232062
  :return: Location, Controller grip location
@@ -232062,12 +232065,12 @@ class XrSessionState(bpy_struct):
232062
232065
 
232063
232066
  @classmethod
232064
232067
  def controller_grip_rotation_get(
232065
- cls, context: Context | None, index: int | None
232068
+ cls, context: Context, index: int | None
232066
232069
  ) -> mathutils.Quaternion:
232067
232070
  """Get the last known controller grip rotation (quaternion) in world space
232068
232071
 
232069
232072
  :param context:
232070
- :type context: Context | None
232073
+ :type context: Context
232071
232074
  :param index: Index, Controller index
232072
232075
  :type index: int | None
232073
232076
  :return: Rotation, Controller grip quaternion rotation
@@ -232076,12 +232079,12 @@ class XrSessionState(bpy_struct):
232076
232079
 
232077
232080
  @classmethod
232078
232081
  def controller_aim_location_get(
232079
- cls, context: Context | None, index: int | None
232082
+ cls, context: Context, index: int | None
232080
232083
  ) -> mathutils.Vector:
232081
232084
  """Get the last known controller aim location in world space
232082
232085
 
232083
232086
  :param context:
232084
- :type context: Context | None
232087
+ :type context: Context
232085
232088
  :param index: Index, Controller index
232086
232089
  :type index: int | None
232087
232090
  :return: Location, Controller aim location
@@ -232090,12 +232093,12 @@ class XrSessionState(bpy_struct):
232090
232093
 
232091
232094
  @classmethod
232092
232095
  def controller_aim_rotation_get(
232093
- cls, context: Context | None, index: int | None
232096
+ cls, context: Context, index: int | None
232094
232097
  ) -> mathutils.Quaternion:
232095
232098
  """Get the last known controller aim rotation (quaternion) in world space
232096
232099
 
232097
232100
  :param context:
232098
- :type context: Context | None
232101
+ :type context: Context
232099
232102
  :param index: Index, Controller index
232100
232103
  :type index: int | None
232101
232104
  :return: Rotation, Controller aim quaternion rotation
@@ -234146,6 +234149,8 @@ RENDER_PT_eevee_performance: bl_ui.properties_render.RENDER_PT_eevee_performance
234146
234149
 
234147
234150
  RENDER_PT_eevee_performance_compositor: bl_ui.properties_render.RENDER_PT_eevee_performance_compositor
234148
234151
 
234152
+ RENDER_PT_eevee_performance_compositor_denoise_settings: bl_ui.properties_render.RENDER_PT_eevee_performance_compositor_denoise_settings
234153
+
234149
234154
  RENDER_PT_eevee_performance_memory: bl_ui.properties_render.RENDER_PT_eevee_performance_memory
234150
234155
 
234151
234156
  RENDER_PT_eevee_performance_viewport: bl_ui.properties_render.RENDER_PT_eevee_performance_viewport