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_compositor_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
|
"""
|
|
@@ -25,17 +28,19 @@ class NODE_MT_category_compositor_color(_bpy_types.Menu):
|
|
|
25
28
|
:rtype: typing.Any
|
|
26
29
|
"""
|
|
27
30
|
|
|
28
|
-
def draw(self,
|
|
31
|
+
def draw(self, context) -> None:
|
|
29
32
|
"""
|
|
30
33
|
|
|
31
|
-
:param
|
|
34
|
+
:param context:
|
|
32
35
|
"""
|
|
33
36
|
|
|
34
|
-
class
|
|
35
|
-
|
|
37
|
+
class NODE_MT_compositor_node_color_adjust_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
|
|
43
|
+
menu_path: typing.Any
|
|
39
44
|
|
|
40
45
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
41
46
|
"""
|
|
@@ -57,8 +62,9 @@ class NODE_MT_category_compositor_color_adjust(_bpy_types.Menu):
|
|
|
57
62
|
:param _context:
|
|
58
63
|
"""
|
|
59
64
|
|
|
60
|
-
class
|
|
61
|
-
|
|
65
|
+
class NODE_MT_compositor_node_color_base(bl_ui.node_add_menu.NodeMenu):
|
|
66
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
67
|
+
|
|
62
68
|
bl_label: typing.Any
|
|
63
69
|
bl_rna: typing.Any
|
|
64
70
|
id_data: typing.Any
|
|
@@ -77,17 +83,19 @@ class NODE_MT_category_compositor_color_mix(_bpy_types.Menu):
|
|
|
77
83
|
:rtype: typing.Any
|
|
78
84
|
"""
|
|
79
85
|
|
|
80
|
-
def draw(self,
|
|
86
|
+
def draw(self, _context) -> None:
|
|
81
87
|
"""
|
|
82
88
|
|
|
83
|
-
:param
|
|
89
|
+
:param _context:
|
|
84
90
|
"""
|
|
85
91
|
|
|
86
|
-
class
|
|
87
|
-
|
|
92
|
+
class NODE_MT_compositor_node_color_mix_base(bl_ui.node_add_menu.NodeMenu):
|
|
93
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
94
|
+
|
|
88
95
|
bl_label: typing.Any
|
|
89
96
|
bl_rna: typing.Any
|
|
90
97
|
id_data: typing.Any
|
|
98
|
+
menu_path: typing.Any
|
|
91
99
|
|
|
92
100
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
93
101
|
"""
|
|
@@ -109,8 +117,9 @@ class NODE_MT_category_compositor_filter(_bpy_types.Menu):
|
|
|
109
117
|
:param context:
|
|
110
118
|
"""
|
|
111
119
|
|
|
112
|
-
class
|
|
113
|
-
|
|
120
|
+
class NODE_MT_compositor_node_filter_base(bl_ui.node_add_menu.NodeMenu):
|
|
121
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
122
|
+
|
|
114
123
|
bl_label: typing.Any
|
|
115
124
|
bl_rna: typing.Any
|
|
116
125
|
id_data: typing.Any
|
|
@@ -129,17 +138,19 @@ class NODE_MT_category_compositor_filter_blur(_bpy_types.Menu):
|
|
|
129
138
|
:rtype: typing.Any
|
|
130
139
|
"""
|
|
131
140
|
|
|
132
|
-
def draw(self,
|
|
141
|
+
def draw(self, context) -> None:
|
|
133
142
|
"""
|
|
134
143
|
|
|
135
|
-
:param
|
|
144
|
+
:param context:
|
|
136
145
|
"""
|
|
137
146
|
|
|
138
|
-
class
|
|
139
|
-
|
|
147
|
+
class NODE_MT_compositor_node_filter_blur_base(bl_ui.node_add_menu.NodeMenu):
|
|
148
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
149
|
+
|
|
140
150
|
bl_label: typing.Any
|
|
141
151
|
bl_rna: typing.Any
|
|
142
152
|
id_data: typing.Any
|
|
153
|
+
menu_path: typing.Any
|
|
143
154
|
|
|
144
155
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
145
156
|
"""
|
|
@@ -155,14 +166,15 @@ class NODE_MT_category_compositor_group(_bpy_types.Menu):
|
|
|
155
166
|
:rtype: typing.Any
|
|
156
167
|
"""
|
|
157
168
|
|
|
158
|
-
def draw(self,
|
|
169
|
+
def draw(self, _context) -> None:
|
|
159
170
|
"""
|
|
160
171
|
|
|
161
|
-
:param
|
|
172
|
+
:param _context:
|
|
162
173
|
"""
|
|
163
174
|
|
|
164
|
-
class
|
|
165
|
-
|
|
175
|
+
class NODE_MT_compositor_node_input_base(bl_ui.node_add_menu.NodeMenu):
|
|
176
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
177
|
+
|
|
166
178
|
bl_label: typing.Any
|
|
167
179
|
bl_rna: typing.Any
|
|
168
180
|
id_data: typing.Any
|
|
@@ -187,11 +199,13 @@ class NODE_MT_category_compositor_input(_bpy_types.Menu):
|
|
|
187
199
|
:param context:
|
|
188
200
|
"""
|
|
189
201
|
|
|
190
|
-
class
|
|
191
|
-
|
|
202
|
+
class NODE_MT_compositor_node_input_constant_base(bl_ui.node_add_menu.NodeMenu):
|
|
203
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
204
|
+
|
|
192
205
|
bl_label: typing.Any
|
|
193
206
|
bl_rna: typing.Any
|
|
194
207
|
id_data: typing.Any
|
|
208
|
+
menu_path: typing.Any
|
|
195
209
|
|
|
196
210
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
197
211
|
"""
|
|
@@ -213,11 +227,13 @@ class NODE_MT_category_compositor_input_constant(_bpy_types.Menu):
|
|
|
213
227
|
:param _context:
|
|
214
228
|
"""
|
|
215
229
|
|
|
216
|
-
class
|
|
217
|
-
|
|
230
|
+
class NODE_MT_compositor_node_input_scene_base(bl_ui.node_add_menu.NodeMenu):
|
|
231
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
232
|
+
|
|
218
233
|
bl_label: typing.Any
|
|
219
234
|
bl_rna: typing.Any
|
|
220
235
|
id_data: typing.Any
|
|
236
|
+
menu_path: typing.Any
|
|
221
237
|
|
|
222
238
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
223
239
|
"""
|
|
@@ -239,8 +255,9 @@ class NODE_MT_category_compositor_input_scene(_bpy_types.Menu):
|
|
|
239
255
|
:param context:
|
|
240
256
|
"""
|
|
241
257
|
|
|
242
|
-
class
|
|
243
|
-
|
|
258
|
+
class NODE_MT_compositor_node_keying_base(bl_ui.node_add_menu.NodeMenu):
|
|
259
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
260
|
+
|
|
244
261
|
bl_label: typing.Any
|
|
245
262
|
bl_rna: typing.Any
|
|
246
263
|
id_data: typing.Any
|
|
@@ -265,8 +282,9 @@ class NODE_MT_category_compositor_keying(_bpy_types.Menu):
|
|
|
265
282
|
:param _context:
|
|
266
283
|
"""
|
|
267
284
|
|
|
268
|
-
class
|
|
269
|
-
|
|
285
|
+
class NODE_MT_compositor_node_mask_base(bl_ui.node_add_menu.NodeMenu):
|
|
286
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
287
|
+
|
|
270
288
|
bl_label: typing.Any
|
|
271
289
|
bl_rna: typing.Any
|
|
272
290
|
id_data: typing.Any
|
|
@@ -291,8 +309,9 @@ class NODE_MT_category_compositor_mask(_bpy_types.Menu):
|
|
|
291
309
|
:param _context:
|
|
292
310
|
"""
|
|
293
311
|
|
|
294
|
-
class
|
|
295
|
-
|
|
312
|
+
class NODE_MT_compositor_node_output_base(bl_ui.node_add_menu.NodeMenu):
|
|
313
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
314
|
+
|
|
296
315
|
bl_label: typing.Any
|
|
297
316
|
bl_rna: typing.Any
|
|
298
317
|
id_data: typing.Any
|
|
@@ -317,8 +336,9 @@ class NODE_MT_category_compositor_output(_bpy_types.Menu):
|
|
|
317
336
|
:param context:
|
|
318
337
|
"""
|
|
319
338
|
|
|
320
|
-
class
|
|
321
|
-
|
|
339
|
+
class NODE_MT_compositor_node_texture_base(bl_ui.node_add_menu.NodeMenu):
|
|
340
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
341
|
+
|
|
322
342
|
bl_label: typing.Any
|
|
323
343
|
bl_rna: typing.Any
|
|
324
344
|
id_data: typing.Any
|
|
@@ -343,8 +363,9 @@ class NODE_MT_category_compositor_texture(_bpy_types.Menu):
|
|
|
343
363
|
:param _context:
|
|
344
364
|
"""
|
|
345
365
|
|
|
346
|
-
class
|
|
347
|
-
|
|
366
|
+
class NODE_MT_compositor_node_tracking_base(bl_ui.node_add_menu.NodeMenu):
|
|
367
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
368
|
+
|
|
348
369
|
bl_label: typing.Any
|
|
349
370
|
bl_rna: typing.Any
|
|
350
371
|
bl_translation_context: typing.Any
|
|
@@ -370,8 +391,9 @@ class NODE_MT_category_compositor_tracking(_bpy_types.Menu):
|
|
|
370
391
|
:param _context:
|
|
371
392
|
"""
|
|
372
393
|
|
|
373
|
-
class
|
|
374
|
-
|
|
394
|
+
class NODE_MT_compositor_node_transform_base(bl_ui.node_add_menu.NodeMenu):
|
|
395
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
396
|
+
|
|
375
397
|
bl_label: typing.Any
|
|
376
398
|
bl_rna: typing.Any
|
|
377
399
|
id_data: typing.Any
|
|
@@ -396,34 +418,9 @@ class NODE_MT_category_compositor_transform(_bpy_types.Menu):
|
|
|
396
418
|
:param _context:
|
|
397
419
|
"""
|
|
398
420
|
|
|
399
|
-
class
|
|
400
|
-
|
|
401
|
-
bl_label: typing.Any
|
|
402
|
-
bl_rna: typing.Any
|
|
403
|
-
id_data: typing.Any
|
|
404
|
-
|
|
405
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
406
|
-
"""
|
|
407
|
-
|
|
408
|
-
:return: The RNA type or default when not found.
|
|
409
|
-
:rtype: bpy.types.Struct
|
|
410
|
-
"""
|
|
411
|
-
|
|
412
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
413
|
-
"""
|
|
414
|
-
|
|
415
|
-
:return: The class or default when not found.
|
|
416
|
-
:rtype: typing.Any
|
|
417
|
-
"""
|
|
418
|
-
|
|
419
|
-
def draw(self, context) -> None:
|
|
420
|
-
"""
|
|
421
|
+
class NODE_MT_compositor_node_utilities_base(bl_ui.node_add_menu.NodeMenu):
|
|
422
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
421
423
|
|
|
422
|
-
:param context:
|
|
423
|
-
"""
|
|
424
|
-
|
|
425
|
-
class NODE_MT_category_compositor_vector(_bpy_types.Menu):
|
|
426
|
-
bl_idname: typing.Any
|
|
427
424
|
bl_label: typing.Any
|
|
428
425
|
bl_rna: typing.Any
|
|
429
426
|
id_data: typing.Any
|
|
@@ -448,8 +445,9 @@ class NODE_MT_category_compositor_vector(_bpy_types.Menu):
|
|
|
448
445
|
:param context:
|
|
449
446
|
"""
|
|
450
447
|
|
|
451
|
-
class
|
|
452
|
-
|
|
448
|
+
class NODE_MT_compositor_node_vector_base(bl_ui.node_add_menu.NodeMenu):
|
|
449
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
450
|
+
|
|
453
451
|
bl_label: typing.Any
|
|
454
452
|
bl_rna: typing.Any
|
|
455
453
|
id_data: typing.Any
|