fake-bpy-module 20250908__py3-none-any.whl → 20250910__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/mesh/__init__.pyi +0 -43
- bl_ui/properties_data_mesh/__init__.pyi +1 -0
- bl_ui/properties_grease_pencil_common/__init__.pyi +0 -145
- bl_ui/properties_material_gpencil/__init__.pyi +25 -25
- bl_ui/space_dopesheet/__init__.pyi +35 -12
- bl_ui/space_sequencer/__init__.pyi +61 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +0 -2
- bl_ui/space_view3d_toolbar/__init__.pyi +0 -25
- bpy/ops/gpencil/__init__.pyi +0 -11
- bpy/ops/mesh/__init__.pyi +0 -18
- bpy/ops/node/__init__.pyi +11 -0
- bpy/ops/uv/__init__.pyi +98 -0
- bpy/types/__init__.pyi +8 -241
- {fake_bpy_module-20250908.dist-info → fake_bpy_module-20250910.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250908.dist-info → fake_bpy_module-20250910.dist-info}/RECORD +18 -18
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20250908.dist-info → fake_bpy_module-20250910.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250908.dist-info → fake_bpy_module-20250910.dist-info}/top_level.txt +0 -0
bl_operators/mesh/__init__.pyi
CHANGED
|
@@ -5,49 +5,6 @@ import numpy.typing as npt
|
|
|
5
5
|
import _bpy_types
|
|
6
6
|
import bpy.types
|
|
7
7
|
|
|
8
|
-
class MeshMirrorUV(_bpy_types.Operator):
|
|
9
|
-
"""Copy mirror UV coordinates on the X axis based on a mirrored mesh"""
|
|
10
|
-
|
|
11
|
-
bl_idname: typing.Any
|
|
12
|
-
bl_label: typing.Any
|
|
13
|
-
bl_options: typing.Any
|
|
14
|
-
bl_rna: typing.Any
|
|
15
|
-
id_data: typing.Any
|
|
16
|
-
|
|
17
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
18
|
-
"""
|
|
19
|
-
|
|
20
|
-
:return: The RNA type or default when not found.
|
|
21
|
-
:rtype: bpy.types.Struct
|
|
22
|
-
"""
|
|
23
|
-
|
|
24
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
25
|
-
"""
|
|
26
|
-
|
|
27
|
-
:return: The class or default when not found.
|
|
28
|
-
:rtype: typing.Any
|
|
29
|
-
"""
|
|
30
|
-
|
|
31
|
-
def do_mesh_mirror_UV(self, mesh, DIR) -> None:
|
|
32
|
-
"""
|
|
33
|
-
|
|
34
|
-
:param mesh:
|
|
35
|
-
:param DIR:
|
|
36
|
-
"""
|
|
37
|
-
|
|
38
|
-
def execute(self, context) -> None:
|
|
39
|
-
"""
|
|
40
|
-
|
|
41
|
-
:param context:
|
|
42
|
-
"""
|
|
43
|
-
|
|
44
|
-
@classmethod
|
|
45
|
-
def poll(cls, context) -> None:
|
|
46
|
-
"""
|
|
47
|
-
|
|
48
|
-
:param context:
|
|
49
|
-
"""
|
|
50
|
-
|
|
51
8
|
class MeshSelectNext(_bpy_types.Operator):
|
|
52
9
|
"""Select the next element (using selection order)"""
|
|
53
10
|
|
|
@@ -106,88 +106,6 @@ class GPENCIL_UL_annotation_layer(_bpy_types.UIList):
|
|
|
106
106
|
:param _index:
|
|
107
107
|
"""
|
|
108
108
|
|
|
109
|
-
class GPENCIL_UL_layer(_bpy_types.UIList):
|
|
110
|
-
bl_rna: typing.Any
|
|
111
|
-
id_data: typing.Any
|
|
112
|
-
|
|
113
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
114
|
-
"""
|
|
115
|
-
|
|
116
|
-
:return: The RNA type or default when not found.
|
|
117
|
-
:rtype: bpy.types.Struct
|
|
118
|
-
"""
|
|
119
|
-
|
|
120
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
121
|
-
"""
|
|
122
|
-
|
|
123
|
-
:return: The class or default when not found.
|
|
124
|
-
:rtype: typing.Any
|
|
125
|
-
"""
|
|
126
|
-
|
|
127
|
-
def draw_item(
|
|
128
|
-
self,
|
|
129
|
-
_context,
|
|
130
|
-
layout,
|
|
131
|
-
_data,
|
|
132
|
-
item,
|
|
133
|
-
_icon,
|
|
134
|
-
_active_data,
|
|
135
|
-
_active_propname,
|
|
136
|
-
_index,
|
|
137
|
-
) -> None:
|
|
138
|
-
"""
|
|
139
|
-
|
|
140
|
-
:param _context:
|
|
141
|
-
:param layout:
|
|
142
|
-
:param _data:
|
|
143
|
-
:param item:
|
|
144
|
-
:param _icon:
|
|
145
|
-
:param _active_data:
|
|
146
|
-
:param _active_propname:
|
|
147
|
-
:param _index:
|
|
148
|
-
"""
|
|
149
|
-
|
|
150
|
-
class GPENCIL_UL_masks(_bpy_types.UIList):
|
|
151
|
-
bl_rna: typing.Any
|
|
152
|
-
id_data: typing.Any
|
|
153
|
-
|
|
154
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
155
|
-
"""
|
|
156
|
-
|
|
157
|
-
:return: The RNA type or default when not found.
|
|
158
|
-
:rtype: bpy.types.Struct
|
|
159
|
-
"""
|
|
160
|
-
|
|
161
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
162
|
-
"""
|
|
163
|
-
|
|
164
|
-
:return: The class or default when not found.
|
|
165
|
-
:rtype: typing.Any
|
|
166
|
-
"""
|
|
167
|
-
|
|
168
|
-
def draw_item(
|
|
169
|
-
self,
|
|
170
|
-
_context,
|
|
171
|
-
layout,
|
|
172
|
-
_data,
|
|
173
|
-
item,
|
|
174
|
-
icon,
|
|
175
|
-
_active_data,
|
|
176
|
-
_active_propname,
|
|
177
|
-
_index,
|
|
178
|
-
) -> None:
|
|
179
|
-
"""
|
|
180
|
-
|
|
181
|
-
:param _context:
|
|
182
|
-
:param layout:
|
|
183
|
-
:param _data:
|
|
184
|
-
:param item:
|
|
185
|
-
:param icon:
|
|
186
|
-
:param _active_data:
|
|
187
|
-
:param _active_propname:
|
|
188
|
-
:param _index:
|
|
189
|
-
"""
|
|
190
|
-
|
|
191
109
|
class GREASE_PENCIL_MT_draw_delete(_bpy_types.Menu):
|
|
192
110
|
bl_label: typing.Any
|
|
193
111
|
bl_rna: typing.Any
|
|
@@ -371,69 +289,6 @@ class GreasePencilDisplayPanel:
|
|
|
371
289
|
:param context:
|
|
372
290
|
"""
|
|
373
291
|
|
|
374
|
-
class GreasePencilFlipTintColors(_bpy_types.Operator):
|
|
375
|
-
"""Switch tint colors"""
|
|
376
|
-
|
|
377
|
-
bl_idname: typing.Any
|
|
378
|
-
bl_label: typing.Any
|
|
379
|
-
bl_rna: typing.Any
|
|
380
|
-
id_data: typing.Any
|
|
381
|
-
|
|
382
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
383
|
-
"""
|
|
384
|
-
|
|
385
|
-
:return: The RNA type or default when not found.
|
|
386
|
-
:rtype: bpy.types.Struct
|
|
387
|
-
"""
|
|
388
|
-
|
|
389
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
390
|
-
"""
|
|
391
|
-
|
|
392
|
-
:return: The class or default when not found.
|
|
393
|
-
:rtype: typing.Any
|
|
394
|
-
"""
|
|
395
|
-
|
|
396
|
-
def execute(self, context) -> None:
|
|
397
|
-
"""
|
|
398
|
-
|
|
399
|
-
:param context:
|
|
400
|
-
"""
|
|
401
|
-
|
|
402
|
-
@classmethod
|
|
403
|
-
def poll(cls, context) -> None:
|
|
404
|
-
"""
|
|
405
|
-
|
|
406
|
-
:param context:
|
|
407
|
-
"""
|
|
408
|
-
|
|
409
|
-
class GreasePencilLayerAdjustmentsPanel:
|
|
410
|
-
def draw(self, context) -> None:
|
|
411
|
-
"""
|
|
412
|
-
|
|
413
|
-
:param context:
|
|
414
|
-
"""
|
|
415
|
-
|
|
416
|
-
class GreasePencilLayerDisplayPanel:
|
|
417
|
-
def draw(self, context) -> None:
|
|
418
|
-
"""
|
|
419
|
-
|
|
420
|
-
:param context:
|
|
421
|
-
"""
|
|
422
|
-
|
|
423
|
-
class GreasePencilLayerRelationsPanel:
|
|
424
|
-
def draw(self, context) -> None:
|
|
425
|
-
"""
|
|
426
|
-
|
|
427
|
-
:param context:
|
|
428
|
-
"""
|
|
429
|
-
|
|
430
|
-
class GreasePencilLayerTransformPanel:
|
|
431
|
-
def draw(self, context) -> None:
|
|
432
|
-
"""
|
|
433
|
-
|
|
434
|
-
:param context:
|
|
435
|
-
"""
|
|
436
|
-
|
|
437
292
|
class GreasePencilMaterialsPanel:
|
|
438
293
|
def draw(self, context) -> None:
|
|
439
294
|
"""
|
|
@@ -9,31 +9,6 @@ import bl_ui.utils
|
|
|
9
9
|
import bpy.types
|
|
10
10
|
import rna_prop_ui
|
|
11
11
|
|
|
12
|
-
class GPENCIL_MT_material_context_menu(_bpy_types.Menu):
|
|
13
|
-
bl_label: typing.Any
|
|
14
|
-
bl_rna: typing.Any
|
|
15
|
-
id_data: typing.Any
|
|
16
|
-
|
|
17
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
18
|
-
"""
|
|
19
|
-
|
|
20
|
-
:return: The RNA type or default when not found.
|
|
21
|
-
:rtype: bpy.types.Struct
|
|
22
|
-
"""
|
|
23
|
-
|
|
24
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
25
|
-
"""
|
|
26
|
-
|
|
27
|
-
:return: The class or default when not found.
|
|
28
|
-
:rtype: typing.Any
|
|
29
|
-
"""
|
|
30
|
-
|
|
31
|
-
def draw(self, _context) -> None:
|
|
32
|
-
"""
|
|
33
|
-
|
|
34
|
-
:param _context:
|
|
35
|
-
"""
|
|
36
|
-
|
|
37
12
|
class GPENCIL_UL_matslots(_bpy_types.UIList):
|
|
38
13
|
bl_rna: typing.Any
|
|
39
14
|
id_data: typing.Any
|
|
@@ -87,6 +62,31 @@ class GPMaterialButtonsPanel:
|
|
|
87
62
|
:param context:
|
|
88
63
|
"""
|
|
89
64
|
|
|
65
|
+
class GREASE_PENCIL_MT_material_context_menu(_bpy_types.Menu):
|
|
66
|
+
bl_label: typing.Any
|
|
67
|
+
bl_rna: typing.Any
|
|
68
|
+
id_data: typing.Any
|
|
69
|
+
|
|
70
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
71
|
+
"""
|
|
72
|
+
|
|
73
|
+
:return: The RNA type or default when not found.
|
|
74
|
+
:rtype: bpy.types.Struct
|
|
75
|
+
"""
|
|
76
|
+
|
|
77
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
78
|
+
"""
|
|
79
|
+
|
|
80
|
+
:return: The class or default when not found.
|
|
81
|
+
:rtype: typing.Any
|
|
82
|
+
"""
|
|
83
|
+
|
|
84
|
+
def draw(self, _context) -> None:
|
|
85
|
+
"""
|
|
86
|
+
|
|
87
|
+
:param _context:
|
|
88
|
+
"""
|
|
89
|
+
|
|
90
90
|
class MATERIAL_PT_gpencil_animation(
|
|
91
91
|
rna_prop_ui.PropertyPanel,
|
|
92
92
|
GPMaterialButtonsPanel,
|
|
@@ -443,6 +443,41 @@ class DOPESHEET_MT_view_pie(_bpy_types.Menu):
|
|
|
443
443
|
:param context:
|
|
444
444
|
"""
|
|
445
445
|
|
|
446
|
+
class DOPESHEET_PT_ShapeKey(_bpy_types.Panel):
|
|
447
|
+
bl_category: typing.Any
|
|
448
|
+
bl_label: typing.Any
|
|
449
|
+
bl_region_type: typing.Any
|
|
450
|
+
bl_rna: typing.Any
|
|
451
|
+
bl_space_type: typing.Any
|
|
452
|
+
id_data: typing.Any
|
|
453
|
+
|
|
454
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
455
|
+
"""
|
|
456
|
+
|
|
457
|
+
:return: The RNA type or default when not found.
|
|
458
|
+
:rtype: bpy.types.Struct
|
|
459
|
+
"""
|
|
460
|
+
|
|
461
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
462
|
+
"""
|
|
463
|
+
|
|
464
|
+
:return: The class or default when not found.
|
|
465
|
+
:rtype: typing.Any
|
|
466
|
+
"""
|
|
467
|
+
|
|
468
|
+
def draw(self, context) -> None:
|
|
469
|
+
"""
|
|
470
|
+
|
|
471
|
+
:param context:
|
|
472
|
+
"""
|
|
473
|
+
|
|
474
|
+
@classmethod
|
|
475
|
+
def poll(cls, context) -> None:
|
|
476
|
+
"""
|
|
477
|
+
|
|
478
|
+
:param context:
|
|
479
|
+
"""
|
|
480
|
+
|
|
446
481
|
class DOPESHEET_PT_action(DopesheetActionPanelBase, _bpy_types.Panel):
|
|
447
482
|
bl_category: typing.Any
|
|
448
483
|
bl_label: typing.Any
|
|
@@ -855,16 +890,4 @@ class GreasePencilLayersDopeSheetPanel:
|
|
|
855
890
|
:param context:
|
|
856
891
|
"""
|
|
857
892
|
|
|
858
|
-
class LayersDopeSheetPanel:
|
|
859
|
-
bl_category: typing.Any
|
|
860
|
-
bl_region_type: typing.Any
|
|
861
|
-
bl_space_type: typing.Any
|
|
862
|
-
|
|
863
|
-
@classmethod
|
|
864
|
-
def poll(cls, context) -> None:
|
|
865
|
-
"""
|
|
866
|
-
|
|
867
|
-
:param context:
|
|
868
|
-
"""
|
|
869
|
-
|
|
870
893
|
def dopesheet_filter(layout, context) -> None: ...
|
|
@@ -459,6 +459,42 @@ class SEQUENCER_MT_marker(_bpy_types.Menu):
|
|
|
459
459
|
:param context:
|
|
460
460
|
"""
|
|
461
461
|
|
|
462
|
+
class SEQUENCER_MT_modifier_add(_bpy_types.Menu):
|
|
463
|
+
MODIFIER_TYPES_I18N_CONTEXT: typing.Any
|
|
464
|
+
MODIFIER_TYPES_TO_LABELS: typing.Any
|
|
465
|
+
bl_label: typing.Any
|
|
466
|
+
bl_options: typing.Any
|
|
467
|
+
bl_rna: typing.Any
|
|
468
|
+
id_data: typing.Any
|
|
469
|
+
|
|
470
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
471
|
+
"""
|
|
472
|
+
|
|
473
|
+
:return: The RNA type or default when not found.
|
|
474
|
+
:rtype: bpy.types.Struct
|
|
475
|
+
"""
|
|
476
|
+
|
|
477
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
478
|
+
"""
|
|
479
|
+
|
|
480
|
+
:return: The class or default when not found.
|
|
481
|
+
:rtype: typing.Any
|
|
482
|
+
"""
|
|
483
|
+
|
|
484
|
+
def draw(self, context) -> None:
|
|
485
|
+
"""
|
|
486
|
+
|
|
487
|
+
:param context:
|
|
488
|
+
"""
|
|
489
|
+
|
|
490
|
+
@classmethod
|
|
491
|
+
def operator_modifier_add(cls, layout, mod_type) -> None:
|
|
492
|
+
"""
|
|
493
|
+
|
|
494
|
+
:param layout:
|
|
495
|
+
:param mod_type:
|
|
496
|
+
"""
|
|
497
|
+
|
|
462
498
|
class SEQUENCER_MT_navigation(_bpy_types.Menu):
|
|
463
499
|
bl_label: typing.Any
|
|
464
500
|
bl_rna: typing.Any
|
|
@@ -910,6 +946,31 @@ class SEQUENCER_MT_strip_mirror(_bpy_types.Menu):
|
|
|
910
946
|
:param context:
|
|
911
947
|
"""
|
|
912
948
|
|
|
949
|
+
class SEQUENCER_MT_strip_modifiers(_bpy_types.Menu):
|
|
950
|
+
bl_label: typing.Any
|
|
951
|
+
bl_rna: typing.Any
|
|
952
|
+
id_data: typing.Any
|
|
953
|
+
|
|
954
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
955
|
+
"""
|
|
956
|
+
|
|
957
|
+
:return: The RNA type or default when not found.
|
|
958
|
+
:rtype: bpy.types.Struct
|
|
959
|
+
"""
|
|
960
|
+
|
|
961
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
962
|
+
"""
|
|
963
|
+
|
|
964
|
+
:return: The class or default when not found.
|
|
965
|
+
:rtype: typing.Any
|
|
966
|
+
"""
|
|
967
|
+
|
|
968
|
+
def draw(self, _context) -> None:
|
|
969
|
+
"""
|
|
970
|
+
|
|
971
|
+
:param _context:
|
|
972
|
+
"""
|
|
973
|
+
|
|
913
974
|
class SEQUENCER_MT_strip_movie(_bpy_types.Menu):
|
|
914
975
|
bl_label: typing.Any
|
|
915
976
|
bl_rna: typing.Any
|
|
@@ -105,31 +105,6 @@ class VIEW3D_MT_brush_context_menu(_bpy_types.Menu):
|
|
|
105
105
|
:param context:
|
|
106
106
|
"""
|
|
107
107
|
|
|
108
|
-
class VIEW3D_MT_brush_gpencil_context_menu(_bpy_types.Menu):
|
|
109
|
-
bl_label: typing.Any
|
|
110
|
-
bl_rna: typing.Any
|
|
111
|
-
id_data: typing.Any
|
|
112
|
-
|
|
113
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
114
|
-
"""
|
|
115
|
-
|
|
116
|
-
:return: The RNA type or default when not found.
|
|
117
|
-
:rtype: bpy.types.Struct
|
|
118
|
-
"""
|
|
119
|
-
|
|
120
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
121
|
-
"""
|
|
122
|
-
|
|
123
|
-
:return: The class or default when not found.
|
|
124
|
-
:rtype: typing.Any
|
|
125
|
-
"""
|
|
126
|
-
|
|
127
|
-
def draw(self, context) -> None:
|
|
128
|
-
"""
|
|
129
|
-
|
|
130
|
-
:param context:
|
|
131
|
-
"""
|
|
132
|
-
|
|
133
108
|
class VIEW3D_MT_tools_projectpaint_stencil(_bpy_types.Menu):
|
|
134
109
|
bl_label: typing.Any
|
|
135
110
|
bl_rna: typing.Any
|
bpy/ops/gpencil/__init__.pyi
CHANGED
|
@@ -159,14 +159,3 @@ def layer_annotation_remove(
|
|
|
159
159
|
:type execution_context: int | str | None
|
|
160
160
|
:type undo: bool | None
|
|
161
161
|
"""
|
|
162
|
-
|
|
163
|
-
def tint_flip(
|
|
164
|
-
execution_context: int | str | None = None,
|
|
165
|
-
undo: bool | None = None,
|
|
166
|
-
/,
|
|
167
|
-
) -> None:
|
|
168
|
-
"""Switch tint colors
|
|
169
|
-
|
|
170
|
-
:type execution_context: int | str | None
|
|
171
|
-
:type undo: bool | None
|
|
172
|
-
"""
|
bpy/ops/mesh/__init__.pyi
CHANGED
|
@@ -1072,24 +1072,6 @@ def face_split_by_edges(
|
|
|
1072
1072
|
:type undo: bool | None
|
|
1073
1073
|
"""
|
|
1074
1074
|
|
|
1075
|
-
def faces_mirror_uv(
|
|
1076
|
-
execution_context: int | str | None = None,
|
|
1077
|
-
undo: bool | None = None,
|
|
1078
|
-
/,
|
|
1079
|
-
*,
|
|
1080
|
-
direction: typing.Literal["POSITIVE", "NEGATIVE"] | None = "POSITIVE",
|
|
1081
|
-
precision: int | None = 3,
|
|
1082
|
-
) -> None:
|
|
1083
|
-
"""Copy mirror UV coordinates on the X axis based on a mirrored mesh
|
|
1084
|
-
|
|
1085
|
-
:type execution_context: int | str | None
|
|
1086
|
-
:type undo: bool | None
|
|
1087
|
-
:param direction: Axis Direction
|
|
1088
|
-
:type direction: typing.Literal['POSITIVE','NEGATIVE'] | None
|
|
1089
|
-
:param precision: Precision, Tolerance for finding vertex duplicates
|
|
1090
|
-
:type precision: int | None
|
|
1091
|
-
"""
|
|
1092
|
-
|
|
1093
1075
|
def faces_select_linked_flat(
|
|
1094
1076
|
execution_context: int | str | None = None,
|
|
1095
1077
|
undo: bool | None = None,
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -2204,6 +2204,17 @@ def sockets_sync(
|
|
|
2204
2204
|
:type node_name: str
|
|
2205
2205
|
"""
|
|
2206
2206
|
|
|
2207
|
+
def test_inlining_shader_nodes(
|
|
2208
|
+
execution_context: int | str | None = None,
|
|
2209
|
+
undo: bool | None = None,
|
|
2210
|
+
/,
|
|
2211
|
+
) -> None:
|
|
2212
|
+
"""Create a new inlined shader node tree as is consumed by renderers
|
|
2213
|
+
|
|
2214
|
+
:type execution_context: int | str | None
|
|
2215
|
+
:type undo: bool | None
|
|
2216
|
+
"""
|
|
2217
|
+
|
|
2207
2218
|
def translate_attach(
|
|
2208
2219
|
execution_context: int | str | None = None,
|
|
2209
2220
|
undo: bool | None = None,
|
bpy/ops/uv/__init__.pyi
CHANGED
|
@@ -16,6 +16,7 @@ def align(
|
|
|
16
16
|
"ALIGN_S", "ALIGN_T", "ALIGN_U", "ALIGN_AUTO", "ALIGN_X", "ALIGN_Y"
|
|
17
17
|
]
|
|
18
18
|
| None = "ALIGN_AUTO",
|
|
19
|
+
position_mode: typing.Literal["MEAN", "MIN", "MAX"] | None = "MEAN",
|
|
19
20
|
) -> None:
|
|
20
21
|
"""Aligns selected UV vertices on a line
|
|
21
22
|
|
|
@@ -41,6 +42,17 @@ def align(
|
|
|
41
42
|
ALIGN_Y
|
|
42
43
|
Align Horizontally -- Align UV vertices on a horizontal line.
|
|
43
44
|
:type axis: typing.Literal['ALIGN_S','ALIGN_T','ALIGN_U','ALIGN_AUTO','ALIGN_X','ALIGN_Y'] | None
|
|
45
|
+
:param position_mode: Position Mode, Method of calculating the alignment position
|
|
46
|
+
|
|
47
|
+
MEAN
|
|
48
|
+
Mean -- Align UVs along the mean position.
|
|
49
|
+
|
|
50
|
+
MIN
|
|
51
|
+
Minimum -- Align UVs along the minimum position.
|
|
52
|
+
|
|
53
|
+
MAX
|
|
54
|
+
Maximum -- Align UVs along the maximum position.
|
|
55
|
+
:type position_mode: typing.Literal['MEAN','MIN','MAX'] | None
|
|
44
56
|
"""
|
|
45
57
|
|
|
46
58
|
def align_rotation(
|
|
@@ -82,6 +94,74 @@ def align_rotation(
|
|
|
82
94
|
:type correct_aspect: bool | None
|
|
83
95
|
"""
|
|
84
96
|
|
|
97
|
+
def arrange_islands(
|
|
98
|
+
execution_context: int | str | None = None,
|
|
99
|
+
undo: bool | None = None,
|
|
100
|
+
/,
|
|
101
|
+
*,
|
|
102
|
+
initial_position: typing.Literal["BOUNDING_BOX", "UV_GRID", "ACTIVE_UDIM", "CURSOR"]
|
|
103
|
+
| None = "BOUNDING_BOX",
|
|
104
|
+
axis: typing.Literal["X", "Y"] | None = "Y",
|
|
105
|
+
align: typing.Literal["MIN", "MAX", "CENTER", "NONE"] | None = "MIN",
|
|
106
|
+
order: typing.Literal["LARGE_TO_SMALL", "SMALL_TO_LARGE", "Fixed"]
|
|
107
|
+
| None = "LARGE_TO_SMALL",
|
|
108
|
+
margin: float | None = 0.05,
|
|
109
|
+
) -> None:
|
|
110
|
+
"""Arrange selected UV islands on a line
|
|
111
|
+
|
|
112
|
+
:type execution_context: int | str | None
|
|
113
|
+
:type undo: bool | None
|
|
114
|
+
:param initial_position: Initial Position, Initial position to arrange islands from
|
|
115
|
+
|
|
116
|
+
BOUNDING_BOX
|
|
117
|
+
Bounding Box -- Initial alignment based on the islands bounding box.
|
|
118
|
+
|
|
119
|
+
UV_GRID
|
|
120
|
+
UV Grid -- Initial alignment based on UV Tile Grid.
|
|
121
|
+
|
|
122
|
+
ACTIVE_UDIM
|
|
123
|
+
Active UDIM -- Initial alignment based on Active UDIM.
|
|
124
|
+
|
|
125
|
+
CURSOR
|
|
126
|
+
2D Cursor -- Initial alignment based on 2D cursor.
|
|
127
|
+
:type initial_position: typing.Literal['BOUNDING_BOX','UV_GRID','ACTIVE_UDIM','CURSOR'] | None
|
|
128
|
+
:param axis: Axis, Axis to arrange UV islands on
|
|
129
|
+
|
|
130
|
+
X
|
|
131
|
+
X -- Align UV islands along the X axis.
|
|
132
|
+
|
|
133
|
+
Y
|
|
134
|
+
Y -- Align UV islands along the Y axis.
|
|
135
|
+
:type axis: typing.Literal['X','Y'] | None
|
|
136
|
+
:param align: Align, Location to align islands on
|
|
137
|
+
|
|
138
|
+
MIN
|
|
139
|
+
Min -- Align the islands to the min of the island.
|
|
140
|
+
|
|
141
|
+
MAX
|
|
142
|
+
Max -- Align the islands to the left side of the island.
|
|
143
|
+
|
|
144
|
+
CENTER
|
|
145
|
+
Center -- Align the islands to the center of the largest island.
|
|
146
|
+
|
|
147
|
+
NONE
|
|
148
|
+
None -- Preserve island alignment.
|
|
149
|
+
:type align: typing.Literal['MIN','MAX','CENTER','NONE'] | None
|
|
150
|
+
:param order: Order, Order of islands
|
|
151
|
+
|
|
152
|
+
LARGE_TO_SMALL
|
|
153
|
+
Largest to Smallest -- Sort Islands from Largest to Smallest.
|
|
154
|
+
|
|
155
|
+
SMALL_TO_LARGE
|
|
156
|
+
Smallest to Largest -- Sort Islands from Smallest to Largest.
|
|
157
|
+
|
|
158
|
+
Fixed
|
|
159
|
+
Fixed -- Preserve island order.
|
|
160
|
+
:type order: typing.Literal['LARGE_TO_SMALL','SMALL_TO_LARGE','Fixed'] | None
|
|
161
|
+
:param margin: Margin, Space between islands
|
|
162
|
+
:type margin: float | None
|
|
163
|
+
"""
|
|
164
|
+
|
|
85
165
|
def average_islands_scale(
|
|
86
166
|
execution_context: int | str | None = None,
|
|
87
167
|
undo: bool | None = None,
|
|
@@ -111,6 +191,24 @@ def copy(
|
|
|
111
191
|
:type undo: bool | None
|
|
112
192
|
"""
|
|
113
193
|
|
|
194
|
+
def copy_mirrored_faces(
|
|
195
|
+
execution_context: int | str | None = None,
|
|
196
|
+
undo: bool | None = None,
|
|
197
|
+
/,
|
|
198
|
+
*,
|
|
199
|
+
direction: typing.Literal["POSITIVE", "NEGATIVE"] | None = "POSITIVE",
|
|
200
|
+
precision: int | None = 3,
|
|
201
|
+
) -> None:
|
|
202
|
+
"""Copy mirror UV coordinates on the X axis based on a mirrored mesh
|
|
203
|
+
|
|
204
|
+
:type execution_context: int | str | None
|
|
205
|
+
:type undo: bool | None
|
|
206
|
+
:param direction: Axis Direction
|
|
207
|
+
:type direction: typing.Literal['POSITIVE','NEGATIVE'] | None
|
|
208
|
+
:param precision: Precision, Tolerance for finding vertex duplicates
|
|
209
|
+
:type precision: int | None
|
|
210
|
+
"""
|
|
211
|
+
|
|
114
212
|
def cube_project(
|
|
115
213
|
execution_context: int | str | None = None,
|
|
116
214
|
undo: bool | None = None,
|
bpy/types/__init__.pyi
CHANGED
|
@@ -32228,63 +32228,6 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
32228
32228
|
:columns: 2
|
|
32229
32229
|
|
|
32230
32230
|
|
|
32231
|
-
--------------------
|
|
32232
|
-
|
|
32233
|
-
* bpy_struct.id_data
|
|
32234
|
-
* UIList.bl_idname
|
|
32235
|
-
* UIList.list_id
|
|
32236
|
-
* UIList.layout_type
|
|
32237
|
-
* UIList.use_filter_show
|
|
32238
|
-
* UIList.filter_name
|
|
32239
|
-
* UIList.use_filter_invert
|
|
32240
|
-
* UIList.use_filter_sort_alpha
|
|
32241
|
-
* UIList.use_filter_sort_reverse
|
|
32242
|
-
* UIList.use_filter_sort_lock
|
|
32243
|
-
* UIList.bitflag_filter_item
|
|
32244
|
-
* UIList.bitflag_item_never_show
|
|
32245
|
-
|
|
32246
|
-
:columns: 2
|
|
32247
|
-
|
|
32248
|
-
|
|
32249
|
-
--------------------
|
|
32250
|
-
|
|
32251
|
-
* bpy_struct.as_pointer
|
|
32252
|
-
* bpy_struct.driver_add
|
|
32253
|
-
* bpy_struct.driver_remove
|
|
32254
|
-
* bpy_struct.get
|
|
32255
|
-
* bpy_struct.id_properties_clear
|
|
32256
|
-
* bpy_struct.id_properties_ensure
|
|
32257
|
-
* bpy_struct.id_properties_ui
|
|
32258
|
-
* bpy_struct.is_property_hidden
|
|
32259
|
-
* bpy_struct.is_property_overridable_library
|
|
32260
|
-
* bpy_struct.is_property_readonly
|
|
32261
|
-
* bpy_struct.is_property_set
|
|
32262
|
-
* bpy_struct.items
|
|
32263
|
-
* bpy_struct.keyframe_delete
|
|
32264
|
-
* bpy_struct.keyframe_insert
|
|
32265
|
-
* bpy_struct.keys
|
|
32266
|
-
* bpy_struct.path_from_id
|
|
32267
|
-
* bpy_struct.path_resolve
|
|
32268
|
-
* bpy_struct.pop
|
|
32269
|
-
* bpy_struct.property_overridable_library_set
|
|
32270
|
-
* bpy_struct.property_unset
|
|
32271
|
-
* bpy_struct.rna_ancestors
|
|
32272
|
-
* bpy_struct.type_recast
|
|
32273
|
-
* bpy_struct.values
|
|
32274
|
-
* UIList.bl_system_properties_get
|
|
32275
|
-
* UIList.draw_item
|
|
32276
|
-
* UIList.draw_filter
|
|
32277
|
-
* UIList.filter_items
|
|
32278
|
-
* UIList.append
|
|
32279
|
-
* UIList.is_extended
|
|
32280
|
-
* UIList.prepend
|
|
32281
|
-
* UIList.remove
|
|
32282
|
-
* UIList.bl_rna_get_subclass
|
|
32283
|
-
* UIList.bl_rna_get_subclass_py
|
|
32284
|
-
|
|
32285
|
-
:columns: 2
|
|
32286
|
-
|
|
32287
|
-
|
|
32288
32231
|
--------------------
|
|
32289
32232
|
|
|
32290
32233
|
* bpy_struct.id_data
|
|
@@ -34901,63 +34844,6 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
|
|
|
34901
34844
|
:columns: 2
|
|
34902
34845
|
|
|
34903
34846
|
|
|
34904
|
-
--------------------
|
|
34905
|
-
|
|
34906
|
-
* bpy_struct.id_data
|
|
34907
|
-
* UIList.bl_idname
|
|
34908
|
-
* UIList.list_id
|
|
34909
|
-
* UIList.layout_type
|
|
34910
|
-
* UIList.use_filter_show
|
|
34911
|
-
* UIList.filter_name
|
|
34912
|
-
* UIList.use_filter_invert
|
|
34913
|
-
* UIList.use_filter_sort_alpha
|
|
34914
|
-
* UIList.use_filter_sort_reverse
|
|
34915
|
-
* UIList.use_filter_sort_lock
|
|
34916
|
-
* UIList.bitflag_filter_item
|
|
34917
|
-
* UIList.bitflag_item_never_show
|
|
34918
|
-
|
|
34919
|
-
:columns: 2
|
|
34920
|
-
|
|
34921
|
-
|
|
34922
|
-
--------------------
|
|
34923
|
-
|
|
34924
|
-
* bpy_struct.as_pointer
|
|
34925
|
-
* bpy_struct.driver_add
|
|
34926
|
-
* bpy_struct.driver_remove
|
|
34927
|
-
* bpy_struct.get
|
|
34928
|
-
* bpy_struct.id_properties_clear
|
|
34929
|
-
* bpy_struct.id_properties_ensure
|
|
34930
|
-
* bpy_struct.id_properties_ui
|
|
34931
|
-
* bpy_struct.is_property_hidden
|
|
34932
|
-
* bpy_struct.is_property_overridable_library
|
|
34933
|
-
* bpy_struct.is_property_readonly
|
|
34934
|
-
* bpy_struct.is_property_set
|
|
34935
|
-
* bpy_struct.items
|
|
34936
|
-
* bpy_struct.keyframe_delete
|
|
34937
|
-
* bpy_struct.keyframe_insert
|
|
34938
|
-
* bpy_struct.keys
|
|
34939
|
-
* bpy_struct.path_from_id
|
|
34940
|
-
* bpy_struct.path_resolve
|
|
34941
|
-
* bpy_struct.pop
|
|
34942
|
-
* bpy_struct.property_overridable_library_set
|
|
34943
|
-
* bpy_struct.property_unset
|
|
34944
|
-
* bpy_struct.rna_ancestors
|
|
34945
|
-
* bpy_struct.type_recast
|
|
34946
|
-
* bpy_struct.values
|
|
34947
|
-
* UIList.bl_system_properties_get
|
|
34948
|
-
* UIList.draw_item
|
|
34949
|
-
* UIList.draw_filter
|
|
34950
|
-
* UIList.filter_items
|
|
34951
|
-
* UIList.append
|
|
34952
|
-
* UIList.is_extended
|
|
34953
|
-
* UIList.prepend
|
|
34954
|
-
* UIList.remove
|
|
34955
|
-
* UIList.bl_rna_get_subclass
|
|
34956
|
-
* UIList.bl_rna_get_subclass_py
|
|
34957
|
-
|
|
34958
|
-
:columns: 2
|
|
34959
|
-
|
|
34960
|
-
|
|
34961
34847
|
--------------------
|
|
34962
34848
|
|
|
34963
34849
|
* bpy_struct.id_data
|
|
@@ -38742,7 +38628,6 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
38742
38628
|
* Pose.apply_pose_from_action
|
|
38743
38629
|
* Pose.backup_create
|
|
38744
38630
|
* Pose.blend_pose_from_action
|
|
38745
|
-
* SpaceDopeSheetEditor.action
|
|
38746
38631
|
* WindowManager.poselib_previous_action
|
|
38747
38632
|
|
|
38748
38633
|
:columns: 2
|
|
@@ -158777,118 +158662,6 @@ class GPENCIL_UL_annotation_layer(UIList, bpy_struct):
|
|
|
158777
158662
|
:rtype: typing.Any
|
|
158778
158663
|
"""
|
|
158779
158664
|
|
|
158780
|
-
class GPENCIL_UL_layer(UIList, bpy_struct):
|
|
158781
|
-
def draw_item(
|
|
158782
|
-
self,
|
|
158783
|
-
_context,
|
|
158784
|
-
layout,
|
|
158785
|
-
_data,
|
|
158786
|
-
item,
|
|
158787
|
-
_icon,
|
|
158788
|
-
_active_data,
|
|
158789
|
-
_active_propname,
|
|
158790
|
-
_index,
|
|
158791
|
-
) -> None:
|
|
158792
|
-
"""
|
|
158793
|
-
|
|
158794
|
-
:param _context:
|
|
158795
|
-
:param layout:
|
|
158796
|
-
:param _data:
|
|
158797
|
-
:param item:
|
|
158798
|
-
:param _icon:
|
|
158799
|
-
:param _active_data:
|
|
158800
|
-
:param _active_propname:
|
|
158801
|
-
:param _index:
|
|
158802
|
-
"""
|
|
158803
|
-
|
|
158804
|
-
@classmethod
|
|
158805
|
-
def bl_rna_get_subclass(
|
|
158806
|
-
cls,
|
|
158807
|
-
id: str | None,
|
|
158808
|
-
default=None,
|
|
158809
|
-
/,
|
|
158810
|
-
) -> Struct:
|
|
158811
|
-
"""
|
|
158812
|
-
|
|
158813
|
-
:param id: The RNA type identifier.
|
|
158814
|
-
:type id: str | None
|
|
158815
|
-
:param default:
|
|
158816
|
-
:return: The RNA type or default when not found.
|
|
158817
|
-
:rtype: Struct
|
|
158818
|
-
"""
|
|
158819
|
-
|
|
158820
|
-
@classmethod
|
|
158821
|
-
def bl_rna_get_subclass_py(
|
|
158822
|
-
cls,
|
|
158823
|
-
id: str | None,
|
|
158824
|
-
default=None,
|
|
158825
|
-
/,
|
|
158826
|
-
) -> typing.Any:
|
|
158827
|
-
"""
|
|
158828
|
-
|
|
158829
|
-
:param id: The RNA type identifier.
|
|
158830
|
-
:type id: str | None
|
|
158831
|
-
:param default:
|
|
158832
|
-
:return: The class or default when not found.
|
|
158833
|
-
:rtype: typing.Any
|
|
158834
|
-
"""
|
|
158835
|
-
|
|
158836
|
-
class GPENCIL_UL_masks(UIList, bpy_struct):
|
|
158837
|
-
def draw_item(
|
|
158838
|
-
self,
|
|
158839
|
-
_context,
|
|
158840
|
-
layout,
|
|
158841
|
-
_data,
|
|
158842
|
-
item,
|
|
158843
|
-
icon,
|
|
158844
|
-
_active_data,
|
|
158845
|
-
_active_propname,
|
|
158846
|
-
_index,
|
|
158847
|
-
) -> None:
|
|
158848
|
-
"""
|
|
158849
|
-
|
|
158850
|
-
:param _context:
|
|
158851
|
-
:param layout:
|
|
158852
|
-
:param _data:
|
|
158853
|
-
:param item:
|
|
158854
|
-
:param icon:
|
|
158855
|
-
:param _active_data:
|
|
158856
|
-
:param _active_propname:
|
|
158857
|
-
:param _index:
|
|
158858
|
-
"""
|
|
158859
|
-
|
|
158860
|
-
@classmethod
|
|
158861
|
-
def bl_rna_get_subclass(
|
|
158862
|
-
cls,
|
|
158863
|
-
id: str | None,
|
|
158864
|
-
default=None,
|
|
158865
|
-
/,
|
|
158866
|
-
) -> Struct:
|
|
158867
|
-
"""
|
|
158868
|
-
|
|
158869
|
-
:param id: The RNA type identifier.
|
|
158870
|
-
:type id: str | None
|
|
158871
|
-
:param default:
|
|
158872
|
-
:return: The RNA type or default when not found.
|
|
158873
|
-
:rtype: Struct
|
|
158874
|
-
"""
|
|
158875
|
-
|
|
158876
|
-
@classmethod
|
|
158877
|
-
def bl_rna_get_subclass_py(
|
|
158878
|
-
cls,
|
|
158879
|
-
id: str | None,
|
|
158880
|
-
default=None,
|
|
158881
|
-
/,
|
|
158882
|
-
) -> typing.Any:
|
|
158883
|
-
"""
|
|
158884
|
-
|
|
158885
|
-
:param id: The RNA type identifier.
|
|
158886
|
-
:type id: str | None
|
|
158887
|
-
:param default:
|
|
158888
|
-
:return: The class or default when not found.
|
|
158889
|
-
:rtype: typing.Any
|
|
158890
|
-
"""
|
|
158891
|
-
|
|
158892
158665
|
class GPENCIL_UL_matslots(UIList, bpy_struct):
|
|
158893
158666
|
def draw_item(
|
|
158894
158667
|
self,
|
|
@@ -234956,12 +234729,6 @@ class SpaceConsole(Space, bpy_struct):
|
|
|
234956
234729
|
class SpaceDopeSheetEditor(Space, bpy_struct):
|
|
234957
234730
|
"""Dope Sheet space data"""
|
|
234958
234731
|
|
|
234959
|
-
action: Action | None
|
|
234960
|
-
""" Action displayed and edited in this space
|
|
234961
|
-
|
|
234962
|
-
:type: Action | None
|
|
234963
|
-
"""
|
|
234964
|
-
|
|
234965
234732
|
cache_cloth: bool
|
|
234966
234733
|
""" Show the active object's cloth point cache
|
|
234967
234734
|
|
|
@@ -261772,6 +261539,8 @@ DOPESHEET_MT_view: bl_ui.space_dopesheet.DOPESHEET_MT_view
|
|
|
261772
261539
|
|
|
261773
261540
|
DOPESHEET_MT_view_pie: bl_ui.space_dopesheet.DOPESHEET_MT_view_pie
|
|
261774
261541
|
|
|
261542
|
+
DOPESHEET_PT_ShapeKey: bl_ui.space_dopesheet.DOPESHEET_PT_ShapeKey
|
|
261543
|
+
|
|
261775
261544
|
DOPESHEET_PT_action: bl_ui.space_dopesheet.DOPESHEET_PT_action
|
|
261776
261545
|
|
|
261777
261546
|
DOPESHEET_PT_action_slot: bl_ui.space_dopesheet.DOPESHEET_PT_action_slot
|
|
@@ -261864,14 +261633,8 @@ FILEBROWSER_UL_dir: bl_ui.space_filebrowser.FILEBROWSER_UL_dir
|
|
|
261864
261633
|
|
|
261865
261634
|
FLUID_PT_presets: bl_ui.properties_physics_fluid.FLUID_PT_presets
|
|
261866
261635
|
|
|
261867
|
-
GPENCIL_MT_material_context_menu: bl_ui.properties_material_gpencil.GPENCIL_MT_material_context_menu
|
|
261868
|
-
|
|
261869
261636
|
GPENCIL_UL_annotation_layer: bl_ui.properties_grease_pencil_common.GPENCIL_UL_annotation_layer
|
|
261870
261637
|
|
|
261871
|
-
GPENCIL_UL_layer: bl_ui.properties_grease_pencil_common.GPENCIL_UL_layer
|
|
261872
|
-
|
|
261873
|
-
GPENCIL_UL_masks: bl_ui.properties_grease_pencil_common.GPENCIL_UL_masks
|
|
261874
|
-
|
|
261875
261638
|
GPENCIL_UL_matslots: bl_ui.properties_material_gpencil.GPENCIL_UL_matslots
|
|
261876
261639
|
|
|
261877
261640
|
GRAPH_HT_header: bl_ui.space_graph.GRAPH_HT_header
|
|
@@ -261930,6 +261693,8 @@ GREASE_PENCIL_MT_layer_active: bl_ui.properties_grease_pencil_common.GREASE_PENC
|
|
|
261930
261693
|
|
|
261931
261694
|
GREASE_PENCIL_MT_layer_mask_add: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_MT_layer_mask_add
|
|
261932
261695
|
|
|
261696
|
+
GREASE_PENCIL_MT_material_context_menu: bl_ui.properties_material_gpencil.GREASE_PENCIL_MT_material_context_menu
|
|
261697
|
+
|
|
261933
261698
|
GREASE_PENCIL_MT_move_to_layer: bl_ui.properties_grease_pencil_common.GREASE_PENCIL_MT_move_to_layer
|
|
261934
261699
|
|
|
261935
261700
|
GREASE_PENCIL_MT_snap: bl_ui.properties_grease_pencil_common.GREASE_PENCIL_MT_snap
|
|
@@ -263300,6 +263065,8 @@ SEQUENCER_MT_image_transform: bl_ui.space_sequencer.SEQUENCER_MT_image_transform
|
|
|
263300
263065
|
|
|
263301
263066
|
SEQUENCER_MT_marker: bl_ui.space_sequencer.SEQUENCER_MT_marker
|
|
263302
263067
|
|
|
263068
|
+
SEQUENCER_MT_modifier_add: bl_ui.space_sequencer.SEQUENCER_MT_modifier_add
|
|
263069
|
+
|
|
263303
263070
|
SEQUENCER_MT_navigation: bl_ui.space_sequencer.SEQUENCER_MT_navigation
|
|
263304
263071
|
|
|
263305
263072
|
SEQUENCER_MT_pivot_pie: bl_ui.space_sequencer.SEQUENCER_MT_pivot_pie
|
|
@@ -263336,6 +263103,8 @@ SEQUENCER_MT_strip_lock_mute: bl_ui.space_sequencer.SEQUENCER_MT_strip_lock_mute
|
|
|
263336
263103
|
|
|
263337
263104
|
SEQUENCER_MT_strip_mirror: bl_ui.space_sequencer.SEQUENCER_MT_strip_mirror
|
|
263338
263105
|
|
|
263106
|
+
SEQUENCER_MT_strip_modifiers: bl_ui.space_sequencer.SEQUENCER_MT_strip_modifiers
|
|
263107
|
+
|
|
263339
263108
|
SEQUENCER_MT_strip_movie: bl_ui.space_sequencer.SEQUENCER_MT_strip_movie
|
|
263340
263109
|
|
|
263341
263110
|
SEQUENCER_MT_strip_retiming: bl_ui.space_sequencer.SEQUENCER_MT_strip_retiming
|
|
@@ -263856,8 +263625,6 @@ VIEW3D_MT_bone_options_toggle: bl_ui.space_view3d.VIEW3D_MT_bone_options_toggle
|
|
|
263856
263625
|
|
|
263857
263626
|
VIEW3D_MT_brush_context_menu: bl_ui.space_view3d_toolbar.VIEW3D_MT_brush_context_menu
|
|
263858
263627
|
|
|
263859
|
-
VIEW3D_MT_brush_gpencil_context_menu: bl_ui.space_view3d_toolbar.VIEW3D_MT_brush_gpencil_context_menu
|
|
263860
|
-
|
|
263861
263628
|
VIEW3D_MT_camera_add: bl_ui.space_view3d.VIEW3D_MT_camera_add
|
|
263862
263629
|
|
|
263863
263630
|
VIEW3D_MT_curve_add: bl_ui.space_view3d.VIEW3D_MT_curve_add
|
|
@@ -74,7 +74,7 @@ bl_operators/geometry_nodes/__init__.pyi,sha256=bRn2de47mar1BxfXqkOA6R2ZHGfC3Ij1
|
|
|
74
74
|
bl_operators/grease_pencil/__init__.pyi,sha256=ppgkc4ZatqPEHJNhjKbEy1sBzJg9zo0sbKbqFGKXMu0,897
|
|
75
75
|
bl_operators/image/__init__.pyi,sha256=p_Pc5Za8ZGt_7ApR-NiQA94kOBvBdR8uqKiFKZgGMIk,3542
|
|
76
76
|
bl_operators/image_as_planes/__init__.pyi,sha256=G_h1gkxx6INE8lUl7M0MR9luywsJUraY6T39rVehEio,4804
|
|
77
|
-
bl_operators/mesh/__init__.pyi,sha256=
|
|
77
|
+
bl_operators/mesh/__init__.pyi,sha256=5auCQvi8k_qSvkOgWdTdBqdv9HsrIe0w9ZrFOXfwu9g,1630
|
|
78
78
|
bl_operators/node/__init__.pyi,sha256=YMxYh5k42rr0QXTPvfcOZ-dov5uZUMwhCkR00fz8vSQ,13711
|
|
79
79
|
bl_operators/node_editor/__init__.pyi,sha256=nXKuGcFgA7viFPwVoXogOT1iClUnXhtrK_rZTTXJ2Go,136
|
|
80
80
|
bl_operators/node_editor/node_functions/__init__.pyi,sha256=lvnouyugGqmyzgLR8aRsLj823dK3wC22vEu8lucNhJI,626
|
|
@@ -127,7 +127,7 @@ bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=ThgRMg7gSyDCNJODyZkhzFxz
|
|
|
127
127
|
bl_ui/properties_data_lattice/__init__.pyi,sha256=4MGkuqbRwOXPwgenvccmKepjTo-UEITPdJa66es97WU,3519
|
|
128
128
|
bl_ui/properties_data_light/__init__.pyi,sha256=UF9qN23t6arJXqOxHd75qjuDEbDwa2Pz7u2gd3B1uRU,8300
|
|
129
129
|
bl_ui/properties_data_lightprobe/__init__.pyi,sha256=BNw-GpdEGXO_Y1MEOttD2HjFPnCt6CPM4-SOdcjIVtY,10896
|
|
130
|
-
bl_ui/properties_data_mesh/__init__.pyi,sha256=
|
|
130
|
+
bl_ui/properties_data_mesh/__init__.pyi,sha256=JEEki-7wWoD80nPC8PeGZQFhnU0hlP3tHkDiGcJLTUk,16365
|
|
131
131
|
bl_ui/properties_data_metaball/__init__.pyi,sha256=ugpE5OO7g02vHx6RIPu6mW6wSbFsDmYqdmIR89G2dtQ,4861
|
|
132
132
|
bl_ui/properties_data_modifier/__init__.pyi,sha256=GZSuD_K8JigqvUxpmdhWw8xwOBmJwcYuu814WsHsCSo,7028
|
|
133
133
|
bl_ui/properties_data_pointcloud/__init__.pyi,sha256=c6_fdD-FLjucExBFMO40-J6QPXc4kNN_jWDLlya3-CA,4896
|
|
@@ -135,10 +135,10 @@ bl_ui/properties_data_shaderfx/__init__.pyi,sha256=21lgyjB0fDCQ7yytSMpVxZ4-6JidK
|
|
|
135
135
|
bl_ui/properties_data_speaker/__init__.pyi,sha256=V2p1yDNBPxz3dKK6UiQBTO9Irh0fpe_r6bgovqDfnnk,4944
|
|
136
136
|
bl_ui/properties_data_volume/__init__.pyi,sha256=Nttj9F30ICgk527SL09eTnRgr3Dp1KMOWPZhte7qX_o,7237
|
|
137
137
|
bl_ui/properties_freestyle/__init__.pyi,sha256=6tanbUreqW57P58YM9sQv22bc2hiCabu2vwP1iq0L1U,23298
|
|
138
|
-
bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=
|
|
138
|
+
bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=7Tjh_8KP6qvI0F_lb6Jn1IpV6hWuNtJ8kFilW_CEHd0,6279
|
|
139
139
|
bl_ui/properties_mask_common/__init__.pyi,sha256=iwIe9TGaGoJynzyEyK3hiVpSgOFpNNX28BQ-RZEg6Wg,6292
|
|
140
140
|
bl_ui/properties_material/__init__.pyi,sha256=umksBehoHZj_Jkn6xWX0WQH1sCwyqSpCA99ERYRQyz4,13075
|
|
141
|
-
bl_ui/properties_material_gpencil/__init__.pyi,sha256=
|
|
141
|
+
bl_ui/properties_material_gpencil/__init__.pyi,sha256=MPq6SsAQKqz8jJbpcmGK6zF0cbAUKB2rcsG2TIoGDMo,8744
|
|
142
142
|
bl_ui/properties_object/__init__.pyi,sha256=CzGxZhQxo1rcRb58UdawZd9xAXZ8OcoD_L9xb-jhPF8,15771
|
|
143
143
|
bl_ui/properties_output/__init__.pyi,sha256=5GXVxRcb0hPK_VmFnkZy_PqohxLlPPBwwDYzhI6UUUk,15439
|
|
144
144
|
bl_ui/properties_paint_common/__init__.pyi,sha256=av7mueFF2VWSj4OGRucFAa4YVXBwFaHNdQJoI1EDVIY,8428
|
|
@@ -160,7 +160,7 @@ bl_ui/properties_workspace/__init__.pyi,sha256=xUC1dYR6Eep5MbB1_-UTa77u4DE2bSH5s
|
|
|
160
160
|
bl_ui/properties_world/__init__.pyi,sha256=CY-sQhTOWWkq1NOgQ9jYRn4V4GLKveXVQu4T92f8sRY,9341
|
|
161
161
|
bl_ui/space_clip/__init__.pyi,sha256=y5bb9k6jgD_VHS020AKAOs_IL6sqNPCbqr0NAaUGYKo,47031
|
|
162
162
|
bl_ui/space_console/__init__.pyi,sha256=b7zy0mFsO542Mtd_KyFh-NjG_YFb__4-bW_C9vlB-8g,3372
|
|
163
|
-
bl_ui/space_dopesheet/__init__.pyi,sha256=
|
|
163
|
+
bl_ui/space_dopesheet/__init__.pyi,sha256=wUrmn9E4rwDv9N288fXCPyu8oUdT7n0eCFAUTZKsM0w,20020
|
|
164
164
|
bl_ui/space_filebrowser/__init__.pyi,sha256=JwXlj3tu-WKX6IpHHa4dEitmPamqeu2LR_pbcpTJsPo,20637
|
|
165
165
|
bl_ui/space_graph/__init__.pyi,sha256=TIljcrouLfS7ICU4fUZaRP5ybcUfd81xiOONIRGbyzE,12449
|
|
166
166
|
bl_ui/space_image/__init__.pyi,sha256=umZnS9mizGdWOCO0EwXuDzB1zt-Qu5RPqJGOPftV88M,46869
|
|
@@ -169,17 +169,17 @@ bl_ui/space_nla/__init__.pyi,sha256=qogAgjcs_TFfi4eoTjkVsPi8GkXRA7s4cO9xip2N-Ss,
|
|
|
169
169
|
bl_ui/space_node/__init__.pyi,sha256=tLdl7p5j7C08r_07WCOfmyx2-yLYPKF-lweXPJm1GVI,21996
|
|
170
170
|
bl_ui/space_outliner/__init__.pyi,sha256=1N93UIu-iU2UkqM7tQxeaxob3PRnnUjqY6rKdnT_sAE,8938
|
|
171
171
|
bl_ui/space_properties/__init__.pyi,sha256=KJdc80dXfvxv5XYmO8CRmheQxff_jLYiS_6zzRG_xwg,2802
|
|
172
|
-
bl_ui/space_sequencer/__init__.pyi,sha256=
|
|
172
|
+
bl_ui/space_sequencer/__init__.pyi,sha256=wBOUN_yIpEYC_jdpr9T6jwGBLR1iUzsdXXSK8NaIEQI,59943
|
|
173
173
|
bl_ui/space_spreadsheet/__init__.pyi,sha256=qoO65GoJn8WObsqXqRzdEq2Zq1AZQEDWVpli-4lXOow,1769
|
|
174
174
|
bl_ui/space_statusbar/__init__.pyi,sha256=V-oUoxSsgIpi-jzqct_gz2vjFYkIqOffmuI4W7xlsbw,667
|
|
175
175
|
bl_ui/space_text/__init__.pyi,sha256=k864SRJgY7mgqqsu8KAhNGilMHMgMzjew1aeEHTtiYo,8996
|
|
176
176
|
bl_ui/space_time/__init__.pyi,sha256=VwvieO14tuq0m-kYHJXz6maKEmQRAD7J2tQUrdNqI9E,4620
|
|
177
177
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=0wapsLJDJuc7K6B5kjWvB9_dWN5e3_6WNWf_ZEChlmk,3436
|
|
178
|
-
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=
|
|
178
|
+
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=Bqr8yIDrb5u7M8vVl4ekwNPLTFk6xAusa6BwrKFqLtk,10748
|
|
179
179
|
bl_ui/space_topbar/__init__.pyi,sha256=9MO703ewWr9Av2UGhd_tTQK8Okq8N3qw2SXOhZodeTk,15642
|
|
180
180
|
bl_ui/space_userpref/__init__.pyi,sha256=u95zjkh77q4EWr3AfnZRjryl11SX_X9hQR-091164ck,81754
|
|
181
181
|
bl_ui/space_view3d/__init__.pyi,sha256=sBby33ozbCunGLmCtaroL-zOGOzesPuAmQjmhkAOT8U,159488
|
|
182
|
-
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=
|
|
182
|
+
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=rMEa_DHJjDjbtQVtjDgc3Q0LdIdcwwKsp011UfdZos0,64437
|
|
183
183
|
bl_ui/utils/__init__.pyi,sha256=ljnA9UEJuHjOECvmj0JrqHBYqtd8GGy7IaBhwV_pIns,534
|
|
184
184
|
bl_ui_utils/__init__.pyi,sha256=6yinHCNictVwPqgqerb5zXorsqM0cqPLmz_r8ms1XeE,89
|
|
185
185
|
bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -230,7 +230,7 @@ bpy/ops/fluid/__init__.pyi,sha256=HFXzyf1E4cnj3rM0WW1QYig3JyVbLXogsZWrRXHG_Us,35
|
|
|
230
230
|
bpy/ops/font/__init__.pyi,sha256=nTI2Me4QkrxwDF6l5xYHAd4x1ndl0DnonUMzwAnsB1I,15624
|
|
231
231
|
bpy/ops/geometry/__init__.pyi,sha256=6XA77z_tOSTs3MwmsEK1WI53E_61kURrxvYnHqYBTAI,7922
|
|
232
232
|
bpy/ops/gizmogroup/__init__.pyi,sha256=fJ82n8AFYtAfDBQIZQ2J6hhM680Uk_71x6KO2lAa3Ck,1323
|
|
233
|
-
bpy/ops/gpencil/__init__.pyi,sha256=
|
|
233
|
+
bpy/ops/gpencil/__init__.pyi,sha256=FW-6wH7r93P3Ysc9rANroz3kaaSaQh6NQUSinrzWyiY,4784
|
|
234
234
|
bpy/ops/graph/__init__.pyi,sha256=YNLtqDBmwwI5-nSoSdUJkBTMMa0_wjsSMYnvTrXzj2c,43175
|
|
235
235
|
bpy/ops/grease_pencil/__init__.pyi,sha256=pCqO4T7foL3XIB8bKnMmAdeLkdGggNKHoKdsMu8djuM,69154
|
|
236
236
|
bpy/ops/image/__init__.pyi,sha256=MrhR6AN9YCSQNdo2WeyxEjczERJF7YfCRqNdEReiwAA,50655
|
|
@@ -243,9 +243,9 @@ bpy/ops/marker/__init__.pyi,sha256=UgDyXL31VJ4eP6tKMcJ9Ahyp172DGoQwAsTys_EdF1g,5
|
|
|
243
243
|
bpy/ops/mask/__init__.pyi,sha256=WuDzL2HNb13UKrtIv-bze436cJSB9Sj5u1Tjc75DrVs,17709
|
|
244
244
|
bpy/ops/material/__init__.pyi,sha256=7yA8XRBaeLm-2IGqQqXcDGNctp3amhdmBMTPoWHw5G8,774
|
|
245
245
|
bpy/ops/mball/__init__.pyi,sha256=3avjhyGC4WLxkWeTp16xJjaN3dp05ecbIXJnc2EtXVs,4258
|
|
246
|
-
bpy/ops/mesh/__init__.pyi,sha256=
|
|
246
|
+
bpy/ops/mesh/__init__.pyi,sha256=uSpyzQeJO-79FB5TrQuxek597tOODzbRNRBDb52bTtw,131942
|
|
247
247
|
bpy/ops/nla/__init__.pyi,sha256=xj5WdhNuTLCf0XbePE1XPiPfS78Ea45lA28gOntmOFI,18812
|
|
248
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
248
|
+
bpy/ops/node/__init__.pyi,sha256=A5s_VFdHbjMDYfq9rA3J8wd97Bmx5oL3gEu9j9QAkjs,66876
|
|
249
249
|
bpy/ops/object/__init__.pyi,sha256=Ll59LJ8RY-R_my_-dUYTGYuzLmlpUJETY58gLXrfv7I,172971
|
|
250
250
|
bpy/ops/outliner/__init__.pyi,sha256=ynP3AYcSIvRaROgjkuUMwL2F5P085Q_VVOZjhVC4VeY,29325
|
|
251
251
|
bpy/ops/paint/__init__.pyi,sha256=14ik0wFRdTfSOMWb-ZQBc5FLHtq8xFeGiLMqrmtj374,38326
|
|
@@ -274,7 +274,7 @@ bpy/ops/texture/__init__.pyi,sha256=w1weHfSnhrJmGqpPs2KkjZNH4X8GDy-NFKfPXvy_rwQ,
|
|
|
274
274
|
bpy/ops/transform/__init__.pyi,sha256=Xon_BEEVgLXk1u6wbaPg2YSfK4AaN4bPgPS4znfc3Kg,59679
|
|
275
275
|
bpy/ops/ui/__init__.pyi,sha256=s_AC2AYmdkc3vPCCIeDVrS3zojkNuV8CTIRFjl56voo,13174
|
|
276
276
|
bpy/ops/uilist/__init__.pyi,sha256=CSwrFuqez9Ia24-_yFa5gAudByRrRqmaQVKrfExyRYc,1669
|
|
277
|
-
bpy/ops/uv/__init__.pyi,sha256=
|
|
277
|
+
bpy/ops/uv/__init__.pyi,sha256=nEYY8GyYV4k9X_LkKskrkE0IiucYxG-PwmEqPO2UCMA,49724
|
|
278
278
|
bpy/ops/view2d/__init__.pyi,sha256=bXpaqKJa4WVVOib1-e_jWpSirho63ignV5z0LPxfLCs,7173
|
|
279
279
|
bpy/ops/view3d/__init__.pyi,sha256=JET9fsqbX7Yqaf1IYsV2tvT4FwhYMklB_rOnEbG2OK8,31946
|
|
280
280
|
bpy/ops/wm/__init__.pyi,sha256=1o58PXNIpKFQh_mzlZhgog191pDJB_10KHkBv2DWJtQ,210439
|
|
@@ -284,7 +284,7 @@ bpy/path/__init__.pyi,sha256=Phd8a6fB3496L7_LUhdwPNwkh3qy_4O-MS5br9RMfO0,5536
|
|
|
284
284
|
bpy/props/__init__.pyi,sha256=NSOu8SY2_uXzyQ55AEuvhZGHY-4IZjDT3qqtszfLfwI,50980
|
|
285
285
|
bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
286
286
|
bpy/stub_internal/rna_enums/__init__.pyi,sha256=cccGqmWM38q4vdyIjUmKbaXWFJayGAyZJAq5EOdVZBc,143214
|
|
287
|
-
bpy/types/__init__.pyi,sha256=
|
|
287
|
+
bpy/types/__init__.pyi,sha256=LXr78z-MX1u4a11BDtpCHwVvAx6FmczOGTrUynVAr3s,5908770
|
|
288
288
|
bpy/utils/__init__.pyi,sha256=GGYp2g381aOdE7tWXvRGVbmhijbfgt4wGAtJGgbvyJg,15526
|
|
289
289
|
bpy/utils/previews/__init__.pyi,sha256=iSZemSCPu1S2BjAQO83Z-FqEo1nGHRCEIEduXB6hQhc,2357
|
|
290
290
|
bpy/utils/units/__init__.pyi,sha256=cpE9IZPkYPBexru7R9HQ_c0931d7R7Dvib2Uf7V0JJs,2645
|
|
@@ -317,7 +317,7 @@ freestyle/functions/__init__.pyi,sha256=dGcOMrCayIE_OXrHIm36aQUAsCyNwvX63DjLjJw6
|
|
|
317
317
|
freestyle/predicates/__init__.pyi,sha256=3Y8x157YP6udskhuFb_UZYvGyZjjEhGIJWQoj0BMLsw,13550
|
|
318
318
|
freestyle/shaders/__init__.pyi,sha256=SUbnzfs9aX629SUz1vacJUkTQS2F8-E4TS1SetN0yFs,24630
|
|
319
319
|
freestyle/types/__init__.pyi,sha256=LkVRkopB5Ntk0LeBeq4vnaVE-4CVtDcMVCKy75_sM9Y,101295
|
|
320
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
320
|
+
freestyle/utils/__init__.pyi,sha256=I5thoI3sH_4ZEpx_7KK1Tl76DjREB7C-8g7A_IdQunQ,5328
|
|
321
321
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=IKNZD__52vYS5eT32F_WZwW1dco_6G2kZC_1IVCAwLs,3486
|
|
322
322
|
gpu/__init__.pyi,sha256=TLoatdrTMM6vfjnbuQA6cW38ARW5nuLa4Y-eicnJU5Q,8900
|
|
323
323
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -364,7 +364,7 @@ rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
|
|
|
364
364
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
365
365
|
rna_xml/__init__.pyi,sha256=E0_ajcifhpiiQJVaNKnAa2ju-w5Tg9-lk7IqhsPjrw4,652
|
|
366
366
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
|
-
fake_bpy_module-
|
|
368
|
-
fake_bpy_module-
|
|
369
|
-
fake_bpy_module-
|
|
370
|
-
fake_bpy_module-
|
|
367
|
+
fake_bpy_module-20250910.dist-info/METADATA,sha256=T-YbIx58oQTrBISD08N3CGrtWJzxMJh98ull6om53V0,7429
|
|
368
|
+
fake_bpy_module-20250910.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
369
|
+
fake_bpy_module-20250910.dist-info/top_level.txt,sha256=E_sehFLnpWSq252JjlyGL1A-1xsWTYcqyOIlHfuOh28,515
|
|
370
|
+
fake_bpy_module-20250910.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -125,7 +125,7 @@ def material_from_fedge(fe) -> None:
|
|
|
125
125
|
"""get the diffuse RGBA color from an FEdge"""
|
|
126
126
|
|
|
127
127
|
def normal_at_I0D(it) -> None: ...
|
|
128
|
-
def pairwise(iterable, types={
|
|
128
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}) -> None:
|
|
129
129
|
"""Yields a tuple containing the previous and current object"""
|
|
130
130
|
|
|
131
131
|
def rgb_to_bw(r, g, b) -> None:
|
|
File without changes
|
|
File without changes
|