fake-bpy-module 20250907__py3-none-any.whl → 20250909__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_ui/properties_grease_pencil_common/__init__.pyi +0 -145
- bl_ui/properties_material_gpencil/__init__.pyi +25 -25
- bl_ui/space_dopesheet/__init__.pyi +0 -12
- bl_ui/space_toolsystem_toolbar/__init__.pyi +1 -2
- bl_ui/space_view3d_toolbar/__init__.pyi +0 -25
- bpy/ops/curves/__init__.pyi +54 -0
- bpy/ops/gpencil/__init__.pyi +0 -11
- bpy/ops/uv/__init__.pyi +68 -0
- bpy/types/__init__.pyi +8 -241
- {fake_bpy_module-20250907.dist-info → fake_bpy_module-20250909.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250907.dist-info → fake_bpy_module-20250909.dist-info}/RECORD +14 -14
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20250907.dist-info → fake_bpy_module-20250909.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250907.dist-info → fake_bpy_module-20250909.dist-info}/top_level.txt +0 -0
|
@@ -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,
|
|
@@ -855,16 +855,4 @@ class GreasePencilLayersDopeSheetPanel:
|
|
|
855
855
|
:param context:
|
|
856
856
|
"""
|
|
857
857
|
|
|
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
858
|
def dopesheet_filter(layout, context) -> None: ...
|
|
@@ -139,6 +139,7 @@ class _defs_edit_curve:
|
|
|
139
139
|
|
|
140
140
|
class _defs_edit_curves:
|
|
141
141
|
draw: typing.Any
|
|
142
|
+
pen: typing.Any
|
|
142
143
|
|
|
143
144
|
class _defs_edit_mesh:
|
|
144
145
|
bevel: typing.Any
|
|
@@ -167,8 +168,6 @@ class _defs_edit_mesh:
|
|
|
167
168
|
class _defs_edit_text:
|
|
168
169
|
select_text: typing.Any
|
|
169
170
|
|
|
170
|
-
class _defs_gpencil_weight: ...
|
|
171
|
-
|
|
172
171
|
class _defs_grease_pencil_edit:
|
|
173
172
|
interpolate: typing.Any
|
|
174
173
|
pen: 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/curves/__init__.pyi
CHANGED
|
@@ -322,6 +322,60 @@ def handle_type_set(
|
|
|
322
322
|
:type type: typing.Literal['AUTO','VECTOR','ALIGN','FREE_ALIGN','TOGGLE_FREE_ALIGN'] | None
|
|
323
323
|
"""
|
|
324
324
|
|
|
325
|
+
def pen(
|
|
326
|
+
execution_context: int | str | None = None,
|
|
327
|
+
undo: bool | None = None,
|
|
328
|
+
/,
|
|
329
|
+
*,
|
|
330
|
+
extend: bool | None = False,
|
|
331
|
+
deselect: bool | None = False,
|
|
332
|
+
toggle: bool | None = False,
|
|
333
|
+
deselect_all: bool | None = False,
|
|
334
|
+
select_passthrough: bool | None = False,
|
|
335
|
+
extrude_point: bool | None = False,
|
|
336
|
+
extrude_handle: typing.Literal["AUTO", "VECTOR"] | None = "VECTOR",
|
|
337
|
+
delete_point: bool | None = False,
|
|
338
|
+
insert_point: bool | None = False,
|
|
339
|
+
move_segment: bool | None = False,
|
|
340
|
+
select_point: bool | None = False,
|
|
341
|
+
move_point: bool | None = False,
|
|
342
|
+
cycle_handle_type: bool | None = False,
|
|
343
|
+
radius: float | None = 0.01,
|
|
344
|
+
) -> None:
|
|
345
|
+
"""Construct and edit Bézier curves
|
|
346
|
+
|
|
347
|
+
:type execution_context: int | str | None
|
|
348
|
+
:type undo: bool | None
|
|
349
|
+
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
350
|
+
:type extend: bool | None
|
|
351
|
+
:param deselect: Deselect, Remove from selection
|
|
352
|
+
:type deselect: bool | None
|
|
353
|
+
:param toggle: Toggle Selection, Toggle the selection
|
|
354
|
+
:type toggle: bool | None
|
|
355
|
+
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
356
|
+
:type deselect_all: bool | None
|
|
357
|
+
:param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
|
|
358
|
+
:type select_passthrough: bool | None
|
|
359
|
+
:param extrude_point: Extrude Point, Add a point connected to the last selected point
|
|
360
|
+
:type extrude_point: bool | None
|
|
361
|
+
:param extrude_handle: Extrude Handle Type, Type of the extruded handle
|
|
362
|
+
:type extrude_handle: typing.Literal['AUTO','VECTOR'] | None
|
|
363
|
+
:param delete_point: Delete Point, Delete an existing point
|
|
364
|
+
:type delete_point: bool | None
|
|
365
|
+
:param insert_point: Insert Point, Insert Point into a curve segment
|
|
366
|
+
:type insert_point: bool | None
|
|
367
|
+
:param move_segment: Move Segment, Delete an existing point
|
|
368
|
+
:type move_segment: bool | None
|
|
369
|
+
:param select_point: Select Point, Select a point or its handles
|
|
370
|
+
:type select_point: bool | None
|
|
371
|
+
:param move_point: Move Point, Move a point or its handles
|
|
372
|
+
:type move_point: bool | None
|
|
373
|
+
:param cycle_handle_type: Cycle Handle Type, Cycle between all four handle types
|
|
374
|
+
:type cycle_handle_type: bool | None
|
|
375
|
+
:param radius: Radius
|
|
376
|
+
:type radius: float | None
|
|
377
|
+
"""
|
|
378
|
+
|
|
325
379
|
def sculptmode_toggle(
|
|
326
380
|
execution_context: int | str | None = None,
|
|
327
381
|
undo: bool | None = None,
|
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/uv/__init__.pyi
CHANGED
|
@@ -82,6 +82,74 @@ def align_rotation(
|
|
|
82
82
|
:type correct_aspect: bool | None
|
|
83
83
|
"""
|
|
84
84
|
|
|
85
|
+
def arrange_islands(
|
|
86
|
+
execution_context: int | str | None = None,
|
|
87
|
+
undo: bool | None = None,
|
|
88
|
+
/,
|
|
89
|
+
*,
|
|
90
|
+
initial_position: typing.Literal["BOUNDING_BOX", "UV_GRID", "ACTIVE_UDIM", "CURSOR"]
|
|
91
|
+
| None = "BOUNDING_BOX",
|
|
92
|
+
axis: typing.Literal["X", "Y"] | None = "Y",
|
|
93
|
+
align: typing.Literal["MIN", "MAX", "CENTER", "NONE"] | None = "MIN",
|
|
94
|
+
order: typing.Literal["LARGE_TO_SMALL", "SMALL_TO_LARGE", "Fixed"]
|
|
95
|
+
| None = "LARGE_TO_SMALL",
|
|
96
|
+
margin: float | None = 0.05,
|
|
97
|
+
) -> None:
|
|
98
|
+
"""Arrange selected UV islands on a line
|
|
99
|
+
|
|
100
|
+
:type execution_context: int | str | None
|
|
101
|
+
:type undo: bool | None
|
|
102
|
+
:param initial_position: Initial Position, Initial position to arrange islands from
|
|
103
|
+
|
|
104
|
+
BOUNDING_BOX
|
|
105
|
+
Bounding Box -- Initial alignment based on the islands bounding box.
|
|
106
|
+
|
|
107
|
+
UV_GRID
|
|
108
|
+
UV Grid -- Initial alignment based on UV Tile Grid.
|
|
109
|
+
|
|
110
|
+
ACTIVE_UDIM
|
|
111
|
+
Active UDIM -- Initial alignment based on Active UDIM.
|
|
112
|
+
|
|
113
|
+
CURSOR
|
|
114
|
+
2D Cursor -- Initial alignment based on 2D cursor.
|
|
115
|
+
:type initial_position: typing.Literal['BOUNDING_BOX','UV_GRID','ACTIVE_UDIM','CURSOR'] | None
|
|
116
|
+
:param axis: Axis, Axis to arrange UV islands on
|
|
117
|
+
|
|
118
|
+
X
|
|
119
|
+
X -- Align UV islands along the X axis.
|
|
120
|
+
|
|
121
|
+
Y
|
|
122
|
+
Y -- Align UV islands along the Y axis.
|
|
123
|
+
:type axis: typing.Literal['X','Y'] | None
|
|
124
|
+
:param align: Align, Location to align islands on
|
|
125
|
+
|
|
126
|
+
MIN
|
|
127
|
+
Min -- Align the islands to the min of the island.
|
|
128
|
+
|
|
129
|
+
MAX
|
|
130
|
+
Max -- Align the islands to the left side of the island.
|
|
131
|
+
|
|
132
|
+
CENTER
|
|
133
|
+
Center -- Align the islands to the center of the largest island.
|
|
134
|
+
|
|
135
|
+
NONE
|
|
136
|
+
None -- Preserve island alignment.
|
|
137
|
+
:type align: typing.Literal['MIN','MAX','CENTER','NONE'] | None
|
|
138
|
+
:param order: Order, Order of islands
|
|
139
|
+
|
|
140
|
+
LARGE_TO_SMALL
|
|
141
|
+
Largest to Smallest -- Sort Islands from Largest to Smallest.
|
|
142
|
+
|
|
143
|
+
SMALL_TO_LARGE
|
|
144
|
+
Smallest to Largest -- Sort Islands from Smallest to Largest.
|
|
145
|
+
|
|
146
|
+
Fixed
|
|
147
|
+
Fixed -- Preserve island order.
|
|
148
|
+
:type order: typing.Literal['LARGE_TO_SMALL','SMALL_TO_LARGE','Fixed'] | None
|
|
149
|
+
:param margin: Margin, Space between islands
|
|
150
|
+
:type margin: float | None
|
|
151
|
+
"""
|
|
152
|
+
|
|
85
153
|
def average_islands_scale(
|
|
86
154
|
execution_context: int | str | None = None,
|
|
87
155
|
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
|
|
@@ -128858,6 +128743,12 @@ class BlendFileColorspace(bpy_struct):
|
|
|
128858
128743
|
:type: typing.Literal['Linear Rec.709','Linear Rec.2020','ACEScg']
|
|
128859
128744
|
"""
|
|
128860
128745
|
|
|
128746
|
+
working_space_interop_id: str
|
|
128747
|
+
""" Unique identifier for common color spaces, as defined by the Color Interop Forum. May be empty if there is no interop ID for the working space. Common values are lin_rec709_scene, lin_rec2020_scene and lin_ap1_scene (for ACEScg)
|
|
128748
|
+
|
|
128749
|
+
:type: str
|
|
128750
|
+
"""
|
|
128751
|
+
|
|
128861
128752
|
@classmethod
|
|
128862
128753
|
def bl_rna_get_subclass(
|
|
128863
128754
|
cls,
|
|
@@ -158771,118 +158662,6 @@ class GPENCIL_UL_annotation_layer(UIList, bpy_struct):
|
|
|
158771
158662
|
:rtype: typing.Any
|
|
158772
158663
|
"""
|
|
158773
158664
|
|
|
158774
|
-
class GPENCIL_UL_layer(UIList, bpy_struct):
|
|
158775
|
-
def draw_item(
|
|
158776
|
-
self,
|
|
158777
|
-
_context,
|
|
158778
|
-
layout,
|
|
158779
|
-
_data,
|
|
158780
|
-
item,
|
|
158781
|
-
_icon,
|
|
158782
|
-
_active_data,
|
|
158783
|
-
_active_propname,
|
|
158784
|
-
_index,
|
|
158785
|
-
) -> None:
|
|
158786
|
-
"""
|
|
158787
|
-
|
|
158788
|
-
:param _context:
|
|
158789
|
-
:param layout:
|
|
158790
|
-
:param _data:
|
|
158791
|
-
:param item:
|
|
158792
|
-
:param _icon:
|
|
158793
|
-
:param _active_data:
|
|
158794
|
-
:param _active_propname:
|
|
158795
|
-
:param _index:
|
|
158796
|
-
"""
|
|
158797
|
-
|
|
158798
|
-
@classmethod
|
|
158799
|
-
def bl_rna_get_subclass(
|
|
158800
|
-
cls,
|
|
158801
|
-
id: str | None,
|
|
158802
|
-
default=None,
|
|
158803
|
-
/,
|
|
158804
|
-
) -> Struct:
|
|
158805
|
-
"""
|
|
158806
|
-
|
|
158807
|
-
:param id: The RNA type identifier.
|
|
158808
|
-
:type id: str | None
|
|
158809
|
-
:param default:
|
|
158810
|
-
:return: The RNA type or default when not found.
|
|
158811
|
-
:rtype: Struct
|
|
158812
|
-
"""
|
|
158813
|
-
|
|
158814
|
-
@classmethod
|
|
158815
|
-
def bl_rna_get_subclass_py(
|
|
158816
|
-
cls,
|
|
158817
|
-
id: str | None,
|
|
158818
|
-
default=None,
|
|
158819
|
-
/,
|
|
158820
|
-
) -> typing.Any:
|
|
158821
|
-
"""
|
|
158822
|
-
|
|
158823
|
-
:param id: The RNA type identifier.
|
|
158824
|
-
:type id: str | None
|
|
158825
|
-
:param default:
|
|
158826
|
-
:return: The class or default when not found.
|
|
158827
|
-
:rtype: typing.Any
|
|
158828
|
-
"""
|
|
158829
|
-
|
|
158830
|
-
class GPENCIL_UL_masks(UIList, bpy_struct):
|
|
158831
|
-
def draw_item(
|
|
158832
|
-
self,
|
|
158833
|
-
_context,
|
|
158834
|
-
layout,
|
|
158835
|
-
_data,
|
|
158836
|
-
item,
|
|
158837
|
-
icon,
|
|
158838
|
-
_active_data,
|
|
158839
|
-
_active_propname,
|
|
158840
|
-
_index,
|
|
158841
|
-
) -> None:
|
|
158842
|
-
"""
|
|
158843
|
-
|
|
158844
|
-
:param _context:
|
|
158845
|
-
:param layout:
|
|
158846
|
-
:param _data:
|
|
158847
|
-
:param item:
|
|
158848
|
-
:param icon:
|
|
158849
|
-
:param _active_data:
|
|
158850
|
-
:param _active_propname:
|
|
158851
|
-
:param _index:
|
|
158852
|
-
"""
|
|
158853
|
-
|
|
158854
|
-
@classmethod
|
|
158855
|
-
def bl_rna_get_subclass(
|
|
158856
|
-
cls,
|
|
158857
|
-
id: str | None,
|
|
158858
|
-
default=None,
|
|
158859
|
-
/,
|
|
158860
|
-
) -> Struct:
|
|
158861
|
-
"""
|
|
158862
|
-
|
|
158863
|
-
:param id: The RNA type identifier.
|
|
158864
|
-
:type id: str | None
|
|
158865
|
-
:param default:
|
|
158866
|
-
:return: The RNA type or default when not found.
|
|
158867
|
-
:rtype: Struct
|
|
158868
|
-
"""
|
|
158869
|
-
|
|
158870
|
-
@classmethod
|
|
158871
|
-
def bl_rna_get_subclass_py(
|
|
158872
|
-
cls,
|
|
158873
|
-
id: str | None,
|
|
158874
|
-
default=None,
|
|
158875
|
-
/,
|
|
158876
|
-
) -> typing.Any:
|
|
158877
|
-
"""
|
|
158878
|
-
|
|
158879
|
-
:param id: The RNA type identifier.
|
|
158880
|
-
:type id: str | None
|
|
158881
|
-
:param default:
|
|
158882
|
-
:return: The class or default when not found.
|
|
158883
|
-
:rtype: typing.Any
|
|
158884
|
-
"""
|
|
158885
|
-
|
|
158886
158665
|
class GPENCIL_UL_matslots(UIList, bpy_struct):
|
|
158887
158666
|
def draw_item(
|
|
158888
158667
|
self,
|
|
@@ -234950,12 +234729,6 @@ class SpaceConsole(Space, bpy_struct):
|
|
|
234950
234729
|
class SpaceDopeSheetEditor(Space, bpy_struct):
|
|
234951
234730
|
"""Dope Sheet space data"""
|
|
234952
234731
|
|
|
234953
|
-
action: Action | None
|
|
234954
|
-
""" Action displayed and edited in this space
|
|
234955
|
-
|
|
234956
|
-
:type: Action | None
|
|
234957
|
-
"""
|
|
234958
|
-
|
|
234959
234732
|
cache_cloth: bool
|
|
234960
234733
|
""" Show the active object's cloth point cache
|
|
234961
234734
|
|
|
@@ -261858,14 +261631,8 @@ FILEBROWSER_UL_dir: bl_ui.space_filebrowser.FILEBROWSER_UL_dir
|
|
|
261858
261631
|
|
|
261859
261632
|
FLUID_PT_presets: bl_ui.properties_physics_fluid.FLUID_PT_presets
|
|
261860
261633
|
|
|
261861
|
-
GPENCIL_MT_material_context_menu: bl_ui.properties_material_gpencil.GPENCIL_MT_material_context_menu
|
|
261862
|
-
|
|
261863
261634
|
GPENCIL_UL_annotation_layer: bl_ui.properties_grease_pencil_common.GPENCIL_UL_annotation_layer
|
|
261864
261635
|
|
|
261865
|
-
GPENCIL_UL_layer: bl_ui.properties_grease_pencil_common.GPENCIL_UL_layer
|
|
261866
|
-
|
|
261867
|
-
GPENCIL_UL_masks: bl_ui.properties_grease_pencil_common.GPENCIL_UL_masks
|
|
261868
|
-
|
|
261869
261636
|
GPENCIL_UL_matslots: bl_ui.properties_material_gpencil.GPENCIL_UL_matslots
|
|
261870
261637
|
|
|
261871
261638
|
GRAPH_HT_header: bl_ui.space_graph.GRAPH_HT_header
|
|
@@ -261924,6 +261691,8 @@ GREASE_PENCIL_MT_layer_active: bl_ui.properties_grease_pencil_common.GREASE_PENC
|
|
|
261924
261691
|
|
|
261925
261692
|
GREASE_PENCIL_MT_layer_mask_add: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_MT_layer_mask_add
|
|
261926
261693
|
|
|
261694
|
+
GREASE_PENCIL_MT_material_context_menu: bl_ui.properties_material_gpencil.GREASE_PENCIL_MT_material_context_menu
|
|
261695
|
+
|
|
261927
261696
|
GREASE_PENCIL_MT_move_to_layer: bl_ui.properties_grease_pencil_common.GREASE_PENCIL_MT_move_to_layer
|
|
261928
261697
|
|
|
261929
261698
|
GREASE_PENCIL_MT_snap: bl_ui.properties_grease_pencil_common.GREASE_PENCIL_MT_snap
|
|
@@ -263850,8 +263619,6 @@ VIEW3D_MT_bone_options_toggle: bl_ui.space_view3d.VIEW3D_MT_bone_options_toggle
|
|
|
263850
263619
|
|
|
263851
263620
|
VIEW3D_MT_brush_context_menu: bl_ui.space_view3d_toolbar.VIEW3D_MT_brush_context_menu
|
|
263852
263621
|
|
|
263853
|
-
VIEW3D_MT_brush_gpencil_context_menu: bl_ui.space_view3d_toolbar.VIEW3D_MT_brush_gpencil_context_menu
|
|
263854
|
-
|
|
263855
263622
|
VIEW3D_MT_camera_add: bl_ui.space_view3d.VIEW3D_MT_camera_add
|
|
263856
263623
|
|
|
263857
263624
|
VIEW3D_MT_curve_add: bl_ui.space_view3d.VIEW3D_MT_curve_add
|
|
@@ -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=wqemfQF1iBORxWUB3c3gtz2lM91b-V0WV-sGwPObU2E,19291
|
|
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
|
|
@@ -175,11 +175,11 @@ bl_ui/space_statusbar/__init__.pyi,sha256=V-oUoxSsgIpi-jzqct_gz2vjFYkIqOffmuI4W7
|
|
|
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
|
|
@@ -218,7 +218,7 @@ bpy/ops/collection/__init__.pyi,sha256=jYzYuIsq_H8P0xB0c5LGVRBOMkVrkCCxZgeQWItiT
|
|
|
218
218
|
bpy/ops/console/__init__.pyi,sha256=J0C91N5SOZJyqgdsP4cRVsi0VWB4WsicmB7f3o7nBtc,7667
|
|
219
219
|
bpy/ops/constraint/__init__.pyi,sha256=xXAGzEua07ldnVtUs1sFkCmSR01qStTdMZ0z4E-IXl0,12048
|
|
220
220
|
bpy/ops/curve/__init__.pyi,sha256=lSHR_PQ9PxJUcqwJYxvY2gKi_6sgkc05U91bJD--7-0,29421
|
|
221
|
-
bpy/ops/curves/__init__.pyi,sha256=
|
|
221
|
+
bpy/ops/curves/__init__.pyi,sha256=WhuUjpiSfvNLwrCciPwxCdDzuTumABZmgQhwy9tRuN4,18970
|
|
222
222
|
bpy/ops/cycles/__init__.pyi,sha256=ltPk5-40G7apmbFuKiDbeRxCwg3FsKP-Hk3Y5XtwYQ8,1795
|
|
223
223
|
bpy/ops/dpaint/__init__.pyi,sha256=GhrndgrnnljHoo5StXuwo2ulGG8B3yLWx-1bsJiEKCE,1682
|
|
224
224
|
bpy/ops/ed/__init__.pyi,sha256=wLtlE0feDn7m_M5HetFeyY0ZgsFPlkFW6TSUt1leKjM,7248
|
|
@@ -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
|
|
@@ -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=FJg6pWCSxOug1TbusjLUclh7ylQhQ7v6JQoxLQs7tJE,48710
|
|
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=gbmCHulqJMjlbmBSE5UXmRDjsUGRsAkrX7iedHQnwo0,5908544
|
|
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-20250909.dist-info/METADATA,sha256=bPR-XLLF0aZU4hr3JeraxLRmMpbaT9M76jZWlcd3VRg,7429
|
|
368
|
+
fake_bpy_module-20250909.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
369
|
+
fake_bpy_module-20250909.dist-info/top_level.txt,sha256=E_sehFLnpWSq252JjlyGL1A-1xsWTYcqyOIlHfuOh28,515
|
|
370
|
+
fake_bpy_module-20250909.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
|