fake-bpy-module 20240911__py3-none-any.whl → 20240914__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/anim/__init__.pyi +43 -0
- bl_ui/properties_paint_common/__init__.pyi +3 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +18 -1
- bl_ui/space_view3d/__init__.pyi +77 -0
- bpy/app/__init__.pyi +2 -2
- bpy/ops/anim/__init__.pyi +14 -0
- bpy/ops/grease_pencil/__init__.pyi +247 -28
- bpy/ops/sequencer/__init__.pyi +1 -5
- bpy/types/__init__.pyi +142 -116
- {fake_bpy_module-20240911.dist-info → fake_bpy_module-20240914.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240911.dist-info → fake_bpy_module-20240914.dist-info}/RECORD +13 -13
- {fake_bpy_module-20240911.dist-info → fake_bpy_module-20240914.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240911.dist-info → fake_bpy_module-20240914.dist-info}/top_level.txt +0 -0
bl_operators/anim/__init__.pyi
CHANGED
|
@@ -129,6 +129,49 @@ class ANIM_OT_slot_unassign_from_id(bpy.types.Operator):
|
|
|
129
129
|
"""
|
|
130
130
|
...
|
|
131
131
|
|
|
132
|
+
class ANIM_OT_slot_unassign_from_nla_strip(bpy.types.Operator):
|
|
133
|
+
"""Un-assign the assigned Action Slot from an NLA strip.Note that _which_ NLA strip should get this slot unassigned must be set in
|
|
134
|
+
the "nla_strip" context pointer, using:
|
|
135
|
+
"""
|
|
136
|
+
|
|
137
|
+
bl_description: typing.Any
|
|
138
|
+
bl_idname: typing.Any
|
|
139
|
+
bl_label: typing.Any
|
|
140
|
+
bl_options: typing.Any
|
|
141
|
+
bl_rna: typing.Any
|
|
142
|
+
id_data: typing.Any
|
|
143
|
+
|
|
144
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
145
|
+
"""
|
|
146
|
+
|
|
147
|
+
:return: The RNA type or default when not found.
|
|
148
|
+
:rtype: bpy.types.Struct
|
|
149
|
+
"""
|
|
150
|
+
...
|
|
151
|
+
|
|
152
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
153
|
+
"""
|
|
154
|
+
|
|
155
|
+
:return: The class or default when not found.
|
|
156
|
+
:rtype: typing.Any
|
|
157
|
+
"""
|
|
158
|
+
...
|
|
159
|
+
|
|
160
|
+
def execute(self, context):
|
|
161
|
+
"""
|
|
162
|
+
|
|
163
|
+
:param context:
|
|
164
|
+
"""
|
|
165
|
+
...
|
|
166
|
+
|
|
167
|
+
@classmethod
|
|
168
|
+
def poll(cls, context):
|
|
169
|
+
"""
|
|
170
|
+
|
|
171
|
+
:param context:
|
|
172
|
+
"""
|
|
173
|
+
...
|
|
174
|
+
|
|
132
175
|
class ARMATURE_OT_collection_remove_unused(bpy.types.Operator):
|
|
133
176
|
"""Remove all bone collections that have neither bones nor children. This is done recursively, so bone collections that only have unused children are also removed"""
|
|
134
177
|
|
|
@@ -315,6 +315,9 @@ def brush_basic_gpencil_weight_settings(layout, _context, brush, *, compact=Fals
|
|
|
315
315
|
def brush_basic_grease_pencil_paint_settings(
|
|
316
316
|
layout, context, brush, *, compact=False
|
|
317
317
|
): ...
|
|
318
|
+
def brush_basic_grease_pencil_vertex_settings(
|
|
319
|
+
layout, context, brush, *, compact=False
|
|
320
|
+
): ...
|
|
318
321
|
def brush_basic_grease_pencil_weight_settings(
|
|
319
322
|
layout, context, brush, *, compact=False
|
|
320
323
|
): ...
|
|
@@ -278,11 +278,11 @@ class _defs_grease_pencil_paint:
|
|
|
278
278
|
box: typing.Any
|
|
279
279
|
circle: typing.Any
|
|
280
280
|
curve: typing.Any
|
|
281
|
-
cutter: typing.Any
|
|
282
281
|
eyedropper: typing.Any
|
|
283
282
|
interpolate: typing.Any
|
|
284
283
|
line: typing.Any
|
|
285
284
|
polyline: typing.Any
|
|
285
|
+
trim: typing.Any
|
|
286
286
|
|
|
287
287
|
@staticmethod
|
|
288
288
|
def generate_from_brushes(context):
|
|
@@ -320,6 +320,23 @@ class _defs_grease_pencil_sculpt:
|
|
|
320
320
|
"""
|
|
321
321
|
...
|
|
322
322
|
|
|
323
|
+
class _defs_grease_pencil_vertex:
|
|
324
|
+
@staticmethod
|
|
325
|
+
def generate_from_brushes(context):
|
|
326
|
+
"""
|
|
327
|
+
|
|
328
|
+
:param context:
|
|
329
|
+
"""
|
|
330
|
+
...
|
|
331
|
+
|
|
332
|
+
@staticmethod
|
|
333
|
+
def poll_select_mask(context):
|
|
334
|
+
"""
|
|
335
|
+
|
|
336
|
+
:param context:
|
|
337
|
+
"""
|
|
338
|
+
...
|
|
339
|
+
|
|
323
340
|
class _defs_grease_pencil_weight:
|
|
324
341
|
@staticmethod
|
|
325
342
|
def generate_from_brushes(context):
|
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -211,6 +211,45 @@ class TOPBAR_PT_gpencil_vertexcolor(
|
|
|
211
211
|
"""
|
|
212
212
|
...
|
|
213
213
|
|
|
214
|
+
class TOPBAR_PT_grease_pencil_vertex_color(bpy.types.Panel):
|
|
215
|
+
bl_label: typing.Any
|
|
216
|
+
bl_region_type: typing.Any
|
|
217
|
+
bl_rna: typing.Any
|
|
218
|
+
bl_space_type: typing.Any
|
|
219
|
+
bl_ui_units_x: typing.Any
|
|
220
|
+
id_data: typing.Any
|
|
221
|
+
|
|
222
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
223
|
+
"""
|
|
224
|
+
|
|
225
|
+
:return: The RNA type or default when not found.
|
|
226
|
+
:rtype: bpy.types.Struct
|
|
227
|
+
"""
|
|
228
|
+
...
|
|
229
|
+
|
|
230
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
231
|
+
"""
|
|
232
|
+
|
|
233
|
+
:return: The class or default when not found.
|
|
234
|
+
:rtype: typing.Any
|
|
235
|
+
"""
|
|
236
|
+
...
|
|
237
|
+
|
|
238
|
+
def draw(self, context):
|
|
239
|
+
"""
|
|
240
|
+
|
|
241
|
+
:param context:
|
|
242
|
+
"""
|
|
243
|
+
...
|
|
244
|
+
|
|
245
|
+
@classmethod
|
|
246
|
+
def poll(cls, context):
|
|
247
|
+
"""
|
|
248
|
+
|
|
249
|
+
:param context:
|
|
250
|
+
"""
|
|
251
|
+
...
|
|
252
|
+
|
|
214
253
|
class VIEW3D_AST_brush_gpencil_paint(View3DAssetShelf, bpy.types.AssetShelf):
|
|
215
254
|
bl_activate_operator: typing.Any
|
|
216
255
|
bl_default_preview_size: typing.Any
|
|
@@ -3975,6 +4014,34 @@ class VIEW3D_MT_paint_vertex(bpy.types.Menu):
|
|
|
3975
4014
|
"""
|
|
3976
4015
|
...
|
|
3977
4016
|
|
|
4017
|
+
class VIEW3D_MT_paint_vertex_grease_pencil(bpy.types.Menu):
|
|
4018
|
+
bl_label: typing.Any
|
|
4019
|
+
bl_rna: typing.Any
|
|
4020
|
+
id_data: typing.Any
|
|
4021
|
+
|
|
4022
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
4023
|
+
"""
|
|
4024
|
+
|
|
4025
|
+
:return: The RNA type or default when not found.
|
|
4026
|
+
:rtype: bpy.types.Struct
|
|
4027
|
+
"""
|
|
4028
|
+
...
|
|
4029
|
+
|
|
4030
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
4031
|
+
"""
|
|
4032
|
+
|
|
4033
|
+
:return: The class or default when not found.
|
|
4034
|
+
:rtype: typing.Any
|
|
4035
|
+
"""
|
|
4036
|
+
...
|
|
4037
|
+
|
|
4038
|
+
def draw(self, _context):
|
|
4039
|
+
"""
|
|
4040
|
+
|
|
4041
|
+
:param _context:
|
|
4042
|
+
"""
|
|
4043
|
+
...
|
|
4044
|
+
|
|
3978
4045
|
class VIEW3D_MT_paint_weight(bpy.types.Menu):
|
|
3979
4046
|
bl_label: typing.Any
|
|
3980
4047
|
bl_rna: typing.Any
|
|
@@ -8395,6 +8462,16 @@ class _draw_tool_settings_context_mode:
|
|
|
8395
8462
|
"""
|
|
8396
8463
|
...
|
|
8397
8464
|
|
|
8465
|
+
@staticmethod
|
|
8466
|
+
def VERTEX_GREASE_PENCIL(context, layout, tool):
|
|
8467
|
+
"""
|
|
8468
|
+
|
|
8469
|
+
:param context:
|
|
8470
|
+
:param layout:
|
|
8471
|
+
:param tool:
|
|
8472
|
+
"""
|
|
8473
|
+
...
|
|
8474
|
+
|
|
8398
8475
|
@staticmethod
|
|
8399
8476
|
def WEIGHT_GPENCIL(context, layout, tool):
|
|
8400
8477
|
"""
|
bpy/app/__init__.pyi
CHANGED
|
@@ -102,7 +102,7 @@ build_linkflags: typing.Any
|
|
|
102
102
|
"""
|
|
103
103
|
|
|
104
104
|
build_options: typing.Any
|
|
105
|
-
""" Constant value bpy.app.build_options(bullet=True, codec_avi=False, codec_ffmpeg=True, codec_sndfile=True, compositor_cpu=True, cycles=True, cycles_osl=True, freestyle=True, image_cineon=True, image_dds=True, image_hdr=True, image_openexr=True, image_openjpeg=True, image_tiff=True, input_ndof=True, audaspace=True, international=True, openal=True, opensubdiv=True, sdl=
|
|
105
|
+
""" Constant value bpy.app.build_options(bullet=True, codec_avi=False, codec_ffmpeg=True, codec_sndfile=True, compositor_cpu=True, cycles=True, cycles_osl=True, freestyle=True, image_cineon=True, image_dds=True, image_hdr=True, image_openexr=True, image_openjpeg=True, image_tiff=True, input_ndof=True, audaspace=True, international=True, openal=True, opensubdiv=True, sdl=False, coreaudio=False, jack=False, pulseaudio=False, wasapi=False, libmv=True, mod_oceansim=True, mod_remesh=True, collada=True, io_wavefront_obj=True, io_ply=True, io_stl=True, io_gpencil=True, opencolorio=True, openmp=True, openvdb=True, alembic=True, usd=True, fluid=True, xr_openxr=True, potrace=True, pugixml=True, haru=True)
|
|
106
106
|
"""
|
|
107
107
|
|
|
108
108
|
build_platform: typing.Any
|
|
@@ -234,7 +234,7 @@ render_preview_size: typing.Any
|
|
|
234
234
|
"""
|
|
235
235
|
|
|
236
236
|
sdl: typing.Any
|
|
237
|
-
""" Constant value bpy.app.sdl(supported=
|
|
237
|
+
""" Constant value bpy.app.sdl(supported=False, version=(0, 0, 0), version_string='Unknown')
|
|
238
238
|
"""
|
|
239
239
|
|
|
240
240
|
tempdir: typing.Any
|
bpy/ops/anim/__init__.pyi
CHANGED
|
@@ -992,6 +992,20 @@ def slot_unassign_from_id(
|
|
|
992
992
|
|
|
993
993
|
...
|
|
994
994
|
|
|
995
|
+
def slot_unassign_from_nla_strip(
|
|
996
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
997
|
+
execution_context: int | str | None = None,
|
|
998
|
+
undo: bool | None = None,
|
|
999
|
+
):
|
|
1000
|
+
"""Un-assign the action slot from this NLA strip, effectively making it non-animated
|
|
1001
|
+
|
|
1002
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1003
|
+
:type execution_context: int | str | None
|
|
1004
|
+
:type undo: bool | None
|
|
1005
|
+
"""
|
|
1006
|
+
|
|
1007
|
+
...
|
|
1008
|
+
|
|
995
1009
|
def start_frame_set(
|
|
996
1010
|
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
997
1011
|
execution_context: int | str | None = None,
|
|
@@ -1000,7 +1000,7 @@ def sculpt_paint(
|
|
|
1000
1000
|
| None = None,
|
|
1001
1001
|
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"] | None = "NORMAL",
|
|
1002
1002
|
):
|
|
1003
|
-
"""
|
|
1003
|
+
"""Sculpt strokes in the active Grease Pencil object
|
|
1004
1004
|
|
|
1005
1005
|
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1006
1006
|
:type execution_context: int | str | None
|
|
@@ -1382,33 +1382,6 @@ def snap_to_grid(
|
|
|
1382
1382
|
|
|
1383
1383
|
...
|
|
1384
1384
|
|
|
1385
|
-
def stroke_cutter(
|
|
1386
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1387
|
-
execution_context: int | str | None = None,
|
|
1388
|
-
undo: bool | None = None,
|
|
1389
|
-
*,
|
|
1390
|
-
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
1391
|
-
use_smooth_stroke: bool | None = False,
|
|
1392
|
-
smooth_stroke_factor: float | None = 0.75,
|
|
1393
|
-
smooth_stroke_radius: int | None = 35,
|
|
1394
|
-
):
|
|
1395
|
-
"""Delete stroke points in between intersecting strokes
|
|
1396
|
-
|
|
1397
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1398
|
-
:type execution_context: int | str | None
|
|
1399
|
-
:type undo: bool | None
|
|
1400
|
-
:param path: Path
|
|
1401
|
-
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
1402
|
-
:param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
|
|
1403
|
-
:type use_smooth_stroke: bool | None
|
|
1404
|
-
:param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
|
|
1405
|
-
:type smooth_stroke_factor: float | None
|
|
1406
|
-
:param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
|
|
1407
|
-
:type smooth_stroke_radius: int | None
|
|
1408
|
-
"""
|
|
1409
|
-
|
|
1410
|
-
...
|
|
1411
|
-
|
|
1412
1385
|
def stroke_material_set(
|
|
1413
1386
|
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1414
1387
|
execution_context: int | str | None = None,
|
|
@@ -1448,6 +1421,24 @@ def stroke_merge_by_distance(
|
|
|
1448
1421
|
|
|
1449
1422
|
...
|
|
1450
1423
|
|
|
1424
|
+
def stroke_reset_vertex_color(
|
|
1425
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1426
|
+
execution_context: int | str | None = None,
|
|
1427
|
+
undo: bool | None = None,
|
|
1428
|
+
*,
|
|
1429
|
+
mode: typing.Literal["STROKE", "FILL", "BOTH"] | None = "BOTH",
|
|
1430
|
+
):
|
|
1431
|
+
"""Reset vertex color for all or selected strokes
|
|
1432
|
+
|
|
1433
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1434
|
+
:type execution_context: int | str | None
|
|
1435
|
+
:type undo: bool | None
|
|
1436
|
+
:param mode: Mode
|
|
1437
|
+
:type mode: typing.Literal['STROKE','FILL','BOTH'] | None
|
|
1438
|
+
"""
|
|
1439
|
+
|
|
1440
|
+
...
|
|
1441
|
+
|
|
1451
1442
|
def stroke_simplify(
|
|
1452
1443
|
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1453
1444
|
execution_context: int | str | None = None,
|
|
@@ -1558,6 +1549,33 @@ def stroke_switch_direction(
|
|
|
1558
1549
|
|
|
1559
1550
|
...
|
|
1560
1551
|
|
|
1552
|
+
def stroke_trim(
|
|
1553
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1554
|
+
execution_context: int | str | None = None,
|
|
1555
|
+
undo: bool | None = None,
|
|
1556
|
+
*,
|
|
1557
|
+
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
1558
|
+
use_smooth_stroke: bool | None = False,
|
|
1559
|
+
smooth_stroke_factor: float | None = 0.75,
|
|
1560
|
+
smooth_stroke_radius: int | None = 35,
|
|
1561
|
+
):
|
|
1562
|
+
"""Delete stroke points in between intersecting strokes
|
|
1563
|
+
|
|
1564
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1565
|
+
:type execution_context: int | str | None
|
|
1566
|
+
:type undo: bool | None
|
|
1567
|
+
:param path: Path
|
|
1568
|
+
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
1569
|
+
:param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
|
|
1570
|
+
:type use_smooth_stroke: bool | None
|
|
1571
|
+
:param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
|
|
1572
|
+
:type smooth_stroke_factor: float | None
|
|
1573
|
+
:param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
|
|
1574
|
+
:type smooth_stroke_radius: int | None
|
|
1575
|
+
"""
|
|
1576
|
+
|
|
1577
|
+
...
|
|
1578
|
+
|
|
1561
1579
|
def trace_image(
|
|
1562
1580
|
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1563
1581
|
execution_context: int | str | None = None,
|
|
@@ -1624,6 +1642,207 @@ def trace_image(
|
|
|
1624
1642
|
|
|
1625
1643
|
...
|
|
1626
1644
|
|
|
1645
|
+
def vertex_brush_stroke(
|
|
1646
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1647
|
+
execution_context: int | str | None = None,
|
|
1648
|
+
undo: bool | None = None,
|
|
1649
|
+
*,
|
|
1650
|
+
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
1651
|
+
| None = None,
|
|
1652
|
+
mode: typing.Literal["NORMAL", "INVERT", "SMOOTH", "ERASE"] | None = "NORMAL",
|
|
1653
|
+
):
|
|
1654
|
+
"""Draw on vertex colors in the active Grease Pencil object
|
|
1655
|
+
|
|
1656
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1657
|
+
:type execution_context: int | str | None
|
|
1658
|
+
:type undo: bool | None
|
|
1659
|
+
:param stroke: Stroke
|
|
1660
|
+
:type stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement] | None
|
|
1661
|
+
:param mode: Stroke Mode, Action taken when a paint stroke is made
|
|
1662
|
+
|
|
1663
|
+
NORMAL
|
|
1664
|
+
Regular -- Apply brush normally.
|
|
1665
|
+
|
|
1666
|
+
INVERT
|
|
1667
|
+
Invert -- Invert action of brush for duration of stroke.
|
|
1668
|
+
|
|
1669
|
+
SMOOTH
|
|
1670
|
+
Smooth -- Switch brush to smooth mode for duration of stroke.
|
|
1671
|
+
|
|
1672
|
+
ERASE
|
|
1673
|
+
Erase -- Switch brush to erase mode for duration of stroke.
|
|
1674
|
+
:type mode: typing.Literal['NORMAL','INVERT','SMOOTH','ERASE'] | None
|
|
1675
|
+
"""
|
|
1676
|
+
|
|
1677
|
+
...
|
|
1678
|
+
|
|
1679
|
+
def vertex_color_brightness_contrast(
|
|
1680
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1681
|
+
execution_context: int | str | None = None,
|
|
1682
|
+
undo: bool | None = None,
|
|
1683
|
+
*,
|
|
1684
|
+
mode: typing.Literal["STROKE", "FILL", "BOTH"] | None = "BOTH",
|
|
1685
|
+
brightness: float | None = 0.0,
|
|
1686
|
+
contrast: float | None = 0.0,
|
|
1687
|
+
):
|
|
1688
|
+
"""Adjust vertex color brightness/contrast
|
|
1689
|
+
|
|
1690
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1691
|
+
:type execution_context: int | str | None
|
|
1692
|
+
:type undo: bool | None
|
|
1693
|
+
:param mode: Mode
|
|
1694
|
+
:type mode: typing.Literal['STROKE','FILL','BOTH'] | None
|
|
1695
|
+
:param brightness: Brightness
|
|
1696
|
+
:type brightness: float | None
|
|
1697
|
+
:param contrast: Contrast
|
|
1698
|
+
:type contrast: float | None
|
|
1699
|
+
"""
|
|
1700
|
+
|
|
1701
|
+
...
|
|
1702
|
+
|
|
1703
|
+
def vertex_color_hsv(
|
|
1704
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1705
|
+
execution_context: int | str | None = None,
|
|
1706
|
+
undo: bool | None = None,
|
|
1707
|
+
*,
|
|
1708
|
+
mode: typing.Literal["STROKE", "FILL", "BOTH"] | None = "BOTH",
|
|
1709
|
+
h: float | None = 0.5,
|
|
1710
|
+
s: float | None = 1.0,
|
|
1711
|
+
v: float | None = 1.0,
|
|
1712
|
+
):
|
|
1713
|
+
"""Adjust vertex color HSV values
|
|
1714
|
+
|
|
1715
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1716
|
+
:type execution_context: int | str | None
|
|
1717
|
+
:type undo: bool | None
|
|
1718
|
+
:param mode: Mode
|
|
1719
|
+
:type mode: typing.Literal['STROKE','FILL','BOTH'] | None
|
|
1720
|
+
:param h: Hue
|
|
1721
|
+
:type h: float | None
|
|
1722
|
+
:param s: Saturation
|
|
1723
|
+
:type s: float | None
|
|
1724
|
+
:param v: Value
|
|
1725
|
+
:type v: float | None
|
|
1726
|
+
"""
|
|
1727
|
+
|
|
1728
|
+
...
|
|
1729
|
+
|
|
1730
|
+
def vertex_color_invert(
|
|
1731
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1732
|
+
execution_context: int | str | None = None,
|
|
1733
|
+
undo: bool | None = None,
|
|
1734
|
+
*,
|
|
1735
|
+
mode: typing.Literal["STROKE", "FILL", "BOTH"] | None = "BOTH",
|
|
1736
|
+
):
|
|
1737
|
+
"""Invert RGB values
|
|
1738
|
+
|
|
1739
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1740
|
+
:type execution_context: int | str | None
|
|
1741
|
+
:type undo: bool | None
|
|
1742
|
+
:param mode: Mode
|
|
1743
|
+
:type mode: typing.Literal['STROKE','FILL','BOTH'] | None
|
|
1744
|
+
"""
|
|
1745
|
+
|
|
1746
|
+
...
|
|
1747
|
+
|
|
1748
|
+
def vertex_color_levels(
|
|
1749
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1750
|
+
execution_context: int | str | None = None,
|
|
1751
|
+
undo: bool | None = None,
|
|
1752
|
+
*,
|
|
1753
|
+
mode: typing.Literal["STROKE", "FILL", "BOTH"] | None = "BOTH",
|
|
1754
|
+
offset: float | None = 0.0,
|
|
1755
|
+
gain: float | None = 1.0,
|
|
1756
|
+
):
|
|
1757
|
+
"""Adjust levels of vertex colors
|
|
1758
|
+
|
|
1759
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1760
|
+
:type execution_context: int | str | None
|
|
1761
|
+
:type undo: bool | None
|
|
1762
|
+
:param mode: Mode
|
|
1763
|
+
:type mode: typing.Literal['STROKE','FILL','BOTH'] | None
|
|
1764
|
+
:param offset: Offset, Value to add to colors
|
|
1765
|
+
:type offset: float | None
|
|
1766
|
+
:param gain: Gain, Value to multiply colors by
|
|
1767
|
+
:type gain: float | None
|
|
1768
|
+
"""
|
|
1769
|
+
|
|
1770
|
+
...
|
|
1771
|
+
|
|
1772
|
+
def vertex_color_set(
|
|
1773
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1774
|
+
execution_context: int | str | None = None,
|
|
1775
|
+
undo: bool | None = None,
|
|
1776
|
+
*,
|
|
1777
|
+
mode: typing.Literal["STROKE", "FILL", "BOTH"] | None = "BOTH",
|
|
1778
|
+
factor: float | None = 1.0,
|
|
1779
|
+
):
|
|
1780
|
+
"""Set active color to all selected vertex
|
|
1781
|
+
|
|
1782
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1783
|
+
:type execution_context: int | str | None
|
|
1784
|
+
:type undo: bool | None
|
|
1785
|
+
:param mode: Mode
|
|
1786
|
+
:type mode: typing.Literal['STROKE','FILL','BOTH'] | None
|
|
1787
|
+
:param factor: Factor, Mix Factor
|
|
1788
|
+
:type factor: float | None
|
|
1789
|
+
"""
|
|
1790
|
+
|
|
1791
|
+
...
|
|
1792
|
+
|
|
1793
|
+
def vertex_group_normalize(
|
|
1794
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1795
|
+
execution_context: int | str | None = None,
|
|
1796
|
+
undo: bool | None = None,
|
|
1797
|
+
):
|
|
1798
|
+
"""Normalize weights of the active vertex group
|
|
1799
|
+
|
|
1800
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1801
|
+
:type execution_context: int | str | None
|
|
1802
|
+
:type undo: bool | None
|
|
1803
|
+
"""
|
|
1804
|
+
|
|
1805
|
+
...
|
|
1806
|
+
|
|
1807
|
+
def vertex_group_normalize_all(
|
|
1808
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1809
|
+
execution_context: int | str | None = None,
|
|
1810
|
+
undo: bool | None = None,
|
|
1811
|
+
*,
|
|
1812
|
+
lock_active: bool | None = True,
|
|
1813
|
+
):
|
|
1814
|
+
"""Normalize the weights of all vertex groups, so that for each vertex, the sum of all weights is 1.0
|
|
1815
|
+
|
|
1816
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1817
|
+
:type execution_context: int | str | None
|
|
1818
|
+
:type undo: bool | None
|
|
1819
|
+
:param lock_active: Lock Active, Keep the values of the active group while normalizing others
|
|
1820
|
+
:type lock_active: bool | None
|
|
1821
|
+
"""
|
|
1822
|
+
|
|
1823
|
+
...
|
|
1824
|
+
|
|
1825
|
+
def vertex_group_smooth(
|
|
1826
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1827
|
+
execution_context: int | str | None = None,
|
|
1828
|
+
undo: bool | None = None,
|
|
1829
|
+
*,
|
|
1830
|
+
factor: float | None = 0.5,
|
|
1831
|
+
repeat: int | None = 1,
|
|
1832
|
+
):
|
|
1833
|
+
"""Smooth the weights of the active vertex group
|
|
1834
|
+
|
|
1835
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1836
|
+
:type execution_context: int | str | None
|
|
1837
|
+
:type undo: bool | None
|
|
1838
|
+
:param factor: Factor
|
|
1839
|
+
:type factor: float | None
|
|
1840
|
+
:param repeat: Iterations
|
|
1841
|
+
:type repeat: int | None
|
|
1842
|
+
"""
|
|
1843
|
+
|
|
1844
|
+
...
|
|
1845
|
+
|
|
1627
1846
|
def weight_brush_stroke(
|
|
1628
1847
|
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
1629
1848
|
execution_context: int | str | None = None,
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -12,16 +12,12 @@ def change_effect_input(
|
|
|
12
12
|
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
13
13
|
execution_context: int | str | None = None,
|
|
14
14
|
undo: bool | None = None,
|
|
15
|
-
*,
|
|
16
|
-
swap: typing.Literal["A_B", "B_C", "A_C"] | None = "A_B",
|
|
17
15
|
):
|
|
18
16
|
"""Undocumented, consider contributing.
|
|
19
17
|
|
|
20
18
|
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
21
19
|
:type execution_context: int | str | None
|
|
22
20
|
:type undo: bool | None
|
|
23
|
-
:param swap: Swap, The effect inputs to swap
|
|
24
|
-
:type swap: typing.Literal['A_B','B_C','A_C'] | None
|
|
25
21
|
"""
|
|
26
22
|
|
|
27
23
|
...
|
|
@@ -2471,7 +2467,7 @@ def swap_inputs(
|
|
|
2471
2467
|
execution_context: int | str | None = None,
|
|
2472
2468
|
undo: bool | None = None,
|
|
2473
2469
|
):
|
|
2474
|
-
"""Swap the
|
|
2470
|
+
"""Swap the two inputs of the effect strip
|
|
2475
2471
|
|
|
2476
2472
|
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
2477
2473
|
:type execution_context: int | str | None
|