fake-bpy-module 20250910__py3-none-any.whl → 20250912__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
@@ -336,6 +336,38 @@ class Library(bpy.types.ID):
336
336
  :rtype: typing.Any
337
337
  """
338
338
 
339
+ class Light(bpy.types.ID):
340
+ bl_rna: typing.Any
341
+ id_data: typing.Any
342
+
343
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
344
+ """
345
+
346
+ :return: The RNA type or default when not found.
347
+ :rtype: bpy.types.Struct
348
+ """
349
+
350
+ def bl_rna_get_subclass_py(self) -> typing.Any:
351
+ """
352
+
353
+ :return: The class or default when not found.
354
+ :rtype: typing.Any
355
+ """
356
+
357
+ def cycles(self, *args, **kwargs) -> None:
358
+ """Intermediate storage for properties before registration.
359
+
360
+ :param args:
361
+ :param kwargs:
362
+ """
363
+
364
+ def inline_shader_nodes(self) -> None:
365
+ """Get the inlined shader nodes of this light. This preprocesses the node tree
366
+ to remove nested groups, repeat zones and more.
367
+
368
+ :return: The inlined shader nodes.
369
+ """
370
+
339
371
  class Macro:
340
372
  bl_rna: typing.Any
341
373
  id_data: typing.Any
@@ -364,6 +396,38 @@ class Macro:
364
396
  :rtype: bpy.types.OperatorMacro
365
397
  """
366
398
 
399
+ class Material(bpy.types.ID):
400
+ bl_rna: typing.Any
401
+ id_data: typing.Any
402
+
403
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
404
+ """
405
+
406
+ :return: The RNA type or default when not found.
407
+ :rtype: bpy.types.Struct
408
+ """
409
+
410
+ def bl_rna_get_subclass_py(self) -> typing.Any:
411
+ """
412
+
413
+ :return: The class or default when not found.
414
+ :rtype: typing.Any
415
+ """
416
+
417
+ def cycles(self, *args, **kwargs) -> None:
418
+ """Intermediate storage for properties before registration.
419
+
420
+ :param args:
421
+ :param kwargs:
422
+ """
423
+
424
+ def inline_shader_nodes(self) -> None:
425
+ """Get the inlined shader nodes of this material. This preprocesses the node tree
426
+ to remove nested groups, repeat zones and more.
427
+
428
+ :return: The inlined shader nodes.
429
+ """
430
+
367
431
  class Mesh(bpy.types.ID):
368
432
  bl_rna: typing.Any
369
433
  edge_creases: typing.Any
@@ -1081,6 +1145,45 @@ class WorkSpace(bpy.types.ID):
1081
1145
  :param kwargs:
1082
1146
  """
1083
1147
 
1148
+ class World(bpy.types.ID):
1149
+ bl_rna: typing.Any
1150
+ id_data: typing.Any
1151
+
1152
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
1153
+ """
1154
+
1155
+ :return: The RNA type or default when not found.
1156
+ :rtype: bpy.types.Struct
1157
+ """
1158
+
1159
+ def bl_rna_get_subclass_py(self) -> typing.Any:
1160
+ """
1161
+
1162
+ :return: The class or default when not found.
1163
+ :rtype: typing.Any
1164
+ """
1165
+
1166
+ def cycles(self, *args, **kwargs) -> None:
1167
+ """Intermediate storage for properties before registration.
1168
+
1169
+ :param args:
1170
+ :param kwargs:
1171
+ """
1172
+
1173
+ def cycles_visibility(self, *args, **kwargs) -> None:
1174
+ """Intermediate storage for properties before registration.
1175
+
1176
+ :param args:
1177
+ :param kwargs:
1178
+ """
1179
+
1180
+ def inline_shader_nodes(self) -> None:
1181
+ """Get the inlined shader nodes of this world. This preprocesses the node tree
1182
+ to remove nested groups, repeat zones and more.
1183
+
1184
+ :return: The inlined shader nodes.
1185
+ """
1186
+
1084
1187
  class _RNAMeta:
1085
1188
  is_registered: typing.Any
1086
1189
 
@@ -469,7 +469,7 @@ class NODE_OT_tree_path_parent(_bpy_types.Operator):
469
469
  """
470
470
 
471
471
  class NODE_OT_viewer_shortcut_get(_bpy_types.Operator):
472
- """Activate a specific viewer node using 1,2,..,9 keys"""
472
+ """Toggle a specific viewer node using 1,2,..,9 keys"""
473
473
 
474
474
  bl_idname: typing.Any
475
475
  bl_label: typing.Any
