fake-bpy-module 20240608__py3-none-any.whl → 20240611__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 +2 -2
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu_geometry/__init__.pyi +273 -2
- bl_ui/space_userpref/__init__.pyi +270 -0
- bmesh/types/__init__.pyi +7 -4
- bpy/app/timers/__init__.pyi +9 -1
- bpy/ops/extensions/__init__.pyi +29 -1
- bpy/ops/preferences/__init__.pyi +8 -14
- bpy/ops/sculpt/__init__.pyi +1 -1
- bpy/props/__init__.pyi +17 -4
- bpy/types/__init__.pyi +175 -34
- {fake_bpy_module-20240608.dist-info → fake_bpy_module-20240611.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240608.dist-info → fake_bpy_module-20240611.dist-info}/RECORD +16 -16
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240608.dist-info → fake_bpy_module-20240611.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240608.dist-info → fake_bpy_module-20240611.dist-info}/top_level.txt +0 -0
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={
|
|
65
|
-
def modules_refresh(module_cache={
|
|
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:
|
|
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:
|
|
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,
|
|
7909
|
+
def draw(self, context):
|
|
7639
7910
|
"""
|
|
7640
7911
|
|
|
7641
|
-
:param
|
|
7912
|
+
:param context:
|
|
7642
7913
|
"""
|
|
7643
7914
|
...
|
|
7644
7915
|
|
|
@@ -940,6 +940,276 @@ class USERPREF_MT_extensions_active_repo(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
940
940
|
"""
|
|
941
941
|
...
|
|
942
942
|
|
|
943
|
+
class USERPREF_MT_extensions_active_repo_remove(bpy_types.Menu, bpy_types._GenericUI):
|
|
944
|
+
bl_label: typing.Any
|
|
945
|
+
bl_rna: typing.Any
|
|
946
|
+
id_data: typing.Any
|
|
947
|
+
|
|
948
|
+
def append(self, draw_func):
|
|
949
|
+
"""Append a draw function to this menu,
|
|
950
|
+
takes the same arguments as the menus draw function
|
|
951
|
+
|
|
952
|
+
:param draw_func:
|
|
953
|
+
"""
|
|
954
|
+
...
|
|
955
|
+
|
|
956
|
+
def as_pointer(self) -> int:
|
|
957
|
+
"""Returns the memory address which holds a pointer to Blender's internal data
|
|
958
|
+
|
|
959
|
+
:return: int (memory address).
|
|
960
|
+
:rtype: int
|
|
961
|
+
"""
|
|
962
|
+
...
|
|
963
|
+
|
|
964
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
965
|
+
"""
|
|
966
|
+
|
|
967
|
+
:return: The RNA type or default when not found.
|
|
968
|
+
:rtype: bpy.types.Struct
|
|
969
|
+
"""
|
|
970
|
+
...
|
|
971
|
+
|
|
972
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
973
|
+
"""
|
|
974
|
+
|
|
975
|
+
:return: The class or default when not found.
|
|
976
|
+
:rtype: typing.Any
|
|
977
|
+
"""
|
|
978
|
+
...
|
|
979
|
+
|
|
980
|
+
def draw(self, context):
|
|
981
|
+
"""
|
|
982
|
+
|
|
983
|
+
:param context:
|
|
984
|
+
"""
|
|
985
|
+
...
|
|
986
|
+
|
|
987
|
+
def draw_collapsible(self, context, layout):
|
|
988
|
+
"""
|
|
989
|
+
|
|
990
|
+
:param context:
|
|
991
|
+
:param layout:
|
|
992
|
+
"""
|
|
993
|
+
...
|
|
994
|
+
|
|
995
|
+
def draw_preset(self, _context):
|
|
996
|
+
"""Define these on the subclass:
|
|
997
|
+
- preset_operator (string)
|
|
998
|
+
- preset_subdir (string)Optionally:
|
|
999
|
+
- preset_add_operator (string)
|
|
1000
|
+
- preset_extensions (set of strings)
|
|
1001
|
+
- preset_operator_defaults (dict of keyword args)
|
|
1002
|
+
|
|
1003
|
+
:param _context:
|
|
1004
|
+
"""
|
|
1005
|
+
...
|
|
1006
|
+
|
|
1007
|
+
def driver_add(self) -> bpy.types.FCurve:
|
|
1008
|
+
"""Adds driver(s) to the given property
|
|
1009
|
+
|
|
1010
|
+
:return: The driver(s) added.
|
|
1011
|
+
:rtype: bpy.types.FCurve
|
|
1012
|
+
"""
|
|
1013
|
+
...
|
|
1014
|
+
|
|
1015
|
+
def driver_remove(self) -> bool:
|
|
1016
|
+
"""Remove driver(s) from the given property
|
|
1017
|
+
|
|
1018
|
+
:return: Success of driver removal.
|
|
1019
|
+
:rtype: bool
|
|
1020
|
+
"""
|
|
1021
|
+
...
|
|
1022
|
+
|
|
1023
|
+
def get(self):
|
|
1024
|
+
"""Returns the value of the custom property assigned to key or default
|
|
1025
|
+
when not found (matches Python's dictionary function of the same name).
|
|
1026
|
+
|
|
1027
|
+
"""
|
|
1028
|
+
...
|
|
1029
|
+
|
|
1030
|
+
def id_properties_clear(self):
|
|
1031
|
+
"""
|
|
1032
|
+
|
|
1033
|
+
:return: Remove the parent group for an RNA struct's custom IDProperties.
|
|
1034
|
+
"""
|
|
1035
|
+
...
|
|
1036
|
+
|
|
1037
|
+
def id_properties_ensure(self):
|
|
1038
|
+
"""
|
|
1039
|
+
|
|
1040
|
+
:return: the parent group for an RNA struct's custom IDProperties.
|
|
1041
|
+
"""
|
|
1042
|
+
...
|
|
1043
|
+
|
|
1044
|
+
def id_properties_ui(self):
|
|
1045
|
+
"""
|
|
1046
|
+
|
|
1047
|
+
:return: Return an object used to manage an IDProperty's UI data.
|
|
1048
|
+
"""
|
|
1049
|
+
...
|
|
1050
|
+
|
|
1051
|
+
def is_extended(self): ...
|
|
1052
|
+
def is_property_hidden(self) -> bool:
|
|
1053
|
+
"""Check if a property is hidden.
|
|
1054
|
+
|
|
1055
|
+
:return: True when the property is hidden.
|
|
1056
|
+
:rtype: bool
|
|
1057
|
+
"""
|
|
1058
|
+
...
|
|
1059
|
+
|
|
1060
|
+
def is_property_overridable_library(self) -> bool:
|
|
1061
|
+
"""Check if a property is overridable.
|
|
1062
|
+
|
|
1063
|
+
:return: True when the property is overridable.
|
|
1064
|
+
:rtype: bool
|
|
1065
|
+
"""
|
|
1066
|
+
...
|
|
1067
|
+
|
|
1068
|
+
def is_property_readonly(self) -> bool:
|
|
1069
|
+
"""Check if a property is readonly.
|
|
1070
|
+
|
|
1071
|
+
:return: True when the property is readonly (not writable).
|
|
1072
|
+
:rtype: bool
|
|
1073
|
+
"""
|
|
1074
|
+
...
|
|
1075
|
+
|
|
1076
|
+
def is_property_set(self) -> bool:
|
|
1077
|
+
"""Check if a property is set, use for testing operator properties.
|
|
1078
|
+
|
|
1079
|
+
:return: True when the property has been set.
|
|
1080
|
+
:rtype: bool
|
|
1081
|
+
"""
|
|
1082
|
+
...
|
|
1083
|
+
|
|
1084
|
+
def items(self):
|
|
1085
|
+
"""Returns the items of this objects custom properties (matches Python's
|
|
1086
|
+
dictionary function of the same name).
|
|
1087
|
+
|
|
1088
|
+
:return: custom property key, value pairs.
|
|
1089
|
+
"""
|
|
1090
|
+
...
|
|
1091
|
+
|
|
1092
|
+
def keyframe_delete(self) -> bool:
|
|
1093
|
+
"""Remove a keyframe from this properties fcurve.
|
|
1094
|
+
|
|
1095
|
+
:return: Success of keyframe deletion.
|
|
1096
|
+
:rtype: bool
|
|
1097
|
+
"""
|
|
1098
|
+
...
|
|
1099
|
+
|
|
1100
|
+
def keyframe_insert(self) -> bool:
|
|
1101
|
+
"""Insert a keyframe on the property given, adding fcurves and animation data when necessary.
|
|
1102
|
+
|
|
1103
|
+
:return: Success of keyframe insertion.
|
|
1104
|
+
:rtype: bool
|
|
1105
|
+
"""
|
|
1106
|
+
...
|
|
1107
|
+
|
|
1108
|
+
def keys(self):
|
|
1109
|
+
"""Returns the keys of this objects custom properties (matches Python's
|
|
1110
|
+
dictionary function of the same name).
|
|
1111
|
+
|
|
1112
|
+
:return: custom property keys.
|
|
1113
|
+
"""
|
|
1114
|
+
...
|
|
1115
|
+
|
|
1116
|
+
def path_from_id(self) -> str:
|
|
1117
|
+
"""Returns the data path from the ID to this object (string).
|
|
1118
|
+
|
|
1119
|
+
:return: The path from `bpy.types.bpy_struct.id_data`
|
|
1120
|
+
to this struct and property (when given).
|
|
1121
|
+
:rtype: str
|
|
1122
|
+
"""
|
|
1123
|
+
...
|
|
1124
|
+
|
|
1125
|
+
def path_menu(
|
|
1126
|
+
self,
|
|
1127
|
+
searchpaths: list[str],
|
|
1128
|
+
operator: str,
|
|
1129
|
+
props_default: dict = None,
|
|
1130
|
+
prop_filepath: str | None = "filepath",
|
|
1131
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
1132
|
+
filter_path=None,
|
|
1133
|
+
display_name: collections.abc.Callable | None = None,
|
|
1134
|
+
add_operator=None,
|
|
1135
|
+
add_operator_props=None,
|
|
1136
|
+
):
|
|
1137
|
+
"""Populate a menu from a list of paths.
|
|
1138
|
+
|
|
1139
|
+
:param searchpaths: Paths to scan.
|
|
1140
|
+
:type searchpaths: list[str]
|
|
1141
|
+
:param operator: The operator id to use with each file.
|
|
1142
|
+
:type operator: str
|
|
1143
|
+
:param props_default: Properties to assign to each operator.
|
|
1144
|
+
:type props_default: dict
|
|
1145
|
+
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
1146
|
+
:type prop_filepath: str | None
|
|
1147
|
+
:param filter_ext: Optional callback that takes the file extensions.
|
|
1148
|
+
|
|
1149
|
+
Returning false excludes the file from the list.
|
|
1150
|
+
:type filter_ext: collections.abc.Callable | None
|
|
1151
|
+
:param filter_path:
|
|
1152
|
+
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
1153
|
+
:type display_name: collections.abc.Callable | None
|
|
1154
|
+
:param add_operator:
|
|
1155
|
+
:param add_operator_props:
|
|
1156
|
+
"""
|
|
1157
|
+
...
|
|
1158
|
+
|
|
1159
|
+
def path_resolve(self):
|
|
1160
|
+
"""Returns the property from the path, raise an exception when not found."""
|
|
1161
|
+
...
|
|
1162
|
+
|
|
1163
|
+
def pop(self):
|
|
1164
|
+
"""Remove and return the value of the custom property assigned to key or default
|
|
1165
|
+
when not found (matches Python's dictionary function of the same name).
|
|
1166
|
+
|
|
1167
|
+
"""
|
|
1168
|
+
...
|
|
1169
|
+
|
|
1170
|
+
def prepend(self, draw_func):
|
|
1171
|
+
"""Prepend a draw function to this menu, takes the same arguments as
|
|
1172
|
+
the menus draw function
|
|
1173
|
+
|
|
1174
|
+
:param draw_func:
|
|
1175
|
+
"""
|
|
1176
|
+
...
|
|
1177
|
+
|
|
1178
|
+
def property_overridable_library_set(self) -> bool:
|
|
1179
|
+
"""Define a property as overridable or not (only for custom properties!).
|
|
1180
|
+
|
|
1181
|
+
:return: True when the overridable status of the property was successfully set.
|
|
1182
|
+
:rtype: bool
|
|
1183
|
+
"""
|
|
1184
|
+
...
|
|
1185
|
+
|
|
1186
|
+
def property_unset(self):
|
|
1187
|
+
"""Unset a property, will use default value afterward."""
|
|
1188
|
+
...
|
|
1189
|
+
|
|
1190
|
+
def remove(self, draw_func):
|
|
1191
|
+
"""Remove a draw function that has been added to this menu
|
|
1192
|
+
|
|
1193
|
+
:param draw_func:
|
|
1194
|
+
"""
|
|
1195
|
+
...
|
|
1196
|
+
|
|
1197
|
+
def type_recast(self):
|
|
1198
|
+
"""Return a new instance, this is needed because types
|
|
1199
|
+
such as textures can be changed at runtime.
|
|
1200
|
+
|
|
1201
|
+
:return: a new instance of this object with the type initialized again.
|
|
1202
|
+
"""
|
|
1203
|
+
...
|
|
1204
|
+
|
|
1205
|
+
def values(self):
|
|
1206
|
+
"""Returns the values of this objects custom properties (matches Python's
|
|
1207
|
+
dictionary function of the same name).
|
|
1208
|
+
|
|
1209
|
+
:return: custom property values.
|
|
1210
|
+
"""
|
|
1211
|
+
...
|
|
1212
|
+
|
|
943
1213
|
class USERPREF_MT_interface_theme_presets(bpy_types.Menu, bpy_types._GenericUI):
|
|
944
1214
|
bl_label: typing.Any
|
|
945
1215
|
bl_rna: typing.Any
|
bmesh/types/__init__.pyi
CHANGED
|
@@ -297,10 +297,13 @@ class BMEdgeSeq:
|
|
|
297
297
|
"""Initialize the index values of this sequence.This is the equivalent of looping over all elements and assigning the index values."""
|
|
298
298
|
...
|
|
299
299
|
|
|
300
|
-
def new(
|
|
300
|
+
def new(
|
|
301
|
+
self, verts: tuple[BMVert, BMVert], example: BMEdge | None = None
|
|
302
|
+
) -> BMEdge:
|
|
301
303
|
"""Create a new edge from a given pair of verts.
|
|
302
304
|
|
|
303
305
|
:param verts: Vertex pair.
|
|
306
|
+
:type verts: tuple[BMVert, BMVert]
|
|
304
307
|
:param example: Existing edge to initialize settings (optional argument).
|
|
305
308
|
:type example: BMEdge | None
|
|
306
309
|
:return: The newly created edge.
|
|
@@ -1355,11 +1358,11 @@ class BMVert:
|
|
|
1355
1358
|
"""
|
|
1356
1359
|
...
|
|
1357
1360
|
|
|
1358
|
-
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):
|
|
1359
1362
|
"""Interpolate the customdata from a vert between 2 other verts.
|
|
1360
1363
|
|
|
1361
|
-
:param vert_pair: The
|
|
1362
|
-
:type vert_pair: BMVert
|
|
1364
|
+
:param vert_pair: The verts between which to interpolate data from.
|
|
1365
|
+
:type vert_pair: tuple[BMVert, BMVert]
|
|
1363
1366
|
:param fac:
|
|
1364
1367
|
:type fac: float
|
|
1365
1368
|
"""
|
bpy/app/timers/__init__.pyi
CHANGED
|
@@ -47,7 +47,11 @@ def is_registered(function: collections.abc.Callable[[], float]) -> bool:
|
|
|
47
47
|
|
|
48
48
|
...
|
|
49
49
|
|
|
50
|
-
def register(
|
|
50
|
+
def register(
|
|
51
|
+
function: collections.abc.Callable[[], float],
|
|
52
|
+
first_interval: float | None = 0,
|
|
53
|
+
persistent: bool | None = False,
|
|
54
|
+
):
|
|
51
55
|
"""Add a new function that will be called after the specified amount of seconds.
|
|
52
56
|
The function gets no arguments and is expected to return either None or a float.
|
|
53
57
|
If None is returned, the timer will be unregistered.
|
|
@@ -56,6 +60,10 @@ def register(function: collections.abc.Callable[[], float]):
|
|
|
56
60
|
|
|
57
61
|
:param function: The function that should called.
|
|
58
62
|
:type function: collections.abc.Callable[[], float]
|
|
63
|
+
:param first_interval: Seconds until the callback should be called the first time.
|
|
64
|
+
:type first_interval: float | None
|
|
65
|
+
:param persistent: Don't remove timer when a new file is loaded.
|
|
66
|
+
:type persistent: bool | None
|
|
59
67
|
"""
|
|
60
68
|
|
|
61
69
|
...
|
bpy/ops/extensions/__init__.pyi
CHANGED
|
@@ -311,7 +311,7 @@ def package_uninstall(
|
|
|
311
311
|
repo_index: typing.Any | None = -1,
|
|
312
312
|
pkg_id: str | typing.Any = "",
|
|
313
313
|
):
|
|
314
|
-
"""
|
|
314
|
+
"""Disable and uninstall the extension
|
|
315
315
|
|
|
316
316
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
317
317
|
:type execution_context: int | str | None
|
|
@@ -340,6 +340,20 @@ def package_uninstall_marked(
|
|
|
340
340
|
|
|
341
341
|
...
|
|
342
342
|
|
|
343
|
+
def package_uninstall_system(
|
|
344
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
345
|
+
execution_context: int | str | None = None,
|
|
346
|
+
undo: bool | None = None,
|
|
347
|
+
):
|
|
348
|
+
"""Undocumented, consider contributing.
|
|
349
|
+
|
|
350
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
351
|
+
:type execution_context: int | str | None
|
|
352
|
+
:type undo: bool | None
|
|
353
|
+
"""
|
|
354
|
+
|
|
355
|
+
...
|
|
356
|
+
|
|
343
357
|
def package_upgrade_all(
|
|
344
358
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
345
359
|
execution_context: int | str | None = None,
|
|
@@ -372,6 +386,20 @@ def repo_lock(
|
|
|
372
386
|
|
|
373
387
|
...
|
|
374
388
|
|
|
389
|
+
def repo_refresh_all(
|
|
390
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
391
|
+
execution_context: int | str | None = None,
|
|
392
|
+
undo: bool | None = None,
|
|
393
|
+
):
|
|
394
|
+
"""Scan extension & legacy add-ons for changes to modules & meta-data (similar to restarting). Any issues are reported as warnings
|
|
395
|
+
|
|
396
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
397
|
+
:type execution_context: int | str | None
|
|
398
|
+
:type undo: bool | None
|
|
399
|
+
"""
|
|
400
|
+
|
|
401
|
+
...
|
|
402
|
+
|
|
375
403
|
def repo_sync(
|
|
376
404
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
377
405
|
execution_context: int | str | None = None,
|
bpy/ops/preferences/__init__.pyi
CHANGED
|
@@ -397,23 +397,17 @@ def extension_repo_remove(
|
|
|
397
397
|
undo: bool | None = None,
|
|
398
398
|
*,
|
|
399
399
|
index: typing.Any | None = 0,
|
|
400
|
-
|
|
400
|
+
remove_files: bool | typing.Any | None = False,
|
|
401
401
|
):
|
|
402
402
|
"""Remove an extension repository
|
|
403
403
|
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
REPO_ONLY
|
|
412
|
-
Remove Repository.
|
|
413
|
-
|
|
414
|
-
REPO_AND_DIRECTORY
|
|
415
|
-
Remove Repository & Files -- Delete all associated local files when removing.
|
|
416
|
-
:type type: str | None
|
|
404
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
405
|
+
:type execution_context: int | str | None
|
|
406
|
+
:type undo: bool | None
|
|
407
|
+
:param index: Index
|
|
408
|
+
:type index: typing.Any | None
|
|
409
|
+
:param remove_files: Remove Files, Remove extension files when removing the repository
|
|
410
|
+
:type remove_files: bool | typing.Any | None
|
|
417
411
|
"""
|
|
418
412
|
|
|
419
413
|
...
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -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
|
|
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.
|
|
221
|
-
|
|
222
|
-
|
|
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.
|
|
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
|
|
@@ -98641,7 +98726,7 @@ class bpy_prop_collection(typing.Generic[GenericType1]):
|
|
|
98641
98726
|
"""Return the identifiers of collection members
|
|
98642
98727
|
(matching Python's dict.items() functionality).
|
|
98643
98728
|
|
|
98644
|
-
:return:
|
|
98729
|
+
:return: (key, value) pairs for each member of this collection.
|
|
98645
98730
|
:rtype: list[tuple[str, GenericType1]]
|
|
98646
98731
|
"""
|
|
98647
98732
|
...
|
|
@@ -98659,7 +98744,7 @@ class bpy_prop_collection(typing.Generic[GenericType1]):
|
|
|
98659
98744
|
"""Return the values of collection
|
|
98660
98745
|
(matching Python's dict.values() functionality).
|
|
98661
98746
|
|
|
98662
|
-
:return:
|
|
98747
|
+
:return: the members of this collection.
|
|
98663
98748
|
:rtype: list[GenericType1]
|
|
98664
98749
|
"""
|
|
98665
98750
|
...
|
|
@@ -133693,8 +133778,8 @@ class PreferencesExperimental(bpy_struct):
|
|
|
133693
133778
|
:type: bool
|
|
133694
133779
|
"""
|
|
133695
133780
|
|
|
133696
|
-
|
|
133697
|
-
"""
|
|
133781
|
+
use_extensions_debug: bool
|
|
133782
|
+
""" Extra debugging information & developer support utilities for extensions
|
|
133698
133783
|
|
|
133699
133784
|
:type: bool
|
|
133700
133785
|
"""
|
|
@@ -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
|
|
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
@@ -235193,6 +235332,8 @@ USERPREF_MT_editor_menus: bl_ui.space_userpref.USERPREF_MT_editor_menus
|
|
|
235193
235332
|
|
|
235194
235333
|
USERPREF_MT_extensions_active_repo: bl_ui.space_userpref.USERPREF_MT_extensions_active_repo
|
|
235195
235334
|
|
|
235335
|
+
USERPREF_MT_extensions_active_repo_remove: bl_ui.space_userpref.USERPREF_MT_extensions_active_repo_remove
|
|
235336
|
+
|
|
235196
235337
|
USERPREF_MT_interface_theme_presets: bl_ui.space_userpref.USERPREF_MT_interface_theme_presets
|
|
235197
235338
|
|
|
235198
235339
|
USERPREF_MT_keyconfigs: bl_ui.space_userpref.USERPREF_MT_keyconfigs
|
|
@@ -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=
|
|
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=
|
|
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=
|
|
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
|
|
@@ -159,7 +159,7 @@ bl_ui/space_time/__init__.pyi,sha256=iVKxpW960HHo304p_yNhcwNKaV-zjyVmfV6rFhO1lDU
|
|
|
159
159
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=4_lkUFwBtoZqh7hLHCnB3TTrNuUs0eNqG-P-5T1I1sY,5534
|
|
160
160
|
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=WmiZn4V262GOyTMfq7YAvHdUMu6jjfrQIrsZ20dGhDY,20867
|
|
161
161
|
bl_ui/space_topbar/__init__.pyi,sha256=5O2KeKSREgivzrKuXs1WRgHOpO7d58fvUfbW4ojuNN8,183460
|
|
162
|
-
bl_ui/space_userpref/__init__.pyi,sha256=
|
|
162
|
+
bl_ui/space_userpref/__init__.pyi,sha256=9ffFhZEicWlD_auPDowayHO4CVrf8CYenF1ze21-yB4,553909
|
|
163
163
|
bl_ui/space_view3d/__init__.pyi,sha256=Bcb1Y1Lab6fJeXc-OCE8KVxdvtV1uX4JKRXDFXzaJYw,1911638
|
|
164
164
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=OojxA1PFe3Ib828MbaQsIbn8OugDytc10bpbR0VJzIg,622883
|
|
165
165
|
bl_ui/temp_anim_layers/__init__.pyi,sha256=K2L2joXW9oCrHKbEX5ZsLUa3zABZ3NJ32YfJO_uwKSY,5947
|
|
@@ -176,14 +176,14 @@ 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=
|
|
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
|
|
183
183
|
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
|
-
bpy/app/timers/__init__.pyi,sha256=
|
|
186
|
+
bpy/app/timers/__init__.pyi,sha256=znR1vA30-iBhWyJQ_fl3LaxU1kw23EntQjnMZe3yN-Q,2179
|
|
187
187
|
bpy/app/translations/__init__.pyi,sha256=WGPnipHE0xa8pZGS6y1oyqFSVANXmo0PZu_1wnrDQq4,6490
|
|
188
188
|
bpy/msgbus/__init__.pyi,sha256=xGJiEgmZabpBe3gibBwTAmv2rpnyed7-VDvzJksj-uI,2692
|
|
189
189
|
bpy/ops/__init__.pyi,sha256=zAzAlBX3UsdWGkrnusYlsvwHylfvlMjyPKYgXpdY4w8,4646
|
|
@@ -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=
|
|
211
|
+
bpy/ops/extensions/__init__.pyi,sha256=VBa6TO8M6U30kbUR6du--L9ARzaH4nfhd26gbaHceps,16892
|
|
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
|
|
@@ -238,14 +238,14 @@ bpy/ops/palette/__init__.pyi,sha256=zrlQ_TwCGcjhmUURNUnrAuUIrWRgjTp2KrH07fbDUOM,
|
|
|
238
238
|
bpy/ops/particle/__init__.pyi,sha256=PtnBT6e4qfdqnj_gA9G-cl8qbMYKZeHZq7s1uvqYNPM,19311
|
|
239
239
|
bpy/ops/pose/__init__.pyi,sha256=RearLc25fHLPPwFXFVGZp6g7aP_IXYeVnSqfgUbJm5M,28487
|
|
240
240
|
bpy/ops/poselib/__init__.pyi,sha256=IWHKl49NXRnloN29rNVvzImj_Ufgc69yIOXQIiR4i_U,5601
|
|
241
|
-
bpy/ops/preferences/__init__.pyi,sha256=
|
|
241
|
+
bpy/ops/preferences/__init__.pyi,sha256=nolyW0t52m_JymdcKeGTx3OBl7hdPN8xovqb5lJ6ous,26789
|
|
242
242
|
bpy/ops/ptcache/__init__.pyi,sha256=djd55uF9NiWnihyU2hQ83D7NplLxQXk4zgU_US8u-LE,2994
|
|
243
243
|
bpy/ops/render/__init__.pyi,sha256=6yd6n_PozuV-bhR9xmDwt2zwE5VqSiKD-aR21EmX508,9453
|
|
244
244
|
bpy/ops/rigidbody/__init__.pyi,sha256=rjEuh-VB4nFizamRINoUcD0f3yQQSGUsyhtLaHHH8F4,8151
|
|
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=
|
|
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=
|
|
268
|
-
bpy/types/__init__.pyi,sha256=
|
|
267
|
+
bpy/props/__init__.pyi,sha256=vJGG9vmfN5MAwjlFMyI6LxKNJAIzPrhgWA4bPz08dQY,29550
|
|
268
|
+
bpy/types/__init__.pyi,sha256=CK66dy8oI4-l2UHaOaUN4yRZk09Se2XsxxC-qzoQzRA,5207681
|
|
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
|
|
@@ -302,7 +302,7 @@ freestyle/functions/__init__.pyi,sha256=ZXmo3TBOSEg7gDxSaAe1Who9s7XHOjiVwUnst275
|
|
|
302
302
|
freestyle/predicates/__init__.pyi,sha256=2VPAQ-M4LuOy6ANkIYLf5RIGABPYGeuwDh2wVLu22F4,13819
|
|
303
303
|
freestyle/shaders/__init__.pyi,sha256=VuHMETXrPC8vV4Texb-XGnoUOtSo0n_kigpTfqxFR-I,24803
|
|
304
304
|
freestyle/types/__init__.pyi,sha256=VCe-VgK250-VNWBE8Si61H3j2O7kTAGQ24M9QLEpEeU,100481
|
|
305
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
305
|
+
freestyle/utils/__init__.pyi,sha256=88ywLTyjnusOrhmIX8PAChcAkuygLC2sScCDY2QHb8Q,5390
|
|
306
306
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=D3585MnopiUbhFr2rpLcaUq570SFcCf3RhGod9iTsvI,3554
|
|
307
307
|
gpu/__init__.pyi,sha256=0ZBmaKVBFpRxYV4uvzmA-ZN6J-Q3j3_j3T8-YnPuhJ0,7956
|
|
308
308
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -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-
|
|
355
|
-
fake_bpy_module-
|
|
356
|
-
fake_bpy_module-
|
|
357
|
-
fake_bpy_module-
|
|
354
|
+
fake_bpy_module-20240611.dist-info/METADATA,sha256=YZwUvO6HvvIvJEZURaE118-vyzDSTYeUySH38ZuoZKw,7315
|
|
355
|
+
fake_bpy_module-20240611.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
356
|
+
fake_bpy_module-20240611.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
357
|
+
fake_bpy_module-20240611.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -160,7 +160,7 @@ def material_from_fedge(fe):
|
|
|
160
160
|
...
|
|
161
161
|
|
|
162
162
|
def normal_at_I0D(it): ...
|
|
163
|
-
def pairwise(iterable, types={
|
|
163
|
+
def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
|
|
164
164
|
"""Yields a tuple containing the previous and current object"""
|
|
165
165
|
|
|
166
166
|
...
|
|
File without changes
|
|
File without changes
|