fake-bpy-module 20250903__py3-none-any.whl → 20250905__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.
- aud/__init__.pyi +11 -11
- bl_ui/properties_paint_common/__init__.pyi +0 -9
- bl_ui/space_sequencer/__init__.pyi +1 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +2 -0
- bl_ui/space_view3d/__init__.pyi +0 -9
- bl_ui/space_view3d_toolbar/__init__.pyi +11 -609
- bmesh/types/__init__.pyi +9 -9
- bpy/app/__init__.pyi +7 -0
- bpy/ops/armature/__init__.pyi +3 -0
- bpy/ops/poselib/__init__.pyi +0 -3
- bpy/ops/sequencer/__init__.pyi +72 -0
- bpy/ops/uv/__init__.pyi +38 -8
- bpy/props/__init__.pyi +56 -3
- bpy/types/__init__.pyi +442 -422
- {fake_bpy_module-20250903.dist-info → fake_bpy_module-20250905.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250903.dist-info → fake_bpy_module-20250905.dist-info}/RECORD +20 -20
- freestyle/types/__init__.pyi +2 -2
- idprop/types/__init__.pyi +1 -1
- {fake_bpy_module-20250903.dist-info → fake_bpy_module-20250905.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250903.dist-info → fake_bpy_module-20250905.dist-info}/top_level.txt +0 -0
|
@@ -8,14 +8,6 @@ import bl_ui.properties_paint_common
|
|
|
8
8
|
import bl_ui.utils
|
|
9
9
|
import bpy.types
|
|
10
10
|
|
|
11
|
-
class GreasePencilPaintPanel:
|
|
12
|
-
bl_category: typing.Any
|
|
13
|
-
bl_context: typing.Any
|
|
14
|
-
|
|
15
|
-
class GreasePencilSculptPanel:
|
|
16
|
-
bl_category: typing.Any
|
|
17
|
-
bl_context: typing.Any
|
|
18
|
-
|
|
19
11
|
class GreasePencilV3PaintPanel:
|
|
20
12
|
bl_category: typing.Any
|
|
21
13
|
bl_context: typing.Any
|
|
@@ -810,314 +802,6 @@ class VIEW3D_PT_tools_brush_swatches(
|
|
|
810
802
|
:rtype: typing.Any
|
|
811
803
|
"""
|
|
812
804
|
|
|
813
|
-
class VIEW3D_PT_tools_grease_pencil_brush_advanced(View3DPanel, _bpy_types.Panel):
|
|
814
|
-
bl_category: typing.Any
|
|
815
|
-
bl_context: typing.Any
|
|
816
|
-
bl_label: typing.Any
|
|
817
|
-
bl_options: typing.Any
|
|
818
|
-
bl_parent_id: typing.Any
|
|
819
|
-
bl_region_type: typing.Any
|
|
820
|
-
bl_rna: typing.Any
|
|
821
|
-
bl_space_type: typing.Any
|
|
822
|
-
bl_ui_units_x: typing.Any
|
|
823
|
-
id_data: typing.Any
|
|
824
|
-
|
|
825
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
826
|
-
"""
|
|
827
|
-
|
|
828
|
-
:return: The RNA type or default when not found.
|
|
829
|
-
:rtype: bpy.types.Struct
|
|
830
|
-
"""
|
|
831
|
-
|
|
832
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
833
|
-
"""
|
|
834
|
-
|
|
835
|
-
:return: The class or default when not found.
|
|
836
|
-
:rtype: typing.Any
|
|
837
|
-
"""
|
|
838
|
-
|
|
839
|
-
def draw(self, context) -> None:
|
|
840
|
-
"""
|
|
841
|
-
|
|
842
|
-
:param context:
|
|
843
|
-
"""
|
|
844
|
-
|
|
845
|
-
@classmethod
|
|
846
|
-
def poll(cls, context) -> None:
|
|
847
|
-
"""
|
|
848
|
-
|
|
849
|
-
:param context:
|
|
850
|
-
"""
|
|
851
|
-
|
|
852
|
-
class VIEW3D_PT_tools_grease_pencil_brush_eraser(View3DPanel, _bpy_types.Panel):
|
|
853
|
-
bl_category: typing.Any
|
|
854
|
-
bl_context: typing.Any
|
|
855
|
-
bl_label: typing.Any
|
|
856
|
-
bl_options: typing.Any
|
|
857
|
-
bl_region_type: typing.Any
|
|
858
|
-
bl_rna: typing.Any
|
|
859
|
-
bl_space_type: typing.Any
|
|
860
|
-
id_data: typing.Any
|
|
861
|
-
|
|
862
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
863
|
-
"""
|
|
864
|
-
|
|
865
|
-
:return: The RNA type or default when not found.
|
|
866
|
-
:rtype: bpy.types.Struct
|
|
867
|
-
"""
|
|
868
|
-
|
|
869
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
870
|
-
"""
|
|
871
|
-
|
|
872
|
-
:return: The class or default when not found.
|
|
873
|
-
:rtype: typing.Any
|
|
874
|
-
"""
|
|
875
|
-
|
|
876
|
-
def draw(self, context) -> None:
|
|
877
|
-
"""
|
|
878
|
-
|
|
879
|
-
:param context:
|
|
880
|
-
"""
|
|
881
|
-
|
|
882
|
-
@classmethod
|
|
883
|
-
def poll(cls, context) -> None:
|
|
884
|
-
"""
|
|
885
|
-
|
|
886
|
-
:param context:
|
|
887
|
-
"""
|
|
888
|
-
|
|
889
|
-
class VIEW3D_PT_tools_grease_pencil_brush_gap_closure(View3DPanel, _bpy_types.Panel):
|
|
890
|
-
bl_category: typing.Any
|
|
891
|
-
bl_context: typing.Any
|
|
892
|
-
bl_label: typing.Any
|
|
893
|
-
bl_parent_id: typing.Any
|
|
894
|
-
bl_region_type: typing.Any
|
|
895
|
-
bl_rna: typing.Any
|
|
896
|
-
bl_space_type: typing.Any
|
|
897
|
-
id_data: typing.Any
|
|
898
|
-
|
|
899
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
900
|
-
"""
|
|
901
|
-
|
|
902
|
-
:return: The RNA type or default when not found.
|
|
903
|
-
:rtype: bpy.types.Struct
|
|
904
|
-
"""
|
|
905
|
-
|
|
906
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
907
|
-
"""
|
|
908
|
-
|
|
909
|
-
:return: The class or default when not found.
|
|
910
|
-
:rtype: typing.Any
|
|
911
|
-
"""
|
|
912
|
-
|
|
913
|
-
def draw(self, context) -> None:
|
|
914
|
-
"""
|
|
915
|
-
|
|
916
|
-
:param context:
|
|
917
|
-
"""
|
|
918
|
-
|
|
919
|
-
@classmethod
|
|
920
|
-
def poll(cls, context) -> None:
|
|
921
|
-
"""
|
|
922
|
-
|
|
923
|
-
:param context:
|
|
924
|
-
"""
|
|
925
|
-
|
|
926
|
-
class VIEW3D_PT_tools_grease_pencil_brush_mix_palette(View3DPanel, _bpy_types.Panel):
|
|
927
|
-
bl_category: typing.Any
|
|
928
|
-
bl_context: typing.Any
|
|
929
|
-
bl_label: typing.Any
|
|
930
|
-
bl_parent_id: typing.Any
|
|
931
|
-
bl_region_type: typing.Any
|
|
932
|
-
bl_rna: typing.Any
|
|
933
|
-
bl_space_type: typing.Any
|
|
934
|
-
id_data: typing.Any
|
|
935
|
-
|
|
936
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
937
|
-
"""
|
|
938
|
-
|
|
939
|
-
:return: The RNA type or default when not found.
|
|
940
|
-
:rtype: bpy.types.Struct
|
|
941
|
-
"""
|
|
942
|
-
|
|
943
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
944
|
-
"""
|
|
945
|
-
|
|
946
|
-
:return: The class or default when not found.
|
|
947
|
-
:rtype: typing.Any
|
|
948
|
-
"""
|
|
949
|
-
|
|
950
|
-
def draw(self, context) -> None:
|
|
951
|
-
"""
|
|
952
|
-
|
|
953
|
-
:param context:
|
|
954
|
-
"""
|
|
955
|
-
|
|
956
|
-
@classmethod
|
|
957
|
-
def poll(cls, context) -> None:
|
|
958
|
-
"""
|
|
959
|
-
|
|
960
|
-
:param context:
|
|
961
|
-
"""
|
|
962
|
-
|
|
963
|
-
class VIEW3D_PT_tools_grease_pencil_brush_mixcolor(View3DPanel, _bpy_types.Panel):
|
|
964
|
-
bl_category: typing.Any
|
|
965
|
-
bl_context: typing.Any
|
|
966
|
-
bl_label: typing.Any
|
|
967
|
-
bl_region_type: typing.Any
|
|
968
|
-
bl_rna: typing.Any
|
|
969
|
-
bl_space_type: typing.Any
|
|
970
|
-
id_data: typing.Any
|
|
971
|
-
|
|
972
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
973
|
-
"""
|
|
974
|
-
|
|
975
|
-
:return: The RNA type or default when not found.
|
|
976
|
-
:rtype: bpy.types.Struct
|
|
977
|
-
"""
|
|
978
|
-
|
|
979
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
980
|
-
"""
|
|
981
|
-
|
|
982
|
-
:return: The class or default when not found.
|
|
983
|
-
:rtype: typing.Any
|
|
984
|
-
"""
|
|
985
|
-
|
|
986
|
-
def draw(self, context) -> None:
|
|
987
|
-
"""
|
|
988
|
-
|
|
989
|
-
:param context:
|
|
990
|
-
"""
|
|
991
|
-
|
|
992
|
-
@classmethod
|
|
993
|
-
def poll(cls, context) -> None:
|
|
994
|
-
"""
|
|
995
|
-
|
|
996
|
-
:param context:
|
|
997
|
-
"""
|
|
998
|
-
|
|
999
|
-
class VIEW3D_PT_tools_grease_pencil_brush_post_processing(
|
|
1000
|
-
View3DPanel, _bpy_types.Panel
|
|
1001
|
-
):
|
|
1002
|
-
bl_category: typing.Any
|
|
1003
|
-
bl_context: typing.Any
|
|
1004
|
-
bl_label: typing.Any
|
|
1005
|
-
bl_options: typing.Any
|
|
1006
|
-
bl_parent_id: typing.Any
|
|
1007
|
-
bl_region_type: typing.Any
|
|
1008
|
-
bl_rna: typing.Any
|
|
1009
|
-
bl_space_type: typing.Any
|
|
1010
|
-
id_data: typing.Any
|
|
1011
|
-
|
|
1012
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1013
|
-
"""
|
|
1014
|
-
|
|
1015
|
-
:return: The RNA type or default when not found.
|
|
1016
|
-
:rtype: bpy.types.Struct
|
|
1017
|
-
"""
|
|
1018
|
-
|
|
1019
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1020
|
-
"""
|
|
1021
|
-
|
|
1022
|
-
:return: The class or default when not found.
|
|
1023
|
-
:rtype: typing.Any
|
|
1024
|
-
"""
|
|
1025
|
-
|
|
1026
|
-
def draw(self, context) -> None:
|
|
1027
|
-
"""
|
|
1028
|
-
|
|
1029
|
-
:param context:
|
|
1030
|
-
"""
|
|
1031
|
-
|
|
1032
|
-
def draw_header(self, context) -> None:
|
|
1033
|
-
"""
|
|
1034
|
-
|
|
1035
|
-
:param context:
|
|
1036
|
-
"""
|
|
1037
|
-
|
|
1038
|
-
@classmethod
|
|
1039
|
-
def poll(cls, context) -> None:
|
|
1040
|
-
"""
|
|
1041
|
-
|
|
1042
|
-
:param context:
|
|
1043
|
-
"""
|
|
1044
|
-
|
|
1045
|
-
class VIEW3D_PT_tools_grease_pencil_brush_random(View3DPanel, _bpy_types.Panel):
|
|
1046
|
-
bl_category: typing.Any
|
|
1047
|
-
bl_context: typing.Any
|
|
1048
|
-
bl_label: typing.Any
|
|
1049
|
-
bl_options: typing.Any
|
|
1050
|
-
bl_parent_id: typing.Any
|
|
1051
|
-
bl_region_type: typing.Any
|
|
1052
|
-
bl_rna: typing.Any
|
|
1053
|
-
bl_space_type: typing.Any
|
|
1054
|
-
id_data: typing.Any
|
|
1055
|
-
|
|
1056
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1057
|
-
"""
|
|
1058
|
-
|
|
1059
|
-
:return: The RNA type or default when not found.
|
|
1060
|
-
:rtype: bpy.types.Struct
|
|
1061
|
-
"""
|
|
1062
|
-
|
|
1063
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1064
|
-
"""
|
|
1065
|
-
|
|
1066
|
-
:return: The class or default when not found.
|
|
1067
|
-
:rtype: typing.Any
|
|
1068
|
-
"""
|
|
1069
|
-
|
|
1070
|
-
def draw(self, context) -> None:
|
|
1071
|
-
"""
|
|
1072
|
-
|
|
1073
|
-
:param context:
|
|
1074
|
-
"""
|
|
1075
|
-
|
|
1076
|
-
def draw_header(self, context) -> None:
|
|
1077
|
-
"""
|
|
1078
|
-
|
|
1079
|
-
:param context:
|
|
1080
|
-
"""
|
|
1081
|
-
|
|
1082
|
-
@classmethod
|
|
1083
|
-
def poll(cls, context) -> None:
|
|
1084
|
-
"""
|
|
1085
|
-
|
|
1086
|
-
:param context:
|
|
1087
|
-
"""
|
|
1088
|
-
|
|
1089
|
-
class VIEW3D_PT_tools_grease_pencil_brush_select(
|
|
1090
|
-
GreasePencilPaintPanel,
|
|
1091
|
-
_bpy_types.Panel,
|
|
1092
|
-
View3DPanel,
|
|
1093
|
-
bl_ui.properties_paint_common.BrushSelectPanel,
|
|
1094
|
-
):
|
|
1095
|
-
bl_category: typing.Any
|
|
1096
|
-
bl_context: typing.Any
|
|
1097
|
-
bl_label: typing.Any
|
|
1098
|
-
bl_region_type: typing.Any
|
|
1099
|
-
bl_rna: typing.Any
|
|
1100
|
-
bl_space_type: typing.Any
|
|
1101
|
-
id_data: typing.Any
|
|
1102
|
-
|
|
1103
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1104
|
-
"""
|
|
1105
|
-
|
|
1106
|
-
:return: The RNA type or default when not found.
|
|
1107
|
-
:rtype: bpy.types.Struct
|
|
1108
|
-
"""
|
|
1109
|
-
|
|
1110
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1111
|
-
"""
|
|
1112
|
-
|
|
1113
|
-
:return: The class or default when not found.
|
|
1114
|
-
:rtype: typing.Any
|
|
1115
|
-
"""
|
|
1116
|
-
|
|
1117
|
-
class View3DPanel:
|
|
1118
|
-
bl_region_type: typing.Any
|
|
1119
|
-
bl_space_type: typing.Any
|
|
1120
|
-
|
|
1121
805
|
class VIEW3D_PT_tools_grease_pencil_brush_vertex_color(View3DPanel, _bpy_types.Panel):
|
|
1122
806
|
bl_category: typing.Any
|
|
1123
807
|
bl_context: typing.Any
|
|
@@ -1154,52 +838,10 @@ class VIEW3D_PT_tools_grease_pencil_brush_vertex_color(View3DPanel, _bpy_types.P
|
|
|
1154
838
|
:param context:
|
|
1155
839
|
"""
|
|
1156
840
|
|
|
1157
|
-
class VIEW3D_PT_tools_grease_pencil_brush_vertex_palette(View3DPanel, _bpy_types.Panel):
|
|
1158
|
-
bl_category: typing.Any
|
|
1159
|
-
bl_context: typing.Any
|
|
1160
|
-
bl_label: typing.Any
|
|
1161
|
-
bl_parent_id: typing.Any
|
|
1162
|
-
bl_region_type: typing.Any
|
|
1163
|
-
bl_rna: typing.Any
|
|
1164
|
-
bl_space_type: typing.Any
|
|
1165
|
-
id_data: typing.Any
|
|
1166
|
-
|
|
1167
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1168
|
-
"""
|
|
1169
|
-
|
|
1170
|
-
:return: The RNA type or default when not found.
|
|
1171
|
-
:rtype: bpy.types.Struct
|
|
1172
|
-
"""
|
|
1173
|
-
|
|
1174
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1175
|
-
"""
|
|
1176
|
-
|
|
1177
|
-
:return: The class or default when not found.
|
|
1178
|
-
:rtype: typing.Any
|
|
1179
|
-
"""
|
|
1180
|
-
|
|
1181
|
-
def draw(self, context) -> None:
|
|
1182
|
-
"""
|
|
1183
|
-
|
|
1184
|
-
:param context:
|
|
1185
|
-
"""
|
|
1186
|
-
|
|
1187
|
-
@classmethod
|
|
1188
|
-
def poll(cls, context) -> None:
|
|
1189
|
-
"""
|
|
1190
|
-
|
|
1191
|
-
:param context:
|
|
1192
|
-
"""
|
|
1193
|
-
|
|
1194
|
-
class VIEW3D_PT_tools_grease_pencil_sculpt_brush_advanced(
|
|
1195
|
-
View3DPanel,
|
|
1196
|
-
bl_ui.properties_grease_pencil_common.GreasePencilSculptAdvancedPanel,
|
|
1197
|
-
_bpy_types.Panel,
|
|
1198
|
-
):
|
|
841
|
+
class VIEW3D_PT_tools_grease_pencil_brush_vertex_palette(View3DPanel, _bpy_types.Panel):
|
|
1199
842
|
bl_category: typing.Any
|
|
1200
843
|
bl_context: typing.Any
|
|
1201
844
|
bl_label: typing.Any
|
|
1202
|
-
bl_options: typing.Any
|
|
1203
845
|
bl_parent_id: typing.Any
|
|
1204
846
|
bl_region_type: typing.Any
|
|
1205
847
|
bl_rna: typing.Any
|
|
@@ -1220,6 +862,12 @@ class VIEW3D_PT_tools_grease_pencil_sculpt_brush_advanced(
|
|
|
1220
862
|
:rtype: typing.Any
|
|
1221
863
|
"""
|
|
1222
864
|
|
|
865
|
+
def draw(self, context) -> None:
|
|
866
|
+
"""
|
|
867
|
+
|
|
868
|
+
:param context:
|
|
869
|
+
"""
|
|
870
|
+
|
|
1223
871
|
@classmethod
|
|
1224
872
|
def poll(cls, context) -> None:
|
|
1225
873
|
"""
|
|
@@ -1227,6 +875,10 @@ class VIEW3D_PT_tools_grease_pencil_sculpt_brush_advanced(
|
|
|
1227
875
|
:param context:
|
|
1228
876
|
"""
|
|
1229
877
|
|
|
878
|
+
class View3DPanel:
|
|
879
|
+
bl_region_type: typing.Any
|
|
880
|
+
bl_space_type: typing.Any
|
|
881
|
+
|
|
1230
882
|
class VIEW3D_PT_tools_grease_pencil_sculpt_brush_popover(
|
|
1231
883
|
View3DPanel,
|
|
1232
884
|
bl_ui.properties_grease_pencil_common.GreasePencilSculptAdvancedPanel,
|
|
@@ -1261,34 +913,6 @@ class VIEW3D_PT_tools_grease_pencil_sculpt_brush_popover(
|
|
|
1261
913
|
:param context:
|
|
1262
914
|
"""
|
|
1263
915
|
|
|
1264
|
-
class VIEW3D_PT_tools_grease_pencil_sculpt_select(
|
|
1265
|
-
GreasePencilSculptPanel,
|
|
1266
|
-
_bpy_types.Panel,
|
|
1267
|
-
View3DPanel,
|
|
1268
|
-
bl_ui.properties_paint_common.BrushSelectPanel,
|
|
1269
|
-
):
|
|
1270
|
-
bl_category: typing.Any
|
|
1271
|
-
bl_context: typing.Any
|
|
1272
|
-
bl_label: typing.Any
|
|
1273
|
-
bl_region_type: typing.Any
|
|
1274
|
-
bl_rna: typing.Any
|
|
1275
|
-
bl_space_type: typing.Any
|
|
1276
|
-
id_data: typing.Any
|
|
1277
|
-
|
|
1278
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1279
|
-
"""
|
|
1280
|
-
|
|
1281
|
-
:return: The RNA type or default when not found.
|
|
1282
|
-
:rtype: bpy.types.Struct
|
|
1283
|
-
"""
|
|
1284
|
-
|
|
1285
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1286
|
-
"""
|
|
1287
|
-
|
|
1288
|
-
:return: The class or default when not found.
|
|
1289
|
-
:rtype: typing.Any
|
|
1290
|
-
"""
|
|
1291
|
-
|
|
1292
916
|
class VIEW3D_PT_tools_grease_pencil_v3_brush_advanced(View3DPanel, _bpy_types.Panel):
|
|
1293
917
|
bl_category: typing.Any
|
|
1294
918
|
bl_context: typing.Any
|
|
@@ -2125,75 +1749,6 @@ class VIEW3D_PT_tools_weightpaint_symmetry_for_topbar(_bpy_types.Panel):
|
|
|
2125
1749
|
:rtype: typing.Any
|
|
2126
1750
|
"""
|
|
2127
1751
|
|
|
2128
|
-
class VIEW3D_PT_tools_grease_pencil_brush_settings(
|
|
2129
|
-
View3DPanel, _bpy_types.Panel, GreasePencilPaintPanel
|
|
2130
|
-
):
|
|
2131
|
-
bl_category: typing.Any
|
|
2132
|
-
bl_context: typing.Any
|
|
2133
|
-
bl_label: typing.Any
|
|
2134
|
-
bl_options: typing.Any
|
|
2135
|
-
bl_region_type: typing.Any
|
|
2136
|
-
bl_rna: typing.Any
|
|
2137
|
-
bl_space_type: typing.Any
|
|
2138
|
-
id_data: typing.Any
|
|
2139
|
-
|
|
2140
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2141
|
-
"""
|
|
2142
|
-
|
|
2143
|
-
:return: The RNA type or default when not found.
|
|
2144
|
-
:rtype: bpy.types.Struct
|
|
2145
|
-
"""
|
|
2146
|
-
|
|
2147
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2148
|
-
"""
|
|
2149
|
-
|
|
2150
|
-
:return: The class or default when not found.
|
|
2151
|
-
:rtype: typing.Any
|
|
2152
|
-
"""
|
|
2153
|
-
|
|
2154
|
-
def draw(self, context) -> None:
|
|
2155
|
-
"""
|
|
2156
|
-
|
|
2157
|
-
:param context:
|
|
2158
|
-
"""
|
|
2159
|
-
|
|
2160
|
-
def draw_header_preset(self, _context) -> None:
|
|
2161
|
-
"""
|
|
2162
|
-
|
|
2163
|
-
:param _context:
|
|
2164
|
-
"""
|
|
2165
|
-
|
|
2166
|
-
class VIEW3D_PT_tools_grease_pencil_sculpt_settings(
|
|
2167
|
-
View3DPanel, _bpy_types.Panel, GreasePencilSculptPanel
|
|
2168
|
-
):
|
|
2169
|
-
bl_category: typing.Any
|
|
2170
|
-
bl_context: typing.Any
|
|
2171
|
-
bl_label: typing.Any
|
|
2172
|
-
bl_region_type: typing.Any
|
|
2173
|
-
bl_rna: typing.Any
|
|
2174
|
-
bl_space_type: typing.Any
|
|
2175
|
-
id_data: typing.Any
|
|
2176
|
-
|
|
2177
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2178
|
-
"""
|
|
2179
|
-
|
|
2180
|
-
:return: The RNA type or default when not found.
|
|
2181
|
-
:rtype: bpy.types.Struct
|
|
2182
|
-
"""
|
|
2183
|
-
|
|
2184
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2185
|
-
"""
|
|
2186
|
-
|
|
2187
|
-
:return: The class or default when not found.
|
|
2188
|
-
:rtype: typing.Any
|
|
2189
|
-
"""
|
|
2190
|
-
|
|
2191
|
-
def draw(self, context) -> None:
|
|
2192
|
-
"""
|
|
2193
|
-
|
|
2194
|
-
:param context:
|
|
2195
|
-
"""
|
|
2196
|
-
|
|
2197
1752
|
class VIEW3D_PT_tools_grease_pencil_v3_brush_settings(
|
|
2198
1753
|
View3DPanel, _bpy_types.Panel, GreasePencilV3PaintPanel
|
|
2199
1754
|
):
|
|
@@ -2651,76 +2206,6 @@ class VIEW3D_PT_tools_brush_texture(_bpy_types.Panel, View3DPaintPanel):
|
|
|
2651
2206
|
:param context:
|
|
2652
2207
|
"""
|
|
2653
2208
|
|
|
2654
|
-
class VIEW3D_PT_tools_grease_pencil_brush_paint_falloff(
|
|
2655
|
-
_bpy_types.Panel,
|
|
2656
|
-
bl_ui.properties_grease_pencil_common.GreasePencilBrushFalloff,
|
|
2657
|
-
View3DPaintPanel,
|
|
2658
|
-
):
|
|
2659
|
-
bl_category: typing.Any
|
|
2660
|
-
bl_context: typing.Any
|
|
2661
|
-
bl_label: typing.Any
|
|
2662
|
-
bl_options: typing.Any
|
|
2663
|
-
bl_region_type: typing.Any
|
|
2664
|
-
bl_rna: typing.Any
|
|
2665
|
-
bl_space_type: typing.Any
|
|
2666
|
-
id_data: typing.Any
|
|
2667
|
-
|
|
2668
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2669
|
-
"""
|
|
2670
|
-
|
|
2671
|
-
:return: The RNA type or default when not found.
|
|
2672
|
-
:rtype: bpy.types.Struct
|
|
2673
|
-
"""
|
|
2674
|
-
|
|
2675
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2676
|
-
"""
|
|
2677
|
-
|
|
2678
|
-
:return: The class or default when not found.
|
|
2679
|
-
:rtype: typing.Any
|
|
2680
|
-
"""
|
|
2681
|
-
|
|
2682
|
-
@classmethod
|
|
2683
|
-
def poll(cls, context) -> None:
|
|
2684
|
-
"""
|
|
2685
|
-
|
|
2686
|
-
:param context:
|
|
2687
|
-
"""
|
|
2688
|
-
|
|
2689
|
-
class VIEW3D_PT_tools_grease_pencil_brush_sculpt_falloff(
|
|
2690
|
-
_bpy_types.Panel,
|
|
2691
|
-
bl_ui.properties_grease_pencil_common.GreasePencilBrushFalloff,
|
|
2692
|
-
View3DPaintPanel,
|
|
2693
|
-
):
|
|
2694
|
-
bl_category: typing.Any
|
|
2695
|
-
bl_context: typing.Any
|
|
2696
|
-
bl_label: typing.Any
|
|
2697
|
-
bl_options: typing.Any
|
|
2698
|
-
bl_region_type: typing.Any
|
|
2699
|
-
bl_rna: typing.Any
|
|
2700
|
-
bl_space_type: typing.Any
|
|
2701
|
-
id_data: typing.Any
|
|
2702
|
-
|
|
2703
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2704
|
-
"""
|
|
2705
|
-
|
|
2706
|
-
:return: The RNA type or default when not found.
|
|
2707
|
-
:rtype: bpy.types.Struct
|
|
2708
|
-
"""
|
|
2709
|
-
|
|
2710
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2711
|
-
"""
|
|
2712
|
-
|
|
2713
|
-
:return: The class or default when not found.
|
|
2714
|
-
:rtype: typing.Any
|
|
2715
|
-
"""
|
|
2716
|
-
|
|
2717
|
-
@classmethod
|
|
2718
|
-
def poll(cls, context) -> None:
|
|
2719
|
-
"""
|
|
2720
|
-
|
|
2721
|
-
:param context:
|
|
2722
|
-
"""
|
|
2723
|
-
|
|
2724
2209
|
class VIEW3D_PT_tools_grease_pencil_brush_vertex_falloff(
|
|
2725
2210
|
_bpy_types.Panel,
|
|
2726
2211
|
bl_ui.properties_grease_pencil_common.GreasePencilBrushFalloff,
|
|
@@ -3086,89 +2571,6 @@ class View3DPaintBrushPanel(View3DPaintPanel):
|
|
|
3086
2571
|
:param context:
|
|
3087
2572
|
"""
|
|
3088
2573
|
|
|
3089
|
-
class VIEW3D_PT_tools_grease_pencil_brush_stabilizer(_bpy_types.Panel, View3DPanel):
|
|
3090
|
-
bl_category: typing.Any
|
|
3091
|
-
bl_context: typing.Any
|
|
3092
|
-
bl_label: typing.Any
|
|
3093
|
-
bl_options: typing.Any
|
|
3094
|
-
bl_parent_id: typing.Any
|
|
3095
|
-
bl_region_type: typing.Any
|
|
3096
|
-
bl_rna: typing.Any
|
|
3097
|
-
bl_space_type: typing.Any
|
|
3098
|
-
id_data: typing.Any
|
|
3099
|
-
|
|
3100
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
3101
|
-
"""
|
|
3102
|
-
|
|
3103
|
-
:return: The RNA type or default when not found.
|
|
3104
|
-
:rtype: bpy.types.Struct
|
|
3105
|
-
"""
|
|
3106
|
-
|
|
3107
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
3108
|
-
"""
|
|
3109
|
-
|
|
3110
|
-
:return: The class or default when not found.
|
|
3111
|
-
:rtype: typing.Any
|
|
3112
|
-
"""
|
|
3113
|
-
|
|
3114
|
-
def draw(self, context) -> None:
|
|
3115
|
-
"""
|
|
3116
|
-
|
|
3117
|
-
:param context:
|
|
3118
|
-
"""
|
|
3119
|
-
|
|
3120
|
-
def draw_header(self, context) -> None:
|
|
3121
|
-
"""
|
|
3122
|
-
|
|
3123
|
-
:param context:
|
|
3124
|
-
"""
|
|
3125
|
-
|
|
3126
|
-
@classmethod
|
|
3127
|
-
def poll(cls, context) -> None:
|
|
3128
|
-
"""
|
|
3129
|
-
|
|
3130
|
-
:param context:
|
|
3131
|
-
"""
|
|
3132
|
-
|
|
3133
|
-
class VIEW3D_PT_tools_grease_pencil_brush_stroke(_bpy_types.Panel, View3DPanel):
|
|
3134
|
-
bl_category: typing.Any
|
|
3135
|
-
bl_context: typing.Any
|
|
3136
|
-
bl_label: typing.Any
|
|
3137
|
-
bl_options: typing.Any
|
|
3138
|
-
bl_parent_id: typing.Any
|
|
3139
|
-
bl_region_type: typing.Any
|
|
3140
|
-
bl_rna: typing.Any
|
|
3141
|
-
bl_space_type: typing.Any
|
|
3142
|
-
bl_ui_units_x: typing.Any
|
|
3143
|
-
id_data: typing.Any
|
|
3144
|
-
|
|
3145
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
3146
|
-
"""
|
|
3147
|
-
|
|
3148
|
-
:return: The RNA type or default when not found.
|
|
3149
|
-
:rtype: bpy.types.Struct
|
|
3150
|
-
"""
|
|
3151
|
-
|
|
3152
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
3153
|
-
"""
|
|
3154
|
-
|
|
3155
|
-
:return: The class or default when not found.
|
|
3156
|
-
:rtype: typing.Any
|
|
3157
|
-
"""
|
|
3158
|
-
|
|
3159
|
-
def draw(self, _context) -> None:
|
|
3160
|
-
"""
|
|
3161
|
-
|
|
3162
|
-
:param _context:
|
|
3163
|
-
"""
|
|
3164
|
-
|
|
3165
|
-
@classmethod
|
|
3166
|
-
def poll(cls, context) -> None:
|
|
3167
|
-
"""
|
|
3168
|
-
|
|
3169
|
-
:param context:
|
|
3170
|
-
"""
|
|
3171
|
-
|
|
3172
2574
|
class VIEW3D_PT_tools_grease_pencil_paint_appearance(
|
|
3173
2575
|
_bpy_types.Panel,
|
|
3174
2576
|
bl_ui.properties_grease_pencil_common.GreasePencilDisplayPanel,
|