fake-bpy-module 20240521__py3-none-any.whl → 20240523__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.
- bl_operators/world/__init__.pyi +1 -1
- bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -2
- bmesh/types/__init__.pyi +145 -58
- bpy/ops/preferences/__init__.pyi +6 -0
- bpy/ops/wm/__init__.pyi +12 -0
- bpy/ops/world/__init__.pyi +1 -1
- bpy/types/__init__.pyi +21 -0
- bpy_types/__init__.pyi +0 -49
- {fake_bpy_module-20240521.dist-info → fake_bpy_module-20240523.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240521.dist-info → fake_bpy_module-20240523.dist-info}/RECORD +12 -12
- {fake_bpy_module-20240521.dist-info → fake_bpy_module-20240523.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240521.dist-info → fake_bpy_module-20240523.dist-info}/top_level.txt +0 -0
bl_operators/world/__init__.pyi
CHANGED
|
@@ -7,7 +7,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
class WORLD_OT_convert_volume_to_mesh(bpy_types.Operator):
|
|
10
|
-
"""Convert the volume of a world to a mesh.The world's volume used to be rendered by EEVEE Legacy. Conversion is needed for it to render properly"""
|
|
10
|
+
"""Convert the volume of a world to a mesh. The world's volume used to be rendered by EEVEE Legacy. Conversion is needed for it to render properly"""
|
|
11
11
|
|
|
12
12
|
bl_idname: typing.Any
|
|
13
13
|
bl_label: typing.Any
|
|
@@ -869,8 +869,10 @@ class _defs_sequencer_generic:
|
|
|
869
869
|
translate: typing.Any
|
|
870
870
|
|
|
871
871
|
class _defs_sequencer_select:
|
|
872
|
-
|
|
873
|
-
|
|
872
|
+
box_preview: typing.Any
|
|
873
|
+
box_timeline: typing.Any
|
|
874
|
+
select_preview: typing.Any
|
|
875
|
+
select_timeline: typing.Any
|
|
874
876
|
|
|
875
877
|
class _defs_texture_paint:
|
|
876
878
|
def generate_from_brushes(self, context):
|
bmesh/types/__init__.pyi
CHANGED
|
@@ -776,95 +776,176 @@ class BMIter:
|
|
|
776
776
|
class BMLayerAccessEdge:
|
|
777
777
|
"""Exposes custom-data layer attributes."""
|
|
778
778
|
|
|
779
|
-
color:
|
|
780
|
-
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
779
|
+
color: BMLayerCollection
|
|
780
|
+
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
781
781
|
|
|
782
|
-
|
|
783
|
-
"""
|
|
782
|
+
:type: BMLayerCollection
|
|
783
|
+
"""
|
|
784
|
+
|
|
785
|
+
float: BMLayerCollection
|
|
786
|
+
""" Generic float custom-data layer.
|
|
787
|
+
|
|
788
|
+
:type: BMLayerCollection
|
|
789
|
+
"""
|
|
790
|
+
|
|
791
|
+
float_color: BMLayerCollection
|
|
792
|
+
""" Generic RGBA color with float precision custom-data layer.
|
|
793
|
+
|
|
794
|
+
:type: BMLayerCollection
|
|
795
|
+
"""
|
|
796
|
+
|
|
797
|
+
float_vector: BMLayerCollection
|
|
798
|
+
""" Generic 3D vector with float precision custom-data layer.
|
|
784
799
|
|
|
785
|
-
|
|
786
|
-
"""
|
|
800
|
+
:type: BMLayerCollection
|
|
801
|
+
"""
|
|
787
802
|
|
|
788
|
-
|
|
789
|
-
"""
|
|
803
|
+
freestyle: BMLayerCollection
|
|
804
|
+
""" Accessor for Freestyle edge layer.
|
|
790
805
|
|
|
791
|
-
|
|
792
|
-
"""
|
|
806
|
+
:type: BMLayerCollection
|
|
807
|
+
"""
|
|
793
808
|
|
|
794
|
-
int:
|
|
795
|
-
""" Generic int custom-data layer.
|
|
809
|
+
int: BMLayerCollection
|
|
810
|
+
""" Generic int custom-data layer.
|
|
796
811
|
|
|
797
|
-
|
|
798
|
-
"""
|
|
812
|
+
:type: BMLayerCollection
|
|
813
|
+
"""
|
|
814
|
+
|
|
815
|
+
string: BMLayerCollection
|
|
816
|
+
""" Generic string custom-data layer (exposed as bytes, 255 max length).
|
|
817
|
+
|
|
818
|
+
:type: BMLayerCollection
|
|
819
|
+
"""
|
|
799
820
|
|
|
800
821
|
class BMLayerAccessFace:
|
|
801
822
|
"""Exposes custom-data layer attributes."""
|
|
802
823
|
|
|
803
|
-
color:
|
|
804
|
-
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
824
|
+
color: BMLayerCollection
|
|
825
|
+
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
826
|
+
|
|
827
|
+
:type: BMLayerCollection
|
|
828
|
+
"""
|
|
829
|
+
|
|
830
|
+
float: BMLayerCollection
|
|
831
|
+
""" Generic float custom-data layer.
|
|
832
|
+
|
|
833
|
+
:type: BMLayerCollection
|
|
834
|
+
"""
|
|
835
|
+
|
|
836
|
+
float_color: BMLayerCollection
|
|
837
|
+
""" Generic RGBA color with float precision custom-data layer.
|
|
838
|
+
|
|
839
|
+
:type: BMLayerCollection
|
|
840
|
+
"""
|
|
841
|
+
|
|
842
|
+
float_vector: BMLayerCollection
|
|
843
|
+
""" Generic 3D vector with float precision custom-data layer.
|
|
805
844
|
|
|
806
|
-
|
|
807
|
-
"""
|
|
845
|
+
:type: BMLayerCollection
|
|
846
|
+
"""
|
|
808
847
|
|
|
809
|
-
|
|
810
|
-
"""
|
|
848
|
+
freestyle: BMLayerCollection
|
|
849
|
+
""" Accessor for Freestyle face layer.
|
|
811
850
|
|
|
812
|
-
|
|
813
|
-
"""
|
|
851
|
+
:type: BMLayerCollection
|
|
852
|
+
"""
|
|
814
853
|
|
|
815
|
-
|
|
816
|
-
"""
|
|
854
|
+
int: BMLayerCollection
|
|
855
|
+
""" Generic int custom-data layer.
|
|
817
856
|
|
|
818
|
-
|
|
819
|
-
"""
|
|
857
|
+
:type: BMLayerCollection
|
|
858
|
+
"""
|
|
820
859
|
|
|
821
|
-
string:
|
|
822
|
-
""" Generic string custom-data layer (exposed as bytes, 255 max length).
|
|
860
|
+
string: BMLayerCollection
|
|
861
|
+
""" Generic string custom-data layer (exposed as bytes, 255 max length).
|
|
862
|
+
|
|
863
|
+
:type: BMLayerCollection
|
|
864
|
+
"""
|
|
823
865
|
|
|
824
866
|
class BMLayerAccessLoop:
|
|
825
867
|
"""Exposes custom-data layer attributes."""
|
|
826
868
|
|
|
827
|
-
color:
|
|
828
|
-
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
869
|
+
color: BMLayerCollection
|
|
870
|
+
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
829
871
|
|
|
830
|
-
|
|
831
|
-
"""
|
|
872
|
+
:type: BMLayerCollection
|
|
873
|
+
"""
|
|
832
874
|
|
|
833
|
-
|
|
834
|
-
""" Generic
|
|
875
|
+
float: BMLayerCollection
|
|
876
|
+
""" Generic float custom-data layer.
|
|
835
877
|
|
|
836
|
-
|
|
837
|
-
"""
|
|
878
|
+
:type: BMLayerCollection
|
|
879
|
+
"""
|
|
880
|
+
|
|
881
|
+
float_color: BMLayerCollection
|
|
882
|
+
""" Generic RGBA color with float precision custom-data layer.
|
|
883
|
+
|
|
884
|
+
:type: BMLayerCollection
|
|
885
|
+
"""
|
|
886
|
+
|
|
887
|
+
float_vector: BMLayerCollection
|
|
888
|
+
""" Generic 3D vector with float precision custom-data layer.
|
|
889
|
+
|
|
890
|
+
:type: BMLayerCollection
|
|
891
|
+
"""
|
|
892
|
+
|
|
893
|
+
int: BMLayerCollection
|
|
894
|
+
""" Generic int custom-data layer.
|
|
838
895
|
|
|
839
|
-
|
|
840
|
-
"""
|
|
896
|
+
:type: BMLayerCollection
|
|
897
|
+
"""
|
|
898
|
+
|
|
899
|
+
string: BMLayerCollection
|
|
900
|
+
""" Generic string custom-data layer (exposed as bytes, 255 max length).
|
|
841
901
|
|
|
842
|
-
|
|
843
|
-
"""
|
|
902
|
+
:type: BMLayerCollection
|
|
903
|
+
"""
|
|
844
904
|
|
|
845
|
-
uv:
|
|
846
|
-
""" Accessor for `BMLoopUV` UV (as a 2D Vector).
|
|
905
|
+
uv: BMLayerCollection
|
|
906
|
+
""" Accessor for `BMLoopUV` UV (as a 2D Vector).
|
|
907
|
+
|
|
908
|
+
:type: BMLayerCollection
|
|
909
|
+
"""
|
|
847
910
|
|
|
848
911
|
class BMLayerAccessVert:
|
|
849
912
|
"""Exposes custom-data layer attributes."""
|
|
850
913
|
|
|
851
|
-
color:
|
|
852
|
-
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
914
|
+
color: BMLayerCollection
|
|
915
|
+
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
853
916
|
|
|
854
|
-
|
|
855
|
-
"""
|
|
917
|
+
:type: BMLayerCollection
|
|
918
|
+
"""
|
|
856
919
|
|
|
857
|
-
|
|
858
|
-
"""
|
|
920
|
+
deform: BMLayerCollection
|
|
921
|
+
""" Vertex deform weight `BMDeformVert` (TODO).
|
|
859
922
|
|
|
860
|
-
|
|
861
|
-
"""
|
|
923
|
+
:type: BMLayerCollection
|
|
924
|
+
"""
|
|
925
|
+
|
|
926
|
+
float: BMLayerCollection
|
|
927
|
+
""" Generic float custom-data layer.
|
|
928
|
+
|
|
929
|
+
:type: BMLayerCollection
|
|
930
|
+
"""
|
|
862
931
|
|
|
863
|
-
|
|
864
|
-
""" Generic
|
|
932
|
+
float_color: BMLayerCollection
|
|
933
|
+
""" Generic RGBA color with float precision custom-data layer.
|
|
865
934
|
|
|
866
|
-
|
|
867
|
-
"""
|
|
935
|
+
:type: BMLayerCollection
|
|
936
|
+
"""
|
|
937
|
+
|
|
938
|
+
float_vector: BMLayerCollection
|
|
939
|
+
""" Generic 3D vector with float precision custom-data layer.
|
|
940
|
+
|
|
941
|
+
:type: BMLayerCollection
|
|
942
|
+
"""
|
|
943
|
+
|
|
944
|
+
int: BMLayerCollection
|
|
945
|
+
""" Generic int custom-data layer.
|
|
946
|
+
|
|
947
|
+
:type: BMLayerCollection
|
|
948
|
+
"""
|
|
868
949
|
|
|
869
950
|
shape: BMLayerCollection
|
|
870
951
|
""" Vertex shapekey absolute location (as a 3D Vector).
|
|
@@ -872,11 +953,17 @@ class BMLayerAccessVert:
|
|
|
872
953
|
:type: BMLayerCollection
|
|
873
954
|
"""
|
|
874
955
|
|
|
875
|
-
skin:
|
|
876
|
-
""" Accessor for skin layer.
|
|
956
|
+
skin: BMLayerCollection
|
|
957
|
+
""" Accessor for skin layer.
|
|
958
|
+
|
|
959
|
+
:type: BMLayerCollection
|
|
960
|
+
"""
|
|
961
|
+
|
|
962
|
+
string: BMLayerCollection
|
|
963
|
+
""" Generic string custom-data layer (exposed as bytes, 255 max length).
|
|
877
964
|
|
|
878
|
-
|
|
879
|
-
"""
|
|
965
|
+
:type: BMLayerCollection
|
|
966
|
+
"""
|
|
880
967
|
|
|
881
968
|
class BMLayerCollection:
|
|
882
969
|
"""Gives access to a collection of custom-data layers of the same type and behaves like Python dictionaries, except for the ability to do list like index access."""
|
bpy/ops/preferences/__init__.pyi
CHANGED
|
@@ -339,6 +339,8 @@ def extension_repo_add(
|
|
|
339
339
|
undo: bool | None = None,
|
|
340
340
|
name: str | typing.Any = "",
|
|
341
341
|
remote_url: str | typing.Any = "",
|
|
342
|
+
use_access_token: bool | typing.Any | None = False,
|
|
343
|
+
access_token: str | typing.Any = "",
|
|
342
344
|
use_sync_on_startup: bool | typing.Any | None = False,
|
|
343
345
|
use_custom_directory: bool | typing.Any | None = False,
|
|
344
346
|
custom_directory: str | typing.Any = "",
|
|
@@ -353,6 +355,10 @@ def extension_repo_add(
|
|
|
353
355
|
:type name: str | typing.Any
|
|
354
356
|
:param remote_url: URL, Remote URL to the extension repository, the file-system may be referenced using the file URI scheme: "file://"
|
|
355
357
|
:type remote_url: str | typing.Any
|
|
358
|
+
:param use_access_token: Requires Access Token, Repository requires an access token
|
|
359
|
+
:type use_access_token: bool | typing.Any | None
|
|
360
|
+
:param access_token: Secret, Personal access token, may be required by some repositories
|
|
361
|
+
:type access_token: str | typing.Any
|
|
356
362
|
:param use_sync_on_startup: Check for Updates on Startup, Allow Blender to check for updates upon launch
|
|
357
363
|
:type use_sync_on_startup: bool | typing.Any | None
|
|
358
364
|
:param use_custom_directory: Custom Directory, Manually set the path for extensions to be stored. When disabled a user's extensions directory is created
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -4882,6 +4882,7 @@ def usd_export(
|
|
|
4882
4882
|
export_textures: bool | typing.Any | None = True,
|
|
4883
4883
|
overwrite_textures: bool | typing.Any | None = False,
|
|
4884
4884
|
relative_paths: bool | typing.Any | None = True,
|
|
4885
|
+
xform_op_mode: str | None = "TRS",
|
|
4885
4886
|
root_prim_path: str | typing.Any = "/root",
|
|
4886
4887
|
export_custom_properties: bool | typing.Any | None = True,
|
|
4887
4888
|
author_blender_name: bool | typing.Any | None = True,
|
|
@@ -5043,6 +5044,17 @@ def usd_export(
|
|
|
5043
5044
|
:type overwrite_textures: bool | typing.Any | None
|
|
5044
5045
|
:param relative_paths: Relative Paths, Use relative paths to reference external files (i.e. textures, volumes) in USD, otherwise use absolute paths
|
|
5045
5046
|
:type relative_paths: bool | typing.Any | None
|
|
5047
|
+
:param xform_op_mode: Xform Ops, The type of transform operators to write
|
|
5048
|
+
|
|
5049
|
+
TRS
|
|
5050
|
+
Translate, Rotate, Scale -- Export with translate, rotate, and scale Xform operators.
|
|
5051
|
+
|
|
5052
|
+
TOS
|
|
5053
|
+
Translate, Orient, Scale -- Export with translate, orient quaternion, and scale Xform operators.
|
|
5054
|
+
|
|
5055
|
+
MAT
|
|
5056
|
+
Matrix -- Export matrix operator.
|
|
5057
|
+
:type xform_op_mode: str | None
|
|
5046
5058
|
:param root_prim_path: Root Prim, If set, add a transform primitive with the given path to the stage as the parent of all exported data
|
|
5047
5059
|
:type root_prim_path: str | typing.Any
|
|
5048
5060
|
:param export_custom_properties: Custom Properties, Export custom properties as USD attributes in the 'userProperties' namespace
|
bpy/ops/world/__init__.pyi
CHANGED
|
@@ -10,7 +10,7 @@ def convert_volume_to_mesh(
|
|
|
10
10
|
execution_context: str | int | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
12
|
):
|
|
13
|
-
"""Convert the volume of a world to a mesh.
|
|
13
|
+
"""Convert the volume of a world to a mesh. The world's volume used to be rendered by EEVEE Legacy. Conversion is needed for it to render properly
|
|
14
14
|
|
|
15
15
|
:type override_context: dict[str, typing.Any] | bpy.types.Context | None
|
|
16
16
|
:type execution_context: str | int | None
|
bpy/types/__init__.pyi
CHANGED
|
@@ -118855,6 +118855,7 @@ class ID(bpy_struct):
|
|
|
118855
118855
|
self,
|
|
118856
118856
|
clear_proxy: bool | typing.Any | None = True,
|
|
118857
118857
|
clear_liboverride: bool | typing.Any | None = False,
|
|
118858
|
+
clear_asset_data: bool | typing.Any | None = True,
|
|
118858
118859
|
) -> ID:
|
|
118859
118860
|
"""Make this datablock local, return local one (may be a copy of the original, in case it is also indirectly used)
|
|
118860
118861
|
|
|
@@ -118862,6 +118863,8 @@ class ID(bpy_struct):
|
|
|
118862
118863
|
:type clear_proxy: bool | typing.Any | None
|
|
118863
118864
|
:param clear_liboverride: Remove potential library override data from the newly made local data
|
|
118864
118865
|
:type clear_liboverride: bool | typing.Any | None
|
|
118866
|
+
:param clear_asset_data: Remove potential asset metadata so the newly local data-block is not treated as asset data-block and won't show up in asset libraries
|
|
118867
|
+
:type clear_asset_data: bool | typing.Any | None
|
|
118865
118868
|
:return: This ID, or the new ID if it was copied
|
|
118866
118869
|
:rtype: ID
|
|
118867
118870
|
"""
|
|
@@ -150129,6 +150132,12 @@ class UserAssetLibrary(bpy_struct):
|
|
|
150129
150132
|
class UserExtensionRepo(bpy_struct):
|
|
150130
150133
|
"""Settings to define an extension repository"""
|
|
150131
150134
|
|
|
150135
|
+
access_token: str
|
|
150136
|
+
""" Personal access token, may be required by some repositories
|
|
150137
|
+
|
|
150138
|
+
:type: str
|
|
150139
|
+
"""
|
|
150140
|
+
|
|
150132
150141
|
custom_directory: str
|
|
150133
150142
|
""" The local directory containing extensions
|
|
150134
150143
|
|
|
@@ -150165,6 +150174,12 @@ class UserExtensionRepo(bpy_struct):
|
|
|
150165
150174
|
:type: str
|
|
150166
150175
|
"""
|
|
150167
150176
|
|
|
150177
|
+
use_access_token: bool
|
|
150178
|
+
""" Repository requires an access token
|
|
150179
|
+
|
|
150180
|
+
:type: bool
|
|
150181
|
+
"""
|
|
150182
|
+
|
|
150168
150183
|
use_cache: bool
|
|
150169
150184
|
""" Downloaded package files are deleted after installation
|
|
150170
150185
|
|
|
@@ -165717,6 +165732,12 @@ class Library(ID, bpy_struct):
|
|
|
165717
165732
|
:type: str
|
|
165718
165733
|
"""
|
|
165719
165734
|
|
|
165735
|
+
is_editable: bool
|
|
165736
|
+
""" Datablocks in this library are editable despite being linked. Used by brush assets and their dependencies
|
|
165737
|
+
|
|
165738
|
+
:type: bool
|
|
165739
|
+
"""
|
|
165740
|
+
|
|
165720
165741
|
needs_liboverride_resync: bool
|
|
165721
165742
|
""" True if this library contains library overrides that are linked in current blendfile, and that had to be recursively resynced on load (it is recommended to open and re-save that library blendfile then)
|
|
165722
165743
|
|
bpy_types/__init__.pyi
CHANGED
|
@@ -590,7 +590,6 @@ class BoneCollection:
|
|
|
590
590
|
...
|
|
591
591
|
|
|
592
592
|
class Node:
|
|
593
|
-
bl_rna: typing.Any
|
|
594
593
|
id_data: typing.Any
|
|
595
594
|
|
|
596
595
|
def as_pointer(self) -> int:
|
|
@@ -693,13 +692,6 @@ class Node:
|
|
|
693
692
|
"""
|
|
694
693
|
...
|
|
695
694
|
|
|
696
|
-
def is_registered_node_type(self):
|
|
697
|
-
"""Node.is_registered_node_type()
|
|
698
|
-
True if a registered node type
|
|
699
|
-
|
|
700
|
-
"""
|
|
701
|
-
...
|
|
702
|
-
|
|
703
695
|
def items(self):
|
|
704
696
|
"""Returns the items of this objects custom properties (matches Python's
|
|
705
697
|
dictionary function of the same name).
|
|
@@ -2721,7 +2713,6 @@ class MeshPolygon:
|
|
|
2721
2713
|
...
|
|
2722
2714
|
|
|
2723
2715
|
class NodeSocket:
|
|
2724
|
-
bl_rna: typing.Any
|
|
2725
2716
|
id_data: typing.Any
|
|
2726
2717
|
links: typing.Any
|
|
2727
2718
|
|
|
@@ -4337,7 +4328,6 @@ class PoseBone(_GenericBone):
|
|
|
4337
4328
|
...
|
|
4338
4329
|
|
|
4339
4330
|
class NodeInternal(Node):
|
|
4340
|
-
bl_rna: typing.Any
|
|
4341
4331
|
id_data: typing.Any
|
|
4342
4332
|
|
|
4343
4333
|
def as_pointer(self) -> int:
|
|
@@ -4440,13 +4430,6 @@ class NodeInternal(Node):
|
|
|
4440
4430
|
"""
|
|
4441
4431
|
...
|
|
4442
4432
|
|
|
4443
|
-
def is_registered_node_type(self):
|
|
4444
|
-
"""Node.is_registered_node_type()
|
|
4445
|
-
True if a registered node type
|
|
4446
|
-
|
|
4447
|
-
"""
|
|
4448
|
-
...
|
|
4449
|
-
|
|
4450
4433
|
def items(self):
|
|
4451
4434
|
"""Returns the items of this objects custom properties (matches Python's
|
|
4452
4435
|
dictionary function of the same name).
|
|
@@ -5835,7 +5818,6 @@ class RNAMetaPropGroup(RNAMeta):
|
|
|
5835
5818
|
...
|
|
5836
5819
|
|
|
5837
5820
|
class CompositorNode(NodeInternal, Node):
|
|
5838
|
-
bl_rna: typing.Any
|
|
5839
5821
|
id_data: typing.Any
|
|
5840
5822
|
|
|
5841
5823
|
def as_pointer(self) -> int:
|
|
@@ -5938,13 +5920,6 @@ class CompositorNode(NodeInternal, Node):
|
|
|
5938
5920
|
"""
|
|
5939
5921
|
...
|
|
5940
5922
|
|
|
5941
|
-
def is_registered_node_type(self):
|
|
5942
|
-
"""Node.is_registered_node_type()
|
|
5943
|
-
True if a registered node type
|
|
5944
|
-
|
|
5945
|
-
"""
|
|
5946
|
-
...
|
|
5947
|
-
|
|
5948
5923
|
def items(self):
|
|
5949
5924
|
"""Returns the items of this objects custom properties (matches Python's
|
|
5950
5925
|
dictionary function of the same name).
|
|
@@ -6034,7 +6009,6 @@ class CompositorNode(NodeInternal, Node):
|
|
|
6034
6009
|
...
|
|
6035
6010
|
|
|
6036
6011
|
class GeometryNode(NodeInternal, Node):
|
|
6037
|
-
bl_rna: typing.Any
|
|
6038
6012
|
id_data: typing.Any
|
|
6039
6013
|
|
|
6040
6014
|
def as_pointer(self) -> int:
|
|
@@ -6137,13 +6111,6 @@ class GeometryNode(NodeInternal, Node):
|
|
|
6137
6111
|
"""
|
|
6138
6112
|
...
|
|
6139
6113
|
|
|
6140
|
-
def is_registered_node_type(self):
|
|
6141
|
-
"""Node.is_registered_node_type()
|
|
6142
|
-
True if a registered node type
|
|
6143
|
-
|
|
6144
|
-
"""
|
|
6145
|
-
...
|
|
6146
|
-
|
|
6147
6114
|
def items(self):
|
|
6148
6115
|
"""Returns the items of this objects custom properties (matches Python's
|
|
6149
6116
|
dictionary function of the same name).
|
|
@@ -6232,7 +6199,6 @@ class GeometryNode(NodeInternal, Node):
|
|
|
6232
6199
|
...
|
|
6233
6200
|
|
|
6234
6201
|
class ShaderNode(NodeInternal, Node):
|
|
6235
|
-
bl_rna: typing.Any
|
|
6236
6202
|
id_data: typing.Any
|
|
6237
6203
|
|
|
6238
6204
|
def as_pointer(self) -> int:
|
|
@@ -6335,13 +6301,6 @@ class ShaderNode(NodeInternal, Node):
|
|
|
6335
6301
|
"""
|
|
6336
6302
|
...
|
|
6337
6303
|
|
|
6338
|
-
def is_registered_node_type(self):
|
|
6339
|
-
"""Node.is_registered_node_type()
|
|
6340
|
-
True if a registered node type
|
|
6341
|
-
|
|
6342
|
-
"""
|
|
6343
|
-
...
|
|
6344
|
-
|
|
6345
6304
|
def items(self):
|
|
6346
6305
|
"""Returns the items of this objects custom properties (matches Python's
|
|
6347
6306
|
dictionary function of the same name).
|
|
@@ -6430,7 +6389,6 @@ class ShaderNode(NodeInternal, Node):
|
|
|
6430
6389
|
...
|
|
6431
6390
|
|
|
6432
6391
|
class TextureNode(NodeInternal, Node):
|
|
6433
|
-
bl_rna: typing.Any
|
|
6434
6392
|
id_data: typing.Any
|
|
6435
6393
|
|
|
6436
6394
|
def as_pointer(self) -> int:
|
|
@@ -6533,13 +6491,6 @@ class TextureNode(NodeInternal, Node):
|
|
|
6533
6491
|
"""
|
|
6534
6492
|
...
|
|
6535
6493
|
|
|
6536
|
-
def is_registered_node_type(self):
|
|
6537
|
-
"""Node.is_registered_node_type()
|
|
6538
|
-
True if a registered node type
|
|
6539
|
-
|
|
6540
|
-
"""
|
|
6541
|
-
...
|
|
6542
|
-
|
|
6543
6494
|
def items(self):
|
|
6544
6495
|
"""Returns the items of this objects custom properties (matches Python's
|
|
6545
6496
|
dictionary function of the same name).
|
|
@@ -71,7 +71,7 @@ bl_operators/uvcalc_transform/__init__.pyi,sha256=CbwgnUkyq48X8OGU6qsrzAWAw9Il0q
|
|
|
71
71
|
bl_operators/vertexpaint_dirt/__init__.pyi,sha256=E0sI_J6oIOG7jWfLApMwVsqr7Tu3QW84-7cjVCV2ib8,5852
|
|
72
72
|
bl_operators/view3d/__init__.pyi,sha256=ss9TSl6KFw-BCQbJgL-4X37XkRGFpK0o3eTBypkNkDo,38849
|
|
73
73
|
bl_operators/wm/__init__.pyi,sha256=MgvypA6vX6TRgZxmdKFByX-HKkw8Tzti57vZEV7DJq0,256882
|
|
74
|
-
bl_operators/world/__init__.pyi,sha256=
|
|
74
|
+
bl_operators/world/__init__.pyi,sha256=ja4FkQmlqUj7blB1eB3vDaa1a5d2dwCEQhhT0fVAWVE,5809
|
|
75
75
|
bl_previews_utils/__init__.pyi,sha256=QCEV9HiZ_Nv-soA5ReC2_W1ogkROXmlTPuek5nQli4U,163
|
|
76
76
|
bl_previews_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
77
|
bl_previews_utils/bl_previews_render/__init__.pyi,sha256=aOVogQALl_H3Y1lJDVDKeEArDhR1JqtYIPLVX24Xim8,489
|
|
@@ -153,7 +153,7 @@ bl_ui/space_statusbar/__init__.pyi,sha256=q80IyLA7Sp54zgndJQJXwTCcEybOS3fHe8Zg1U
|
|
|
153
153
|
bl_ui/space_text/__init__.pyi,sha256=fexTGNRvDYSx-MZ8pfeGRdnFtzuEDe-08a_FGMJpmfU,111768
|
|
154
154
|
bl_ui/space_time/__init__.pyi,sha256=RzNnGNgCJBFcntdS6B_N8mRA1zRY68-DSh3F01uC63c,47810
|
|
155
155
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=4_lkUFwBtoZqh7hLHCnB3TTrNuUs0eNqG-P-5T1I1sY,5534
|
|
156
|
-
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=
|
|
156
|
+
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=58Utj_NKIxdKfz2QueidBGEHqgAZymkf54EauxEwjvw,20743
|
|
157
157
|
bl_ui/space_topbar/__init__.pyi,sha256=LvwzF5fH-bVgpQRFBmkJe-OnjTb5lYkB_igJsf6RMNM,181978
|
|
158
158
|
bl_ui/space_userpref/__init__.pyi,sha256=yj72LaENIF1xe7qCJ46hF7tiW1MnB4sCYaqxOLMICrw,526366
|
|
159
159
|
bl_ui/space_view3d/__init__.pyi,sha256=kYIXHZUsO3A5uuSlhnGy6Y8ZMbGHdXTpwaAM93FruxM,1866328
|
|
@@ -172,7 +172,7 @@ bmesh/__init__.pyi,sha256=jLVw2jRJGXC8XUX1HHdf32PfZK8_pvQ8U6E4w5Du2yc,1558
|
|
|
172
172
|
bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
173
|
bmesh/geometry/__init__.pyi,sha256=Wh5-yKrRWdGoYLMPvXyBxd7yPkMx6Jw4S95Q6Bql6S4,715
|
|
174
174
|
bmesh/ops/__init__.pyi,sha256=6qbIri10iMjYjGUkhFXLDX3dOc_MXworBL0pbWnnFJw,71392
|
|
175
|
-
bmesh/types/__init__.pyi,sha256=
|
|
175
|
+
bmesh/types/__init__.pyi,sha256=YnsGoCqfO7eJHZTAD-zGd6wTVy67wHnV80u2sY4tR5k,40081
|
|
176
176
|
bmesh/utils/__init__.pyi,sha256=z4BFczG2gQpSRC_U5K7tm7bfgoC4Imfvu_zNbBxonGA,6145
|
|
177
177
|
bpy/__init__.pyi,sha256=_aPxZG75j_LcawPviW9vM5kU2SSZvHl_1VmUWIfHPKE,472
|
|
178
178
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -234,7 +234,7 @@ bpy/ops/palette/__init__.pyi,sha256=33nIFwCQ2a0tVRWAybYt1P7K7X6OQcTEkahk1E5TymY,
|
|
|
234
234
|
bpy/ops/particle/__init__.pyi,sha256=ySmOACKcJJphes_uzCbtswmnUF4qvn7b8zrZtTsLO0U,19192
|
|
235
235
|
bpy/ops/pose/__init__.pyi,sha256=EVWb4wyt8vdmhy_V5zEKQvh5pP7dYERrmzW8h74aoUo,28319
|
|
236
236
|
bpy/ops/poselib/__init__.pyi,sha256=p-mS6TH8gZgmGyUFCkEykezOPkl81-hgMjPD_RQj5G0,5573
|
|
237
|
-
bpy/ops/preferences/__init__.pyi,sha256=
|
|
237
|
+
bpy/ops/preferences/__init__.pyi,sha256=AsXCOL8b65RSw-N-XNXtsF8mvQ4t4vSzojZeoH8fFhw,27764
|
|
238
238
|
bpy/ops/ptcache/__init__.pyi,sha256=kT2prhPjep6y1pCiMYorGaZSLznhcAsv1x2Z5P6vAcI,2980
|
|
239
239
|
bpy/ops/render/__init__.pyi,sha256=rBznOKTZ68ToZPhqtVbwH13s4-kN2yeeSm8jatNV340,9390
|
|
240
240
|
bpy/ops/rigidbody/__init__.pyi,sha256=WSqYlpmNjkp-ddZU3gvp65zhyFDg9wIEl7FLvlK64YI,8102
|
|
@@ -256,12 +256,12 @@ bpy/ops/uilist/__init__.pyi,sha256=vKwAIN8gQScIMZbqFihX_8L8hHcNdzdavf2bGEYbpEo,2
|
|
|
256
256
|
bpy/ops/uv/__init__.pyi,sha256=qMuuT4_hwdIygaiECZYaCCx_d8csX0mfQ2U6k_Jlemk,49696
|
|
257
257
|
bpy/ops/view2d/__init__.pyi,sha256=3NVUfevgxAFQYypk2OH-e0-2ml5YGBHcPIoXzNuVA2M,9782
|
|
258
258
|
bpy/ops/view3d/__init__.pyi,sha256=IBjnCtN958jw1L2LS5tb9KsiWK8u7t4i7yv3ZHI3B8U,41213
|
|
259
|
-
bpy/ops/wm/__init__.pyi,sha256
|
|
259
|
+
bpy/ops/wm/__init__.pyi,sha256=-9sdjhR6_6-X48lDCKrq4ykFYGptbFxDdCJsIgimHAk,231808
|
|
260
260
|
bpy/ops/workspace/__init__.pyi,sha256=seuXXtfGeQcdkEuF2ndx8y-Zhs4wJ99Ac0JTlYKTbcA,3309
|
|
261
|
-
bpy/ops/world/__init__.pyi,sha256=
|
|
261
|
+
bpy/ops/world/__init__.pyi,sha256=oQBSfyuRh5kGomRoZELd3XHeYFnn1Q4yPobT9GfsefY,1032
|
|
262
262
|
bpy/path/__init__.pyi,sha256=hDzEsFeXHfkrzJFWxyxpnxiWbm1b64KJWru0jcOgRq8,11497
|
|
263
263
|
bpy/props/__init__.pyi,sha256=O4aVP7WK6sI-ugD5XeDDLpNfBHulqJh20Kw7jRb2BDc,28779
|
|
264
|
-
bpy/types/__init__.pyi,sha256=
|
|
264
|
+
bpy/types/__init__.pyi,sha256=JTMu0vqP0Lf31cU-gH532yeKIL0xAPZf5nvLH0s3Tac,5232807
|
|
265
265
|
bpy/utils/__init__.pyi,sha256=u9JvsmBzSJyg4CTJr7_0n9CQO_B3ldwQKh25cW_6pZs,17916
|
|
266
266
|
bpy/utils/previews/__init__.pyi,sha256=odPazdv-bjKEVpeX-KfaDGZe5rKlMT11zL_q1SgPK3U,4255
|
|
267
267
|
bpy/utils/units/__init__.pyi,sha256=Mf5e9M8OwkE2zC-rs5CVV7NfobaI7LQkU0v7u-z9xwI,2655
|
|
@@ -285,7 +285,7 @@ bpy_extras/wm_utils/__init__.pyi,sha256=VjSQe0yOFAlAFGjt5HhvfGBLvSr9tcSpQBiGPRng
|
|
|
285
285
|
bpy_extras/wm_utils/progress_report/__init__.pyi,sha256=070Ss6tSU9TOgVBKpGsxtwLhp5Lstj4MV5zieg-p5n8,1872
|
|
286
286
|
bpy_restrict_state/__init__.pyi,sha256=KAQcdXls9YQGe8u3VyrnC7YNoXgg9kidzvZnYG7bpEA,307
|
|
287
287
|
bpy_restrict_state/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
288
|
-
bpy_types/__init__.pyi,sha256=
|
|
288
|
+
bpy_types/__init__.pyi,sha256=p45VHWkeZLgdKO56U8XEi3x3muEp16e9ooQw3EVbI4A,172242
|
|
289
289
|
bpy_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
290
290
|
console_python/__init__.pyi,sha256=fTcyMA-p95t-3BaMgwXypW6wer1X_Lb-Q3oW5Dfq3cU,704
|
|
291
291
|
console_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -347,7 +347,7 @@ rna_xml/__init__.pyi,sha256=H-iSwO57zZ_piTZymDIp-ryuojWhwRoX_CT10iAI3rk,602
|
|
|
347
347
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
348
348
|
sys_info/__init__.pyi,sha256=9MR_HOycufd8IKZQf-QDqUqE8Aj1D8n_Pfvi9wEKtvo,164
|
|
349
349
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
350
|
-
fake_bpy_module-
|
|
351
|
-
fake_bpy_module-
|
|
352
|
-
fake_bpy_module-
|
|
353
|
-
fake_bpy_module-
|
|
350
|
+
fake_bpy_module-20240523.dist-info/METADATA,sha256=E96FNBgMjaNtpn7PjWpwTt3lEpsr6FS1EgSBPFQF3wM,7109
|
|
351
|
+
fake_bpy_module-20240523.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
352
|
+
fake_bpy_module-20240523.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
353
|
+
fake_bpy_module-20240523.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|