@@ -1028,37 +1028,6 @@ class BONE_PT_bTransformCacheConstraint_layers(
1028
1028
  :param context:
1029
1029
  """
1030
1030
 
1031
- class BONE_PT_bTransformCacheConstraint_procedural(
1032
- ConstraintButtonsSubPanel, BoneConstraintPanel, _bpy_types.Panel
1033
- ):
1034
- bl_context: typing.Any
1035
- bl_label: typing.Any
1036
- bl_parent_id: typing.Any
1037
- bl_region_type: typing.Any
1038
- bl_rna: typing.Any
1039
- bl_space_type: typing.Any
1040
- id_data: typing.Any
1041
-
1042
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
1043
- """
1044
-
1045
- :return: The RNA type or default when not found.
1046
- :rtype: bpy.types.Struct
1047
- """
1048
-
1049
- def bl_rna_get_subclass_py(self) -> typing.Any:
1050
- """
1051
-
1052
- :return: The class or default when not found.
1053
- :rtype: typing.Any
1054
- """
1055
-
1056
- def draw(self, context) -> None:
1057
- """
1058
-
1059
- :param context:
1060
- """
1061
-
1062
1031
  class BONE_PT_bTransformCacheConstraint_time(
1063
1032
  ConstraintButtonsSubPanel, BoneConstraintPanel, _bpy_types.Panel
1064
1033
  ):
@@ -1508,12 +1477,6 @@ class ConstraintButtonsSubPanel:
1508
1477
  :param context:
1509
1478
  """
1510
1479
 
1511
- def draw_transform_cache_procedural(self, context) -> None:
1512
- """
1513
-
1514
- :param context:
1515
- """
1516
-
1517
1480
  def draw_transform_cache_subpanel(self, context, template_func) -> None:
1518
1481
  """
1519
1482
 
@@ -2481,37 +2444,6 @@ class OBJECT_PT_bTransformCacheConstraint_layers(
2481
2444
  :param context:
2482
2445
  """
2483
2446
 
2484
- class OBJECT_PT_bTransformCacheConstraint_procedural(
2485
- ConstraintButtonsSubPanel, ObjectConstraintPanel, _bpy_types.Panel
2486
- ):
2487
- bl_context: typing.Any
2488
- bl_label: typing.Any
2489
- bl_parent_id: typing.Any
2490
- bl_region_type: typing.Any
2491
- bl_rna: typing.Any
2492
- bl_space_type: typing.Any
2493
- id_data: typing.Any
2494
-
2495
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
2496
- """
2497
-
2498
- :return: The RNA type or default when not found.
2499
- :rtype: bpy.types.Struct
2500
- """
2501
-
2502
- def bl_rna_get_subclass_py(self) -> typing.Any:
2503
- """
2504
-
2505
- :return: The class or default when not found.
2506
- :rtype: typing.Any
2507
- """
2508
-
2509
- def draw(self, context) -> None:
2510
- """
2511
-
2512
- :param context:
2513
- """
2514
-
2515
2447
  class OBJECT_PT_bTransformCacheConstraint_time(
2516
2448
  ConstraintButtonsSubPanel, ObjectConstraintPanel, _bpy_types.Panel
2517
2449
  ):
@@ -461,6 +461,7 @@ class SEQUENCER_MT_marker(_bpy_types.Menu):
461
461
 
462
462
  class SEQUENCER_MT_modifier_add(_bpy_types.Menu):
463
463
  MODIFIER_TYPES_I18N_CONTEXT: typing.Any
464
+ MODIFIER_TYPES_TO_ICONS: typing.Any
464
465
  MODIFIER_TYPES_TO_LABELS: typing.Any
465
466
  bl_label: typing.Any
466
467
  bl_options: typing.Any
@@ -111,6 +111,7 @@ class TIME_PT_auto_keyframing(TimelinePanelButtons, _bpy_types.Panel):
111
111
  """
112
112
 
113
113
  class TIME_PT_keyframing_settings(TimelinePanelButtons, _bpy_types.Panel):
114
+ bl_description: typing.Any
114
115
  bl_label: typing.Any
115
116
  bl_options: typing.Any
116
117
  bl_region_type: typing.Any
@@ -138,6 +139,12 @@ class TIME_PT_keyframing_settings(TimelinePanelButtons, _bpy_types.Panel):
138
139
  :param context:
139
140
  """
140
141
 
142
+ def draw_header(self, context) -> None:
143
+ """
144
+
145
+ :param context:
146
+ """
147
+
141
148
  class TIME_PT_playback(TimelinePanelButtons, _bpy_types.Panel):
142
149
  bl_label: typing.Any
143
150
  bl_region_type: typing.Any
@@ -273,7 +273,9 @@ class _defs_image_uv_transform:
273
273
  translate: typing.Any
274
274
 
275
275
  class _defs_node_edit:
276
+ add_reroute: typing.Any
276
277
  links_cut: typing.Any
278
+ links_mute: typing.Any
277
279
 
278
280
  class _defs_node_select:
279
281
  box: typing.Any
@@ -36,7 +36,6 @@ class ExperimentalPanel:
36
36
  bl_context: typing.Any
37
37
  bl_region_type: typing.Any
38
38
  bl_space_type: typing.Any
39
- url_prefix: typing.Any
40
39
 
41
40
  @classmethod
42
41
  def poll(cls, _context) -> None:
@@ -569,6 +568,41 @@ class USERPREF_PT_animation_timeline(
569
568
  :param layout:
570
569
  """
571
570
 
571
+ class USERPREF_PT_developer_tools(_bpy_types.Panel):
572
+ bl_context: typing.Any
573
+ bl_label: typing.Any
574
+ bl_region_type: typing.Any
575
+ bl_rna: typing.Any
576
+ bl_space_type: typing.Any
577
+ id_data: typing.Any
578
+
579
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
580
+ """
581
+
582
+ :return: The RNA type or default when not found.
583
+ :rtype: bpy.types.Struct
584
+ """
585
+
586
+ def bl_rna_get_subclass_py(self) -> typing.Any:
587
+ """
588
+
589
+ :return: The class or default when not found.
590
+ :rtype: typing.Any
591
+ """
592
+
593
+ def draw(self, context) -> None:
594
+ """
595
+
596
+ :param context:
597
+ """
598
+
599
+ @classmethod
600
+ def poll(cls, context) -> None:
601
+ """
602
+
603
+ :param context:
604
+ """
605
+
572
606
  class USERPREF_PT_edit_annotations(CenterAlignMixIn, EditingPanel, _bpy_types.Panel):
573
607
  """Base class for panels to center align contents with some horizontal margin.
574
608
  Deriving classes need to implement a draw_centered(context, layout) function.
@@ -940,42 +974,6 @@ class USERPREF_PT_edit_weight_paint(CenterAlignMixIn, EditingPanel, _bpy_types.P
940
974
  :param layout:
941
975
  """
942
976
 
943
- class USERPREF_PT_experimental_debugging(ExperimentalPanel, _bpy_types.Panel):
944
- bl_context: typing.Any
945
- bl_label: typing.Any
946
- bl_region_type: typing.Any
947
- bl_rna: typing.Any
948
- bl_space_type: typing.Any
949
- id_data: typing.Any
950
- url_prefix: typing.Any
951
-
952
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
953
- """
954
-
955
- :return: The RNA type or default when not found.
956
- :rtype: bpy.types.Struct
957
- """
958
-
959
- def bl_rna_get_subclass_py(self) -> typing.Any:
960
- """
961
-
962
- :return: The class or default when not found.
963
- :rtype: typing.Any
964
- """
965
-
966
- def draw(self, context) -> None:
967
- """
968
-
969
- :param context:
970
- """
971
-
972
- @classmethod
973
- def poll(cls, _context) -> None:
974
- """
975
-
976
- :param _context:
977
- """
978
-
979
977
  class USERPREF_PT_experimental_new_features(ExperimentalPanel, _bpy_types.Panel):
980
978
  bl_context: typing.Any
981
979
  bl_label: typing.Any
@@ -983,7 +981,6 @@ class USERPREF_PT_experimental_new_features(ExperimentalPanel, _bpy_types.Panel)
983
981
  bl_rna: typing.Any
984
982
  bl_space_type: typing.Any
985
983
  id_data: typing.Any
986
- url_prefix: typing.Any
987
984
 
988
985
  def bl_rna_get_subclass(self) -> bpy.types.Struct:
989
986
  """
@@ -1012,7 +1009,6 @@ class USERPREF_PT_experimental_prototypes(ExperimentalPanel, _bpy_types.Panel):
1012
1009
  bl_rna: typing.Any
1013
1010
  bl_space_type: typing.Any
1014
1011
  id_data: typing.Any
1015
- url_prefix: typing.Any
1016
1012
 
1017
1013
  def bl_rna_get_subclass(self) -> bpy.types.Struct:
1018
1014
  """
@@ -2605,6 +2605,13 @@ class VIEW3D_PT_tools_grease_pencil_sculpt_appearance(
2605
2605
  :rtype: typing.Any
2606
2606
  """
2607
2607
 
2608
+ @classmethod
2609
+ def poll(cls, context) -> None:
2610
+ """
2611
+
2612
+ :param context:
2613
+ """
2614
+
2608
2615
  class VIEW3D_PT_tools_grease_pencil_v3_brush_stabilizer(_bpy_types.Panel, View3DPanel):
2609
2616
  bl_category: typing.Any
2610
2617
  bl_context: typing.Any
bpy/ops/node/__init__.pyi CHANGED
@@ -2215,6 +2215,17 @@ def test_inlining_shader_nodes(
2215
2215
  :type undo: bool | None
2216
2216
  """
2217
2217
 
2218
+ def toggle_viewer(
2219
+ execution_context: int | str | None = None,
2220
+ undo: bool | None = None,
2221
+ /,
2222
+ ) -> None:
2223
+ """Toggle selected viewer node in compositor and geometry nodes
2224
+
2225
+ :type execution_context: int | str | None
2226
+ :type undo: bool | None
2227
+ """
2228
+
2218
2229
  def translate_attach(
2219
2230
  execution_context: int | str | None = None,
2220
2231
  undo: bool | None = None,
@@ -2322,7 +2333,7 @@ def viewer_shortcut_get(
2322
2333
  *,
2323
2334
  viewer_index: int | None = 0,
2324
2335
  ) -> None:
2325
- """Activate a specific viewer node using 1,2,..,9 keys
2336
+ """Toggle a specific viewer node using 1,2,..,9 keys
2326
2337
 
2327
2338
  :type execution_context: int | str | None
2328
2339
  :type undo: bool | None
@@ -198,6 +198,8 @@ def render(
198
198
  use_viewport: bool | None = False,
199
199
  layer: str = "",
200
200
  scene: str = "",
201
+ start_frame: int | None = 0,
202
+ end_frame: int | None = 0,
201
203
  ) -> None:
202
204
  """Render active scene
203
205
 
@@ -213,6 +215,10 @@ def render(
213
215
  :type layer: str
214
216
  :param scene: Scene, Scene to render, current scene if not specified
215
217
  :type scene: str
218
+ :param start_frame: Start Frame, Frame to start rendering animation at. If not specified, the scene start frame will be assumed. This should only be specified if doing an animation render
219
+ :type start_frame: int | None
220
+ :param end_frame: End Frame, Frame to end rendering animation at. If not specified, the scene end frame will be assumed. This should only be specified if doing an animation render
221
+ :type end_frame: int | None
216
222
  """
217
223
 
218
224
  def shutter_curve_preset(
@@ -1489,6 +1489,12 @@ type IconItems = typing.Literal[
1489
1489
  "SEQ_SPLITVIEW", # SEQ_SPLITVIEW.
1490
1490
  "SEQ_STRIP_DUPLICATE", # SEQ_STRIP_DUPLICATE.
1491
1491
  "SEQ_STRIP_META", # SEQ_STRIP_META.
1492
+ "MOD_BRIGHTNESS_CONTRAST", # MOD_BRIGHTNESS_CONTRAST.
1493
+ "MOD_COLOR_BALANCE", # MOD_COLOR_BALANCE.
1494
+ "MOD_CURVES", # MOD_CURVES.
1495
+ "MOD_HUE_CORRECT", # MOD_HUE_CORRECT.
1496
+ "MOD_TONEMAP", # MOD_TONEMAP.
1497
+ "MOD_WHITE_BALANCE", # MOD_WHITE_BALANCE.
1492
1498
  "IMAGE_ALPHA", # IMAGE_ALPHA.
1493
1499
  "IMAGE_RGB_ALPHA", # IMAGE_RGB_ALPHA.
1494
1500
  "IMAGE_RGB", # IMAGE_RGB.
@@ -2526,6 +2532,7 @@ type PreferenceSectionItems = typing.Literal[
2526
2532
  "SYSTEM", # System.
2527
2533
  "SAVE_LOAD", # Save & Load.
2528
2534
  "FILE_PATHS", # File Paths.
2535
+ "DEVELOPER_TOOLS", # Developer Tools.
2529
2536
  "EXPERIMENTAL", # Experimental.
2530
2537
  ]
2531
2538
  type PropDynamicpaintTypeItems = typing.Literal[
bpy/types/__init__.pyi CHANGED
@@ -15810,6 +15810,7 @@ object, placing it into a view layer, selecting it and making it active.
15810
15810
  * ID.bl_rna_get_subclass
15811
15811
  * ID.bl_rna_get_subclass_py
15812
15812
  * Light.area
15813
+ * Light.inline_shader_nodes
15813
15814
  * Light.bl_rna_get_subclass
15814
15815
  * Light.bl_rna_get_subclass_py
15815
15816
 
@@ -16206,6 +16207,54 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
16206
16207
  :columns: 2
16207
16208
 
16208
16209
 
16210
+ --------------------
16211
+
16212
+ * bpy_struct.id_data
16213
+ * StripModifier.name
16214
+ * StripModifier.type
16215
+ * StripModifier.mute
16216
+ * StripModifier.enable
16217
+ * StripModifier.show_expanded
16218
+ * StripModifier.input_mask_type
16219
+ * StripModifier.mask_time
16220
+ * StripModifier.input_mask_strip
16221
+ * StripModifier.input_mask_id
16222
+ * StripModifier.is_active
16223
+
16224
+ :columns: 2
16225
+
16226
+
16227
+ --------------------
16228
+
16229
+ * bpy_struct.as_pointer
16230
+ * bpy_struct.driver_add
16231
+ * bpy_struct.driver_remove
16232
+ * bpy_struct.get
16233
+ * bpy_struct.id_properties_clear
16234
+ * bpy_struct.id_properties_ensure
16235
+ * bpy_struct.id_properties_ui
16236
+ * bpy_struct.is_property_hidden
16237
+ * bpy_struct.is_property_overridable_library
16238
+ * bpy_struct.is_property_readonly
16239
+ * bpy_struct.is_property_set
16240
+ * bpy_struct.items
16241
+ * bpy_struct.keyframe_delete
16242
+ * bpy_struct.keyframe_insert
16243
+ * bpy_struct.keys
16244
+ * bpy_struct.path_from_id
16245
+ * bpy_struct.path_resolve
16246
+ * bpy_struct.pop
16247
+ * bpy_struct.property_overridable_library_set
16248
+ * bpy_struct.property_unset
16249
+ * bpy_struct.rna_ancestors
16250
+ * bpy_struct.type_recast
16251
+ * bpy_struct.values
16252
+ * StripModifier.bl_rna_get_subclass
16253
+ * StripModifier.bl_rna_get_subclass_py
16254
+
16255
+ :columns: 2
16256
+
16257
+
16209
16258
  --------------------
16210
16259
 
16211
16260
  * bpy_struct.id_data
@@ -35731,6 +35780,7 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
35731
35780
  * ID.bl_rna_get_subclass
35732
35781
  * ID.bl_rna_get_subclass_py
35733
35782
  * Light.area
35783
+ * Light.inline_shader_nodes
35734
35784
  * Light.bl_rna_get_subclass
35735
35785
  * Light.bl_rna_get_subclass_py
35736
35786
 
@@ -38723,6 +38773,7 @@ of the scene and only show nodes of the renderer they are designed for.
38723
38773
  * ID.bl_rna_get_subclass
38724
38774
  * ID.bl_rna_get_subclass_py
38725
38775
  * Light.area
38776
+ * Light.inline_shader_nodes
38726
38777
  * Light.bl_rna_get_subclass
38727
38778
  * Light.bl_rna_get_subclass_py
38728
38779
 
@@ -39873,7 +39924,6 @@ of the scene and only show nodes of the renderer they are designed for.
39873
39924
  * UILayout.template_any_ID
39874
39925
  * UILayout.template_cache_file
39875
39926
  * UILayout.template_cache_file_layers
39876
- * UILayout.template_cache_file_procedural
39877
39927
  * UILayout.template_cache_file_time_settings
39878
39928
  * UILayout.template_cache_file_velocity
39879
39929
  * UILayout.template_color_picker
@@ -42913,6 +42963,7 @@ of the scene and only show nodes of the renderer they are designed for.
42913
42963
  * ID.bl_rna_get_subclass
42914
42964
  * ID.bl_rna_get_subclass_py
42915
42965
  * Light.area
42966
+ * Light.inline_shader_nodes
42916
42967
  * Light.bl_rna_get_subclass
42917
42968
  * Light.bl_rna_get_subclass_py
42918
42969
 
@@ -49372,7 +49423,6 @@ Base class for integrating USD Hydra based renderers.
49372
49423
  * RenderEngine.bl_use_shading_nodes_custom
49373
49424
  * RenderEngine.bl_use_spherical_stereo
49374
49425
  * RenderEngine.bl_use_stereo_viewport
49375
- * RenderEngine.bl_use_alembic_procedural
49376
49426
  * RenderEngine.bl_use_materialx
49377
49427
 
49378
49428
  :columns: 2
@@ -126870,6 +126920,13 @@ class AreaLight(Light, ID, bpy_struct):
126870
126920
  :type: bool
126871
126921
  """
126872
126922
 
126923
+ def inline_shader_nodes(self) -> None:
126924
+ """Get the inlined shader nodes of this light. This preprocesses the node tree
126925
+ to remove nested groups, repeat zones and more.
126926
+
126927
+ :return: The inlined shader nodes.
126928
+ """
126929
+
126873
126930
  @classmethod
126874
126931
  def bl_rna_get_subclass(
126875
126932
  cls,
@@ -133645,12 +133702,6 @@ class CacheFile(ID, bpy_struct):
133645
133702
  :type: bool
133646
133703
  """
133647
133704
 
133648
- prefetch_cache_size: int
133649
- """ Memory usage limit in megabytes for the Cycles Procedural cache, if the data does not fit within the limit, rendering is aborted
133650
-
133651
- :type: int
133652
- """
133653
-
133654
133705
  scale: float
133655
133706
  """ Value by which to enlarge or shrink the object with respect to the world's origin (only applicable through a Transform Cache constraint)
133656
133707
 
@@ -133663,18 +133714,6 @@ class CacheFile(ID, bpy_struct):
133663
133714
  :type: bpy.stub_internal.rna_enums.ObjectAxisItems
133664
133715
  """
133665
133716
 
133666
- use_prefetch: bool
133667
- """ When enabled, the Cycles Procedural will preload animation data for faster updates
133668
-
133669
- :type: bool
133670
- """
133671
-
133672
- use_render_procedural: bool
133673
- """ Display boxes in the viewport as placeholders for the objects, Cycles will use a procedural to load the objects during viewport rendering in experimental mode, other render engines will also receive a placeholder and should take care of loading the Alembic data themselves if possible
133674
-
133675
- :type: bool
133676
- """
133677
-
133678
133717
  velocity_name: str
133679
133718
  """ Name of the Alembic attribute used for generating motion blur data
133680
133719
 
@@ -155487,6 +155526,8 @@ class FunctionNode(NodeInternal, Node, bpy_struct):
155487
155526
  """
155488
155527
 
155489
155528
  class FunctionNodeAlignEulerToVector(FunctionNode, NodeInternal, Node, bpy_struct):
155529
+ """Orient an Euler rotation along the given direction"""
155530
+
155490
155531
  axis: typing.Literal["X", "Y", "Z"]
155491
155532
  """ Axis to align to the vector
155492
155533
 
@@ -155560,6 +155601,8 @@ class FunctionNodeAlignEulerToVector(FunctionNode, NodeInternal, Node, bpy_struc
155560
155601
  """
155561
155602
 
155562
155603
  class FunctionNodeAlignRotationToVector(FunctionNode, NodeInternal, Node, bpy_struct):
155604
+ """Orient a rotation along the given direction"""
155605
+
155563
155606
  axis: typing.Literal["X", "Y", "Z"]
155564
155607
  """ Axis to align to the vector
155565
155608
 
@@ -155708,6 +155751,8 @@ class FunctionNodeAxesToRotation(FunctionNode, NodeInternal, Node, bpy_struct):
155708
155751
  """
155709
155752
 
155710
155753
  class FunctionNodeAxisAngleToRotation(FunctionNode, NodeInternal, Node, bpy_struct):
155754
+ """Build a rotation from an axis and a rotation around that axis"""
155755
+
155711
155756
  @classmethod
155712
155757
  def is_registered_node_type(cls) -> bool:
155713
155758
  """True if a registered node type
@@ -155838,6 +155883,8 @@ class FunctionNodeBitMath(FunctionNode, NodeInternal, Node, bpy_struct):
155838
155883
  """
155839
155884
 
155840
155885
  class FunctionNodeBooleanMath(FunctionNode, NodeInternal, Node, bpy_struct):
155886
+ """Perform a logical operation on the given boolean inputs"""
155887
+
155841
155888
  operation: bpy.stub_internal.rna_enums.NodeBooleanMathItems
155842
155889
  """
155843
155890
 
@@ -155905,6 +155952,8 @@ class FunctionNodeBooleanMath(FunctionNode, NodeInternal, Node, bpy_struct):
155905
155952
  """
155906
155953
 
155907
155954
  class FunctionNodeCombineColor(FunctionNode, NodeInternal, Node, bpy_struct):
155955
+ """Combine four channels into a single color, based on a particular color model"""
155956
+
155908
155957
  mode: bpy.stub_internal.rna_enums.NodeCombsepColorItems
155909
155958
  """ Mode of color processing
155910
155959
 
@@ -156035,6 +156084,8 @@ class FunctionNodeCombineMatrix(FunctionNode, NodeInternal, Node, bpy_struct):
156035
156084
  """
156036
156085
 
156037
156086
  class FunctionNodeCombineTransform(FunctionNode, NodeInternal, Node, bpy_struct):
156087
+ """Combine a translation vector, a rotation, and a scale vector into a transformation matrix"""
156088
+
156038
156089
  @classmethod
156039
156090
  def is_registered_node_type(cls) -> bool:
156040
156091
  """True if a registered node type
@@ -156096,6 +156147,8 @@ class FunctionNodeCombineTransform(FunctionNode, NodeInternal, Node, bpy_struct)
156096
156147
  """
156097
156148
 
156098
156149
  class FunctionNodeCompare(FunctionNode, NodeInternal, Node, bpy_struct):
156150
+ """Perform a comparison operation on the two given inputs"""
156151
+
156099
156152
  data_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
156100
156153
  """
156101
156154
 
@@ -156175,6 +156228,8 @@ class FunctionNodeCompare(FunctionNode, NodeInternal, Node, bpy_struct):
156175
156228
  """
156176
156229
 
156177
156230
  class FunctionNodeEulerToRotation(FunctionNode, NodeInternal, Node, bpy_struct):
156231
+ """Build a rotation from separate angles around each axis"""
156232
+
156178
156233
  @classmethod
156179
156234
  def is_registered_node_type(cls) -> bool:
156180
156235
  """True if a registered node type
@@ -156236,6 +156291,8 @@ class FunctionNodeEulerToRotation(FunctionNode, NodeInternal, Node, bpy_struct):
156236
156291
  """
156237
156292
 
156238
156293
  class FunctionNodeFindInString(FunctionNode, NodeInternal, Node, bpy_struct):
156294
+ """Find the number of times a given string occurs in another string and the position of the first match"""
156295
+
156239
156296
  @classmethod
156240
156297
  def is_registered_node_type(cls) -> bool:
156241
156298
  """True if a registered node type
@@ -156297,6 +156354,8 @@ class FunctionNodeFindInString(FunctionNode, NodeInternal, Node, bpy_struct):
156297
156354
  """
156298
156355
 
156299
156356
  class FunctionNodeFloatToInt(FunctionNode, NodeInternal, Node, bpy_struct):
156357
+ """Convert the given floating-point number to an integer, with a choice of methods"""
156358
+
156300
156359
  rounding_mode: bpy.stub_internal.rna_enums.NodeFloatToIntItems
156301
156360
  """ Method used to convert the float to an integer
156302
156361
 
@@ -156439,6 +156498,8 @@ class FunctionNodeFormatString(FunctionNode, NodeInternal, Node, bpy_struct):
156439
156498
  """
156440
156499
 
156441
156500
  class FunctionNodeHashValue(FunctionNode, NodeInternal, Node, bpy_struct):
156501
+ """Generate a randomized integer using the given input value as a seed"""
156502
+
156442
156503
  data_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
156443
156504
  """
156444
156505
 
@@ -156506,6 +156567,8 @@ class FunctionNodeHashValue(FunctionNode, NodeInternal, Node, bpy_struct):
156506
156567
  """
156507
156568
 
156508
156569
  class FunctionNodeInputBool(FunctionNode, NodeInternal, Node, bpy_struct):
156570
+ """Provide a True/False value that can be connected to other nodes in the tree"""
156571
+
156509
156572
  boolean: bool
156510
156573
  """ Input value used for unconnected socket
156511
156574
 
@@ -156573,6 +156636,8 @@ class FunctionNodeInputBool(FunctionNode, NodeInternal, Node, bpy_struct):
156573
156636
  """
156574
156637
 
156575
156638
  class FunctionNodeInputColor(FunctionNode, NodeInternal, Node, bpy_struct):
156639
+ """Output a color value chosen with the color picker widget"""
156640
+
156576
156641
  value: bpy_prop_array[float]
156577
156642
  """
156578
156643
 
@@ -156640,6 +156705,8 @@ class FunctionNodeInputColor(FunctionNode, NodeInternal, Node, bpy_struct):
156640
156705
  """
156641
156706
 
156642
156707
  class FunctionNodeInputInt(FunctionNode, NodeInternal, Node, bpy_struct):
156708
+ """Provide an integer value that can be connected to other nodes in the tree"""
156709
+
156643
156710
  integer: int
156644
156711
  """ Input value used for unconnected socket
156645
156712
 
@@ -156707,6 +156774,8 @@ class FunctionNodeInputInt(FunctionNode, NodeInternal, Node, bpy_struct):
156707
156774
  """
156708
156775
 
156709
156776
  class FunctionNodeInputRotation(FunctionNode, NodeInternal, Node, bpy_struct):
156777
+ """Provide a rotation value that can be connected to other nodes in the tree"""
156778
+
156710
156779
  rotation_euler: mathutils.Euler
156711
156780
  """ Input value used for unconnected socket
156712
156781
 
@@ -156774,6 +156843,8 @@ class FunctionNodeInputRotation(FunctionNode, NodeInternal, Node, bpy_struct):
156774
156843
  """
156775
156844
 
156776
156845
  class FunctionNodeInputSpecialCharacters(FunctionNode, NodeInternal, Node, bpy_struct):
156846
+ """Output string characters that cannot be typed directly with the keyboard"""
156847
+
156777
156848
  @classmethod
156778
156849
  def is_registered_node_type(cls) -> bool:
156779
156850
  """True if a registered node type
@@ -156835,6 +156906,8 @@ class FunctionNodeInputSpecialCharacters(FunctionNode, NodeInternal, Node, bpy_s
156835
156906
  """
156836
156907
 
156837
156908
  class FunctionNodeInputString(FunctionNode, NodeInternal, Node, bpy_struct):
156909
+ """Provide a string value that can be connected to other nodes in the tree"""
156910
+
156838
156911
  string: str
156839
156912
  """
156840
156913
 
@@ -156902,6 +156975,8 @@ class FunctionNodeInputString(FunctionNode, NodeInternal, Node, bpy_struct):
156902
156975
  """
156903
156976
 
156904
156977
  class FunctionNodeInputVector(FunctionNode, NodeInternal, Node, bpy_struct):
156978
+ """Provide a vector value that can be connected to other nodes in the tree"""
156979
+
156905
156980
  vector: mathutils.Vector
156906
156981
  """
156907
156982
 
@@ -156969,6 +157044,8 @@ class FunctionNodeInputVector(FunctionNode, NodeInternal, Node, bpy_struct):
156969
157044
  """
156970
157045
 
156971
157046
  class FunctionNodeIntegerMath(FunctionNode, NodeInternal, Node, bpy_struct):
157047
+ """Perform various math operations on the given integer inputs"""
157048
+
156972
157049
  operation: bpy.stub_internal.rna_enums.NodeIntegerMathItems
156973
157050
  """
156974
157051
 
@@ -157036,6 +157113,8 @@ class FunctionNodeIntegerMath(FunctionNode, NodeInternal, Node, bpy_struct):
157036
157113
  """
157037
157114
 
157038
157115
  class FunctionNodeInvertMatrix(FunctionNode, NodeInternal, Node, bpy_struct):
157116
+ """Compute the inverse of the given matrix, if one exists"""
157117
+
157039
157118
  @classmethod
157040
157119
  def is_registered_node_type(cls) -> bool:
157041
157120
  """True if a registered node type
@@ -157097,6 +157176,8 @@ class FunctionNodeInvertMatrix(FunctionNode, NodeInternal, Node, bpy_struct):
157097
157176
  """
157098
157177
 
157099
157178
  class FunctionNodeInvertRotation(FunctionNode, NodeInternal, Node, bpy_struct):
157179
+ """Compute the inverse of the given rotation"""
157180
+
157100
157181
  @classmethod
157101
157182
  def is_registered_node_type(cls) -> bool:
157102
157183
  """True if a registered node type
@@ -157158,6 +157239,8 @@ class FunctionNodeInvertRotation(FunctionNode, NodeInternal, Node, bpy_struct):
157158
157239
  """
157159
157240
 
157160
157241
  class FunctionNodeMatchString(FunctionNode, NodeInternal, Node, bpy_struct):
157242
+ """Check if a given string exists within another string"""
157243
+
157161
157244
  @classmethod
157162
157245
  def is_registered_node_type(cls) -> bool:
157163
157246
  """True if a registered node type
@@ -157219,6 +157302,8 @@ class FunctionNodeMatchString(FunctionNode, NodeInternal, Node, bpy_struct):
157219
157302
  """
157220
157303
 
157221
157304
  class FunctionNodeMatrixDeterminant(FunctionNode, NodeInternal, Node, bpy_struct):
157305
+ """Compute the determinant of the given matrix"""
157306
+
157222
157307
  @classmethod
157223
157308
  def is_registered_node_type(cls) -> bool:
157224
157309
  """True if a registered node type
@@ -157280,6 +157365,8 @@ class FunctionNodeMatrixDeterminant(FunctionNode, NodeInternal, Node, bpy_struct
157280
157365
  """
157281
157366
 
157282
157367
  class FunctionNodeMatrixMultiply(FunctionNode, NodeInternal, Node, bpy_struct):
157368
+ """Perform a matrix multiplication on two input matrices"""
157369
+
157283
157370
  @classmethod
157284
157371
  def is_registered_node_type(cls) -> bool:
157285
157372
  """True if a registered node type
@@ -157404,6 +157491,8 @@ class FunctionNodeProjectPoint(FunctionNode, NodeInternal, Node, bpy_struct):
157404
157491
  """
157405
157492
 
157406
157493
  class FunctionNodeQuaternionToRotation(FunctionNode, NodeInternal, Node, bpy_struct):
157494
+ """Build a rotation from quaternion components"""
157495
+
157407
157496
  @classmethod
157408
157497
  def is_registered_node_type(cls) -> bool:
157409
157498
  """True if a registered node type
@@ -157465,6 +157554,8 @@ class FunctionNodeQuaternionToRotation(FunctionNode, NodeInternal, Node, bpy_str
157465
157554
  """
157466
157555
 
157467
157556
  class FunctionNodeRandomValue(FunctionNode, NodeInternal, Node, bpy_struct):
157557
+ """Output a randomized value"""
157558
+
157468
157559
  data_type: bpy.stub_internal.rna_enums.AttributeTypeItems
157469
157560
  """ Type of data stored in attribute
157470
157561
 
@@ -157532,6 +157623,8 @@ class FunctionNodeRandomValue(FunctionNode, NodeInternal, Node, bpy_struct):
157532
157623
  """
157533
157624
 
157534
157625
  class FunctionNodeReplaceString(FunctionNode, NodeInternal, Node, bpy_struct):
157626
+ """Replace a given string segment with another"""
157627
+
157535
157628
  @classmethod
157536
157629
  def is_registered_node_type(cls) -> bool:
157537
157630
  """True if a registered node type
@@ -157593,6 +157686,8 @@ class FunctionNodeReplaceString(FunctionNode, NodeInternal, Node, bpy_struct):
157593
157686
  """
157594
157687
 
157595
157688
  class FunctionNodeRotateEuler(FunctionNode, NodeInternal, Node, bpy_struct):
157689
+ """Apply a secondary Euler rotation to a given Euler rotation"""
157690
+
157596
157691
  rotation_type: typing.Literal["AXIS_ANGLE", "EULER"]
157597
157692
  """ Method used to describe the rotation
157598
157693
 
@@ -157666,6 +157761,8 @@ class FunctionNodeRotateEuler(FunctionNode, NodeInternal, Node, bpy_struct):
157666
157761
  """
157667
157762
 
157668
157763
  class FunctionNodeRotateRotation(FunctionNode, NodeInternal, Node, bpy_struct):
157764
+ """Apply a secondary rotation to a given rotation value"""
157765
+
157669
157766
  rotation_space: typing.Literal["GLOBAL", "LOCAL"]
157670
157767
  """ Base orientation for the rotation
157671
157768
 
@@ -157733,6 +157830,8 @@ class FunctionNodeRotateRotation(FunctionNode, NodeInternal, Node, bpy_struct):
157733
157830
  """
157734
157831
 
157735
157832
  class FunctionNodeRotateVector(FunctionNode, NodeInternal, Node, bpy_struct):
157833
+ """Apply a rotation to a given vector"""
157834
+
157736
157835
  @classmethod
157737
157836
  def is_registered_node_type(cls) -> bool:
157738
157837
  """True if a registered node type
@@ -157794,6 +157893,8 @@ class FunctionNodeRotateVector(FunctionNode, NodeInternal, Node, bpy_struct):
157794
157893
  """
157795
157894
 
157796
157895
  class FunctionNodeRotationToAxisAngle(FunctionNode, NodeInternal, Node, bpy_struct):
157896
+ """Convert a rotation to axis angle components"""
157897
+
157797
157898
  @classmethod
157798
157899
  def is_registered_node_type(cls) -> bool:
157799
157900
  """True if a registered node type
@@ -157855,6 +157956,8 @@ class FunctionNodeRotationToAxisAngle(FunctionNode, NodeInternal, Node, bpy_stru
157855
157956
  """
157856
157957
 
157857
157958
  class FunctionNodeRotationToEuler(FunctionNode, NodeInternal, Node, bpy_struct):
157959
+ """Convert a standard rotation value to an Euler rotation"""
157960
+
157858
157961
  @classmethod
157859
157962
  def is_registered_node_type(cls) -> bool:
157860
157963
  """True if a registered node type
@@ -157916,6 +158019,8 @@ class FunctionNodeRotationToEuler(FunctionNode, NodeInternal, Node, bpy_struct):
157916
158019
  """
157917
158020
 
157918
158021
  class FunctionNodeRotationToQuaternion(FunctionNode, NodeInternal, Node, bpy_struct):
158022
+ """Retrieve the quaternion components representing a rotation"""
158023
+
157919
158024
  @classmethod
157920
158025
  def is_registered_node_type(cls) -> bool:
157921
158026
  """True if a registered node type
@@ -157977,6 +158082,8 @@ class FunctionNodeRotationToQuaternion(FunctionNode, NodeInternal, Node, bpy_str
157977
158082
  """
157978
158083
 
157979
158084
  class FunctionNodeSeparateColor(FunctionNode, NodeInternal, Node, bpy_struct):
158085
+ """Split a color into separate channels, based on a particular color model"""
158086
+
157980
158087
  mode: bpy.stub_internal.rna_enums.NodeCombsepColorItems
157981
158088
  """ Mode of color processing
157982
158089
 
@@ -158107,6 +158214,8 @@ class FunctionNodeSeparateMatrix(FunctionNode, NodeInternal, Node, bpy_struct):
158107
158214
  """
158108
158215
 
158109
158216
  class FunctionNodeSeparateTransform(FunctionNode, NodeInternal, Node, bpy_struct):
158217
+ """Split a transformation matrix into a translation vector, a rotation, and a scale vector"""
158218
+
158110
158219
  @classmethod
158111
158220
  def is_registered_node_type(cls) -> bool:
158112
158221
  """True if a registered node type
@@ -158168,6 +158277,8 @@ class FunctionNodeSeparateTransform(FunctionNode, NodeInternal, Node, bpy_struct
158168
158277
  """
158169
158278
 
158170
158279
  class FunctionNodeSliceString(FunctionNode, NodeInternal, Node, bpy_struct):
158280
+ """Extract a string segment from a larger string"""
158281
+
158171
158282
  @classmethod
158172
158283
  def is_registered_node_type(cls) -> bool:
158173
158284
  """True if a registered node type
@@ -158229,6 +158340,8 @@ class FunctionNodeSliceString(FunctionNode, NodeInternal, Node, bpy_struct):
158229
158340
  """
158230
158341
 
158231
158342
  class FunctionNodeStringLength(FunctionNode, NodeInternal, Node, bpy_struct):
158343
+ """Output the number of characters in the given string"""
158344
+
158232
158345
  @classmethod
158233
158346
  def is_registered_node_type(cls) -> bool:
158234
158347
  """True if a registered node type
@@ -158290,6 +158403,8 @@ class FunctionNodeStringLength(FunctionNode, NodeInternal, Node, bpy_struct):
158290
158403
  """
158291
158404
 
158292
158405
  class FunctionNodeStringToValue(FunctionNode, NodeInternal, Node, bpy_struct):
158406
+ """Derive a numeric value from a given string representation"""
158407
+
158293
158408
  data_type: typing.Literal["FLOAT", "INT"]
158294
158409
  """
158295
158410
 
@@ -158357,6 +158472,8 @@ class FunctionNodeStringToValue(FunctionNode, NodeInternal, Node, bpy_struct):
158357
158472
  """
158358
158473
 
158359
158474
  class FunctionNodeTransformDirection(FunctionNode, NodeInternal, Node, bpy_struct):
158475
+ """Apply a transformation matrix (excluding translation) to the given vector"""
158476
+
158360
158477
  @classmethod
158361
158478
  def is_registered_node_type(cls) -> bool:
158362
158479
  """True if a registered node type
@@ -158418,6 +158535,8 @@ class FunctionNodeTransformDirection(FunctionNode, NodeInternal, Node, bpy_struc
158418
158535
  """
158419
158536
 
158420
158537
  class FunctionNodeTransformPoint(FunctionNode, NodeInternal, Node, bpy_struct):
158538
+ """Apply a transformation matrix to the given vector"""
158539
+
158421
158540
  @classmethod
158422
158541
  def is_registered_node_type(cls) -> bool:
158423
158542
  """True if a registered node type
@@ -158479,6 +158598,8 @@ class FunctionNodeTransformPoint(FunctionNode, NodeInternal, Node, bpy_struct):
158479
158598
  """
158480
158599
 
158481
158600
  class FunctionNodeTransposeMatrix(FunctionNode, NodeInternal, Node, bpy_struct):
158601
+ """Flip a matrix over its diagonal, turning columns into rows and vice-versa"""
158602
+
158482
158603
  @classmethod
158483
158604
  def is_registered_node_type(cls) -> bool:
158484
158605
  """True if a registered node type
@@ -158540,6 +158661,8 @@ class FunctionNodeTransposeMatrix(FunctionNode, NodeInternal, Node, bpy_struct):
158540
158661
  """
158541
158662
 
158542
158663
  class FunctionNodeValueToString(FunctionNode, NodeInternal, Node, bpy_struct):
158664
+ """Generate a string representation of the given input value"""
158665
+
158543
158666
  data_type: typing.Literal["FLOAT", "INT"]
158544
158667
  """
158545
158668
 
@@ -166941,7 +167064,7 @@ class GeometryNodeListGetItem(GeometryNode, NodeInternal, Node, bpy_struct):
166941
167064
  """
166942
167065
 
166943
167066
  class GeometryNodeListLength(GeometryNode, NodeInternal, Node, bpy_struct):
166944
- """Return the length of a list"""
167067
+ """Count how many items are in a given list"""
166945
167068
 
166946
167069
  data_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
166947
167070
  """
@@ -169703,6 +169826,8 @@ class GeometryNodeSampleCurve(GeometryNode, NodeInternal, Node, bpy_struct):
169703
169826
  """
169704
169827
 
169705
169828
  class GeometryNodeSampleGrid(GeometryNode, NodeInternal, Node, bpy_struct):
169829
+ """Retrieve values from the specified volume grid"""
169830
+
169706
169831
  data_type: bpy.stub_internal.rna_enums.NodeSocketDataTypeItems
169707
169832
  """ Node socket data type
169708
169833
 
@@ -185381,6 +185506,13 @@ class Light(ID, bpy_struct):
185381
185506
  :rtype: float
185382
185507
  """
185383
185508
 
185509
+ def inline_shader_nodes(self) -> None:
185510
+ """Get the inlined shader nodes of this light. This preprocesses the node tree
185511
+ to remove nested groups, repeat zones and more.
185512
+
185513
+ :return: The inlined shader nodes.
185514
+ """
185515
+
185384
185516
  @classmethod
185385
185517
  def bl_rna_get_subclass(
185386
185518
  cls,
@@ -191639,6 +191771,41 @@ class MaskStrip(Strip, bpy_struct):
191639
191771
  :rtype: typing.Any
191640
191772
  """
191641
191773
 
191774
+ class MaskStripModifier(StripModifier, bpy_struct):
191775
+ """Mask modifier for sequence strip"""
191776
+
191777
+ @classmethod
191778
+ def bl_rna_get_subclass(
191779
+ cls,
191780
+ id: str | None,
191781
+ default=None,
191782
+ /,
191783
+ ) -> Struct:
191784
+ """
191785
+
191786
+ :param id: The RNA type identifier.
191787
+ :type id: str | None
191788
+ :param default:
191789
+ :return: The RNA type or default when not found.
191790
+ :rtype: Struct
191791
+ """
191792
+
191793
+ @classmethod
191794
+ def bl_rna_get_subclass_py(
191795
+ cls,
191796
+ id: str | None,
191797
+ default=None,
191798
+ /,
191799
+ ) -> typing.Any:
191800
+ """
191801
+
191802
+ :param id: The RNA type identifier.
191803
+ :type id: str | None
191804
+ :param default:
191805
+ :return: The class or default when not found.
191806
+ :rtype: typing.Any
191807
+ """
191808
+
191642
191809
  class Material(ID, bpy_struct):
191643
191810
  """Material data-block to define the appearance of geometric objects for rendering"""
191644
191811
 
@@ -191878,6 +192045,13 @@ class Material(ID, bpy_struct):
191878
192045
  :type: typing.Literal['FAST','ACCURATE']
191879
192046
  """
191880
192047
 
192048
+ def inline_shader_nodes(self) -> None:
192049
+ """Get the inlined shader nodes of this material. This preprocesses the node tree
192050
+ to remove nested groups, repeat zones and more.
192051
+
192052
+ :return: The inlined shader nodes.
192053
+ """
192054
+
191881
192055
  @classmethod
191882
192056
  def bl_rna_get_subclass(
191883
192057
  cls,
@@ -198676,6 +198850,8 @@ class NodeEnumItem(bpy_struct):
198676
198850
  """
198677
198851
 
198678
198852
  class NodeEvaluateClosure(NodeInternal, Node, bpy_struct):
198853
+ """Execute a given closure"""
198854
+
198679
198855
  active_input_index: int | None
198680
198856
  """ Index of the active item
198681
198857
 
@@ -215256,6 +215432,13 @@ class PointLight(Light, ID, bpy_struct):
215256
215432
  :type: bool
215257
215433
  """
215258
215434
 
215435
+ def inline_shader_nodes(self) -> None:
215436
+ """Get the inlined shader nodes of this light. This preprocesses the node tree
215437
+ to remove nested groups, repeat zones and more.
215438
+
215439
+ :return: The inlined shader nodes.
215440
+ """
215441
+
215259
215442
  @classmethod
215260
215443
  def bl_rna_get_subclass(
215261
215444
  cls,
@@ -219239,12 +219422,6 @@ class RenderEngine(bpy_struct):
219239
219422
  :type: str
219240
219423
  """
219241
219424
 
219242
- bl_use_alembic_procedural: bool
219243
- """ Support loading Alembic data at render time
219244
-
219245
- :type: bool
219246
- """
219247
-
219248
219425
  bl_use_custom_freestyle: bool
219249
219426
  """ Handles freestyle rendering on its own, instead of delegating it to EEVEE
219250
219427
 
@@ -228824,6 +229001,8 @@ class ShaderNodeOutputLight(ShaderNode, NodeInternal, Node, bpy_struct):
228824
229001
  """
228825
229002
 
228826
229003
  class ShaderNodeOutputLineStyle(ShaderNode, NodeInternal, Node, bpy_struct):
229004
+ """Control the mixing of texture information into the base color of line styles"""
229005
+
228827
229006
  blend_type: bpy.stub_internal.rna_enums.RampBlendItems
228828
229007
  """
228829
229008
 
@@ -231136,7 +231315,7 @@ class ShaderNodeTexWave(ShaderNode, NodeInternal, Node, bpy_struct):
231136
231315
  """
231137
231316
 
231138
231317
  class ShaderNodeTexWhiteNoise(ShaderNode, NodeInternal, Node, bpy_struct):
231139
- """Return a random value or color based on an input seed"""
231318
+ """Calculate a random value or color based on an input seed"""
231140
231319
 
231141
231320
  noise_dimensions: typing.Literal["1D", "2D", "3D", "4D"]
231142
231321
  """ Number of dimensions to output noise for
@@ -231260,6 +231439,8 @@ class ShaderNodeTree(NodeTree, ID, bpy_struct):
231260
231439
  """
231261
231440
 
231262
231441
  class ShaderNodeUVAlongStroke(ShaderNode, NodeInternal, Node, bpy_struct):
231442
+ """UV coordinates that map a texture along the stroke length"""
231443
+
231263
231444
  use_tips: bool
231264
231445
  """ Lower half of the texture is for tips of the stroke
231265
231446
 
@@ -238860,6 +239041,13 @@ class SpotLight(Light, ID, bpy_struct):
238860
239041
  :type: bool
238861
239042
  """
238862
239043
 
239044
+ def inline_shader_nodes(self) -> None:
239045
+ """Get the inlined shader nodes of this light. This preprocesses the node tree
239046
+ to remove nested groups, repeat zones and more.
239047
+
239048
+ :return: The inlined shader nodes.
239049
+ """
239050
+
238863
239051
  @classmethod
238864
239052
  def bl_rna_get_subclass(
238865
239053
  cls,
@@ -240956,6 +241144,13 @@ class SunLight(Light, ID, bpy_struct):
240956
241144
  :type: bool
240957
241145
  """
240958
241146
 
241147
+ def inline_shader_nodes(self) -> None:
241148
+ """Get the inlined shader nodes of this light. This preprocesses the node tree
241149
+ to remove nested groups, repeat zones and more.
241150
+
241151
+ :return: The inlined shader nodes.
241152
+ """
241153
+
240959
241154
  @classmethod
240960
241155
  def bl_rna_get_subclass(
240961
241156
  cls,
@@ -246999,12 +247194,6 @@ class ThemeProperties(bpy_struct):
246999
247194
  class ThemeSequenceEditor(bpy_struct):
247000
247195
  """Theme settings for the Sequence Editor"""
247001
247196
 
247002
- active_modifier: bpy_prop_array[float] | None
247003
- """
247004
-
247005
- :type: bpy_prop_array[float] | None
247006
- """
247007
-
247008
247197
  active_strip: mathutils.Color | None
247009
247198
  """
247010
247199
 
@@ -252200,15 +252389,6 @@ class UILayout(bpy_struct):
252200
252389
  :type property: str
252201
252390
  """
252202
252391
 
252203
- def template_cache_file_procedural(self, data: typing.Any, property: str) -> None:
252204
- """Show cache files render procedural properties
252205
-
252206
- :param data: Data from which to take property
252207
- :type data: typing.Any
252208
- :param property: Identifier of property in data
252209
- :type property: str
252210
- """
252211
-
252212
252392
  def template_cache_file_time_settings(
252213
252393
  self, data: typing.Any, property: str
252214
252394
  ) -> None:
@@ -259587,6 +259767,13 @@ class World(ID, bpy_struct):
259587
259767
  :type: bool
259588
259768
  """
259589
259769
 
259770
+ def inline_shader_nodes(self) -> None:
259771
+ """Get the inlined shader nodes of this world. This preprocesses the node tree
259772
+ to remove nested groups, repeat zones and more.
259773
+
259774
+ :return: The inlined shader nodes.
259775
+ """
259776
+
259590
259777
  @classmethod
259591
259778
  def bl_rna_get_subclass(
259592
259779
  cls,
@@ -261007,8 +261194,6 @@ BONE_PT_bTransformCacheConstraint: bl_ui.properties_constraint.BONE_PT_bTransfor
261007
261194
 
261008
261195
  BONE_PT_bTransformCacheConstraint_layers: bl_ui.properties_constraint.BONE_PT_bTransformCacheConstraint_layers
261009
261196
 
261010
- BONE_PT_bTransformCacheConstraint_procedural: bl_ui.properties_constraint.BONE_PT_bTransformCacheConstraint_procedural
261011
-
261012
261197
  BONE_PT_bTransformCacheConstraint_time: bl_ui.properties_constraint.BONE_PT_bTransformCacheConstraint_time
261013
261198
 
261014
261199
  BONE_PT_bTransformCacheConstraint_velocity: bl_ui.properties_constraint.BONE_PT_bTransformCacheConstraint_velocity
@@ -262353,8 +262538,6 @@ OBJECT_PT_bTransformCacheConstraint: bl_ui.properties_constraint.OBJECT_PT_bTran
262353
262538
 
262354
262539
  OBJECT_PT_bTransformCacheConstraint_layers: bl_ui.properties_constraint.OBJECT_PT_bTransformCacheConstraint_layers
262355
262540
 
262356
- OBJECT_PT_bTransformCacheConstraint_procedural: bl_ui.properties_constraint.OBJECT_PT_bTransformCacheConstraint_procedural
262357
-
262358
262541
  OBJECT_PT_bTransformCacheConstraint_time: bl_ui.properties_constraint.OBJECT_PT_bTransformCacheConstraint_time
262359
262542
 
262360
262543
  OBJECT_PT_bTransformCacheConstraint_velocity: bl_ui.properties_constraint.OBJECT_PT_bTransformCacheConstraint_velocity
@@ -263421,6 +263604,8 @@ USERPREF_PT_animation_keyframes: bl_ui.space_userpref.USERPREF_PT_animation_keyf
263421
263604
 
263422
263605
  USERPREF_PT_animation_timeline: bl_ui.space_userpref.USERPREF_PT_animation_timeline
263423
263606
 
263607
+ USERPREF_PT_developer_tools: bl_ui.space_userpref.USERPREF_PT_developer_tools
263608
+
263424
263609
  USERPREF_PT_edit_annotations: bl_ui.space_userpref.USERPREF_PT_edit_annotations
263425
263610
 
263426
263611
  USERPREF_PT_edit_cursor: bl_ui.space_userpref.USERPREF_PT_edit_cursor
@@ -263443,8 +263628,6 @@ USERPREF_PT_edit_text_editor: bl_ui.space_userpref.USERPREF_PT_edit_text_editor
263443
263628
 
263444
263629
  USERPREF_PT_edit_weight_paint: bl_ui.space_userpref.USERPREF_PT_edit_weight_paint
263445
263630
 
263446
- USERPREF_PT_experimental_debugging: bl_ui.space_userpref.USERPREF_PT_experimental_debugging
263447
-
263448
263631
  USERPREF_PT_experimental_new_features: bl_ui.space_userpref.USERPREF_PT_experimental_new_features
263449
263632
 
263450
263633
  USERPREF_PT_experimental_prototypes: bl_ui.space_userpref.USERPREF_PT_experimental_prototypes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fake-bpy-module
3
- Version: 20250910
3
+ Version: 20250912
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -18,7 +18,7 @@ _bpy_internal/system_info/__init__.pyi,sha256=U0qDEDvXTA0KHyhqeNNd4eLbsn3quigyg1
18
18
  _bpy_internal/system_info/text_generate_runtime/__init__.pyi,sha256=synyefSRdKBV1Yen5e1NoxwWeP2yiYQ2uoCk3EX_7HE,121
19
19
  _bpy_internal/system_info/url_prefill_runtime/__init__.pyi,sha256=BkoZMVSr2fWZuinL28e9e7PUTYiWEBwEHhUgPCJWyMs,144
20
20
  _bpy_internal/system_info/url_prefill_startup/__init__.pyi,sha256=p9LeMlYwggNOvu51pXsL3QveMIaDUfaLkEDQwo7ZCfY,150
21
- _bpy_types/__init__.pyi,sha256=DtUPI7KNVeuQnTR9mucLVAxsmYS0PLlsJ-5UbobUgto,42533
21
+ _bpy_types/__init__.pyi,sha256=4EffynfTlHmJdAogMAmMkENTiz1_SYr2UBRrqXud6uY,45210
22
22
  _bpy_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
23
  addon_utils/__init__.pyi,sha256=vdyLhBspwQFkUa8mTYStBrdoUmv14qqmQ7Vkh8xbWDw,3535
24
24
  addon_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -75,7 +75,7 @@ bl_operators/grease_pencil/__init__.pyi,sha256=ppgkc4ZatqPEHJNhjKbEy1sBzJg9zo0sb
75
75
  bl_operators/image/__init__.pyi,sha256=p_Pc5Za8ZGt_7ApR-NiQA94kOBvBdR8uqKiFKZgGMIk,3542
76
76
  bl_operators/image_as_planes/__init__.pyi,sha256=G_h1gkxx6INE8lUl7M0MR9luywsJUraY6T39rVehEio,4804
77
77
  bl_operators/mesh/__init__.pyi,sha256=5auCQvi8k_qSvkOgWdTdBqdv9HsrIe0w9ZrFOXfwu9g,1630
78
- bl_operators/node/__init__.pyi,sha256=YMxYh5k42rr0QXTPvfcOZ-dov5uZUMwhCkR00fz8vSQ,13711
78
+ bl_operators/node/__init__.pyi,sha256=ASaY5Vckkffj-Znz6cRqqfPc0F-erANlCsuLH1eFvyc,13709
79
79
  bl_operators/node_editor/__init__.pyi,sha256=nXKuGcFgA7viFPwVoXogOT1iClUnXhtrK_rZTTXJ2Go,136
80
80
  bl_operators/node_editor/node_functions/__init__.pyi,sha256=lvnouyugGqmyzgLR8aRsLj823dK3wC22vEu8lucNhJI,626
81
81
  bl_operators/object/__init__.pyi,sha256=WL-2d1wfdQWpEW5HLAoydXAZ-hTS1XNuCvvBbBZkeL0,11823
@@ -116,7 +116,7 @@ bl_ui/node_add_menu_shader/__init__.pyi,sha256=U-ntARgBpRtDHefEaZUTTBqPZOlk0MF5n
116
116
  bl_ui/node_add_menu_texture/__init__.pyi,sha256=qjl9QFiYpBhyMclx9laSSMDbs9ivCTGxQLW8jKLhRMs,5366
117
117
  bl_ui/properties_animviz/__init__.pyi,sha256=MVsoAibpBh5BrQ6ReemJJN3zOegs3QRdBFv9rOefocM,705
118
118
  bl_ui/properties_collection/__init__.pyi,sha256=Vc5-O8TKo3-St-3d3c5TDjleZGy8wk3N8Je-c6Y2edk,5131
119
- bl_ui/properties_constraint/__init__.pyi,sha256=Q8gxSZv5GWc9HaY7nAKANXwnlFjcXVCZAEi9GgFID1U,60623
119
+ bl_ui/properties_constraint/__init__.pyi,sha256=5IOEQdgiHDjn5-y8jp99TJjyi1M3P7EfSnbCjpyn3ks,59043
120
120
  bl_ui/properties_data_armature/__init__.pyi,sha256=r_yZik3HHrVVY_jG0d8_9Cid7XEREbGirB6TzDrPr2Q,13418
121
121
  bl_ui/properties_data_bone/__init__.pyi,sha256=zbE6qpnOJd9OdINbjeRWNEgt66DpVhVFJlRUF0eH4Vg,8183
122
122
  bl_ui/properties_data_camera/__init__.pyi,sha256=JleyLehB8Z1m_LCf6kICJvlL8ggJoMjzFyOlFtFjxKQ,12047
@@ -169,17 +169,17 @@ bl_ui/space_nla/__init__.pyi,sha256=qogAgjcs_TFfi4eoTjkVsPi8GkXRA7s4cO9xip2N-Ss,
169
169
  bl_ui/space_node/__init__.pyi,sha256=tLdl7p5j7C08r_07WCOfmyx2-yLYPKF-lweXPJm1GVI,21996
170
170
  bl_ui/space_outliner/__init__.pyi,sha256=1N93UIu-iU2UkqM7tQxeaxob3PRnnUjqY6rKdnT_sAE,8938
171
171
  bl_ui/space_properties/__init__.pyi,sha256=KJdc80dXfvxv5XYmO8CRmheQxff_jLYiS_6zzRG_xwg,2802
172
- bl_ui/space_sequencer/__init__.pyi,sha256=wBOUN_yIpEYC_jdpr9T6jwGBLR1iUzsdXXSK8NaIEQI,59943
172
+ bl_ui/space_sequencer/__init__.pyi,sha256=2RHKNOOQ3o7ze3COE8ereDG9wktCIwSKhl_J9huhPnQ,59983
173
173
  bl_ui/space_spreadsheet/__init__.pyi,sha256=qoO65GoJn8WObsqXqRzdEq2Zq1AZQEDWVpli-4lXOow,1769
174
174
  bl_ui/space_statusbar/__init__.pyi,sha256=V-oUoxSsgIpi-jzqct_gz2vjFYkIqOffmuI4W7xlsbw,667
175
175
  bl_ui/space_text/__init__.pyi,sha256=k864SRJgY7mgqqsu8KAhNGilMHMgMzjew1aeEHTtiYo,8996
176
- bl_ui/space_time/__init__.pyi,sha256=VwvieO14tuq0m-kYHJXz6maKEmQRAD7J2tQUrdNqI9E,4620
176
+ bl_ui/space_time/__init__.pyi,sha256=8X_nL7ELI6i44TF4T6ONWMvBgpGbqHJV-By_XHBiv10,4745
177
177
  bl_ui/space_toolsystem_common/__init__.pyi,sha256=0wapsLJDJuc7K6B5kjWvB9_dWN5e3_6WNWf_ZEChlmk,3436
178
- bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=Bqr8yIDrb5u7M8vVl4ekwNPLTFk6xAusa6BwrKFqLtk,10748
178
+ bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=1NzcfTRSQBrrTgvP5Ny3GxkCCKay-oKOA-8po5_TYsE,10803
179
179
  bl_ui/space_topbar/__init__.pyi,sha256=9MO703ewWr9Av2UGhd_tTQK8Okq8N3qw2SXOhZodeTk,15642
180
- bl_ui/space_userpref/__init__.pyi,sha256=u95zjkh77q4EWr3AfnZRjryl11SX_X9hQR-091164ck,81754
180
+ bl_ui/space_userpref/__init__.pyi,sha256=fFqeIQhE4hxubnEfqiHcRlpz8mwW1HVX2kd_RFXa4kc,81618
181
181
  bl_ui/space_view3d/__init__.pyi,sha256=sBby33ozbCunGLmCtaroL-zOGOzesPuAmQjmhkAOT8U,159488
182
- bl_ui/space_view3d_toolbar/__init__.pyi,sha256=rMEa_DHJjDjbtQVtjDgc3Q0LdIdcwwKsp011UfdZos0,64437
182
+ bl_ui/space_view3d_toolbar/__init__.pyi,sha256=_4A3FtNYgOPG05oIXOSasqu-n5tXNkisyx-6PehSjHI,64540
183
183
  bl_ui/utils/__init__.pyi,sha256=ljnA9UEJuHjOECvmj0JrqHBYqtd8GGy7IaBhwV_pIns,534
184
184
  bl_ui_utils/__init__.pyi,sha256=6yinHCNictVwPqgqerb5zXorsqM0cqPLmz_r8ms1XeE,89
185
185
  bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -245,7 +245,7 @@ bpy/ops/material/__init__.pyi,sha256=7yA8XRBaeLm-2IGqQqXcDGNctp3amhdmBMTPoWHw5G8
245
245
  bpy/ops/mball/__init__.pyi,sha256=3avjhyGC4WLxkWeTp16xJjaN3dp05ecbIXJnc2EtXVs,4258
246
246
  bpy/ops/mesh/__init__.pyi,sha256=uSpyzQeJO-79FB5TrQuxek597tOODzbRNRBDb52bTtw,131942
247
247
  bpy/ops/nla/__init__.pyi,sha256=xj5WdhNuTLCf0XbePE1XPiPfS78Ea45lA28gOntmOFI,18812
248
- bpy/ops/node/__init__.pyi,sha256=A5s_VFdHbjMDYfq9rA3J8wd97Bmx5oL3gEu9j9QAkjs,66876
248
+ bpy/ops/node/__init__.pyi,sha256=tnM6p2UOOwZPcnlpHuBeYtIYViuQ95jZfojPLcz6xso,67141
249
249
  bpy/ops/object/__init__.pyi,sha256=Ll59LJ8RY-R_my_-dUYTGYuzLmlpUJETY58gLXrfv7I,172971
250
250
  bpy/ops/outliner/__init__.pyi,sha256=ynP3AYcSIvRaROgjkuUMwL2F5P085Q_VVOZjhVC4VeY,29325
251
251
  bpy/ops/paint/__init__.pyi,sha256=14ik0wFRdTfSOMWb-ZQBc5FLHtq8xFeGiLMqrmtj374,38326
@@ -257,7 +257,7 @@ bpy/ops/pose/__init__.pyi,sha256=A3-d0foPDJrVEdxWK27m7rtwsv3jvgzG3vrn39YC6S0,281
257
257
  bpy/ops/poselib/__init__.pyi,sha256=DOXa3tG3CV3zzklAPwfwqnbWwSZ0Cxv6E71a6Hs0oLQ,6451
258
258
  bpy/ops/preferences/__init__.pyi,sha256=ExaBIhejgkAc7k2DPX7S8II-gEXFmfZOoQVcw_Iom0E,19795
259
259
  bpy/ops/ptcache/__init__.pyi,sha256=alDSJmgA1aKoMo46EDHirj_L-9Xc7RvfCh27DRnRuWc,1834
260
- bpy/ops/render/__init__.pyi,sha256=CaNY2941_VXzPCw8Ul_1x-DYcnpjt9-vUmscqbIM15Y,7603
260
+ bpy/ops/render/__init__.pyi,sha256=1RwH4v1gGzN1loZmAd2B_Ff_kaAYSuPd2TbDkDFjB6E,8109
261
261
  bpy/ops/rigidbody/__init__.pyi,sha256=v64_7HMafJtwLVXcSTnPOLtjSGmKECr3nq80TRtDWhU,6971
262
262
  bpy/ops/scene/__init__.pyi,sha256=NoezoIil56K989Z2JgdR0xIclzZApS5FimH7AlLrPJk,15611
263
263
  bpy/ops/screen/__init__.pyi,sha256=JVe5VWQxsb64V0cJ5DATt1h7wlBwW16qhjlQdzoux3s,20369
@@ -283,8 +283,8 @@ bpy/ops/world/__init__.pyi,sha256=VTCqEUTLL6yJroZCNcMYQgEKVmjwkIwIy70vB78rdOM,67
283
283
  bpy/path/__init__.pyi,sha256=Phd8a6fB3496L7_LUhdwPNwkh3qy_4O-MS5br9RMfO0,5536
284
284
  bpy/props/__init__.pyi,sha256=NSOu8SY2_uXzyQ55AEuvhZGHY-4IZjDT3qqtszfLfwI,50980
285
285
  bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
286
- bpy/stub_internal/rna_enums/__init__.pyi,sha256=cccGqmWM38q4vdyIjUmKbaXWFJayGAyZJAq5EOdVZBc,143214
287
- bpy/types/__init__.pyi,sha256=LXr78z-MX1u4a11BDtpCHwVvAx6FmczOGTrUynVAr3s,5908770
286
+ bpy/stub_internal/rna_enums/__init__.pyi,sha256=3Rf86PTxdaPkXJm3c0DewwdrYElayqXNfuh4qIzhMZQ,143521
287
+ bpy/types/__init__.pyi,sha256=AQVFBPm0xAPr5zg6jzJtA9YlXZ-orI8BQXYeiXMutis,5914181
288
288
  bpy/utils/__init__.pyi,sha256=GGYp2g381aOdE7tWXvRGVbmhijbfgt4wGAtJGgbvyJg,15526
289
289
  bpy/utils/previews/__init__.pyi,sha256=iSZemSCPu1S2BjAQO83Z-FqEo1nGHRCEIEduXB6hQhc,2357
290
290
  bpy/utils/units/__init__.pyi,sha256=cpE9IZPkYPBexru7R9HQ_c0931d7R7Dvib2Uf7V0JJs,2645
@@ -364,7 +364,7 @@ rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
364
364
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
365
365
  rna_xml/__init__.pyi,sha256=E0_ajcifhpiiQJVaNKnAa2ju-w5Tg9-lk7IqhsPjrw4,652
366
366
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
367
- fake_bpy_module-20250910.dist-info/METADATA,sha256=T-YbIx58oQTrBISD08N3CGrtWJzxMJh98ull6om53V0,7429
368
- fake_bpy_module-20250910.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
369
- fake_bpy_module-20250910.dist-info/top_level.txt,sha256=E_sehFLnpWSq252JjlyGL1A-1xsWTYcqyOIlHfuOh28,515
370
- fake_bpy_module-20250910.dist-info/RECORD,,
367
+ fake_bpy_module-20250912.dist-info/METADATA,sha256=vindaR3CyXqA-BLT12bx1C2zoLn4oS0jYgfREF-jp_U,7429
368
+ fake_bpy_module-20250912.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
369
+ fake_bpy_module-20250912.dist-info/top_level.txt,sha256=E_sehFLnpWSq252JjlyGL1A-1xsWTYcqyOIlHfuOh28,515
370
+ fake_bpy_module-20250912.dist-info/RECORD,,