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

addon_utils/__init__.pyi CHANGED
@@ -61,8 +61,8 @@ def enable(
61
61
  ...
62
62
 
63
63
  def module_bl_info(mod, info_basis=None): ...
64
- def modules(module_cache={"bl_pkg": None}, refresh=True): ...
65
- def modules_refresh(module_cache={"bl_pkg": None}): ...
64
+ def modules(module_cache={}, refresh=True): ...
65
+ def modules_refresh(module_cache={}): ...
66
66
  def paths(): ...
67
67
  def reset_all(reload_scripts=False):
68
68
  """Sets the addon state based on the user preferences."""
@@ -724,7 +724,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, bpy_types.Operator):
724
724
 
725
725
  def draw_ui_list(
726
726
  layout: bpy.types.UILayout,
727
- context: bpy.types.Context,
727
+ context: bpy_types.Context,
728
728
  class_name: str = "UI_UL_list",
729
729
  unique_id: str = None,
730
730
  list_path: str = None,
@@ -739,7 +739,7 @@ def draw_ui_list(
739
739
  :param layout: UILayout to draw the list in.
740
740
  :type layout: bpy.types.UILayout
741
741
  :param context: Blender context to get the list data from.
742
- :type context: bpy.types.Context
742
+ :type context: bpy_types.Context
743
743
  :param class_name: Name of the UIList class to draw. The default is the UIList class that ships with Blender.
744
744
  :type class_name: str
745
745
  :param unique_id: Unique identifier to differentiate this from other UI lists.
@@ -3801,6 +3801,277 @@ class NODE_MT_category_PRIMITIVES_MESH(bpy_types.Menu, bpy_types._GenericUI):
3801
3801
  """
3802
3802
  ...
3803
3803
 
3804
+ class NODE_MT_category_import(bpy_types.Menu, bpy_types._GenericUI):
3805
+ bl_idname: typing.Any
3806
+ bl_label: typing.Any
3807
+ bl_rna: typing.Any
3808
+ id_data: typing.Any
3809
+
3810
+ def append(self, draw_func):
3811
+ """Append a draw function to this menu,
3812
+ takes the same arguments as the menus draw function
3813
+
3814
+ :param draw_func:
3815
+ """
3816
+ ...
3817
+
3818
+ def as_pointer(self) -> int:
3819
+ """Returns the memory address which holds a pointer to Blender's internal data
3820
+
3821
+ :return: int (memory address).
3822
+ :rtype: int
3823
+ """
3824
+ ...
3825
+
3826
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
3827
+ """
3828
+
3829
+ :return: The RNA type or default when not found.
3830
+ :rtype: bpy.types.Struct
3831
+ """
3832
+ ...
3833
+
3834
+ def bl_rna_get_subclass_py(self) -> typing.Any:
3835
+ """
3836
+
3837
+ :return: The class or default when not found.
3838
+ :rtype: typing.Any
3839
+ """
3840
+ ...
3841
+
3842
+ def draw(self, _context):
3843
+ """
3844
+
3845
+ :param _context:
3846
+ """
3847
+ ...
3848
+
3849
+ def draw_collapsible(self, context, layout):
3850
+ """
3851
+
3852
+ :param context:
3853
+ :param layout:
3854
+ """
3855
+ ...
3856
+
3857
+ def draw_preset(self, _context):
3858
+ """Define these on the subclass:
3859
+ - preset_operator (string)
3860
+ - preset_subdir (string)Optionally:
3861
+ - preset_add_operator (string)
3862
+ - preset_extensions (set of strings)
3863
+ - preset_operator_defaults (dict of keyword args)
3864
+
3865
+ :param _context:
3866
+ """
3867
+ ...
3868
+
3869
+ def driver_add(self) -> bpy.types.FCurve:
3870
+ """Adds driver(s) to the given property
3871
+
3872
+ :return: The driver(s) added.
3873
+ :rtype: bpy.types.FCurve
3874
+ """
3875
+ ...
3876
+
3877
+ def driver_remove(self) -> bool:
3878
+ """Remove driver(s) from the given property
3879
+
3880
+ :return: Success of driver removal.
3881
+ :rtype: bool
3882
+ """
3883
+ ...
3884
+
3885
+ def get(self):
3886
+ """Returns the value of the custom property assigned to key or default
3887
+ when not found (matches Python's dictionary function of the same name).
3888
+
3889
+ """
3890
+ ...
3891
+
3892
+ def id_properties_clear(self):
3893
+ """
3894
+
3895
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
3896
+ """
3897
+ ...
3898
+
3899
+ def id_properties_ensure(self):
3900
+ """
3901
+
3902
+ :return: the parent group for an RNA struct's custom IDProperties.
3903
+ """
3904
+ ...
3905
+
3906
+ def id_properties_ui(self):
3907
+ """
3908
+
3909
+ :return: Return an object used to manage an IDProperty's UI data.
3910
+ """
3911
+ ...
3912
+
3913
+ def is_extended(self): ...
3914
+ def is_property_hidden(self) -> bool:
3915
+ """Check if a property is hidden.
3916
+
3917
+ :return: True when the property is hidden.
3918
+ :rtype: bool
3919
+ """
3920
+ ...
3921
+
3922
+ def is_property_overridable_library(self) -> bool:
3923
+ """Check if a property is overridable.
3924
+
3925
+ :return: True when the property is overridable.
3926
+ :rtype: bool
3927
+ """
3928
+ ...
3929
+
3930
+ def is_property_readonly(self) -> bool:
3931
+ """Check if a property is readonly.
3932
+
3933
+ :return: True when the property is readonly (not writable).
3934
+ :rtype: bool
3935
+ """
3936
+ ...
3937
+
3938
+ def is_property_set(self) -> bool:
3939
+ """Check if a property is set, use for testing operator properties.
3940
+
3941
+ :return: True when the property has been set.
3942
+ :rtype: bool
3943
+ """
3944
+ ...
3945
+
3946
+ def items(self):
3947
+ """Returns the items of this objects custom properties (matches Python's
3948
+ dictionary function of the same name).
3949
+
3950
+ :return: custom property key, value pairs.
3951
+ """
3952
+ ...
3953
+
3954
+ def keyframe_delete(self) -> bool:
3955
+ """Remove a keyframe from this properties fcurve.
3956
+
3957
+ :return: Success of keyframe deletion.
3958
+ :rtype: bool
3959
+ """
3960
+ ...
3961
+
3962
+ def keyframe_insert(self) -> bool:
3963
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
3964
+
3965
+ :return: Success of keyframe insertion.
3966
+ :rtype: bool
3967
+ """
3968
+ ...
3969
+
3970
+ def keys(self):
3971
+ """Returns the keys of this objects custom properties (matches Python's
3972
+ dictionary function of the same name).
3973
+
3974
+ :return: custom property keys.
3975
+ """
3976
+ ...
3977
+
3978
+ def path_from_id(self) -> str:
3979
+ """Returns the data path from the ID to this object (string).
3980
+
3981
+ :return: The path from `bpy.types.bpy_struct.id_data`
3982
+ to this struct and property (when given).
3983
+ :rtype: str
3984
+ """
3985
+ ...
3986
+
3987
+ def path_menu(
3988
+ self,
3989
+ searchpaths: list[str],
3990
+ operator: str,
3991
+ props_default: dict = None,
3992
+ prop_filepath: str | None = "filepath",
3993
+ filter_ext: collections.abc.Callable | None = None,
3994
+ filter_path=None,
3995
+ display_name: collections.abc.Callable | None = None,
3996
+ add_operator=None,
3997
+ add_operator_props=None,
3998
+ ):
3999
+ """Populate a menu from a list of paths.
4000
+
4001
+ :param searchpaths: Paths to scan.
4002
+ :type searchpaths: list[str]
4003
+ :param operator: The operator id to use with each file.
4004
+ :type operator: str
4005
+ :param props_default: Properties to assign to each operator.
4006
+ :type props_default: dict
4007
+ :param prop_filepath: Optional operator filepath property (defaults to "filepath").
4008
+ :type prop_filepath: str | None
4009
+ :param filter_ext: Optional callback that takes the file extensions.
4010
+
4011
+ Returning false excludes the file from the list.
4012
+ :type filter_ext: collections.abc.Callable | None
4013
+ :param filter_path:
4014
+ :param display_name: Optional callback that takes the full path, returns the name to display.
4015
+ :type display_name: collections.abc.Callable | None
4016
+ :param add_operator:
4017
+ :param add_operator_props:
4018
+ """
4019
+ ...
4020
+
4021
+ def path_resolve(self):
4022
+ """Returns the property from the path, raise an exception when not found."""
4023
+ ...
4024
+
4025
+ def pop(self):
4026
+ """Remove and return the value of the custom property assigned to key or default
4027
+ when not found (matches Python's dictionary function of the same name).
4028
+
4029
+ """
4030
+ ...
4031
+
4032
+ def prepend(self, draw_func):
4033
+ """Prepend a draw function to this menu, takes the same arguments as
4034
+ the menus draw function
4035
+
4036
+ :param draw_func:
4037
+ """
4038
+ ...
4039
+
4040
+ def property_overridable_library_set(self) -> bool:
4041
+ """Define a property as overridable or not (only for custom properties!).
4042
+
4043
+ :return: True when the overridable status of the property was successfully set.
4044
+ :rtype: bool
4045
+ """
4046
+ ...
4047
+
4048
+ def property_unset(self):
4049
+ """Unset a property, will use default value afterward."""
4050
+ ...
4051
+
4052
+ def remove(self, draw_func):
4053
+ """Remove a draw function that has been added to this menu
4054
+
4055
+ :param draw_func:
4056
+ """
4057
+ ...
4058
+
4059
+ def type_recast(self):
4060
+ """Return a new instance, this is needed because types
4061
+ such as textures can be changed at runtime.
4062
+
4063
+ :return: a new instance of this object with the type initialized again.
4064
+ """
4065
+ ...
4066
+
4067
+ def values(self):
4068
+ """Returns the values of this objects custom properties (matches Python's
4069
+ dictionary function of the same name).
4070
+
4071
+ :return: custom property values.
4072
+ """
4073
+ ...
4074
+
3804
4075
  class NODE_MT_category_simulation(bpy_types.Menu, bpy_types._GenericUI):
3805
4076
  bl_idname: typing.Any
3806
4077
  bl_label: typing.Any
@@ -7635,10 +7906,10 @@ class NODE_MT_geometry_node_GEO_INPUT(bpy_types.Menu, bpy_types._GenericUI):
7635
7906
  """
7636
7907
  ...
7637
7908
 
7638
- def draw(self, _context):
7909
+ def draw(self, context):
7639
7910
  """
7640
7911
 
7641
- :param _context:
7912
+ :param context:
7642
7913
  """
7643
7914
  ...
7644
7915
 
bmesh/types/__init__.pyi CHANGED
@@ -1358,11 +1358,11 @@ class BMVert:
1358
1358
  """
1359
1359
  ...
1360
1360
 
1361
- def copy_from_vert_interp(self, vert_pair: BMVert, fac: float):
1361
+ def copy_from_vert_interp(self, vert_pair: tuple[BMVert, BMVert], fac: float):
1362
1362
  """Interpolate the customdata from a vert between 2 other verts.
1363
1363
 
1364
- :param vert_pair: The vert to interpolate data from.
1365
- :type vert_pair: BMVert
1364
+ :param vert_pair: The verts between which to interpolate data from.
1365
+ :type vert_pair: tuple[BMVert, BMVert]
1366
1366
  :param fac:
1367
1367
  :type fac: float
1368
1368
  """
@@ -107,6 +107,18 @@ def pgettext_iface(msgid: str | None, msgctxt: str | None = None):
107
107
 
108
108
  ...
109
109
 
110
+ def pgettext_n(msgid: str | None, msgctxt: str | None = None):
111
+ """Extract the given msgid to translation files. This is a no-op function that will only mark the string to extract, but not perform the actual translation.
112
+
113
+ :param msgid: The string to extract.
114
+ :type msgid: str | None
115
+ :param msgctxt: The translation context (defaults to BLT_I18NCONTEXT_DEFAULT).
116
+ :type msgctxt: str | None
117
+ :return: The original string.
118
+ """
119
+
120
+ ...
121
+
110
122
  def pgettext_rpt(msgid: str | None, msgctxt: str | None = None):
111
123
  """Try to translate the given msgid (with optional msgctxt), if reports' translation is enabled.
112
124
 
@@ -372,6 +372,24 @@ def package_upgrade_all(
372
372
 
373
373
  ...
374
374
 
375
+ def repo_add_from_drop(
376
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
377
+ execution_context: int | str | None = None,
378
+ undo: bool | None = None,
379
+ *,
380
+ url: str | typing.Any = "",
381
+ ):
382
+ """Undocumented, consider contributing.
383
+
384
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
385
+ :type execution_context: int | str | None
386
+ :type undo: bool | None
387
+ :param url: URL
388
+ :type url: str | typing.Any
389
+ """
390
+
391
+ ...
392
+
375
393
  def repo_lock(
376
394
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
377
395
  execution_context: int | str | None = None,
@@ -386,6 +404,20 @@ def repo_lock(
386
404
 
387
405
  ...
388
406
 
407
+ def repo_refresh_all(
408
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
409
+ execution_context: int | str | None = None,
410
+ undo: bool | None = None,
411
+ ):
412
+ """Scan extension & legacy add-ons for changes to modules & meta-data (similar to restarting). Any issues are reported as warnings
413
+
414
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
415
+ :type execution_context: int | str | None
416
+ :type undo: bool | None
417
+ """
418
+
419
+ ...
420
+
389
421
  def repo_sync(
390
422
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
391
423
  execution_context: int | str | None = None,
@@ -369,6 +369,24 @@ def layer_group_add(
369
369
 
370
370
  ...
371
371
 
372
+ def layer_group_color_tag(
373
+ override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
374
+ execution_context: int | str | None = None,
375
+ undo: bool | None = None,
376
+ *,
377
+ color_tag: str | None = "COLOR1",
378
+ ):
379
+ """Change layer group icon
380
+
381
+ :type override_context: bpy.types.Context | dict[str, typing.Any] | None
382
+ :type execution_context: int | str | None
383
+ :type undo: bool | None
384
+ :param color_tag: color tag
385
+ :type color_tag: str | None
386
+ """
387
+
388
+ ...
389
+
372
390
  def layer_group_remove(
373
391
  override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
374
392
  execution_context: int | str | None = None,
@@ -593,7 +593,7 @@ def mask_filter(
593
593
  :type filter_type: str | None
594
594
  :param iterations: Iterations, Number of times that the filter is going to be applied
595
595
  :type iterations: typing.Any | None
596
- :param auto_iteration_count: Auto Iteration Count, Use a automatic number of iterations based on the number of vertices of the sculpt
596
+ :param auto_iteration_count: Auto Iteration Count, Use an automatic number of iterations based on the number of vertices of the sculpt
597
597
  :type auto_iteration_count: bool | typing.Any | None
598
598
  """
599
599
 
bpy/props/__init__.pyi CHANGED
@@ -89,6 +89,7 @@ Instead use del cls.attr
89
89
 
90
90
  import typing
91
91
  import collections.abc
92
+ import bpy.types
92
93
 
93
94
  GenericType1 = typing.TypeVar("GenericType1")
94
95
  GenericType2 = typing.TypeVar("GenericType2")
@@ -217,9 +218,21 @@ def CollectionProperty(
217
218
 
218
219
  def EnumProperty(
219
220
  *,
220
- items: collections.abc.Callable
221
- | collections.abc.Iterable[collections.abc.Iterable[str]]
222
- | None,
221
+ items: collections.abc.Iterable[
222
+ tuple[str, str, str]
223
+ | tuple[str, str, str, int]
224
+ | tuple[str, str, str, str, int]
225
+ | None
226
+ ]
227
+ | collections.abc.Callable[
228
+ [typing.Any, bpy.types.Context | None],
229
+ collections.abc.Iterable[
230
+ tuple[str, str, str]
231
+ | tuple[str, str, str, int]
232
+ | tuple[str, str, str, str, int]
233
+ | None
234
+ ],
235
+ ],
223
236
  name: str | None = "",
224
237
  description: str | None = "",
225
238
  translation_context: str | None = "*",
@@ -271,7 +284,7 @@ def EnumProperty(
271
284
  There is a known bug with using a callback,
272
285
  Python must keep a reference to the strings returned by the callback or Blender
273
286
  will misbehave or even crash.
274
- :type items: collections.abc.Callable | collections.abc.Iterable[collections.abc.Iterable[str]] | None
287
+ :type items: collections.abc.Iterable[tuple[str, str, str] | tuple[str, str, str, int] | tuple[str, str, str, str, int] | None] | collections.abc.Callable[[typing.Any, bpy.types.Context | None], collections.abc.Iterable[tuple[str, str, str] | tuple[str, str, str, int] | tuple[str, str, str, str, int] | None]]
275
288
  :param name: Name used in the user interface.
276
289
  :type name: str | None
277
290
  :param description: Text used for the tooltip and api documentation.
bpy/types/__init__.pyi CHANGED
@@ -1980,13 +1980,6 @@
1980
1980
  :columns: 2
1981
1981
 
1982
1982
 
1983
- --------------------
1984
-
1985
- * WindowManager.pose_assets
1986
-
1987
- :columns: 2
1988
-
1989
-
1990
1983
  --------------------
1991
1984
 
1992
1985
  * bpy_struct.id_data
@@ -36652,6 +36645,8 @@ Property types used in class declarations are all in bpy.props
36652
36645
  * GeometryNodeImageInfo.output_template
36653
36646
  * GeometryNodeImageTexture.input_template
36654
36647
  * GeometryNodeImageTexture.output_template
36648
+ * GeometryNodeImportSTL.input_template
36649
+ * GeometryNodeImportSTL.output_template
36655
36650
  * GeometryNodeIndexOfNearest.input_template
36656
36651
  * GeometryNodeIndexOfNearest.output_template
36657
36652
  * GeometryNodeIndexSwitch.input_template
@@ -97434,6 +97429,96 @@ The USDHookExample
97434
97429
  :columns: 2
97435
97430
 
97436
97431
 
97432
+ --------------------
97433
+
97434
+ * bpy_struct.as_pointer
97435
+ * bpy_struct.driver_add
97436
+ * bpy_struct.driver_remove
97437
+ * bpy_struct.get
97438
+ * bpy_struct.id_properties_clear
97439
+ * bpy_struct.id_properties_ensure
97440
+ * bpy_struct.id_properties_ui
97441
+ * bpy_struct.is_property_hidden
97442
+ * bpy_struct.is_property_overridable_library
97443
+ * bpy_struct.is_property_readonly
97444
+ * bpy_struct.is_property_set
97445
+ * bpy_struct.items
97446
+ * bpy_struct.keyframe_delete
97447
+ * bpy_struct.keyframe_insert
97448
+ * bpy_struct.keys
97449
+ * bpy_struct.path_from_id
97450
+ * bpy_struct.path_resolve
97451
+ * bpy_struct.pop
97452
+ * bpy_struct.property_overridable_library_set
97453
+ * bpy_struct.property_unset
97454
+ * bpy_struct.type_recast
97455
+ * bpy_struct.values
97456
+ * Node.socket_value_update
97457
+ * Node.is_registered_node_type
97458
+ * Node.poll
97459
+ * Node.poll_instance
97460
+ * Node.update
97461
+ * Node.insert_link
97462
+ * Node.init
97463
+ * Node.copy
97464
+ * Node.free
97465
+ * Node.draw_buttons
97466
+ * Node.draw_buttons_ext
97467
+ * Node.draw_label
97468
+ * Node.poll
97469
+ * Node.bl_rna_get_subclass
97470
+ * Node.bl_rna_get_subclass_py
97471
+ * NodeInternal.poll
97472
+ * NodeInternal.poll_instance
97473
+ * NodeInternal.update
97474
+ * NodeInternal.draw_buttons
97475
+ * NodeInternal.draw_buttons_ext
97476
+ * NodeInternal.bl_rna_get_subclass
97477
+ * NodeInternal.bl_rna_get_subclass_py
97478
+ * GeometryNode.poll
97479
+ * GeometryNode.bl_rna_get_subclass
97480
+ * GeometryNode.bl_rna_get_subclass_py
97481
+
97482
+ :columns: 2
97483
+
97484
+
97485
+ --------------------
97486
+
97487
+ * bpy_struct.id_data
97488
+ * Node.type
97489
+ * Node.location
97490
+ * Node.width
97491
+ * Node.height
97492
+ * Node.dimensions
97493
+ * Node.name
97494
+ * Node.label
97495
+ * Node.inputs
97496
+ * Node.outputs
97497
+ * Node.internal_links
97498
+ * Node.parent
97499
+ * Node.use_custom_color
97500
+ * Node.color
97501
+ * Node.select
97502
+ * Node.show_options
97503
+ * Node.show_preview
97504
+ * Node.hide
97505
+ * Node.mute
97506
+ * Node.show_texture
97507
+ * Node.bl_idname
97508
+ * Node.bl_label
97509
+ * Node.bl_description
97510
+ * Node.bl_icon
97511
+ * Node.bl_static_type
97512
+ * Node.bl_width_default
97513
+ * Node.bl_width_min
97514
+ * Node.bl_width_max
97515
+ * Node.bl_height_default
97516
+ * Node.bl_height_min
97517
+ * Node.bl_height_max
97518
+
97519
+ :columns: 2
97520
+
97521
+
97437
97522
  --------------------
97438
97523
 
97439
97524
  * bpy_struct.as_pointer
@@ -133717,6 +133802,12 @@ class PreferencesExperimental(bpy_struct):
133717
133802
  :type: bool
133718
133803
  """
133719
133804
 
133805
+ use_new_file_import_nodes: bool
133806
+ """ Enables visibility of the new File Import nodes in the UI
133807
+
133808
+ :type: bool
133809
+ """
133810
+
133720
133811
  use_new_point_cloud_type: bool
133721
133812
  """ Enable the new point cloud type in the ui
133722
133813
 
@@ -138629,37 +138720,37 @@ class SceneEEVEE(bpy_struct):
138629
138720
  """Scene display settings for 3D viewport"""
138630
138721
 
138631
138722
  bloom_clamp: float
138632
- """ Maximum intensity a bloom pixel can have (0 to disable)
138723
+ """ Maximum intensity a bloom pixel can have (0 to disable) (deprecated)
138633
138724
 
138634
138725
  :type: float
138635
138726
  """
138636
138727
 
138637
138728
  bloom_color: mathutils.Color
138638
- """ Color applied to the bloom effect
138729
+ """ Color applied to the bloom effect (deprecated)
138639
138730
 
138640
138731
  :type: mathutils.Color
138641
138732
  """
138642
138733
 
138643
138734
  bloom_intensity: float
138644
- """ Blend factor
138735
+ """ Blend factor (deprecated)
138645
138736
 
138646
138737
  :type: float
138647
138738
  """
138648
138739
 
138649
138740
  bloom_knee: float
138650
- """ Makes transition between under/over-threshold gradual
138741
+ """ Makes transition between under/over-threshold gradual (deprecated)
138651
138742
 
138652
138743
  :type: float
138653
138744
  """
138654
138745
 
138655
138746
  bloom_radius: float
138656
- """ Bloom spread distance
138747
+ """ Bloom spread distance (deprecated)
138657
138748
 
138658
138749
  :type: float
138659
138750
  """
138660
138751
 
138661
138752
  bloom_threshold: float
138662
- """ Filters out pixels under this level of brightness
138753
+ """ Filters out pixels under this level of brightness (deprecated)
138663
138754
 
138664
138755
  :type: float
138665
138756
  """
@@ -138989,7 +139080,7 @@ class SceneEEVEE(bpy_struct):
138989
139080
  """
138990
139081
 
138991
139082
  use_bloom: bool
138992
- """ High brightness pixels generate a glowing effect
139083
+ """ High brightness pixels generate a glowing effect (deprecated)
138993
139084
 
138994
139085
  :type: bool
138995
139086
  """
@@ -153053,7 +153144,7 @@ class ViewLayerEEVEE(bpy_struct):
153053
153144
  """View Layer settings for EEVEE"""
153054
153145
 
153055
153146
  use_pass_bloom: bool
153056
- """ Deliver bloom pass
153147
+ """ Deliver bloom pass (deprecated)
153057
153148
 
153058
153149
  :type: bool
153059
153150
  """
@@ -167313,12 +167404,6 @@ class Material(ID, bpy_struct):
167313
167404
  :type: bool
167314
167405
  """
167315
167406
 
167316
- lightprobe_volume_single_sided: bool
167317
- """ Consider material single sided for light probe volume capture. Additionally helps rejecting probes inside the object to avoid light leaks
167318
-
167319
- :type: bool
167320
- """
167321
-
167322
167407
  line_color: bpy_prop_array[float]
167323
167408
  """ Line color used for Freestyle line rendering
167324
167409
 
@@ -167445,6 +167530,12 @@ class Material(ID, bpy_struct):
167445
167530
  :type: bool
167446
167531
  """
167447
167532
 
167533
+ use_backface_culling_lightprobe_volume: bool
167534
+ """ Consider material single sided for light probe volume capture. Additionally helps rejecting probes inside the object to avoid light leaks
167535
+
167536
+ :type: bool
167537
+ """
167538
+
167448
167539
  use_backface_culling_shadow: bool
167449
167540
  """ Use back face culling when casting shadows
167450
167541
 
@@ -172210,12 +172301,6 @@ class WindowManager(ID, bpy_struct):
172210
172301
  :type: bpy_prop_collection[Operator]
172211
172302
  """
172212
172303
 
172213
- pose_assets: bpy_prop_collection[AssetHandle]
172214
- """
172215
-
172216
- :type: bpy_prop_collection[AssetHandle]
172217
- """
172218
-
172219
172304
  poselib_previous_action: Action
172220
172305
  """
172221
172306
 
@@ -172632,12 +172717,6 @@ class WorkSpace(ID, bpy_struct):
172632
172717
  :type: int | None
172633
172718
  """
172634
172719
 
172635
- active_pose_asset_index: int | None
172636
- """ Per workspace index of the active pose asset
172637
-
172638
- :type: int | None
172639
- """
172640
-
172641
172720
  asset_library_reference: str
172642
172721
  """ Active asset library to show in the UI, not used by the Asset Browser (which has its own active asset library)
172643
172722
 
@@ -186221,7 +186300,7 @@ class SpaceClipEditor(Space, bpy_struct):
186221
186300
  """
186222
186301
 
186223
186302
  show_seconds: bool
186224
- """ Show timing in seconds not frames
186303
+ """ Show timing as a timecode instead of frames
186225
186304
 
186226
186305
  :type: bool
186227
186306
  """
@@ -186553,7 +186632,7 @@ class SpaceDopeSheetEditor(Space, bpy_struct):
186553
186632
  """
186554
186633
 
186555
186634
  show_seconds: bool
186556
- """ Show timing in seconds not frames
186635
+ """ Show timing as a timecode instead of frames
186557
186636
 
186558
186637
  :type: bool
186559
186638
  """
@@ -186909,7 +186988,7 @@ class SpaceGraphEditor(Space, bpy_struct):
186909
186988
  """
186910
186989
 
186911
186990
  show_seconds: bool
186912
- """ Show timing in seconds not frames
186991
+ """ Show timing as a timecode instead of frames
186913
186992
 
186914
186993
  :type: bool
186915
186994
  """
@@ -187431,7 +187510,7 @@ class SpaceNLA(Space, bpy_struct):
187431
187510
  """
187432
187511
 
187433
187512
  show_seconds: bool
187434
- """ Show timing in seconds not frames
187513
+ """ Show timing as a timecode instead of frames
187435
187514
 
187436
187515
  :type: bool
187437
187516
  """
@@ -188295,7 +188374,7 @@ class SpaceSequenceEditor(Space, bpy_struct):
188295
188374
  """
188296
188375
 
188297
188376
  show_seconds: bool
188298
- """ Show timing in seconds not frames
188377
+ """ Show timing as a timecode instead of frames
188299
188378
 
188300
188379
  :type: bool
188301
188380
  """
@@ -215641,6 +215720,64 @@ class GeometryNodeImageTexture(GeometryNode, NodeInternal, Node, bpy_struct):
215641
215720
  """
215642
215721
  ...
215643
215722
 
215723
+ class GeometryNodeImportSTL(GeometryNode, NodeInternal, Node, bpy_struct):
215724
+ """Import a mesh from an STL file"""
215725
+
215726
+ @classmethod
215727
+ def is_registered_node_type(cls) -> bool:
215728
+ """True if a registered node type
215729
+
215730
+ :return: Result
215731
+ :rtype: bool
215732
+ """
215733
+ ...
215734
+
215735
+ @classmethod
215736
+ def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
215737
+ """Input socket template
215738
+
215739
+ :param index: Index
215740
+ :type index: int | None
215741
+ :return: result
215742
+ :rtype: NodeInternalSocketTemplate
215743
+ """
215744
+ ...
215745
+
215746
+ @classmethod
215747
+ def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
215748
+ """Output socket template
215749
+
215750
+ :param index: Index
215751
+ :type index: int | None
215752
+ :return: result
215753
+ :rtype: NodeInternalSocketTemplate
215754
+ """
215755
+ ...
215756
+
215757
+ @classmethod
215758
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
215759
+ """
215760
+
215761
+ :param id: The RNA type identifier.
215762
+ :type id: str | None
215763
+ :param default:
215764
+ :return: The RNA type or default when not found.
215765
+ :rtype: Struct
215766
+ """
215767
+ ...
215768
+
215769
+ @classmethod
215770
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
215771
+ """
215772
+
215773
+ :param id: The RNA type identifier.
215774
+ :type id: str | None
215775
+ :param default:
215776
+ :return: The class or default when not found.
215777
+ :rtype: typing.Any
215778
+ """
215779
+ ...
215780
+
215644
215781
  class GeometryNodeIndexOfNearest(GeometryNode, NodeInternal, Node, bpy_struct):
215645
215782
  """Find the nearest element in a group. Similar to the "Sample Nearest" node"""
215646
215783
 
@@ -233955,6 +234092,8 @@ NODE_MT_category_compositor_utilities: bl_ui.node_add_menu_compositor.NODE_MT_ca
233955
234092
 
233956
234093
  NODE_MT_category_compositor_vector: bl_ui.node_add_menu_compositor.NODE_MT_category_compositor_vector
233957
234094
 
234095
+ NODE_MT_category_import: bl_ui.node_add_menu_geometry.NODE_MT_category_import
234096
+
233958
234097
  NODE_MT_category_layout: bl_ui.node_add_menu.NODE_MT_category_layout
233959
234098
 
233960
234099
  NODE_MT_category_shader_color: bl_ui.node_add_menu_shader.NODE_MT_category_shader_color
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240609
3
+ Version: 20240612
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
@@ -1,7 +1,7 @@
1
1
  _bpy_internal/__init__.pyi,sha256=9YzQzXyPZzCgqZm04Y1fR5FQV1eO37EO4ww31f-5nuU,156
2
2
  _bpy_internal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  _bpy_internal/freedesktop/__init__.pyi,sha256=Q9rj2oTgTavt1KGhDB3vipL5nJ1WDLYwsWuae1GzV5U,858
4
- addon_utils/__init__.pyi,sha256=r_LYRy5l01bb2h_7LRtdtProsZg9ImLx9XtOo7jWGOw,1924
4
+ addon_utils/__init__.pyi,sha256=R4k6nv0oHdpapTQdV_B9q-vDN-YWqRsdECpS3Wgez-8,1896
5
5
  addon_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  animsys_refactor/__init__.pyi,sha256=lZA8a5Poe0YPqbjRFL6jgJ22YQm-yolRNftHG9uO53Q,723
7
7
  animsys_refactor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -89,10 +89,10 @@ bl_ui/__init__.pyi,sha256=PVcA-iIFi-eJJ9r3ZD93m7v_CX0EJDsMT6Skc90goEY,20292
89
89
  bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
90
  bl_ui/anim/__init__.pyi,sha256=xhW_YrM0Ff1eupC2lvwkpr5IwX8v_v6DGNaF8vLcxr4,7668
91
91
  bl_ui/asset_shelf/__init__.pyi,sha256=HztdIjmsqLm_jhZhChKREICK86WnEKPMW0HAd3gfb-A,5887
92
- bl_ui/generic_ui_list/__init__.pyi,sha256=EUU1e9QwH_ucdvgMuKWj6khISfKiRabgZOS_NtiYovw,19691
92
+ bl_ui/generic_ui_list/__init__.pyi,sha256=wiHVG8tUGH08FXberdkon893hE-KQOC-wcQdPhQRIds,19691
93
93
  bl_ui/node_add_menu/__init__.pyi,sha256=pr8Px9LqhNLN8sHcvVQjQncYK3Hp6MYuY1EMWc_PeVs,8170
94
94
  bl_ui/node_add_menu_compositor/__init__.pyi,sha256=1htwYayZz12_JpOtdunl0xWMTmOHJLdcjqZEkuyuAhk,135924
95
- bl_ui/node_add_menu_geometry/__init__.pyi,sha256=XADcpeSE36KVkdkyVt3jgA1uXNEgZf9f0Jt0sfIpxX4,362115
95
+ bl_ui/node_add_menu_geometry/__init__.pyi,sha256=xp4IxjFxw6FrNSw744Y1AAiFeQ8p7IlHUAGo0nmp3Mo,369641
96
96
  bl_ui/node_add_menu_shader/__init__.pyi,sha256=W7-6zMdXfgobkWT9lOvABWiqpEtmVQ5pNzjVCJYx3YE,75872
97
97
  bl_ui/node_add_menu_texture/__init__.pyi,sha256=lj6RzPOq4JJ4XH59SqhKPlhp7ExGeyOYITq0bU4F_7w,67986
98
98
  bl_ui/properties_animviz/__init__.pyi,sha256=NqoHCj7qoQpY9ByEYeVl6QabiafpiXW5omw8DviImF8,754
@@ -176,7 +176,7 @@ bmesh/__init__.pyi,sha256=jLVw2jRJGXC8XUX1HHdf32PfZK8_pvQ8U6E4w5Du2yc,1558
176
176
  bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
177
177
  bmesh/geometry/__init__.pyi,sha256=T6ho6w7oPVgee1HhzcAN1hGWHO8Ev4BbrFy52eoRXfw,733
178
178
  bmesh/ops/__init__.pyi,sha256=Q4x5CLByYTtOC0bj3l2fqR2nKFwR0-01wuGK3gE1UKg,72717
179
- bmesh/types/__init__.pyi,sha256=UdETqLNJanySM0g14GGepx4Go5XnlM-4CFj_7F6TQtY,40360
179
+ bmesh/types/__init__.pyi,sha256=yTGEbDBhCymw5b5xXMNQBdxFLBvSU--IEC66JdA8DFI,40405
180
180
  bmesh/utils/__init__.pyi,sha256=3viQcFEX2UYApfWKxgja5prZVYtj8cqax7Vmwzgqpxc,6111
181
181
  bpy/__init__.pyi,sha256=_aPxZG75j_LcawPviW9vM5kU2SSZvHl_1VmUWIfHPKE,472
182
182
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -184,7 +184,7 @@ bpy/app/__init__.pyi,sha256=pj0HIrral4fzdbeDqQ9LykXek4cco7rHvxOR-4gK0V8,8010
184
184
  bpy/app/handlers/__init__.pyi,sha256=j21kIsAeKSjvaqulN5vc2UqORnuvNF7H9Qk2PC11BKs,6617
185
185
  bpy/app/icons/__init__.pyi,sha256=IMFPFBIe9v1hLO3uZZ9gNT5WTaq361zZ6WkAf4aHKXo,1115
186
186
  bpy/app/timers/__init__.pyi,sha256=znR1vA30-iBhWyJQ_fl3LaxU1kw23EntQjnMZe3yN-Q,2179
187
- bpy/app/translations/__init__.pyi,sha256=WGPnipHE0xa8pZGS6y1oyqFSVANXmo0PZu_1wnrDQq4,6490
187
+ bpy/app/translations/__init__.pyi,sha256=6-uDELf7EgPXpuUqLBqzQFoQojoZx7Gse-vVjgZ62eU,6949
188
188
  bpy/msgbus/__init__.pyi,sha256=xGJiEgmZabpBe3gibBwTAmv2rpnyed7-VDvzJksj-uI,2692
189
189
  bpy/ops/__init__.pyi,sha256=zAzAlBX3UsdWGkrnusYlsvwHylfvlMjyPKYgXpdY4w8,4646
190
190
  bpy/ops/action/__init__.pyi,sha256=EMefp_n2m4eVi1xpBR0um_RYHwb5NpGXiaaQMvlmG0E,23479
@@ -208,7 +208,7 @@ bpy/ops/dpaint/__init__.pyi,sha256=p2GNDiQaiN6ti8NDWiHfw_DEBoOegGy9HlMcPF-iWU4,2
208
208
  bpy/ops/ed/__init__.pyi,sha256=Kp9GQKYCiu0Omo2lss75ZpUOPb3-LX570t5TJsd6bUI,9462
209
209
  bpy/ops/export_anim/__init__.pyi,sha256=3XjL-aY3D37MQCAkSVlHL0gYNK0_JDiMdBU4BR7vh6o,2292
210
210
  bpy/ops/export_scene/__init__.pyi,sha256=HNiXZiVt0s-vLCIBjCciZ4C2EQ5_4sncF0UxOKLnK5w,40180
211
- bpy/ops/extensions/__init__.pyi,sha256=WiWyGUsCse4Scqb_eS91cEY4cefDuAeXFHdl2jGBGMs,16405
211
+ bpy/ops/extensions/__init__.pyi,sha256=MiRuTDe_INKx4KzZ_HoktyK_i7Yw2feCbIVFfc3Wyy8,17381
212
212
  bpy/ops/file/__init__.pyi,sha256=tt5ndw1Pks3hgy86NBSvKrxWX15StN29wjCk7Kn3o-s,25833
213
213
  bpy/ops/fluid/__init__.pyi,sha256=BlftRcURUvMv94-FhEOTOrmRS5w2sz6-GoyEaBp41H4,5788
214
214
  bpy/ops/font/__init__.pyi,sha256=pZOadqQH-I2tQqEZLPD2oMOREynvAFtb-M3rLJkGr3c,18752
@@ -216,7 +216,7 @@ bpy/ops/geometry/__init__.pyi,sha256=_RjcXX1js9nx5AzfYNwT7St7ePJ5-WZhqan_auY4EK8
216
216
  bpy/ops/gizmogroup/__init__.pyi,sha256=DFmKRtSU4CC-ol2ze7F1ck0sWjcxuvxmSEN3v3QMSMs,1811
217
217
  bpy/ops/gpencil/__init__.pyi,sha256=yJo5Wm_TiefXPVqNtCRfI45l5xBMdMH0KONs2McpH2k,110759
218
218
  bpy/ops/graph/__init__.pyi,sha256=KapDjbMboo70TFOvdRHVs4U4Dfik40jqoSCzXn7tqL4,51146
219
- bpy/ops/grease_pencil/__init__.pyi,sha256=QGluB0Xa1Mf5gqKNf2rWs4ccJRVwTyppnG0X7lk6UYw,43499
219
+ bpy/ops/grease_pencil/__init__.pyi,sha256=ElkL6h1Elepa5v5oC1m9KuHqIQazGKyO6Sko_9JIdJw,43996
220
220
  bpy/ops/image/__init__.pyi,sha256=ZZsr3kM5O0FwWIlc_z0imE-1tmoYRsCvXDwvdVe2f70,62560
221
221
  bpy/ops/import_anim/__init__.pyi,sha256=7mM5oQrn97txefqTHnT4L89ySHfZ2Ic8Sgy2xfChrV8,3077
222
222
  bpy/ops/import_curve/__init__.pyi,sha256=zEW4XZeySdCypFeX7yOtRDbfyblTYthZ8nAf0uLiWkw,780
@@ -245,7 +245,7 @@ bpy/ops/rigidbody/__init__.pyi,sha256=rjEuh-VB4nFizamRINoUcD0f3yQQSGUsyhtLaHHH8F
245
245
  bpy/ops/scene/__init__.pyi,sha256=V2PlwALbX9FOX95GNASDro44MJiotsI5y4eaK909aDw,19259
246
246
  bpy/ops/screen/__init__.pyi,sha256=AkIG3m32oYbu01cVjsyzsoY8emeZ5gm81WisxoZUtnc,26934
247
247
  bpy/ops/script/__init__.pyi,sha256=zx0l2zd8NCB4rYJtvluu_-V_AAlAB2trO8OTAceD7Ws,1633
248
- bpy/ops/sculpt/__init__.pyi,sha256=kfm1w52cEsLOTrHvWnSNW7SAN9NmwN5sThv3bkEguN0,46899
248
+ bpy/ops/sculpt/__init__.pyi,sha256=O2DZCGps8fHmNAxxJFVFc37q5OeJAeWIyeYo4uSGA30,46900
249
249
  bpy/ops/sculpt_curves/__init__.pyi,sha256=pXk27y85ccp9YhH8cQYvc9_sXIopuHC_MHC-wPu5jEI,3338
250
250
  bpy/ops/sequencer/__init__.pyi,sha256=HFBW_FNCBCnX9MzqbWkmkyDQS5QWI_acpj86Jzl1YVg,86877
251
251
  bpy/ops/sound/__init__.pyi,sha256=WKCWrUc02qdpr7dzCVS_h6RANlu-cjIm_ytPsLCSSp0,18135
@@ -264,8 +264,8 @@ bpy/ops/wm/__init__.pyi,sha256=NFtKpbKc-S6LtRG0RpsdFhIPdNMAmaQMPNvShYfEDUQ,23619
264
264
  bpy/ops/workspace/__init__.pyi,sha256=5meuBP_QWCDCkoE2vQqdgBnkeRVsdoOvgqsDqZ1pfzE,3316
265
265
  bpy/ops/world/__init__.pyi,sha256=imGbkOZ4Z_mNMwg2TwfpPf1DeGiige4UE-vc9991_tk,1032
266
266
  bpy/path/__init__.pyi,sha256=_sJAmwZHhmcIXbchob_87KT_Nyv6R_qrX76gy9IbDRk,11515
267
- bpy/props/__init__.pyi,sha256=zu1VsqE0gJ6OoBI_ZkYIW_WodAZ2H-0CuESfQDDhFkM,29002
268
- bpy/types/__init__.pyi,sha256=wIM09gfJDD0Y46DtYE11K2requaoCNUWlNV_irKtnqQ,5204347
267
+ bpy/props/__init__.pyi,sha256=vJGG9vmfN5MAwjlFMyI6LxKNJAIzPrhgWA4bPz08dQY,29550
268
+ bpy/types/__init__.pyi,sha256=JeBI5UA00e40PgEOyukAdXvRwGAXdSaFSKPR8e5TRhY,5207785
269
269
  bpy/utils/__init__.pyi,sha256=j40qxVYp__ZU4OCAG7Vmw9IlI6Tj1yIm3SduACnsu4k,18625
270
270
  bpy/utils/previews/__init__.pyi,sha256=odPazdv-bjKEVpeX-KfaDGZe5rKlMT11zL_q1SgPK3U,4255
271
271
  bpy/utils/units/__init__.pyi,sha256=Mf5e9M8OwkE2zC-rs5CVV7NfobaI7LQkU0v7u-z9xwI,2655
@@ -351,7 +351,7 @@ rna_xml/__init__.pyi,sha256=0qo0Lc6fTAAUSnHNIy0caLHVgK6-hk1havURr61jizM,601
351
351
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
352
352
  sys_info/__init__.pyi,sha256=9MR_HOycufd8IKZQf-QDqUqE8Aj1D8n_Pfvi9wEKtvo,164
353
353
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
354
- fake_bpy_module-20240609.dist-info/METADATA,sha256=HXaMT92S4hZnLAn2H6C2PuG5ZWlRTH-wzoOhB_iIfcQ,7315
355
- fake_bpy_module-20240609.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
356
- fake_bpy_module-20240609.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
357
- fake_bpy_module-20240609.dist-info/RECORD,,
354
+ fake_bpy_module-20240612.dist-info/METADATA,sha256=i3VOPQayMRFDB_E23H-kOxTFsF3ZYAG5sRfhvoFS9EU,7315
355
+ fake_bpy_module-20240612.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
356
+ fake_bpy_module-20240612.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
357
+ fake_bpy_module-20240612.dist-info/RECORD,,