fake-bpy-module 20250924__py3-none-any.whl → 20250926__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_app_templates_system/Storyboarding/__init__.pyi +11 -0
- bl_app_templates_system/__init__.pyi +5 -0
- bl_app_templates_system/py.typed +0 -0
- bl_operators/node/__init__.pyi +245 -20
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu/__init__.pyi +258 -4
- bl_ui/node_add_menu_compositor/__init__.pyi +66 -68
- bl_ui/node_add_menu_geometry/__init__.pyi +264 -192
- bl_ui/node_add_menu_shader/__init__.pyi +38 -47
- bl_ui/node_add_menu_texture/__init__.pyi +16 -46
- bl_ui/space_clip/__init__.pyi +83 -20
- bl_ui/space_image/__init__.pyi +26 -18
- bl_ui/space_node/__init__.pyi +45 -1
- bl_ui/space_view3d/__init__.pyi +0 -25
- bmesh/types/__init__.pyi +7 -8
- bpy/ops/action/__init__.pyi +0 -22
- bpy/ops/node/__init__.pyi +135 -16
- bpy/ops/sculpt/__init__.pyi +1 -1
- bpy/stub_internal/rna_enums/__init__.pyi +13 -40
- bpy/types/__init__.pyi +33763 -33820
- {fake_bpy_module-20250924.dist-info → fake_bpy_module-20250926.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250924.dist-info → fake_bpy_module-20250926.dist-info}/RECORD +25 -22
- {fake_bpy_module-20250924.dist-info → fake_bpy_module-20250926.dist-info}/top_level.txt +1 -0
- mathutils/bvhtree/__init__.pyi +2 -3
- {fake_bpy_module-20250924.dist-info → fake_bpy_module-20250926.dist-info}/WHEEL +0 -0
|
@@ -2,14 +2,17 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
-
import
|
|
5
|
+
import bl_ui.node_add_menu
|
|
6
6
|
import bpy.types
|
|
7
7
|
|
|
8
|
-
class
|
|
9
|
-
|
|
8
|
+
class NODE_MT_shader_node_all_base(bl_ui.node_add_menu.NodeMenu):
|
|
9
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
10
|
+
|
|
10
11
|
bl_label: typing.Any
|
|
11
12
|
bl_rna: typing.Any
|
|
13
|
+
bl_translation_context: typing.Any
|
|
12
14
|
id_data: typing.Any
|
|
15
|
+
menu_path: typing.Any
|
|
13
16
|
|
|
14
17
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
15
18
|
"""
|
|
@@ -31,8 +34,9 @@ class NODE_MT_category_shader_color(_bpy_types.Menu):
|
|
|
31
34
|
:param context:
|
|
32
35
|
"""
|
|
33
36
|
|
|
34
|
-
class
|
|
35
|
-
|
|
37
|
+
class NODE_MT_shader_node_color_base(bl_ui.node_add_menu.NodeMenu):
|
|
38
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
39
|
+
|
|
36
40
|
bl_label: typing.Any
|
|
37
41
|
bl_rna: typing.Any
|
|
38
42
|
id_data: typing.Any
|
|
@@ -57,8 +61,9 @@ class NODE_MT_category_shader_converter(_bpy_types.Menu):
|
|
|
57
61
|
:param context:
|
|
58
62
|
"""
|
|
59
63
|
|
|
60
|
-
class
|
|
61
|
-
|
|
64
|
+
class NODE_MT_shader_node_converter_base(bl_ui.node_add_menu.NodeMenu):
|
|
65
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
66
|
+
|
|
62
67
|
bl_label: typing.Any
|
|
63
68
|
bl_rna: typing.Any
|
|
64
69
|
id_data: typing.Any
|
|
@@ -83,8 +88,9 @@ class NODE_MT_category_shader_group(_bpy_types.Menu):
|
|
|
83
88
|
:param context:
|
|
84
89
|
"""
|
|
85
90
|
|
|
86
|
-
class
|
|
87
|
-
|
|
91
|
+
class NODE_MT_shader_node_input_base(bl_ui.node_add_menu.NodeMenu):
|
|
92
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
93
|
+
|
|
88
94
|
bl_label: typing.Any
|
|
89
95
|
bl_rna: typing.Any
|
|
90
96
|
id_data: typing.Any
|
|
@@ -109,8 +115,9 @@ class NODE_MT_category_shader_input(_bpy_types.Menu):
|
|
|
109
115
|
:param context:
|
|
110
116
|
"""
|
|
111
117
|
|
|
112
|
-
class
|
|
113
|
-
|
|
118
|
+
class NODE_MT_shader_node_output_base(bl_ui.node_add_menu.NodeMenu):
|
|
119
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
120
|
+
|
|
114
121
|
bl_label: typing.Any
|
|
115
122
|
bl_rna: typing.Any
|
|
116
123
|
id_data: typing.Any
|
|
@@ -129,8 +136,15 @@ class NODE_MT_category_shader_output(_bpy_types.Menu):
|
|
|
129
136
|
:rtype: typing.Any
|
|
130
137
|
"""
|
|
131
138
|
|
|
132
|
-
|
|
133
|
-
|
|
139
|
+
def draw(self, context) -> None:
|
|
140
|
+
"""
|
|
141
|
+
|
|
142
|
+
:param context:
|
|
143
|
+
"""
|
|
144
|
+
|
|
145
|
+
class NODE_MT_shader_node_script_base(bl_ui.node_add_menu.NodeMenu):
|
|
146
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
147
|
+
|
|
134
148
|
bl_label: typing.Any
|
|
135
149
|
bl_rna: typing.Any
|
|
136
150
|
id_data: typing.Any
|
|
@@ -155,8 +169,9 @@ class NODE_MT_category_shader_script(_bpy_types.Menu):
|
|
|
155
169
|
:param _context:
|
|
156
170
|
"""
|
|
157
171
|
|
|
158
|
-
class
|
|
159
|
-
|
|
172
|
+
class NODE_MT_shader_node_shader_base(bl_ui.node_add_menu.NodeMenu):
|
|
173
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
174
|
+
|
|
160
175
|
bl_label: typing.Any
|
|
161
176
|
bl_rna: typing.Any
|
|
162
177
|
id_data: typing.Any
|
|
@@ -181,8 +196,9 @@ class NODE_MT_category_shader_shader(_bpy_types.Menu):
|
|
|
181
196
|
:param context:
|
|
182
197
|
"""
|
|
183
198
|
|
|
184
|
-
class
|
|
185
|
-
|
|
199
|
+
class NODE_MT_shader_node_texture_base(bl_ui.node_add_menu.NodeMenu):
|
|
200
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
201
|
+
|
|
186
202
|
bl_label: typing.Any
|
|
187
203
|
bl_rna: typing.Any
|
|
188
204
|
id_data: typing.Any
|
|
@@ -207,8 +223,9 @@ class NODE_MT_category_shader_texture(_bpy_types.Menu):
|
|
|
207
223
|
:param _context:
|
|
208
224
|
"""
|
|
209
225
|
|
|
210
|
-
class
|
|
211
|
-
|
|
226
|
+
class NODE_MT_shader_node_utilities_base(bl_ui.node_add_menu.NodeMenu):
|
|
227
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
228
|
+
|
|
212
229
|
bl_label: typing.Any
|
|
213
230
|
bl_rna: typing.Any
|
|
214
231
|
id_data: typing.Any
|
|
@@ -233,37 +250,11 @@ class NODE_MT_category_shader_utilities(_bpy_types.Menu):
|
|
|
233
250
|
:param context:
|
|
234
251
|
"""
|
|
235
252
|
|
|
236
|
-
class
|
|
237
|
-
|
|
238
|
-
bl_label: typing.Any
|
|
239
|
-
bl_rna: typing.Any
|
|
240
|
-
id_data: typing.Any
|
|
241
|
-
|
|
242
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
243
|
-
"""
|
|
244
|
-
|
|
245
|
-
:return: The RNA type or default when not found.
|
|
246
|
-
:rtype: bpy.types.Struct
|
|
247
|
-
"""
|
|
248
|
-
|
|
249
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
250
|
-
"""
|
|
251
|
-
|
|
252
|
-
:return: The class or default when not found.
|
|
253
|
-
:rtype: typing.Any
|
|
254
|
-
"""
|
|
255
|
-
|
|
256
|
-
def draw(self, _context) -> None:
|
|
257
|
-
"""
|
|
253
|
+
class NODE_MT_shader_node_vector_base(bl_ui.node_add_menu.NodeMenu):
|
|
254
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
258
255
|
|
|
259
|
-
:param _context:
|
|
260
|
-
"""
|
|
261
|
-
|
|
262
|
-
class NODE_MT_shader_node_add_all(_bpy_types.Menu):
|
|
263
|
-
bl_idname: typing.Any
|
|
264
256
|
bl_label: typing.Any
|
|
265
257
|
bl_rna: typing.Any
|
|
266
|
-
bl_translation_context: typing.Any
|
|
267
258
|
id_data: typing.Any
|
|
268
259
|
|
|
269
260
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -3,13 +3,17 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import _bpy_types
|
|
6
|
+
import bl_ui.node_add_menu
|
|
6
7
|
import bpy.types
|
|
7
8
|
|
|
8
|
-
class
|
|
9
|
-
|
|
9
|
+
class NODE_MT_texture_node_all_base(bl_ui.node_add_menu.NodeMenu):
|
|
10
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
11
|
+
|
|
10
12
|
bl_label: typing.Any
|
|
11
13
|
bl_rna: typing.Any
|
|
14
|
+
bl_translation_context: typing.Any
|
|
12
15
|
id_data: typing.Any
|
|
16
|
+
menu_path: typing.Any
|
|
13
17
|
|
|
14
18
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
15
19
|
"""
|
|
@@ -25,14 +29,13 @@ class NODE_MT_category_texture_color(_bpy_types.Menu):
|
|
|
25
29
|
:rtype: typing.Any
|
|
26
30
|
"""
|
|
27
31
|
|
|
28
|
-
def draw(self,
|
|
32
|
+
def draw(self, context) -> None:
|
|
29
33
|
"""
|
|
30
34
|
|
|
31
|
-
:param
|
|
35
|
+
:param context:
|
|
32
36
|
"""
|
|
33
37
|
|
|
34
|
-
class
|
|
35
|
-
bl_idname: typing.Any
|
|
38
|
+
class NODE_MT_texture_node_color_base(_bpy_types.Menu):
|
|
36
39
|
bl_label: typing.Any
|
|
37
40
|
bl_rna: typing.Any
|
|
38
41
|
id_data: typing.Any
|
|
@@ -57,8 +60,7 @@ class NODE_MT_category_texture_converter(_bpy_types.Menu):
|
|
|
57
60
|
:param _context:
|
|
58
61
|
"""
|
|
59
62
|
|
|
60
|
-
class
|
|
61
|
-
bl_idname: typing.Any
|
|
63
|
+
class NODE_MT_texture_node_converter_base(_bpy_types.Menu):
|
|
62
64
|
bl_label: typing.Any
|
|
63
65
|
bl_rna: typing.Any
|
|
64
66
|
id_data: typing.Any
|
|
@@ -83,34 +85,7 @@ class NODE_MT_category_texture_distort(_bpy_types.Menu):
|
|
|
83
85
|
:param _context:
|
|
84
86
|
"""
|
|
85
87
|
|
|
86
|
-
class
|
|
87
|
-
bl_idname: typing.Any
|
|
88
|
-
bl_label: typing.Any
|
|
89
|
-
bl_rna: typing.Any
|
|
90
|
-
id_data: typing.Any
|
|
91
|
-
|
|
92
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
93
|
-
"""
|
|
94
|
-
|
|
95
|
-
:return: The RNA type or default when not found.
|
|
96
|
-
:rtype: bpy.types.Struct
|
|
97
|
-
"""
|
|
98
|
-
|
|
99
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
100
|
-
"""
|
|
101
|
-
|
|
102
|
-
:return: The class or default when not found.
|
|
103
|
-
:rtype: typing.Any
|
|
104
|
-
"""
|
|
105
|
-
|
|
106
|
-
def draw(self, context) -> None:
|
|
107
|
-
"""
|
|
108
|
-
|
|
109
|
-
:param context:
|
|
110
|
-
"""
|
|
111
|
-
|
|
112
|
-
class NODE_MT_category_texture_input(_bpy_types.Menu):
|
|
113
|
-
bl_idname: typing.Any
|
|
88
|
+
class NODE_MT_texture_node_distort_base(_bpy_types.Menu):
|
|
114
89
|
bl_label: typing.Any
|
|
115
90
|
bl_rna: typing.Any
|
|
116
91
|
id_data: typing.Any
|
|
@@ -135,8 +110,7 @@ class NODE_MT_category_texture_input(_bpy_types.Menu):
|
|
|
135
110
|
:param _context:
|
|
136
111
|
"""
|
|
137
112
|
|
|
138
|
-
class
|
|
139
|
-
bl_idname: typing.Any
|
|
113
|
+
class NODE_MT_texture_node_input_base(_bpy_types.Menu):
|
|
140
114
|
bl_label: typing.Any
|
|
141
115
|
bl_rna: typing.Any
|
|
142
116
|
id_data: typing.Any
|
|
@@ -161,11 +135,9 @@ class NODE_MT_category_texture_output(_bpy_types.Menu):
|
|
|
161
135
|
:param _context:
|
|
162
136
|
"""
|
|
163
137
|
|
|
164
|
-
class
|
|
165
|
-
bl_idname: typing.Any
|
|
138
|
+
class NODE_MT_texture_node_output_base(_bpy_types.Menu):
|
|
166
139
|
bl_label: typing.Any
|
|
167
140
|
bl_rna: typing.Any
|
|
168
|
-
bl_translation_context: typing.Any
|
|
169
141
|
id_data: typing.Any
|
|
170
142
|
|
|
171
143
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -188,10 +160,10 @@ class NODE_MT_category_texture_pattern(_bpy_types.Menu):
|
|
|
188
160
|
:param _context:
|
|
189
161
|
"""
|
|
190
162
|
|
|
191
|
-
class
|
|
192
|
-
bl_idname: typing.Any
|
|
163
|
+
class NODE_MT_texture_node_pattern_base(_bpy_types.Menu):
|
|
193
164
|
bl_label: typing.Any
|
|
194
165
|
bl_rna: typing.Any
|
|
166
|
+
bl_translation_context: typing.Any
|
|
195
167
|
id_data: typing.Any
|
|
196
168
|
|
|
197
169
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -214,11 +186,9 @@ class NODE_MT_category_texture_texture(_bpy_types.Menu):
|
|
|
214
186
|
:param _context:
|
|
215
187
|
"""
|
|
216
188
|
|
|
217
|
-
class
|
|
218
|
-
bl_idname: typing.Any
|
|
189
|
+
class NODE_MT_texture_node_texture_base(_bpy_types.Menu):
|
|
219
190
|
bl_label: typing.Any
|
|
220
191
|
bl_rna: typing.Any
|
|
221
|
-
bl_translation_context: typing.Any
|
|
222
192
|
id_data: typing.Any
|
|
223
193
|
|
|
224
194
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
bl_ui/space_clip/__init__.pyi
CHANGED
|
@@ -1094,13 +1094,13 @@ class CLIP_PT_marker(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
|
1094
1094
|
:param context:
|
|
1095
1095
|
"""
|
|
1096
1096
|
|
|
1097
|
-
class
|
|
1097
|
+
class CLIP_PT_mask(bl_ui.properties_mask_common.MASK_PT_mask, _bpy_types.Panel):
|
|
1098
|
+
bl_category: typing.Any
|
|
1098
1099
|
bl_label: typing.Any
|
|
1099
|
-
|
|
1100
|
+
bl_options: typing.Any
|
|
1100
1101
|
bl_region_type: typing.Any
|
|
1101
1102
|
bl_rna: typing.Any
|
|
1102
1103
|
bl_space_type: typing.Any
|
|
1103
|
-
bl_ui_units_x: typing.Any
|
|
1104
1104
|
id_data: typing.Any
|
|
1105
1105
|
|
|
1106
1106
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -1117,16 +1117,36 @@ class CLIP_PT_marker_display(_bpy_types.Panel):
|
|
|
1117
1117
|
:rtype: typing.Any
|
|
1118
1118
|
"""
|
|
1119
1119
|
|
|
1120
|
-
|
|
1120
|
+
class CLIP_PT_mask_animation(
|
|
1121
|
+
bl_ui.properties_mask_common.MASK_PT_animation, _bpy_types.Panel
|
|
1122
|
+
):
|
|
1123
|
+
bl_category: typing.Any
|
|
1124
|
+
bl_label: typing.Any
|
|
1125
|
+
bl_options: typing.Any
|
|
1126
|
+
bl_region_type: typing.Any
|
|
1127
|
+
bl_rna: typing.Any
|
|
1128
|
+
bl_space_type: typing.Any
|
|
1129
|
+
id_data: typing.Any
|
|
1130
|
+
|
|
1131
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1121
1132
|
"""
|
|
1122
1133
|
|
|
1123
|
-
:
|
|
1134
|
+
:return: The RNA type or default when not found.
|
|
1135
|
+
:rtype: bpy.types.Struct
|
|
1124
1136
|
"""
|
|
1125
1137
|
|
|
1126
|
-
|
|
1138
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1139
|
+
"""
|
|
1140
|
+
|
|
1141
|
+
:return: The class or default when not found.
|
|
1142
|
+
:rtype: typing.Any
|
|
1143
|
+
"""
|
|
1144
|
+
|
|
1145
|
+
class CLIP_PT_mask_layers(
|
|
1146
|
+
bl_ui.properties_mask_common.MASK_PT_layers, _bpy_types.Panel
|
|
1147
|
+
):
|
|
1127
1148
|
bl_category: typing.Any
|
|
1128
1149
|
bl_label: typing.Any
|
|
1129
|
-
bl_options: typing.Any
|
|
1130
1150
|
bl_region_type: typing.Any
|
|
1131
1151
|
bl_rna: typing.Any
|
|
1132
1152
|
bl_space_type: typing.Any
|
|
@@ -1146,9 +1166,7 @@ class CLIP_PT_mask(bl_ui.properties_mask_common.MASK_PT_mask, _bpy_types.Panel):
|
|
|
1146
1166
|
:rtype: typing.Any
|
|
1147
1167
|
"""
|
|
1148
1168
|
|
|
1149
|
-
class
|
|
1150
|
-
bl_ui.properties_mask_common.MASK_PT_animation, _bpy_types.Panel
|
|
1151
|
-
):
|
|
1169
|
+
class CLIP_PT_objects(CLIP_PT_clip_view_panel, _bpy_types.Panel):
|
|
1152
1170
|
bl_category: typing.Any
|
|
1153
1171
|
bl_label: typing.Any
|
|
1154
1172
|
bl_options: typing.Any
|
|
@@ -1171,13 +1189,18 @@ class CLIP_PT_mask_animation(
|
|
|
1171
1189
|
:rtype: typing.Any
|
|
1172
1190
|
"""
|
|
1173
1191
|
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1192
|
+
def draw(self, context) -> None:
|
|
1193
|
+
"""
|
|
1194
|
+
|
|
1195
|
+
:param context:
|
|
1196
|
+
"""
|
|
1197
|
+
|
|
1198
|
+
class CLIP_PT_overlay(_bpy_types.Panel):
|
|
1177
1199
|
bl_label: typing.Any
|
|
1178
1200
|
bl_region_type: typing.Any
|
|
1179
1201
|
bl_rna: typing.Any
|
|
1180
1202
|
bl_space_type: typing.Any
|
|
1203
|
+
bl_ui_units_x: typing.Any
|
|
1181
1204
|
id_data: typing.Any
|
|
1182
1205
|
|
|
1183
1206
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -1194,11 +1217,15 @@ class CLIP_PT_mask_display(
|
|
|
1194
1217
|
:rtype: typing.Any
|
|
1195
1218
|
"""
|
|
1196
1219
|
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1220
|
+
def draw(self, _context) -> None:
|
|
1221
|
+
"""
|
|
1222
|
+
|
|
1223
|
+
:param _context:
|
|
1224
|
+
"""
|
|
1225
|
+
|
|
1226
|
+
class CLIP_PT_overlay_display(_bpy_types.Panel):
|
|
1201
1227
|
bl_label: typing.Any
|
|
1228
|
+
bl_parent_id: typing.Any
|
|
1202
1229
|
bl_region_type: typing.Any
|
|
1203
1230
|
bl_rna: typing.Any
|
|
1204
1231
|
bl_space_type: typing.Any
|
|
@@ -1218,10 +1245,15 @@ class CLIP_PT_mask_layers(
|
|
|
1218
1245
|
:rtype: typing.Any
|
|
1219
1246
|
"""
|
|
1220
1247
|
|
|
1221
|
-
|
|
1222
|
-
|
|
1248
|
+
def draw(self, context) -> None:
|
|
1249
|
+
"""
|
|
1250
|
+
|
|
1251
|
+
:param context:
|
|
1252
|
+
"""
|
|
1253
|
+
|
|
1254
|
+
class CLIP_PT_overlay_guides(_bpy_types.Panel):
|
|
1223
1255
|
bl_label: typing.Any
|
|
1224
|
-
|
|
1256
|
+
bl_parent_id: typing.Any
|
|
1225
1257
|
bl_region_type: typing.Any
|
|
1226
1258
|
bl_rna: typing.Any
|
|
1227
1259
|
bl_space_type: typing.Any
|
|
@@ -1247,6 +1279,37 @@ class CLIP_PT_objects(CLIP_PT_clip_view_panel, _bpy_types.Panel):
|
|
|
1247
1279
|
:param context:
|
|
1248
1280
|
"""
|
|
1249
1281
|
|
|
1282
|
+
class CLIP_PT_overlay_mask(
|
|
1283
|
+
bl_ui.properties_mask_common.MASK_PT_display, _bpy_types.Panel
|
|
1284
|
+
):
|
|
1285
|
+
bl_label: typing.Any
|
|
1286
|
+
bl_parent_id: typing.Any
|
|
1287
|
+
bl_region_type: typing.Any
|
|
1288
|
+
bl_rna: typing.Any
|
|
1289
|
+
bl_space_type: typing.Any
|
|
1290
|
+
id_data: typing.Any
|
|
1291
|
+
|
|
1292
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1293
|
+
"""
|
|
1294
|
+
|
|
1295
|
+
:return: The RNA type or default when not found.
|
|
1296
|
+
:rtype: bpy.types.Struct
|
|
1297
|
+
"""
|
|
1298
|
+
|
|
1299
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1300
|
+
"""
|
|
1301
|
+
|
|
1302
|
+
:return: The class or default when not found.
|
|
1303
|
+
:rtype: typing.Any
|
|
1304
|
+
"""
|
|
1305
|
+
|
|
1306
|
+
@classmethod
|
|
1307
|
+
def poll(cls, context) -> None:
|
|
1308
|
+
"""
|
|
1309
|
+
|
|
1310
|
+
:param context:
|
|
1311
|
+
"""
|
|
1312
|
+
|
|
1250
1313
|
class CLIP_PT_plane_track(CLIP_PT_tracking_panel, _bpy_types.Panel):
|
|
1251
1314
|
bl_category: typing.Any
|
|
1252
1315
|
bl_label: typing.Any
|
bl_ui/space_image/__init__.pyi
CHANGED
|
@@ -908,9 +908,10 @@ class IMAGE_PT_mask_animation(
|
|
|
908
908
|
:rtype: typing.Any
|
|
909
909
|
"""
|
|
910
910
|
|
|
911
|
-
class
|
|
912
|
-
bl_ui.properties_mask_common.
|
|
911
|
+
class IMAGE_PT_mask_layers(
|
|
912
|
+
bl_ui.properties_mask_common.MASK_PT_layers, _bpy_types.Panel
|
|
913
913
|
):
|
|
914
|
+
bl_category: typing.Any
|
|
914
915
|
bl_label: typing.Any
|
|
915
916
|
bl_region_type: typing.Any
|
|
916
917
|
bl_rna: typing.Any
|
|
@@ -931,14 +932,12 @@ class IMAGE_PT_mask_display(
|
|
|
931
932
|
:rtype: typing.Any
|
|
932
933
|
"""
|
|
933
934
|
|
|
934
|
-
class
|
|
935
|
-
bl_ui.properties_mask_common.MASK_PT_layers, _bpy_types.Panel
|
|
936
|
-
):
|
|
937
|
-
bl_category: typing.Any
|
|
935
|
+
class IMAGE_PT_overlay(_bpy_types.Panel):
|
|
938
936
|
bl_label: typing.Any
|
|
939
937
|
bl_region_type: typing.Any
|
|
940
938
|
bl_rna: typing.Any
|
|
941
939
|
bl_space_type: typing.Any
|
|
940
|
+
bl_ui_units_x: typing.Any
|
|
942
941
|
id_data: typing.Any
|
|
943
942
|
|
|
944
943
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -955,12 +954,18 @@ class IMAGE_PT_mask_layers(
|
|
|
955
954
|
:rtype: typing.Any
|
|
956
955
|
"""
|
|
957
956
|
|
|
958
|
-
|
|
957
|
+
def draw(self, context) -> None:
|
|
958
|
+
"""
|
|
959
|
+
|
|
960
|
+
:param context:
|
|
961
|
+
"""
|
|
962
|
+
|
|
963
|
+
class IMAGE_PT_overlay_guides(_bpy_types.Panel):
|
|
959
964
|
bl_label: typing.Any
|
|
965
|
+
bl_parent_id: typing.Any
|
|
960
966
|
bl_region_type: typing.Any
|
|
961
967
|
bl_rna: typing.Any
|
|
962
968
|
bl_space_type: typing.Any
|
|
963
|
-
bl_ui_units_x: typing.Any
|
|
964
969
|
id_data: typing.Any
|
|
965
970
|
|
|
966
971
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -983,7 +988,14 @@ class IMAGE_PT_overlay(_bpy_types.Panel):
|
|
|
983
988
|
:param context:
|
|
984
989
|
"""
|
|
985
990
|
|
|
986
|
-
|
|
991
|
+
@classmethod
|
|
992
|
+
def poll(cls, context) -> None:
|
|
993
|
+
"""
|
|
994
|
+
|
|
995
|
+
:param context:
|
|
996
|
+
"""
|
|
997
|
+
|
|
998
|
+
class IMAGE_PT_overlay_image(_bpy_types.Panel):
|
|
987
999
|
bl_label: typing.Any
|
|
988
1000
|
bl_parent_id: typing.Any
|
|
989
1001
|
bl_region_type: typing.Any
|
|
@@ -1011,14 +1023,9 @@ class IMAGE_PT_overlay_guides(_bpy_types.Panel):
|
|
|
1011
1023
|
:param context:
|
|
1012
1024
|
"""
|
|
1013
1025
|
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
:param context:
|
|
1019
|
-
"""
|
|
1020
|
-
|
|
1021
|
-
class IMAGE_PT_overlay_image(_bpy_types.Panel):
|
|
1026
|
+
class IMAGE_PT_overlay_mask(
|
|
1027
|
+
bl_ui.properties_mask_common.MASK_PT_display, _bpy_types.Panel
|
|
1028
|
+
):
|
|
1022
1029
|
bl_label: typing.Any
|
|
1023
1030
|
bl_parent_id: typing.Any
|
|
1024
1031
|
bl_region_type: typing.Any
|
|
@@ -1040,7 +1047,8 @@ class IMAGE_PT_overlay_image(_bpy_types.Panel):
|
|
|
1040
1047
|
:rtype: typing.Any
|
|
1041
1048
|
"""
|
|
1042
1049
|
|
|
1043
|
-
|
|
1050
|
+
@classmethod
|
|
1051
|
+
def poll(cls, context) -> None:
|
|
1044
1052
|
"""
|
|
1045
1053
|
|
|
1046
1054
|
:param context:
|
bl_ui/space_node/__init__.pyi
CHANGED
|
@@ -3,6 +3,7 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import _bpy_types
|
|
6
|
+
import bl_ui.node_add_menu
|
|
6
7
|
import bl_ui.properties_grease_pencil_common
|
|
7
8
|
import bl_ui.space_toolsystem_common
|
|
8
9
|
import bl_ui.utils
|
|
@@ -68,13 +69,21 @@ class NODE_HT_header(_bpy_types.Header):
|
|
|
68
69
|
:param context:
|
|
69
70
|
"""
|
|
70
71
|
|
|
71
|
-
class NODE_MT_add(
|
|
72
|
+
class NODE_MT_add(bl_ui.node_add_menu.AddNodeMenu):
|
|
73
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
74
|
+
|
|
72
75
|
bl_label: typing.Any
|
|
73
76
|
bl_options: typing.Any
|
|
74
77
|
bl_rna: typing.Any
|
|
75
78
|
bl_space_type: typing.Any
|
|
76
79
|
bl_translation_context: typing.Any
|
|
80
|
+
draw_assets: typing.Any
|
|
77
81
|
id_data: typing.Any
|
|
82
|
+
main_operator_id: typing.Any
|
|
83
|
+
new_empty_group_operator_id: typing.Any
|
|
84
|
+
root_asset_menu: typing.Any
|
|
85
|
+
use_transform: typing.Any
|
|
86
|
+
zone_operator_id: typing.Any
|
|
78
87
|
|
|
79
88
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
80
89
|
"""
|
|
@@ -297,6 +306,41 @@ class NODE_MT_select(_bpy_types.Menu):
|
|
|
297
306
|
:param _context:
|
|
298
307
|
"""
|
|
299
308
|
|
|
309
|
+
class NODE_MT_swap(bl_ui.node_add_menu.SwapNodeMenu):
|
|
310
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
311
|
+
|
|
312
|
+
bl_label: typing.Any
|
|
313
|
+
bl_options: typing.Any
|
|
314
|
+
bl_rna: typing.Any
|
|
315
|
+
bl_space_type: typing.Any
|
|
316
|
+
bl_translation_context: typing.Any
|
|
317
|
+
draw_assets: typing.Any
|
|
318
|
+
id_data: typing.Any
|
|
319
|
+
main_operator_id: typing.Any
|
|
320
|
+
new_empty_group_operator_id: typing.Any
|
|
321
|
+
root_asset_menu: typing.Any
|
|
322
|
+
zone_operator_id: typing.Any
|
|
323
|
+
|
|
324
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
325
|
+
"""
|
|
326
|
+
|
|
327
|
+
:return: The RNA type or default when not found.
|
|
328
|
+
:rtype: bpy.types.Struct
|
|
329
|
+
"""
|
|
330
|
+
|
|
331
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
332
|
+
"""
|
|
333
|
+
|
|
334
|
+
:return: The class or default when not found.
|
|
335
|
+
:rtype: typing.Any
|
|
336
|
+
"""
|
|
337
|
+
|
|
338
|
+
def draw(self, context) -> None:
|
|
339
|
+
"""
|
|
340
|
+
|
|
341
|
+
:param context:
|
|
342
|
+
"""
|
|
343
|
+
|
|
300
344
|
class NODE_MT_view(_bpy_types.Menu):
|
|
301
345
|
bl_label: typing.Any
|
|
302
346
|
bl_rna: typing.Any
|
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -4961,31 +4961,6 @@ class VIEW3D_MT_view_regions(_bpy_types.Menu):
|
|
|
4961
4961
|
:param _context:
|
|
4962
4962
|
"""
|
|
4963
4963
|
|
|
4964
|
-
class VIEW3D_MT_view_render(_bpy_types.Menu):
|
|
4965
|
-
bl_label: typing.Any
|
|
4966
|
-
bl_rna: typing.Any
|
|
4967
|
-
id_data: typing.Any
|
|
4968
|
-
|
|
4969
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
4970
|
-
"""
|
|
4971
|
-
|
|
4972
|
-
:return: The RNA type or default when not found.
|
|
4973
|
-
:rtype: bpy.types.Struct
|
|
4974
|
-
"""
|
|
4975
|
-
|
|
4976
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
4977
|
-
"""
|
|
4978
|
-
|
|
4979
|
-
:return: The class or default when not found.
|
|
4980
|
-
:rtype: typing.Any
|
|
4981
|
-
"""
|
|
4982
|
-
|
|
4983
|
-
def draw(self, _context) -> None:
|
|
4984
|
-
"""
|
|
4985
|
-
|
|
4986
|
-
:param _context:
|
|
4987
|
-
"""
|
|
4988
|
-
|
|
4989
4964
|
class VIEW3D_MT_view_viewpoint(_bpy_types.Menu):
|
|
4990
4965
|
bl_label: typing.Any
|
|
4991
4966
|
bl_rna: typing.Any
|