fake-bpy-module 20240524__py3-none-any.whl → 20240529__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_console_utils/autocomplete/complete_calltip/__init__.pyi +3 -3
- bl_operators/__init__.pyi +3 -0
- bl_operators/connect_to_output/__init__.pyi +325 -0
- bl_operators/image_as_planes/__init__.pyi +463 -0
- bl_operators/node_editor/__init__.pyi +6 -0
- bl_operators/node_editor/node_functions/__init__.pyi +23 -0
- bl_operators/presets/__init__.pyi +12 -12
- bl_operators/userpref/__init__.pyi +0 -214
- bl_operators/wm/__init__.pyi +24 -24
- bl_ui/__init__.pyi +12 -12
- bl_ui/anim/__init__.pyi +6 -6
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu/__init__.pyi +6 -6
- bl_ui/node_add_menu_compositor/__init__.pyi +108 -108
- bl_ui/node_add_menu_geometry/__init__.pyi +288 -288
- bl_ui/node_add_menu_shader/__init__.pyi +60 -60
- bl_ui/node_add_menu_texture/__init__.pyi +54 -54
- bl_ui/properties_collection/__init__.pyi +6 -6
- bl_ui/properties_data_armature/__init__.pyi +12 -12
- bl_ui/properties_data_camera/__init__.pyi +12 -12
- bl_ui/properties_data_curves/__init__.pyi +6 -6
- bl_ui/properties_data_gpencil/__init__.pyi +12 -12
- bl_ui/properties_data_grease_pencil/__init__.pyi +18 -18
- bl_ui/properties_data_mesh/__init__.pyi +24 -24
- bl_ui/properties_data_modifier/__init__.pyi +42 -42
- bl_ui/properties_data_pointcloud/__init__.pyi +6 -6
- bl_ui/properties_freestyle/__init__.pyi +6 -6
- bl_ui/properties_grease_pencil_common/__init__.pyi +72 -72
- bl_ui/properties_mask_common/__init__.pyi +36 -36
- bl_ui/properties_material/__init__.pyi +6 -6
- bl_ui/properties_material_gpencil/__init__.pyi +12 -12
- bl_ui/properties_object/__init__.pyi +6 -6
- bl_ui/properties_output/__init__.pyi +18 -18
- bl_ui/properties_paint_common/__init__.pyi +6 -6
- bl_ui/properties_particle/__init__.pyi +12 -12
- bl_ui/properties_physics_cloth/__init__.pyi +6 -6
- bl_ui/properties_physics_fluid/__init__.pyi +6 -6
- bl_ui/properties_render/__init__.pyi +7 -7
- bl_ui/properties_texture/__init__.pyi +6 -6
- bl_ui/properties_view_layer/__init__.pyi +6 -6
- bl_ui/space_clip/__init__.pyi +186 -186
- bl_ui/space_console/__init__.pyi +30 -30
- bl_ui/space_dopesheet/__init__.pyi +84 -84
- bl_ui/space_filebrowser/__init__.pyi +78 -78
- bl_ui/space_graph/__init__.pyi +96 -96
- bl_ui/space_image/__init__.pyi +138 -138
- bl_ui/space_info/__init__.pyi +30 -30
- bl_ui/space_nla/__init__.pyi +78 -78
- bl_ui/space_node/__init__.pyi +72 -72
- bl_ui/space_outliner/__init__.pyi +72 -72
- bl_ui/space_sequencer/__init__.pyi +204 -204
- bl_ui/space_text/__init__.pyi +72 -72
- bl_ui/space_time/__init__.pyi +24 -24
- bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -0
- bl_ui/space_topbar/__init__.pyi +114 -114
- bl_ui/space_userpref/__init__.pyi +36 -36
- bl_ui/space_view3d/__init__.pyi +1446 -1176
- bl_ui/space_view3d_toolbar/__init__.pyi +30 -30
- bl_ui/utils/__init__.pyi +6 -6
- bmesh/geometry/__init__.pyi +2 -2
- bmesh/ops/__init__.pyi +55 -54
- bmesh/types/__init__.pyi +43 -33
- bmesh/utils/__init__.pyi +2 -2
- bpy/app/__init__.pyi +5 -1
- bpy/app/handlers/__init__.pyi +37 -37
- bpy/app/icons/__init__.pyi +4 -4
- bpy/app/timers/__init__.pyi +6 -6
- bpy/ops/action/__init__.pyi +21 -0
- bpy/ops/anim/__init__.pyi +34 -0
- bpy/ops/armature/__init__.pyi +31 -0
- bpy/ops/asset/__init__.pyi +5 -0
- bpy/ops/bl_pkg/__init__.pyi +32 -21
- bpy/ops/boid/__init__.pyi +1 -0
- bpy/ops/brush/__init__.pyi +6 -0
- bpy/ops/buttons/__init__.pyi +2 -0
- bpy/ops/cachefile/__init__.pyi +3 -0
- bpy/ops/camera/__init__.pyi +2 -0
- bpy/ops/clip/__init__.pyi +49 -0
- bpy/ops/cloth/__init__.pyi +1 -0
- bpy/ops/collection/__init__.pyi +7 -0
- bpy/ops/console/__init__.pyi +11 -0
- bpy/ops/constraint/__init__.pyi +15 -0
- bpy/ops/curve/__init__.pyi +28 -0
- bpy/ops/curves/__init__.pyi +14 -0
- bpy/ops/cycles/__init__.pyi +2 -0
- bpy/ops/dpaint/__init__.pyi +2 -0
- bpy/ops/ed/__init__.pyi +3 -0
- bpy/ops/export_anim/__init__.pyi +1 -0
- bpy/ops/export_scene/__init__.pyi +20 -3
- bpy/ops/file/__init__.pyi +14 -0
- bpy/ops/fluid/__init__.pyi +1 -0
- bpy/ops/font/__init__.pyi +13 -0
- bpy/ops/geometry/__init__.pyi +7 -0
- bpy/ops/gizmogroup/__init__.pyi +1 -0
- bpy/ops/gpencil/__init__.pyi +106 -0
- bpy/ops/graph/__init__.pyi +47 -0
- bpy/ops/grease_pencil/__init__.pyi +52 -0
- bpy/ops/image/__init__.pyi +308 -0
- bpy/ops/import_anim/__init__.pyi +1 -0
- bpy/ops/import_curve/__init__.pyi +1 -0
- bpy/ops/import_scene/__init__.pyi +2 -0
- bpy/ops/info/__init__.pyi +3 -0
- bpy/ops/lattice/__init__.pyi +5 -0
- bpy/ops/marker/__init__.pyi +9 -0
- bpy/ops/mask/__init__.pyi +22 -0
- bpy/ops/mball/__init__.pyi +7 -0
- bpy/ops/mesh/__init__.pyi +134 -0
- bpy/ops/nla/__init__.pyi +20 -0
- bpy/ops/node/__init__.pyi +65 -0
- bpy/ops/object/__init__.pyi +174 -0
- bpy/ops/outliner/__init__.pyi +25 -0
- bpy/ops/paint/__init__.pyi +105 -0
- bpy/ops/paintcurve/__init__.pyi +4 -0
- bpy/ops/palette/__init__.pyi +4 -0
- bpy/ops/particle/__init__.pyi +17 -0
- bpy/ops/pose/__init__.pyi +24 -0
- bpy/ops/poselib/__init__.pyi +4 -0
- bpy/ops/preferences/__init__.pyi +28 -16
- bpy/ops/ptcache/__init__.pyi +2 -0
- bpy/ops/render/__init__.pyi +9 -0
- bpy/ops/rigidbody/__init__.pyi +7 -0
- bpy/ops/scene/__init__.pyi +16 -0
- bpy/ops/screen/__init__.pyi +21 -0
- bpy/ops/script/__init__.pyi +2 -0
- bpy/ops/sculpt/__init__.pyi +151 -0
- bpy/ops/sculpt_curves/__init__.pyi +3 -0
- bpy/ops/sequencer/__init__.pyi +57 -0
- bpy/ops/sound/__init__.pyi +4 -0
- bpy/ops/spreadsheet/__init__.pyi +2 -0
- bpy/ops/surface/__init__.pyi +6 -0
- bpy/ops/text/__init__.pyi +18 -0
- bpy/ops/text_editor/__init__.pyi +1 -0
- bpy/ops/texture/__init__.pyi +1 -0
- bpy/ops/transform/__init__.pyi +25 -0
- bpy/ops/ui/__init__.pyi +13 -0
- bpy/ops/uilist/__init__.pyi +3 -0
- bpy/ops/uv/__init__.pyi +40 -0
- bpy/ops/view2d/__init__.pyi +11 -0
- bpy/ops/view3d/__init__.pyi +30 -0
- bpy/ops/wm/__init__.pyi +114 -0
- bpy/ops/workspace/__init__.pyi +1 -0
- bpy/path/__init__.pyi +6 -6
- bpy/props/__init__.pyi +27 -15
- bpy/types/__init__.pyi +662 -388
- bpy/utils/__init__.pyi +12 -10
- bpy_extras/anim_utils/__init__.pyi +7 -7
- bpy_extras/io_utils/__init__.pyi +4 -4
- bpy_extras/mesh_utils/__init__.pyi +4 -4
- bpy_extras/object_utils/__init__.pyi +8 -8
- bpy_extras/view3d_utils/__init__.pyi +2 -0
- bpy_types/__init__.pyi +12 -12
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/RECORD +167 -163
- freestyle/shaders/__init__.pyi +2 -2
- freestyle/types/__init__.pyi +64 -56
- gpu/matrix/__init__.pyi +6 -6
- gpu/types/__init__.pyi +14 -10
- gpu_extras/batch/__init__.pyi +1 -1
- gpu_extras/presets/__init__.pyi +1 -1
- imbuf/__init__.pyi +2 -2
- mathutils/__init__.pyi +176 -137
- mathutils/bvhtree/__init__.pyi +4 -4
- mathutils/geometry/__init__.pyi +139 -139
- mathutils/kdtree/__init__.pyi +14 -10
- mathutils/noise/__init__.pyi +26 -26
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/top_level.txt +0 -0
bpy/ops/outliner/__init__.pyi
CHANGED
|
@@ -9,6 +9,7 @@ def action_set(
|
|
|
9
9
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
10
10
|
execution_context: str | int | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
|
+
*,
|
|
12
13
|
action: str | None = "",
|
|
13
14
|
):
|
|
14
15
|
"""Change the active action used
|
|
@@ -26,6 +27,7 @@ def animdata_operation(
|
|
|
26
27
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
27
28
|
execution_context: str | int | None = None,
|
|
28
29
|
undo: bool | None = None,
|
|
30
|
+
*,
|
|
29
31
|
type: str | None = "CLEAR_ANIMDATA",
|
|
30
32
|
):
|
|
31
33
|
"""Undocumented, consider contributing.
|
|
@@ -72,6 +74,7 @@ def collection_color_tag_set(
|
|
|
72
74
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
73
75
|
execution_context: str | int | None = None,
|
|
74
76
|
undo: bool | None = None,
|
|
77
|
+
*,
|
|
75
78
|
color: str | None = "NONE",
|
|
76
79
|
):
|
|
77
80
|
"""Set a color tag for the selected collections
|
|
@@ -327,6 +330,7 @@ def collection_isolate(
|
|
|
327
330
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
328
331
|
execution_context: str | int | None = None,
|
|
329
332
|
undo: bool | None = None,
|
|
333
|
+
*,
|
|
330
334
|
extend: bool | typing.Any | None = False,
|
|
331
335
|
):
|
|
332
336
|
"""Hide all but this collection and its parents
|
|
@@ -358,6 +362,7 @@ def collection_new(
|
|
|
358
362
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
359
363
|
execution_context: str | int | None = None,
|
|
360
364
|
undo: bool | None = None,
|
|
365
|
+
*,
|
|
361
366
|
nested: bool | typing.Any | None = True,
|
|
362
367
|
):
|
|
363
368
|
"""Add a new collection inside selected collection
|
|
@@ -431,6 +436,7 @@ def constraint_operation(
|
|
|
431
436
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
432
437
|
execution_context: str | int | None = None,
|
|
433
438
|
undo: bool | None = None,
|
|
439
|
+
*,
|
|
434
440
|
type: str | None = "ENABLE",
|
|
435
441
|
):
|
|
436
442
|
"""Undocumented, consider contributing.
|
|
@@ -448,6 +454,7 @@ def data_operation(
|
|
|
448
454
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
449
455
|
execution_context: str | int | None = None,
|
|
450
456
|
undo: bool | None = None,
|
|
457
|
+
*,
|
|
451
458
|
type: str | None = "DEFAULT",
|
|
452
459
|
):
|
|
453
460
|
"""Undocumented, consider contributing.
|
|
@@ -479,6 +486,7 @@ def delete(
|
|
|
479
486
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
480
487
|
execution_context: str | int | None = None,
|
|
481
488
|
undo: bool | None = None,
|
|
489
|
+
*,
|
|
482
490
|
hierarchy: bool | typing.Any | None = False,
|
|
483
491
|
):
|
|
484
492
|
"""Delete selected objects and collections
|
|
@@ -594,6 +602,7 @@ def id_operation(
|
|
|
594
602
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
595
603
|
execution_context: str | int | None = None,
|
|
596
604
|
undo: bool | None = None,
|
|
605
|
+
*,
|
|
597
606
|
type: str | None = "UNLINK",
|
|
598
607
|
):
|
|
599
608
|
"""General data-block management operations
|
|
@@ -658,6 +667,7 @@ def id_remap(
|
|
|
658
667
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
659
668
|
execution_context: str | int | None = None,
|
|
660
669
|
undo: bool | None = None,
|
|
670
|
+
*,
|
|
661
671
|
id_type: str | None = "OBJECT",
|
|
662
672
|
old_id: str | None = "",
|
|
663
673
|
new_id: str | None = "",
|
|
@@ -681,6 +691,7 @@ def item_activate(
|
|
|
681
691
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
682
692
|
execution_context: str | int | None = None,
|
|
683
693
|
undo: bool | None = None,
|
|
694
|
+
*,
|
|
684
695
|
extend: bool | typing.Any | None = False,
|
|
685
696
|
extend_range: bool | typing.Any | None = False,
|
|
686
697
|
deselect_all: bool | typing.Any | None = False,
|
|
@@ -721,6 +732,7 @@ def item_openclose(
|
|
|
721
732
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
722
733
|
execution_context: str | int | None = None,
|
|
723
734
|
undo: bool | None = None,
|
|
735
|
+
*,
|
|
724
736
|
all: bool | typing.Any | None = False,
|
|
725
737
|
):
|
|
726
738
|
"""Toggle whether item under cursor is enabled or closed
|
|
@@ -738,6 +750,7 @@ def item_rename(
|
|
|
738
750
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
739
751
|
execution_context: str | int | None = None,
|
|
740
752
|
undo: bool | None = None,
|
|
753
|
+
*,
|
|
741
754
|
use_active: bool | typing.Any | None = False,
|
|
742
755
|
):
|
|
743
756
|
"""Rename the active element
|
|
@@ -783,6 +796,7 @@ def lib_operation(
|
|
|
783
796
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
784
797
|
execution_context: str | int | None = None,
|
|
785
798
|
undo: bool | None = None,
|
|
799
|
+
*,
|
|
786
800
|
type: str | None = "DELETE",
|
|
787
801
|
):
|
|
788
802
|
"""Undocumented, consider contributing.
|
|
@@ -824,6 +838,7 @@ def liboverride_operation(
|
|
|
824
838
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
825
839
|
execution_context: str | int | None = None,
|
|
826
840
|
undo: bool | None = None,
|
|
841
|
+
*,
|
|
827
842
|
type: str | None = "OVERRIDE_LIBRARY_CREATE_HIERARCHY",
|
|
828
843
|
selection_set: str | None = "SELECTED",
|
|
829
844
|
):
|
|
@@ -862,6 +877,7 @@ def liboverride_troubleshoot_operation(
|
|
|
862
877
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
863
878
|
execution_context: str | int | None = None,
|
|
864
879
|
undo: bool | None = None,
|
|
880
|
+
*,
|
|
865
881
|
type: str | None = "OVERRIDE_LIBRARY_RESYNC_HIERARCHY",
|
|
866
882
|
selection_set: str | None = "SELECTED",
|
|
867
883
|
):
|
|
@@ -914,6 +930,7 @@ def modifier_operation(
|
|
|
914
930
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
915
931
|
execution_context: str | int | None = None,
|
|
916
932
|
undo: bool | None = None,
|
|
933
|
+
*,
|
|
917
934
|
type: str | None = "APPLY",
|
|
918
935
|
):
|
|
919
936
|
"""Undocumented, consider contributing.
|
|
@@ -931,6 +948,7 @@ def object_operation(
|
|
|
931
948
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
932
949
|
execution_context: str | int | None = None,
|
|
933
950
|
undo: bool | None = None,
|
|
951
|
+
*,
|
|
934
952
|
type: str | None = "SELECT",
|
|
935
953
|
):
|
|
936
954
|
"""Undocumented, consider contributing.
|
|
@@ -991,6 +1009,7 @@ def orphans_purge(
|
|
|
991
1009
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
992
1010
|
execution_context: str | int | None = None,
|
|
993
1011
|
undo: bool | None = None,
|
|
1012
|
+
*,
|
|
994
1013
|
do_local_ids: bool | typing.Any | None = True,
|
|
995
1014
|
do_linked_ids: bool | typing.Any | None = True,
|
|
996
1015
|
do_recursive: bool | typing.Any | None = True,
|
|
@@ -1056,6 +1075,7 @@ def scene_operation(
|
|
|
1056
1075
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1057
1076
|
execution_context: str | int | None = None,
|
|
1058
1077
|
undo: bool | None = None,
|
|
1078
|
+
*,
|
|
1059
1079
|
type: str | None = "DELETE",
|
|
1060
1080
|
):
|
|
1061
1081
|
"""Context menu for scene operations
|
|
@@ -1073,6 +1093,7 @@ def scroll_page(
|
|
|
1073
1093
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1074
1094
|
execution_context: str | int | None = None,
|
|
1075
1095
|
undo: bool | None = None,
|
|
1096
|
+
*,
|
|
1076
1097
|
up: bool | typing.Any | None = False,
|
|
1077
1098
|
):
|
|
1078
1099
|
"""Scroll page up or down
|
|
@@ -1090,6 +1111,7 @@ def select_all(
|
|
|
1090
1111
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1091
1112
|
execution_context: str | int | None = None,
|
|
1092
1113
|
undo: bool | None = None,
|
|
1114
|
+
*,
|
|
1093
1115
|
action: str | None = "TOGGLE",
|
|
1094
1116
|
):
|
|
1095
1117
|
"""Toggle the Outliner selection of items
|
|
@@ -1119,6 +1141,7 @@ def select_box(
|
|
|
1119
1141
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1120
1142
|
execution_context: str | int | None = None,
|
|
1121
1143
|
undo: bool | None = None,
|
|
1144
|
+
*,
|
|
1122
1145
|
tweak: bool | typing.Any | None = False,
|
|
1123
1146
|
xmin: typing.Any | None = 0,
|
|
1124
1147
|
xmax: typing.Any | None = 0,
|
|
@@ -1163,6 +1186,7 @@ def select_walk(
|
|
|
1163
1186
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1164
1187
|
execution_context: str | int | None = None,
|
|
1165
1188
|
undo: bool | None = None,
|
|
1189
|
+
*,
|
|
1166
1190
|
direction: str | None = "UP",
|
|
1167
1191
|
extend: bool | typing.Any | None = False,
|
|
1168
1192
|
toggle_all: bool | typing.Any | None = False,
|
|
@@ -1214,6 +1238,7 @@ def show_one_level(
|
|
|
1214
1238
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1215
1239
|
execution_context: str | int | None = None,
|
|
1216
1240
|
undo: bool | None = None,
|
|
1241
|
+
*,
|
|
1217
1242
|
open: bool | typing.Any | None = True,
|
|
1218
1243
|
):
|
|
1219
1244
|
"""Expand/collapse all entries by one level
|
bpy/ops/paint/__init__.pyi
CHANGED
|
@@ -23,6 +23,7 @@ def add_texture_paint_slot(
|
|
|
23
23
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
24
24
|
execution_context: str | int | None = None,
|
|
25
25
|
undo: bool | None = None,
|
|
26
|
+
*,
|
|
26
27
|
type: str | None = "BASE_COLOR",
|
|
27
28
|
slot_type: str | None = "IMAGE",
|
|
28
29
|
name: str | typing.Any = "Untitled",
|
|
@@ -84,6 +85,7 @@ def brush_select(
|
|
|
84
85
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
85
86
|
execution_context: str | int | None = None,
|
|
86
87
|
undo: bool | None = None,
|
|
88
|
+
*,
|
|
87
89
|
sculpt_tool: str | None = "DRAW",
|
|
88
90
|
vertex_tool: str | None = "DRAW",
|
|
89
91
|
weight_tool: str | None = "DRAW",
|
|
@@ -131,6 +133,7 @@ def face_select_all(
|
|
|
131
133
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
132
134
|
execution_context: str | int | None = None,
|
|
133
135
|
undo: bool | None = None,
|
|
136
|
+
*,
|
|
134
137
|
action: str | None = "TOGGLE",
|
|
135
138
|
):
|
|
136
139
|
"""Change selection for all faces
|
|
@@ -160,6 +163,7 @@ def face_select_hide(
|
|
|
160
163
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
161
164
|
execution_context: str | int | None = None,
|
|
162
165
|
undo: bool | None = None,
|
|
166
|
+
*,
|
|
163
167
|
unselected: bool | typing.Any | None = False,
|
|
164
168
|
):
|
|
165
169
|
"""Hide selected faces
|
|
@@ -177,6 +181,7 @@ def face_select_less(
|
|
|
177
181
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
178
182
|
execution_context: str | int | None = None,
|
|
179
183
|
undo: bool | None = None,
|
|
184
|
+
*,
|
|
180
185
|
face_step: bool | typing.Any | None = True,
|
|
181
186
|
):
|
|
182
187
|
"""Deselect Faces connected to existing selection
|
|
@@ -208,6 +213,7 @@ def face_select_linked_pick(
|
|
|
208
213
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
209
214
|
execution_context: str | int | None = None,
|
|
210
215
|
undo: bool | None = None,
|
|
216
|
+
*,
|
|
211
217
|
deselect: bool | typing.Any | None = False,
|
|
212
218
|
):
|
|
213
219
|
"""Select linked faces under the cursor
|
|
@@ -225,6 +231,7 @@ def face_select_loop(
|
|
|
225
231
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
226
232
|
execution_context: str | int | None = None,
|
|
227
233
|
undo: bool | None = None,
|
|
234
|
+
*,
|
|
228
235
|
select: bool | typing.Any | None = True,
|
|
229
236
|
extend: bool | typing.Any | None = False,
|
|
230
237
|
):
|
|
@@ -245,6 +252,7 @@ def face_select_more(
|
|
|
245
252
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
246
253
|
execution_context: str | int | None = None,
|
|
247
254
|
undo: bool | None = None,
|
|
255
|
+
*,
|
|
248
256
|
face_step: bool | typing.Any | None = True,
|
|
249
257
|
):
|
|
250
258
|
"""Select Faces connected to existing selection
|
|
@@ -262,6 +270,7 @@ def face_vert_reveal(
|
|
|
262
270
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
263
271
|
execution_context: str | int | None = None,
|
|
264
272
|
undo: bool | None = None,
|
|
273
|
+
*,
|
|
265
274
|
select: bool | typing.Any | None = True,
|
|
266
275
|
):
|
|
267
276
|
"""Reveal hidden faces and vertices
|
|
@@ -279,6 +288,7 @@ def grab_clone(
|
|
|
279
288
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
280
289
|
execution_context: str | int | None = None,
|
|
281
290
|
undo: bool | None = None,
|
|
291
|
+
*,
|
|
282
292
|
delta: typing.Any | None = (0.0, 0.0),
|
|
283
293
|
):
|
|
284
294
|
"""Move the clone source image
|
|
@@ -296,6 +306,7 @@ def hide_show(
|
|
|
296
306
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
297
307
|
execution_context: str | int | None = None,
|
|
298
308
|
undo: bool | None = None,
|
|
309
|
+
*,
|
|
299
310
|
xmin: typing.Any | None = 0,
|
|
300
311
|
xmax: typing.Any | None = 0,
|
|
301
312
|
ymin: typing.Any | None = 0,
|
|
@@ -346,6 +357,7 @@ def hide_show_all(
|
|
|
346
357
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
347
358
|
execution_context: str | int | None = None,
|
|
348
359
|
undo: bool | None = None,
|
|
360
|
+
*,
|
|
349
361
|
action: str | None = "HIDE",
|
|
350
362
|
):
|
|
351
363
|
"""Hide/show all vertices
|
|
@@ -369,6 +381,7 @@ def hide_show_lasso_gesture(
|
|
|
369
381
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
370
382
|
execution_context: str | int | None = None,
|
|
371
383
|
undo: bool | None = None,
|
|
384
|
+
*,
|
|
372
385
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
373
386
|
action: str | None = "HIDE",
|
|
374
387
|
area: str | None = "Inside",
|
|
@@ -407,6 +420,7 @@ def hide_show_line_gesture(
|
|
|
407
420
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
408
421
|
execution_context: str | int | None = None,
|
|
409
422
|
undo: bool | None = None,
|
|
423
|
+
*,
|
|
410
424
|
xstart: typing.Any | None = 0,
|
|
411
425
|
xend: typing.Any | None = 0,
|
|
412
426
|
ystart: typing.Any | None = 0,
|
|
@@ -463,6 +477,7 @@ def hide_show_masked(
|
|
|
463
477
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
464
478
|
execution_context: str | int | None = None,
|
|
465
479
|
undo: bool | None = None,
|
|
480
|
+
*,
|
|
466
481
|
action: str | None = "HIDE",
|
|
467
482
|
):
|
|
468
483
|
"""Hide/show all masked vertices above a threshold
|
|
@@ -486,6 +501,7 @@ def hide_show_polyline_gesture(
|
|
|
486
501
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
487
502
|
execution_context: str | int | None = None,
|
|
488
503
|
undo: bool | None = None,
|
|
504
|
+
*,
|
|
489
505
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
490
506
|
action: str | None = "HIDE",
|
|
491
507
|
area: str | None = "Inside",
|
|
@@ -524,6 +540,7 @@ def image_from_view(
|
|
|
524
540
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
525
541
|
execution_context: str | int | None = None,
|
|
526
542
|
undo: bool | None = None,
|
|
543
|
+
*,
|
|
527
544
|
filepath: str | typing.Any = "",
|
|
528
545
|
):
|
|
529
546
|
"""Make an image from biggest 3D view for reprojection
|
|
@@ -541,6 +558,7 @@ def image_paint(
|
|
|
541
558
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
542
559
|
execution_context: str | int | None = None,
|
|
543
560
|
undo: bool | None = None,
|
|
561
|
+
*,
|
|
544
562
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
545
563
|
| None = None,
|
|
546
564
|
mode: str | None = "NORMAL",
|
|
@@ -571,6 +589,7 @@ def mask_box_gesture(
|
|
|
571
589
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
572
590
|
execution_context: str | int | None = None,
|
|
573
591
|
undo: bool | None = None,
|
|
592
|
+
*,
|
|
574
593
|
xmin: typing.Any | None = 0,
|
|
575
594
|
xmax: typing.Any | None = 0,
|
|
576
595
|
ymin: typing.Any | None = 0,
|
|
@@ -618,6 +637,7 @@ def mask_flood_fill(
|
|
|
618
637
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
619
638
|
execution_context: str | int | None = None,
|
|
620
639
|
undo: bool | None = None,
|
|
640
|
+
*,
|
|
621
641
|
mode: str | None = "VALUE",
|
|
622
642
|
value: typing.Any | None = 0.0,
|
|
623
643
|
):
|
|
@@ -647,6 +667,7 @@ def mask_lasso_gesture(
|
|
|
647
667
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
648
668
|
execution_context: str | int | None = None,
|
|
649
669
|
undo: bool | None = None,
|
|
670
|
+
*,
|
|
650
671
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
651
672
|
use_front_faces_only: bool | typing.Any | None = False,
|
|
652
673
|
mode: str | None = "VALUE",
|
|
@@ -682,6 +703,7 @@ def mask_line_gesture(
|
|
|
682
703
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
683
704
|
execution_context: str | int | None = None,
|
|
684
705
|
undo: bool | None = None,
|
|
706
|
+
*,
|
|
685
707
|
xstart: typing.Any | None = 0,
|
|
686
708
|
xend: typing.Any | None = 0,
|
|
687
709
|
ystart: typing.Any | None = 0,
|
|
@@ -731,10 +753,47 @@ def mask_line_gesture(
|
|
|
731
753
|
|
|
732
754
|
...
|
|
733
755
|
|
|
756
|
+
def mask_polyline_gesture(
|
|
757
|
+
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
758
|
+
execution_context: str | int | None = None,
|
|
759
|
+
undo: bool | None = None,
|
|
760
|
+
*,
|
|
761
|
+
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
|
|
762
|
+
use_front_faces_only: bool | typing.Any | None = False,
|
|
763
|
+
mode: str | None = "VALUE",
|
|
764
|
+
value: typing.Any | None = 1.0,
|
|
765
|
+
):
|
|
766
|
+
"""Mask within a shape defined by the cursor
|
|
767
|
+
|
|
768
|
+
:type override_context: dict[str, typing.Any] | bpy.types.Context | None
|
|
769
|
+
:type execution_context: str | int | None
|
|
770
|
+
:type undo: bool | None
|
|
771
|
+
:param path: Path
|
|
772
|
+
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
|
|
773
|
+
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
774
|
+
:type use_front_faces_only: bool | typing.Any | None
|
|
775
|
+
:param mode: Mode
|
|
776
|
+
|
|
777
|
+
VALUE
|
|
778
|
+
Value -- Set mask to the level specified by the 'value' property.
|
|
779
|
+
|
|
780
|
+
VALUE_INVERSE
|
|
781
|
+
Value Inverted -- Set mask to the level specified by the inverted 'value' property.
|
|
782
|
+
|
|
783
|
+
INVERT
|
|
784
|
+
Invert -- Invert the mask.
|
|
785
|
+
:type mode: str | None
|
|
786
|
+
:param value: Value, Mask level to use when mode is 'Value'; zero means no masking and one is fully masked
|
|
787
|
+
:type value: typing.Any | None
|
|
788
|
+
"""
|
|
789
|
+
|
|
790
|
+
...
|
|
791
|
+
|
|
734
792
|
def project_image(
|
|
735
793
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
736
794
|
execution_context: str | int | None = None,
|
|
737
795
|
undo: bool | None = None,
|
|
796
|
+
*,
|
|
738
797
|
image: str | None = "",
|
|
739
798
|
):
|
|
740
799
|
"""Project an edited render from the active camera back onto the object
|
|
@@ -752,6 +811,7 @@ def sample_color(
|
|
|
752
811
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
753
812
|
execution_context: str | int | None = None,
|
|
754
813
|
undo: bool | None = None,
|
|
814
|
+
*,
|
|
755
815
|
location: typing.Any | None = (0, 0),
|
|
756
816
|
merged: bool | typing.Any | None = False,
|
|
757
817
|
palette: bool | typing.Any | None = False,
|
|
@@ -789,6 +849,7 @@ def vert_select_all(
|
|
|
789
849
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
790
850
|
execution_context: str | int | None = None,
|
|
791
851
|
undo: bool | None = None,
|
|
852
|
+
*,
|
|
792
853
|
action: str | None = "TOGGLE",
|
|
793
854
|
):
|
|
794
855
|
"""Change selection for all vertices
|
|
@@ -818,6 +879,7 @@ def vert_select_hide(
|
|
|
818
879
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
819
880
|
execution_context: str | int | None = None,
|
|
820
881
|
undo: bool | None = None,
|
|
882
|
+
*,
|
|
821
883
|
unselected: bool | typing.Any | None = False,
|
|
822
884
|
):
|
|
823
885
|
"""Hide selected vertices
|
|
@@ -835,6 +897,7 @@ def vert_select_less(
|
|
|
835
897
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
836
898
|
execution_context: str | int | None = None,
|
|
837
899
|
undo: bool | None = None,
|
|
900
|
+
*,
|
|
838
901
|
face_step: bool | typing.Any | None = True,
|
|
839
902
|
):
|
|
840
903
|
"""Deselect Vertices connected to existing selection
|
|
@@ -866,6 +929,7 @@ def vert_select_linked_pick(
|
|
|
866
929
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
867
930
|
execution_context: str | int | None = None,
|
|
868
931
|
undo: bool | None = None,
|
|
932
|
+
*,
|
|
869
933
|
select: bool | typing.Any | None = True,
|
|
870
934
|
):
|
|
871
935
|
"""Select linked vertices under the cursor
|
|
@@ -883,6 +947,7 @@ def vert_select_more(
|
|
|
883
947
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
884
948
|
execution_context: str | int | None = None,
|
|
885
949
|
undo: bool | None = None,
|
|
950
|
+
*,
|
|
886
951
|
face_step: bool | typing.Any | None = True,
|
|
887
952
|
):
|
|
888
953
|
"""Select Vertices connected to existing selection
|
|
@@ -900,6 +965,7 @@ def vert_select_ungrouped(
|
|
|
900
965
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
901
966
|
execution_context: str | int | None = None,
|
|
902
967
|
undo: bool | None = None,
|
|
968
|
+
*,
|
|
903
969
|
extend: bool | typing.Any | None = False,
|
|
904
970
|
):
|
|
905
971
|
"""Select vertices without a group
|
|
@@ -917,6 +983,7 @@ def vertex_color_brightness_contrast(
|
|
|
917
983
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
918
984
|
execution_context: str | int | None = None,
|
|
919
985
|
undo: bool | None = None,
|
|
986
|
+
*,
|
|
920
987
|
brightness: typing.Any | None = 0.0,
|
|
921
988
|
contrast: typing.Any | None = 0.0,
|
|
922
989
|
):
|
|
@@ -937,6 +1004,7 @@ def vertex_color_dirt(
|
|
|
937
1004
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
938
1005
|
execution_context: str | int | None = None,
|
|
939
1006
|
undo: bool | None = None,
|
|
1007
|
+
*,
|
|
940
1008
|
blur_strength: typing.Any | None = 1.0,
|
|
941
1009
|
blur_iterations: typing.Any | None = 1,
|
|
942
1010
|
clean_angle: typing.Any | None = 3.14159,
|
|
@@ -983,6 +1051,7 @@ def vertex_color_hsv(
|
|
|
983
1051
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
984
1052
|
execution_context: str | int | None = None,
|
|
985
1053
|
undo: bool | None = None,
|
|
1054
|
+
*,
|
|
986
1055
|
h: typing.Any | None = 0.5,
|
|
987
1056
|
s: typing.Any | None = 1.0,
|
|
988
1057
|
v: typing.Any | None = 1.0,
|
|
@@ -1020,6 +1089,7 @@ def vertex_color_levels(
|
|
|
1020
1089
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1021
1090
|
execution_context: str | int | None = None,
|
|
1022
1091
|
undo: bool | None = None,
|
|
1092
|
+
*,
|
|
1023
1093
|
offset: typing.Any | None = 0.0,
|
|
1024
1094
|
gain: typing.Any | None = 1.0,
|
|
1025
1095
|
):
|
|
@@ -1040,6 +1110,7 @@ def vertex_color_set(
|
|
|
1040
1110
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1041
1111
|
execution_context: str | int | None = None,
|
|
1042
1112
|
undo: bool | None = None,
|
|
1113
|
+
*,
|
|
1043
1114
|
use_alpha: bool | typing.Any | None = True,
|
|
1044
1115
|
):
|
|
1045
1116
|
"""Fill the active vertex color layer with the current paint color
|
|
@@ -1071,6 +1142,7 @@ def vertex_paint(
|
|
|
1071
1142
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1072
1143
|
execution_context: str | int | None = None,
|
|
1073
1144
|
undo: bool | None = None,
|
|
1145
|
+
*,
|
|
1074
1146
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
1075
1147
|
| None = None,
|
|
1076
1148
|
mode: str | None = "NORMAL",
|
|
@@ -1111,6 +1183,36 @@ def vertex_paint_toggle(
|
|
|
1111
1183
|
|
|
1112
1184
|
...
|
|
1113
1185
|
|
|
1186
|
+
def visibility_filter(
|
|
1187
|
+
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1188
|
+
execution_context: str | int | None = None,
|
|
1189
|
+
undo: bool | None = None,
|
|
1190
|
+
*,
|
|
1191
|
+
action: str | None = "GROW",
|
|
1192
|
+
iterations: typing.Any | None = 1,
|
|
1193
|
+
auto_iteration_count: bool | typing.Any | None = True,
|
|
1194
|
+
):
|
|
1195
|
+
"""Edit the visibility of the current mesh
|
|
1196
|
+
|
|
1197
|
+
:type override_context: dict[str, typing.Any] | bpy.types.Context | None
|
|
1198
|
+
:type execution_context: str | int | None
|
|
1199
|
+
:type undo: bool | None
|
|
1200
|
+
:param action: Action
|
|
1201
|
+
|
|
1202
|
+
GROW
|
|
1203
|
+
Grow Visibility -- Grow the visibility by one face based on mesh topology.
|
|
1204
|
+
|
|
1205
|
+
SHRINK
|
|
1206
|
+
Shrink Visibility -- Shrink the visibility by one face based on mesh topology.
|
|
1207
|
+
:type action: str | None
|
|
1208
|
+
:param iterations: Iterations, Number of times that the filter is going to be applied
|
|
1209
|
+
:type iterations: typing.Any | None
|
|
1210
|
+
:param auto_iteration_count: Auto Iteration Count, Use an automatic number of iterations based on the number of vertices of the sculpt
|
|
1211
|
+
:type auto_iteration_count: bool | typing.Any | None
|
|
1212
|
+
"""
|
|
1213
|
+
|
|
1214
|
+
...
|
|
1215
|
+
|
|
1114
1216
|
def visibility_invert(
|
|
1115
1217
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1116
1218
|
execution_context: str | int | None = None,
|
|
@@ -1129,6 +1231,7 @@ def weight_from_bones(
|
|
|
1129
1231
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1130
1232
|
execution_context: str | int | None = None,
|
|
1131
1233
|
undo: bool | None = None,
|
|
1234
|
+
*,
|
|
1132
1235
|
type: str | None = "AUTOMATIC",
|
|
1133
1236
|
):
|
|
1134
1237
|
"""Set the weights of the groups matching the attached armature's selected bones, using the distance between the vertices and the bones
|
|
@@ -1152,6 +1255,7 @@ def weight_gradient(
|
|
|
1152
1255
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1153
1256
|
execution_context: str | int | None = None,
|
|
1154
1257
|
undo: bool | None = None,
|
|
1258
|
+
*,
|
|
1155
1259
|
type: str | None = "LINEAR",
|
|
1156
1260
|
xstart: typing.Any | None = 0,
|
|
1157
1261
|
xend: typing.Any | None = 0,
|
|
@@ -1187,6 +1291,7 @@ def weight_paint(
|
|
|
1187
1291
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1188
1292
|
execution_context: str | int | None = None,
|
|
1189
1293
|
undo: bool | None = None,
|
|
1294
|
+
*,
|
|
1190
1295
|
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
1191
1296
|
| None = None,
|
|
1192
1297
|
mode: str | None = "NORMAL",
|
bpy/ops/paintcurve/__init__.pyi
CHANGED
|
@@ -9,6 +9,7 @@ def add_point(
|
|
|
9
9
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
10
10
|
execution_context: str | int | None = None,
|
|
11
11
|
undo: bool | None = None,
|
|
12
|
+
*,
|
|
12
13
|
location: typing.Any | None = (0, 0),
|
|
13
14
|
):
|
|
14
15
|
"""Add New Paint Curve Point
|
|
@@ -26,6 +27,7 @@ def add_point_slide(
|
|
|
26
27
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
27
28
|
execution_context: str | int | None = None,
|
|
28
29
|
undo: bool | None = None,
|
|
30
|
+
*,
|
|
29
31
|
PAINTCURVE_OT_add_point: add_point | None = None,
|
|
30
32
|
PAINTCURVE_OT_slide: slide | None = None,
|
|
31
33
|
):
|
|
@@ -102,6 +104,7 @@ def select(
|
|
|
102
104
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
103
105
|
execution_context: str | int | None = None,
|
|
104
106
|
undo: bool | None = None,
|
|
107
|
+
*,
|
|
105
108
|
location: typing.Any | None = (0, 0),
|
|
106
109
|
toggle: bool | typing.Any | None = False,
|
|
107
110
|
extend: bool | typing.Any | None = False,
|
|
@@ -125,6 +128,7 @@ def slide(
|
|
|
125
128
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
126
129
|
execution_context: str | int | None = None,
|
|
127
130
|
undo: bool | None = None,
|
|
131
|
+
*,
|
|
128
132
|
align: bool | typing.Any | None = False,
|
|
129
133
|
select: bool | typing.Any | None = True,
|
|
130
134
|
):
|
bpy/ops/palette/__init__.pyi
CHANGED
|
@@ -37,6 +37,7 @@ def color_move(
|
|
|
37
37
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
38
38
|
execution_context: str | int | None = None,
|
|
39
39
|
undo: bool | None = None,
|
|
40
|
+
*,
|
|
40
41
|
type: str | None = "UP",
|
|
41
42
|
):
|
|
42
43
|
"""Move the active Color up/down in the list
|
|
@@ -54,6 +55,7 @@ def extract_from_image(
|
|
|
54
55
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
55
56
|
execution_context: str | int | None = None,
|
|
56
57
|
undo: bool | None = None,
|
|
58
|
+
*,
|
|
57
59
|
threshold: typing.Any | None = 1,
|
|
58
60
|
):
|
|
59
61
|
"""Extract all colors used in Image and create a Palette
|
|
@@ -71,6 +73,7 @@ def join(
|
|
|
71
73
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
72
74
|
execution_context: str | int | None = None,
|
|
73
75
|
undo: bool | None = None,
|
|
76
|
+
*,
|
|
74
77
|
palette: str | typing.Any = "",
|
|
75
78
|
):
|
|
76
79
|
"""Join Palette Swatches
|
|
@@ -102,6 +105,7 @@ def sort(
|
|
|
102
105
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
103
106
|
execution_context: str | int | None = None,
|
|
104
107
|
undo: bool | None = None,
|
|
108
|
+
*,
|
|
105
109
|
type: str | None = "HSV",
|
|
106
110
|
):
|
|
107
111
|
"""Sort Palette Colors
|