fake-bpy-module 20240506__py3-none-any.whl → 20240508__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/sequencer/__init__.pyi +382 -0
- bpy/ops/export_scene/__init__.pyi +2 -2
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/sculpt/__init__.pyi +2 -2
- bpy/types/__init__.pyi +1215 -600
- {fake_bpy_module-20240506.dist-info → fake_bpy_module-20240508.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240506.dist-info → fake_bpy_module-20240508.dist-info}/RECORD +9 -9
- {fake_bpy_module-20240506.dist-info → fake_bpy_module-20240508.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240506.dist-info → fake_bpy_module-20240508.dist-info}/top_level.txt +0 -0
|
@@ -32,6 +32,16 @@ class Fade:
|
|
|
32
32
|
"""
|
|
33
33
|
...
|
|
34
34
|
|
|
35
|
+
class SequencerFileHandlerBase:
|
|
36
|
+
""" """
|
|
37
|
+
|
|
38
|
+
def poll_drop(self, context):
|
|
39
|
+
"""
|
|
40
|
+
|
|
41
|
+
:param context:
|
|
42
|
+
"""
|
|
43
|
+
...
|
|
44
|
+
|
|
35
45
|
class SequencerCrossfadeSounds(bpy_types.Operator):
|
|
36
46
|
""" """
|
|
37
47
|
|
|
@@ -778,6 +788,378 @@ class SequencerSplitMulticam(bpy_types.Operator):
|
|
|
778
788
|
""" """
|
|
779
789
|
...
|
|
780
790
|
|
|
791
|
+
class SEQUENCER_FH_image_strip(bpy_types.FileHandler, SequencerFileHandlerBase):
|
|
792
|
+
""" """
|
|
793
|
+
|
|
794
|
+
bl_file_extensions: typing.Any
|
|
795
|
+
""" """
|
|
796
|
+
|
|
797
|
+
bl_idname: typing.Any
|
|
798
|
+
""" """
|
|
799
|
+
|
|
800
|
+
bl_import_operator: typing.Any
|
|
801
|
+
""" """
|
|
802
|
+
|
|
803
|
+
bl_label: typing.Any
|
|
804
|
+
""" """
|
|
805
|
+
|
|
806
|
+
bl_rna: typing.Any
|
|
807
|
+
""" """
|
|
808
|
+
|
|
809
|
+
id_data: typing.Any
|
|
810
|
+
""" """
|
|
811
|
+
|
|
812
|
+
def as_pointer(self):
|
|
813
|
+
""" """
|
|
814
|
+
...
|
|
815
|
+
|
|
816
|
+
def bl_rna_get_subclass(self):
|
|
817
|
+
""" """
|
|
818
|
+
...
|
|
819
|
+
|
|
820
|
+
def bl_rna_get_subclass_py(self):
|
|
821
|
+
""" """
|
|
822
|
+
...
|
|
823
|
+
|
|
824
|
+
def driver_add(self):
|
|
825
|
+
""" """
|
|
826
|
+
...
|
|
827
|
+
|
|
828
|
+
def driver_remove(self):
|
|
829
|
+
""" """
|
|
830
|
+
...
|
|
831
|
+
|
|
832
|
+
def get(self):
|
|
833
|
+
""" """
|
|
834
|
+
...
|
|
835
|
+
|
|
836
|
+
def id_properties_clear(self):
|
|
837
|
+
""" """
|
|
838
|
+
...
|
|
839
|
+
|
|
840
|
+
def id_properties_ensure(self):
|
|
841
|
+
""" """
|
|
842
|
+
...
|
|
843
|
+
|
|
844
|
+
def id_properties_ui(self):
|
|
845
|
+
""" """
|
|
846
|
+
...
|
|
847
|
+
|
|
848
|
+
def is_property_hidden(self):
|
|
849
|
+
""" """
|
|
850
|
+
...
|
|
851
|
+
|
|
852
|
+
def is_property_overridable_library(self):
|
|
853
|
+
""" """
|
|
854
|
+
...
|
|
855
|
+
|
|
856
|
+
def is_property_readonly(self):
|
|
857
|
+
""" """
|
|
858
|
+
...
|
|
859
|
+
|
|
860
|
+
def is_property_set(self):
|
|
861
|
+
""" """
|
|
862
|
+
...
|
|
863
|
+
|
|
864
|
+
def items(self):
|
|
865
|
+
""" """
|
|
866
|
+
...
|
|
867
|
+
|
|
868
|
+
def keyframe_delete(self):
|
|
869
|
+
""" """
|
|
870
|
+
...
|
|
871
|
+
|
|
872
|
+
def keyframe_insert(self):
|
|
873
|
+
""" """
|
|
874
|
+
...
|
|
875
|
+
|
|
876
|
+
def keys(self):
|
|
877
|
+
""" """
|
|
878
|
+
...
|
|
879
|
+
|
|
880
|
+
def path_from_id(self):
|
|
881
|
+
""" """
|
|
882
|
+
...
|
|
883
|
+
|
|
884
|
+
def path_resolve(self):
|
|
885
|
+
""" """
|
|
886
|
+
...
|
|
887
|
+
|
|
888
|
+
def poll_drop(self, context):
|
|
889
|
+
"""
|
|
890
|
+
|
|
891
|
+
:param context:
|
|
892
|
+
"""
|
|
893
|
+
...
|
|
894
|
+
|
|
895
|
+
def pop(self):
|
|
896
|
+
""" """
|
|
897
|
+
...
|
|
898
|
+
|
|
899
|
+
def property_overridable_library_set(self):
|
|
900
|
+
""" """
|
|
901
|
+
...
|
|
902
|
+
|
|
903
|
+
def property_unset(self):
|
|
904
|
+
""" """
|
|
905
|
+
...
|
|
906
|
+
|
|
907
|
+
def type_recast(self):
|
|
908
|
+
""" """
|
|
909
|
+
...
|
|
910
|
+
|
|
911
|
+
def values(self):
|
|
912
|
+
""" """
|
|
913
|
+
...
|
|
914
|
+
|
|
915
|
+
class SEQUENCER_FH_movie_strip(bpy_types.FileHandler, SequencerFileHandlerBase):
|
|
916
|
+
""" """
|
|
917
|
+
|
|
918
|
+
bl_file_extensions: typing.Any
|
|
919
|
+
""" """
|
|
920
|
+
|
|
921
|
+
bl_idname: typing.Any
|
|
922
|
+
""" """
|
|
923
|
+
|
|
924
|
+
bl_import_operator: typing.Any
|
|
925
|
+
""" """
|
|
926
|
+
|
|
927
|
+
bl_label: typing.Any
|
|
928
|
+
""" """
|
|
929
|
+
|
|
930
|
+
bl_rna: typing.Any
|
|
931
|
+
""" """
|
|
932
|
+
|
|
933
|
+
id_data: typing.Any
|
|
934
|
+
""" """
|
|
935
|
+
|
|
936
|
+
def as_pointer(self):
|
|
937
|
+
""" """
|
|
938
|
+
...
|
|
939
|
+
|
|
940
|
+
def bl_rna_get_subclass(self):
|
|
941
|
+
""" """
|
|
942
|
+
...
|
|
943
|
+
|
|
944
|
+
def bl_rna_get_subclass_py(self):
|
|
945
|
+
""" """
|
|
946
|
+
...
|
|
947
|
+
|
|
948
|
+
def driver_add(self):
|
|
949
|
+
""" """
|
|
950
|
+
...
|
|
951
|
+
|
|
952
|
+
def driver_remove(self):
|
|
953
|
+
""" """
|
|
954
|
+
...
|
|
955
|
+
|
|
956
|
+
def get(self):
|
|
957
|
+
""" """
|
|
958
|
+
...
|
|
959
|
+
|
|
960
|
+
def id_properties_clear(self):
|
|
961
|
+
""" """
|
|
962
|
+
...
|
|
963
|
+
|
|
964
|
+
def id_properties_ensure(self):
|
|
965
|
+
""" """
|
|
966
|
+
...
|
|
967
|
+
|
|
968
|
+
def id_properties_ui(self):
|
|
969
|
+
""" """
|
|
970
|
+
...
|
|
971
|
+
|
|
972
|
+
def is_property_hidden(self):
|
|
973
|
+
""" """
|
|
974
|
+
...
|
|
975
|
+
|
|
976
|
+
def is_property_overridable_library(self):
|
|
977
|
+
""" """
|
|
978
|
+
...
|
|
979
|
+
|
|
980
|
+
def is_property_readonly(self):
|
|
981
|
+
""" """
|
|
982
|
+
...
|
|
983
|
+
|
|
984
|
+
def is_property_set(self):
|
|
985
|
+
""" """
|
|
986
|
+
...
|
|
987
|
+
|
|
988
|
+
def items(self):
|
|
989
|
+
""" """
|
|
990
|
+
...
|
|
991
|
+
|
|
992
|
+
def keyframe_delete(self):
|
|
993
|
+
""" """
|
|
994
|
+
...
|
|
995
|
+
|
|
996
|
+
def keyframe_insert(self):
|
|
997
|
+
""" """
|
|
998
|
+
...
|
|
999
|
+
|
|
1000
|
+
def keys(self):
|
|
1001
|
+
""" """
|
|
1002
|
+
...
|
|
1003
|
+
|
|
1004
|
+
def path_from_id(self):
|
|
1005
|
+
""" """
|
|
1006
|
+
...
|
|
1007
|
+
|
|
1008
|
+
def path_resolve(self):
|
|
1009
|
+
""" """
|
|
1010
|
+
...
|
|
1011
|
+
|
|
1012
|
+
def poll_drop(self, context):
|
|
1013
|
+
"""
|
|
1014
|
+
|
|
1015
|
+
:param context:
|
|
1016
|
+
"""
|
|
1017
|
+
...
|
|
1018
|
+
|
|
1019
|
+
def pop(self):
|
|
1020
|
+
""" """
|
|
1021
|
+
...
|
|
1022
|
+
|
|
1023
|
+
def property_overridable_library_set(self):
|
|
1024
|
+
""" """
|
|
1025
|
+
...
|
|
1026
|
+
|
|
1027
|
+
def property_unset(self):
|
|
1028
|
+
""" """
|
|
1029
|
+
...
|
|
1030
|
+
|
|
1031
|
+
def type_recast(self):
|
|
1032
|
+
""" """
|
|
1033
|
+
...
|
|
1034
|
+
|
|
1035
|
+
def values(self):
|
|
1036
|
+
""" """
|
|
1037
|
+
...
|
|
1038
|
+
|
|
1039
|
+
class SEQUENCER_FH_sound_strip(bpy_types.FileHandler, SequencerFileHandlerBase):
|
|
1040
|
+
""" """
|
|
1041
|
+
|
|
1042
|
+
bl_file_extensions: typing.Any
|
|
1043
|
+
""" """
|
|
1044
|
+
|
|
1045
|
+
bl_idname: typing.Any
|
|
1046
|
+
""" """
|
|
1047
|
+
|
|
1048
|
+
bl_import_operator: typing.Any
|
|
1049
|
+
""" """
|
|
1050
|
+
|
|
1051
|
+
bl_label: typing.Any
|
|
1052
|
+
""" """
|
|
1053
|
+
|
|
1054
|
+
bl_rna: typing.Any
|
|
1055
|
+
""" """
|
|
1056
|
+
|
|
1057
|
+
id_data: typing.Any
|
|
1058
|
+
""" """
|
|
1059
|
+
|
|
1060
|
+
def as_pointer(self):
|
|
1061
|
+
""" """
|
|
1062
|
+
...
|
|
1063
|
+
|
|
1064
|
+
def bl_rna_get_subclass(self):
|
|
1065
|
+
""" """
|
|
1066
|
+
...
|
|
1067
|
+
|
|
1068
|
+
def bl_rna_get_subclass_py(self):
|
|
1069
|
+
""" """
|
|
1070
|
+
...
|
|
1071
|
+
|
|
1072
|
+
def driver_add(self):
|
|
1073
|
+
""" """
|
|
1074
|
+
...
|
|
1075
|
+
|
|
1076
|
+
def driver_remove(self):
|
|
1077
|
+
""" """
|
|
1078
|
+
...
|
|
1079
|
+
|
|
1080
|
+
def get(self):
|
|
1081
|
+
""" """
|
|
1082
|
+
...
|
|
1083
|
+
|
|
1084
|
+
def id_properties_clear(self):
|
|
1085
|
+
""" """
|
|
1086
|
+
...
|
|
1087
|
+
|
|
1088
|
+
def id_properties_ensure(self):
|
|
1089
|
+
""" """
|
|
1090
|
+
...
|
|
1091
|
+
|
|
1092
|
+
def id_properties_ui(self):
|
|
1093
|
+
""" """
|
|
1094
|
+
...
|
|
1095
|
+
|
|
1096
|
+
def is_property_hidden(self):
|
|
1097
|
+
""" """
|
|
1098
|
+
...
|
|
1099
|
+
|
|
1100
|
+
def is_property_overridable_library(self):
|
|
1101
|
+
""" """
|
|
1102
|
+
...
|
|
1103
|
+
|
|
1104
|
+
def is_property_readonly(self):
|
|
1105
|
+
""" """
|
|
1106
|
+
...
|
|
1107
|
+
|
|
1108
|
+
def is_property_set(self):
|
|
1109
|
+
""" """
|
|
1110
|
+
...
|
|
1111
|
+
|
|
1112
|
+
def items(self):
|
|
1113
|
+
""" """
|
|
1114
|
+
...
|
|
1115
|
+
|
|
1116
|
+
def keyframe_delete(self):
|
|
1117
|
+
""" """
|
|
1118
|
+
...
|
|
1119
|
+
|
|
1120
|
+
def keyframe_insert(self):
|
|
1121
|
+
""" """
|
|
1122
|
+
...
|
|
1123
|
+
|
|
1124
|
+
def keys(self):
|
|
1125
|
+
""" """
|
|
1126
|
+
...
|
|
1127
|
+
|
|
1128
|
+
def path_from_id(self):
|
|
1129
|
+
""" """
|
|
1130
|
+
...
|
|
1131
|
+
|
|
1132
|
+
def path_resolve(self):
|
|
1133
|
+
""" """
|
|
1134
|
+
...
|
|
1135
|
+
|
|
1136
|
+
def poll_drop(self, context):
|
|
1137
|
+
"""
|
|
1138
|
+
|
|
1139
|
+
:param context:
|
|
1140
|
+
"""
|
|
1141
|
+
...
|
|
1142
|
+
|
|
1143
|
+
def pop(self):
|
|
1144
|
+
""" """
|
|
1145
|
+
...
|
|
1146
|
+
|
|
1147
|
+
def property_overridable_library_set(self):
|
|
1148
|
+
""" """
|
|
1149
|
+
...
|
|
1150
|
+
|
|
1151
|
+
def property_unset(self):
|
|
1152
|
+
""" """
|
|
1153
|
+
...
|
|
1154
|
+
|
|
1155
|
+
def type_recast(self):
|
|
1156
|
+
""" """
|
|
1157
|
+
...
|
|
1158
|
+
|
|
1159
|
+
def values(self):
|
|
1160
|
+
""" """
|
|
1161
|
+
...
|
|
1162
|
+
|
|
781
1163
|
def calculate_duration_frames(scene, duration_seconds):
|
|
782
1164
|
""" """
|
|
783
1165
|
|
|
@@ -23,9 +23,9 @@ def fbx(
|
|
|
23
23
|
'"ARMATURE"',
|
|
24
24
|
'"CAMERA"',
|
|
25
25
|
'"EMPTY"',
|
|
26
|
-
'"LIGHT"',
|
|
27
|
-
'"OTHER"',
|
|
28
26
|
'"MESH"',
|
|
27
|
+
'"OTHER"',
|
|
28
|
+
'"LIGHT"',
|
|
29
29
|
},
|
|
30
30
|
use_mesh_modifiers: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
31
31
|
use_mesh_modifiers_render: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -101,11 +101,11 @@ def bake(
|
|
|
101
101
|
clean_curves: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
102
102
|
bake_types: typing.Optional[typing.Any] = {'"POSE"'},
|
|
103
103
|
channel_types: typing.Optional[typing.Any] = {
|
|
104
|
-
'"LOCATION"',
|
|
105
|
-
'"SCALE"',
|
|
106
|
-
'"ROTATION"',
|
|
107
104
|
'"PROPS"',
|
|
105
|
+
'"ROTATION"',
|
|
108
106
|
'"BBONE"',
|
|
107
|
+
'"SCALE"',
|
|
108
|
+
'"LOCATION"',
|
|
109
109
|
},
|
|
110
110
|
):
|
|
111
111
|
"""Bake all selected objects location/scale/rotation animation to an action
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -49,7 +49,7 @@ def cloth_filter(
|
|
|
49
49
|
bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
50
50
|
] = None,
|
|
51
51
|
type: typing.Optional[typing.Any] = "GRAVITY",
|
|
52
|
-
force_axis: typing.Optional[typing.Any] = {'"X"', '"
|
|
52
|
+
force_axis: typing.Optional[typing.Any] = {'"X"', '"Z"', '"Y"'},
|
|
53
53
|
orientation: typing.Optional[typing.Any] = "LOCAL",
|
|
54
54
|
cloth_mass: typing.Optional[typing.Any] = 1.0,
|
|
55
55
|
cloth_damping: typing.Optional[typing.Any] = 0.0,
|
|
@@ -603,7 +603,7 @@ def mesh_filter(
|
|
|
603
603
|
bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
604
604
|
] = None,
|
|
605
605
|
type: typing.Optional[typing.Any] = "INFLATE",
|
|
606
|
-
deform_axis: typing.Optional[typing.Any] = {'"X"', '"
|
|
606
|
+
deform_axis: typing.Optional[typing.Any] = {'"X"', '"Z"', '"Y"'},
|
|
607
607
|
orientation: typing.Optional[typing.Any] = "LOCAL",
|
|
608
608
|
surface_smooth_shape_preservation: typing.Optional[typing.Any] = 0.5,
|
|
609
609
|
surface_smooth_current_vertex: typing.Optional[typing.Any] = 0.5,
|