fake-bpy-module 20250612__py3-none-any.whl → 20260118__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.
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_calltip/__init__.pyi +0 -13
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_import/__init__.pyi +0 -5
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_namespace/__init__.pyi +0 -11
- {bl_console_utils → _bl_console_utils}/autocomplete/intellisense/__init__.pyi +0 -10
- {bl_i18n_utils → _bl_i18n_utils}/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/bl_extract_messages/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/settings/__init__.pyi +3 -1
- {bl_i18n_utils → _bl_i18n_utils}/utils/__init__.pyi +4 -4
- _bl_i18n_utils/utils_spell_check/__init__.pyi +22 -0
- {bl_ui_utils → _bl_ui_utils}/__init__.pyi +1 -0
- _blendfile_header/__init__.pyi +48 -0
- _bpy_internal/__init__.pyi +4 -1
- _bpy_internal/assets/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/blender_asset_library_openapi/__init__.pyi +13 -0
- _bpy_internal/disk_file_hash_service/__init__.pyi +19 -0
- _bpy_internal/disk_file_hash_service/backend_sqlite/__init__.pyi +48 -0
- _bpy_internal/disk_file_hash_service/hash_service/__init__.pyi +64 -0
- _bpy_internal/disk_file_hash_service/types/__init__.pyi +53 -0
- _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
- _bpy_internal/filesystem/__init__.pyi +5 -0
- _bpy_internal/filesystem/locking/__init__.pyi +28 -0
- _bpy_internal/grease_pencil/stroke/__init__.pyi +2 -2
- _bpy_internal/platform/__init__.pyi +5 -0
- _bpy_types/__init__.pyi +1592 -0
- {keyingsets_utils → _keyingsets_utils}/__init__.pyi +2 -0
- {rna_info → _rna_info}/__init__.pyi +4 -2
- addon_utils/__init__.pyi +0 -13
- aud/__init__.pyi +122 -145
- bl_app_templates_system/Storyboarding/__init__.pyi +11 -0
- bl_app_templates_system/__init__.pyi +5 -0
- bl_app_templates_system/py.typed +0 -0
- bl_math/__init__.pyi +3 -13
- bl_operators/__init__.pyi +1 -0
- bl_operators/add_mesh_torus/__init__.pyi +2 -3
- bl_operators/anim/__init__.pyi +62 -38
- bl_operators/assets/__init__.pyi +4 -9
- bl_operators/bone_selection_sets/__init__.pyi +15 -42
- bl_operators/clip/__init__.pyi +12 -31
- bl_operators/connect_to_output/__init__.pyi +2 -3
- bl_operators/console/__init__.pyi +6 -15
- bl_operators/constraint/__init__.pyi +6 -13
- bl_operators/copy_global_transform/__init__.pyi +261 -0
- bl_operators/file/__init__.pyi +6 -11
- bl_operators/freestyle/__init__.pyi +5 -12
- bl_operators/geometry_nodes/__init__.pyi +5 -12
- bl_operators/grease_pencil/__init__.pyi +2 -3
- bl_operators/image/__init__.pyi +6 -15
- bl_operators/image_as_planes/__init__.pyi +3 -10
- bl_operators/mesh/__init__.pyi +3 -49
- bl_operators/node/__init__.pyi +294 -73
- bl_operators/object/__init__.pyi +17 -53
- bl_operators/object_align/__init__.pyi +2 -3
- bl_operators/object_quick_effects/__init__.pyi +5 -12
- bl_operators/object_randomize_transform/__init__.pyi +2 -3
- bl_operators/presets/__init__.pyi +27 -76
- bl_operators/rigidbody/__init__.pyi +4 -9
- bl_operators/screen_play_rendered_anim/__init__.pyi +2 -3
- bl_operators/sequencer/__init__.pyi +12 -27
- bl_operators/spreadsheet/__init__.pyi +2 -3
- bl_operators/userpref/__init__.pyi +26 -75
- bl_operators/uvcalc_follow_active/__init__.pyi +3 -4
- bl_operators/uvcalc_lightmap/__init__.pyi +3 -4
- bl_operators/uvcalc_transform/__init__.pyi +26 -16
- bl_operators/vertexpaint_dirt/__init__.pyi +2 -3
- bl_operators/view3d/__init__.pyi +9 -24
- bl_operators/wm/__init__.pyi +48 -139
- bl_operators/world/__init__.pyi +3 -4
- bl_ui/__init__.pyi +7 -7
- bl_ui/anim/__init__.pyi +2 -3
- bl_ui/asset_shelf/__init__.pyi +2 -3
- bl_ui/generic_ui_list/__init__.pyi +4 -19
- bl_ui/node_add_menu/__init__.pyi +263 -7
- bl_ui/node_add_menu_compositor/__init__.pyi +96 -79
- bl_ui/node_add_menu_geometry/__init__.pyi +309 -270
- bl_ui/node_add_menu_shader/__init__.pyi +49 -49
- bl_ui/node_add_menu_texture/__init__.pyi +17 -62
- bl_ui/properties_collection/__init__.pyi +9 -22
- bl_ui/properties_constraint/__init__.pyi +129 -282
- bl_ui/properties_data_armature/__init__.pyi +22 -57
- bl_ui/properties_data_bone/__init__.pyi +12 -31
- bl_ui/properties_data_camera/__init__.pyi +18 -47
- bl_ui/properties_data_curve/__init__.pyi +18 -47
- bl_ui/properties_data_curves/__init__.pyi +11 -26
- bl_ui/properties_data_empty/__init__.pyi +3 -6
- bl_ui/properties_data_grease_pencil/__init__.pyi +23 -62
- bl_ui/properties_data_lattice/__init__.pyi +7 -14
- bl_ui/properties_data_light/__init__.pyi +13 -32
- bl_ui/properties_data_lightprobe/__init__.pyi +16 -43
- bl_ui/properties_data_mesh/__init__.pyi +47 -62
- bl_ui/properties_data_metaball/__init__.pyi +9 -20
- bl_ui/properties_data_modifier/__init__.pyi +22 -28
- bl_ui/properties_data_pointcloud/__init__.pyi +8 -19
- bl_ui/properties_data_shaderfx/__init__.pyi +2 -3
- bl_ui/properties_data_speaker/__init__.pyi +9 -20
- bl_ui/properties_data_volume/__init__.pyi +12 -29
- bl_ui/properties_freestyle/__init__.pyi +27 -76
- bl_ui/properties_grease_pencil_common/__init__.pyi +10 -168
- bl_ui/properties_mask_common/__init__.pyi +8 -21
- bl_ui/properties_material/__init__.pyi +26 -86
- bl_ui/properties_material_gpencil/__init__.pyi +36 -57
- bl_ui/properties_object/__init__.pyi +59 -65
- bl_ui/properties_output/__init__.pyi +21 -60
- bl_ui/properties_paint_common/__init__.pyi +30 -22
- bl_ui/properties_particle/__init__.pyi +58 -161
- bl_ui/properties_physics_cloth/__init__.pyi +15 -42
- bl_ui/properties_physics_common/__init__.pyi +2 -3
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +23 -66
- bl_ui/properties_physics_field/__init__.pyi +11 -30
- bl_ui/properties_physics_fluid/__init__.pyi +29 -84
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +2 -3
- bl_ui/properties_physics_rigidbody/__init__.pyi +9 -24
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +14 -39
- bl_ui/properties_physics_softbody/__init__.pyi +16 -45
- bl_ui/properties_render/__init__.pyi +139 -197
- bl_ui/properties_scene/__init__.pyi +46 -50
- bl_ui/properties_strip/__init__.pyi +744 -0
- bl_ui/properties_strip_modifier/__init__.pyi +45 -0
- bl_ui/properties_texture/__init__.pyi +30 -83
- bl_ui/properties_view_layer/__init__.pyi +84 -39
- bl_ui/properties_workspace/__init__.pyi +6 -13
- bl_ui/properties_world/__init__.pyi +14 -35
- bl_ui/space_clip/__init__.pyi +150 -231
- bl_ui/space_console/__init__.pyi +7 -18
- bl_ui/space_dopesheet/__init__.pyi +143 -100
- bl_ui/space_filebrowser/__init__.pyi +33 -90
- bl_ui/space_graph/__init__.pyi +48 -85
- bl_ui/space_image/__init__.pyi +111 -229
- bl_ui/space_info/__init__.pyi +7 -18
- bl_ui/space_nla/__init__.pyi +44 -73
- bl_ui/space_node/__init__.pyi +161 -123
- bl_ui/space_outliner/__init__.pyi +16 -45
- bl_ui/space_properties/__init__.pyi +34 -10
- bl_ui/space_sequencer/__init__.pyi +164 -901
- bl_ui/space_spreadsheet/__init__.pyi +4 -9
- bl_ui/space_statusbar/__init__.pyi +2 -3
- bl_ui/space_text/__init__.pyi +17 -48
- bl_ui/space_time/__init__.pyi +25 -71
- bl_ui/space_toolsystem_common/__init__.pyi +2 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +30 -7
- bl_ui/space_topbar/__init__.pyi +35 -79
- bl_ui/space_userpref/__init__.pyi +185 -321
- bl_ui/space_view3d/__init__.pyi +337 -817
- bl_ui/space_view3d_sidebar/__init__.pyi +127 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +110 -880
- bl_ui/utils/__init__.pyi +0 -17
- blend_render_info/__init__.pyi +1 -0
- blf/__init__.pyi +8 -54
- bmesh/__init__.pyi +2 -9
- bmesh/geometry/__init__.pyi +1 -4
- bmesh/ops/__init__.pyi +125 -508
- bmesh/types/__init__.pyi +318 -664
- bmesh/utils/__init__.pyi +17 -43
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +93 -88
- bpy/app/handlers/__init__.pyi +19 -19
- bpy/app/icons/__init__.pyi +0 -6
- bpy/app/timers/__init__.pyi +2 -7
- bpy/app/translations/__init__.pyi +8 -23
- bpy/msgbus/__init__.pyi +4 -6
- bpy/ops/action/__init__.pyi +68 -199
- bpy/ops/anim/__init__.pyi +142 -299
- bpy/ops/armature/__init__.pyi +78 -209
- bpy/ops/asset/__init__.pyi +46 -108
- bpy/ops/boid/__init__.pyi +28 -45
- bpy/ops/brush/__init__.pyi +13 -108
- bpy/ops/buttons/__init__.pyi +16 -75
- bpy/ops/cachefile/__init__.pyi +8 -65
- bpy/ops/camera/__init__.pyi +0 -11
- bpy/ops/clip/__init__.pyi +173 -471
- bpy/ops/cloth/__init__.pyi +0 -5
- bpy/ops/collection/__init__.pyi +23 -36
- bpy/ops/console/__init__.pyi +40 -98
- bpy/ops/constraint/__init__.pyi +14 -85
- bpy/ops/curve/__init__.pyi +94 -277
- bpy/ops/curves/__init__.pyi +119 -166
- bpy/ops/cycles/__init__.pyi +4 -15
- bpy/ops/dpaint/__init__.pyi +14 -24
- bpy/ops/ed/__init__.pyi +44 -92
- bpy/ops/export_anim/__init__.pyi +2 -10
- bpy/ops/export_scene/__init__.pyi +16 -170
- bpy/ops/extensions/__init__.pyi +60 -165
- bpy/ops/file/__init__.pyi +110 -246
- bpy/ops/fluid/__init__.pyi +52 -83
- bpy/ops/font/__init__.pyi +40 -144
- bpy/ops/geometry/__init__.pyi +12 -127
- bpy/ops/gizmogroup/__init__.pyi +4 -13
- bpy/ops/gpencil/__init__.pyi +22 -54
- bpy/ops/graph/__init__.pyi +92 -343
- bpy/ops/grease_pencil/__init__.pyi +218 -550
- bpy/ops/image/__init__.pyi +85 -435
- bpy/ops/import_anim/__init__.pyi +3 -17
- bpy/ops/import_curve/__init__.pyi +2 -5
- bpy/ops/import_scene/__init__.pyi +15 -49
- bpy/ops/info/__init__.pyi +16 -39
- bpy/ops/lattice/__init__.pyi +12 -36
- bpy/ops/marker/__init__.pyi +12 -51
- bpy/ops/mask/__init__.pyi +68 -193
- bpy/ops/material/__init__.pyi +18 -18
- bpy/ops/mball/__init__.pyi +4 -31
- bpy/ops/mesh/__init__.pyi +140 -967
- bpy/ops/nla/__init__.pyi +87 -206
- bpy/ops/node/__init__.pyi +714 -744
- bpy/ops/object/__init__.pyi +461 -1341
- bpy/ops/outliner/__init__.pyi +192 -376
- bpy/ops/paint/__init__.pyi +94 -319
- bpy/ops/paintcurve/__init__.pyi +20 -40
- bpy/ops/palette/__init__.pyi +14 -30
- bpy/ops/particle/__init__.pyi +86 -184
- bpy/ops/pointcloud/__init__.pyi +12 -38
- bpy/ops/pose/__init__.pyi +108 -261
- bpy/ops/poselib/__init__.pyi +32 -67
- bpy/ops/preferences/__init__.pyi +37 -187
- bpy/ops/ptcache/__init__.pyi +22 -36
- bpy/ops/render/__init__.pyi +20 -72
- bpy/ops/rigidbody/__init__.pyi +25 -63
- bpy/ops/scene/__init__.pyi +122 -181
- bpy/ops/screen/__init__.pyi +93 -221
- bpy/ops/script/__init__.pyi +4 -13
- bpy/ops/sculpt/__init__.pyi +69 -324
- bpy/ops/sculpt_curves/__init__.pyi +10 -23
- bpy/ops/sequencer/__init__.pyi +410 -730
- bpy/ops/sound/__init__.pyi +16 -114
- bpy/ops/spreadsheet/__init__.pyi +20 -37
- bpy/ops/surface/__init__.pyi +0 -48
- bpy/ops/text/__init__.pyi +112 -250
- bpy/ops/text_editor/__init__.pyi +0 -5
- bpy/ops/texture/__init__.pyi +14 -21
- bpy/ops/transform/__init__.pyi +18 -386
- bpy/ops/ui/__init__.pyi +117 -188
- bpy/ops/uilist/__init__.pyi +0 -13
- bpy/ops/uv/__init__.pyi +238 -305
- bpy/ops/view2d/__init__.pyi +16 -76
- bpy/ops/view3d/__init__.pyi +153 -377
- bpy/ops/wm/__init__.pyi +277 -1397
- bpy/ops/workspace/__init__.pyi +32 -39
- bpy/ops/world/__init__.pyi +10 -12
- bpy/path/__init__.pyi +1 -35
- bpy/props/__init__.pyi +347 -218
- bpy/stub_internal/rna_enums/__init__.pyi +142 -108
- bpy/types/__init__.pyi +77367 -101305
- bpy/utils/__init__.pyi +11 -82
- bpy/utils/previews/__init__.pyi +2 -11
- bpy/utils/units/__init__.pyi +5 -15
- bpy_extras/anim_utils/__init__.pyi +24 -16
- bpy_extras/bmesh_utils/__init__.pyi +0 -1
- bpy_extras/id_map_utils/__init__.pyi +14 -6
- bpy_extras/image_utils/__init__.pyi +2 -11
- bpy_extras/io_utils/__init__.pyi +8 -27
- bpy_extras/keyconfig_utils/__init__.pyi +1 -1
- bpy_extras/mesh_utils/__init__.pyi +0 -12
- bpy_extras/node_shader_utils/__init__.pyi +1 -9
- bpy_extras/object_utils/__init__.pyi +1 -15
- bpy_extras/view3d_utils/__init__.pyi +0 -18
- bpy_extras/wm_utils/progress_report/__init__.pyi +1 -1
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/METADATA +4 -1
- fake_bpy_module-20260118.dist-info/RECORD +385 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/top_level.txt +17 -16
- freestyle/chainingiterators/__init__.pyi +5 -27
- freestyle/functions/__init__.pyi +0 -139
- freestyle/predicates/__init__.pyi +2 -53
- freestyle/shaders/__init__.pyi +15 -81
- freestyle/types/__init__.pyi +159 -799
- freestyle/utils/ContextFunctions/__init__.pyi +0 -23
- freestyle/utils/__init__.pyi +5 -11
- gpu/capabilities/__init__.pyi +0 -21
- gpu/matrix/__init__.pyi +1 -10
- gpu/platform/__init__.pyi +2 -7
- gpu/shader/__init__.pyi +26 -9
- gpu/state/__init__.pyi +60 -39
- gpu/texture/__init__.pyi +3 -5
- gpu/types/__init__.pyi +116 -184
- gpu_extras/batch/__init__.pyi +1 -5
- gpu_extras/presets/__init__.pyi +6 -8
- idprop/types/__init__.pyi +6 -6
- imbuf/__init__.pyi +3 -10
- imbuf/types/__init__.pyi +7 -21
- keyingsets_builtins/__init__.pyi +24 -67
- mathutils/__init__.pyi +241 -2207
- mathutils/bvhtree/__init__.pyi +18 -26
- mathutils/geometry/__init__.pyi +82 -132
- mathutils/interpolate/__init__.pyi +6 -5
- mathutils/kdtree/__init__.pyi +1 -11
- mathutils/noise/__init__.pyi +61 -106
- rna_prop_ui/__init__.pyi +1 -1
- bgl/__init__.pyi +0 -4256
- bpy_types/__init__.pyi +0 -30
- fake_bpy_module-20250612.dist-info/RECORD +0 -367
- {animsys_refactor → _animsys_refactor}/__init__.pyi +0 -0
- {animsys_refactor → _animsys_refactor}/py.typed +0 -0
- {bl_console_utils → _bl_console_utils}/__init__.pyi +0 -0
- {bl_console_utils → _bl_console_utils}/autocomplete/__init__.pyi +0 -0
- {bgl → _bl_console_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/merge_po/__init__.pyi +0 -0
- {bl_console_utils → _bl_i18n_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_cli/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_languages_menu/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_rtl/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/bl_previews_render/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_previews_utils}/py.typed +0 -0
- {bl_rna_utils → _bl_rna_utils}/__init__.pyi +0 -0
- {bl_rna_utils → _bl_rna_utils}/data_path/__init__.pyi +0 -0
- {bl_previews_utils → _bl_rna_utils}/py.typed +0 -0
- {bl_text_utils → _bl_text_utils}/__init__.pyi +0 -0
- {bl_text_utils → _bl_text_utils}/external_editor/__init__.pyi +0 -0
- {bl_rna_utils → _bl_text_utils}/py.typed +0 -0
- {bl_ui_utils → _bl_ui_utils}/layout/__init__.pyi +0 -0
- {bl_text_utils → _bl_ui_utils}/py.typed +0 -0
- {bl_ui_utils → _blendfile_header}/py.typed +0 -0
- /_bpy_internal/{freedesktop → platform/freedesktop}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/py.typed +0 -0
- {bpy_types → _bpy_types}/py.typed +0 -0
- {console_python → _console_python}/__init__.pyi +0 -0
- {console_python → _console_python}/py.typed +0 -0
- {console_shell → _console_shell}/__init__.pyi +0 -0
- {console_shell → _console_shell}/py.typed +0 -0
- {graphviz_export → _graphviz_export}/__init__.pyi +0 -0
- {graphviz_export → _graphviz_export}/py.typed +0 -0
- {keyingsets_utils → _keyingsets_utils}/py.typed +0 -0
- {rna_info → _rna_info}/py.typed +0 -0
- {rna_xml → _rna_xml}/__init__.pyi +0 -0
- {rna_xml → _rna_xml}/py.typed +0 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/WHEEL +0 -0
bpy/ops/paintcurve/__init__.pyi
CHANGED
|
@@ -12,10 +12,7 @@ def add_point(
|
|
|
12
12
|
) -> None:
|
|
13
13
|
"""Add New Paint Curve Point
|
|
14
14
|
|
|
15
|
-
:type execution_context: int | str | None
|
|
16
|
-
:type undo: bool | None
|
|
17
15
|
:param location: Location, Location of vertex in area space
|
|
18
|
-
:type location: collections.abc.Iterable[int] | None
|
|
19
16
|
"""
|
|
20
17
|
|
|
21
18
|
def add_point_slide(
|
|
@@ -28,45 +25,37 @@ def add_point_slide(
|
|
|
28
25
|
) -> None:
|
|
29
26
|
"""Add new curve point and slide it
|
|
30
27
|
|
|
31
|
-
:type execution_context: int | str | None
|
|
32
|
-
:type undo: bool | None
|
|
33
28
|
:param PAINTCURVE_OT_add_point: Add New Paint Curve Point, Add New Paint Curve Point
|
|
34
|
-
:type PAINTCURVE_OT_add_point: add_point | None
|
|
35
29
|
:param PAINTCURVE_OT_slide: Slide Paint Curve Point, Select and slide paint curve point
|
|
36
|
-
:type PAINTCURVE_OT_slide: slide | None
|
|
37
30
|
"""
|
|
38
31
|
|
|
39
32
|
def cursor(
|
|
40
|
-
execution_context: int | str | None = None,
|
|
33
|
+
execution_context: int | str | None = None,
|
|
34
|
+
undo: bool | None = None,
|
|
35
|
+
/,
|
|
41
36
|
) -> None:
|
|
42
|
-
"""Place cursor
|
|
43
|
-
|
|
44
|
-
:type execution_context: int | str | None
|
|
45
|
-
:type undo: bool | None
|
|
46
|
-
"""
|
|
37
|
+
"""Place cursor"""
|
|
47
38
|
|
|
48
39
|
def delete_point(
|
|
49
|
-
execution_context: int | str | None = None,
|
|
40
|
+
execution_context: int | str | None = None,
|
|
41
|
+
undo: bool | None = None,
|
|
42
|
+
/,
|
|
50
43
|
) -> None:
|
|
51
|
-
"""Remove Paint Curve Point
|
|
52
|
-
|
|
53
|
-
:type execution_context: int | str | None
|
|
54
|
-
:type undo: bool | None
|
|
55
|
-
"""
|
|
56
|
-
|
|
57
|
-
def draw(execution_context: int | str | None = None, undo: bool | None = None) -> None:
|
|
58
|
-
"""Draw curve
|
|
44
|
+
"""Remove Paint Curve Point"""
|
|
59
45
|
|
|
60
|
-
|
|
61
|
-
:
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
"""
|
|
46
|
+
def draw(
|
|
47
|
+
execution_context: int | str | None = None,
|
|
48
|
+
undo: bool | None = None,
|
|
49
|
+
/,
|
|
50
|
+
) -> None:
|
|
51
|
+
"""Draw curve"""
|
|
66
52
|
|
|
67
|
-
|
|
68
|
-
:
|
|
69
|
-
|
|
53
|
+
def new(
|
|
54
|
+
execution_context: int | str | None = None,
|
|
55
|
+
undo: bool | None = None,
|
|
56
|
+
/,
|
|
57
|
+
) -> None:
|
|
58
|
+
"""Add new paint curve"""
|
|
70
59
|
|
|
71
60
|
def select(
|
|
72
61
|
execution_context: int | str | None = None,
|
|
@@ -79,14 +68,9 @@ def select(
|
|
|
79
68
|
) -> None:
|
|
80
69
|
"""Select a paint curve point
|
|
81
70
|
|
|
82
|
-
:type execution_context: int | str | None
|
|
83
|
-
:type undo: bool | None
|
|
84
71
|
:param location: Location, Location of vertex in area space
|
|
85
|
-
:type location: collections.abc.Iterable[int] | None
|
|
86
72
|
:param toggle: Toggle, (De)select all
|
|
87
|
-
:type toggle: bool | None
|
|
88
73
|
:param extend: Extend, Extend selection
|
|
89
|
-
:type extend: bool | None
|
|
90
74
|
"""
|
|
91
75
|
|
|
92
76
|
def slide(
|
|
@@ -99,10 +83,6 @@ def slide(
|
|
|
99
83
|
) -> None:
|
|
100
84
|
"""Select and slide paint curve point
|
|
101
85
|
|
|
102
|
-
:type execution_context: int | str | None
|
|
103
|
-
:type undo: bool | None
|
|
104
86
|
:param align: Align Handles, Aligns opposite point handle during transform
|
|
105
|
-
:type align: bool | None
|
|
106
87
|
:param select: Select, Attempt to select a point handle before transform
|
|
107
|
-
:type select: bool | None
|
|
108
88
|
"""
|
bpy/ops/palette/__init__.pyi
CHANGED
|
@@ -4,22 +4,18 @@ import typing_extensions
|
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
|
|
6
6
|
def color_add(
|
|
7
|
-
execution_context: int | str | None = None,
|
|
7
|
+
execution_context: int | str | None = None,
|
|
8
|
+
undo: bool | None = None,
|
|
9
|
+
/,
|
|
8
10
|
) -> None:
|
|
9
|
-
"""Add new color to active palette
|
|
10
|
-
|
|
11
|
-
:type execution_context: int | str | None
|
|
12
|
-
:type undo: bool | None
|
|
13
|
-
"""
|
|
11
|
+
"""Add new color to active palette"""
|
|
14
12
|
|
|
15
13
|
def color_delete(
|
|
16
|
-
execution_context: int | str | None = None,
|
|
14
|
+
execution_context: int | str | None = None,
|
|
15
|
+
undo: bool | None = None,
|
|
16
|
+
/,
|
|
17
17
|
) -> None:
|
|
18
|
-
"""Remove active color from palette
|
|
19
|
-
|
|
20
|
-
:type execution_context: int | str | None
|
|
21
|
-
:type undo: bool | None
|
|
22
|
-
"""
|
|
18
|
+
"""Remove active color from palette"""
|
|
23
19
|
|
|
24
20
|
def color_move(
|
|
25
21
|
execution_context: int | str | None = None,
|
|
@@ -30,10 +26,7 @@ def color_move(
|
|
|
30
26
|
) -> None:
|
|
31
27
|
"""Move the active Color up/down in the list
|
|
32
28
|
|
|
33
|
-
:type execution_context: int | str | None
|
|
34
|
-
:type undo: bool | None
|
|
35
29
|
:param type: Type
|
|
36
|
-
:type type: typing.Literal['UP','DOWN'] | None
|
|
37
30
|
"""
|
|
38
31
|
|
|
39
32
|
def extract_from_image(
|
|
@@ -45,10 +38,7 @@ def extract_from_image(
|
|
|
45
38
|
) -> None:
|
|
46
39
|
"""Extract all colors used in Image and create a Palette
|
|
47
40
|
|
|
48
|
-
:type execution_context: int | str | None
|
|
49
|
-
:type undo: bool | None
|
|
50
41
|
:param threshold: Threshold
|
|
51
|
-
:type threshold: int | None
|
|
52
42
|
"""
|
|
53
43
|
|
|
54
44
|
def join(
|
|
@@ -60,18 +50,15 @@ def join(
|
|
|
60
50
|
) -> None:
|
|
61
51
|
"""Join Palette Swatches
|
|
62
52
|
|
|
63
|
-
:type execution_context: int | str | None
|
|
64
|
-
:type undo: bool | None
|
|
65
53
|
:param palette: Palette, Name of the Palette
|
|
66
|
-
:type palette: str
|
|
67
54
|
"""
|
|
68
55
|
|
|
69
|
-
def new(
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
"""
|
|
56
|
+
def new(
|
|
57
|
+
execution_context: int | str | None = None,
|
|
58
|
+
undo: bool | None = None,
|
|
59
|
+
/,
|
|
60
|
+
) -> None:
|
|
61
|
+
"""Add new palette"""
|
|
75
62
|
|
|
76
63
|
def sort(
|
|
77
64
|
execution_context: int | str | None = None,
|
|
@@ -82,8 +69,5 @@ def sort(
|
|
|
82
69
|
) -> None:
|
|
83
70
|
"""Sort Palette Colors
|
|
84
71
|
|
|
85
|
-
:type execution_context: int | str | None
|
|
86
|
-
:type undo: bool | None
|
|
87
72
|
:param type: Type
|
|
88
|
-
:type type: typing.Literal['HSV','SVH','VHS','LUMINANCE'] | None
|
|
89
73
|
"""
|
bpy/ops/particle/__init__.pyi
CHANGED
|
@@ -15,12 +15,8 @@ def brush_edit(
|
|
|
15
15
|
) -> None:
|
|
16
16
|
"""Apply a stroke of brush to the particles
|
|
17
17
|
|
|
18
|
-
:type execution_context: int | str | None
|
|
19
|
-
:type undo: bool | None
|
|
20
18
|
:param stroke: Stroke
|
|
21
|
-
:
|
|
22
|
-
:param pen_flip: Pen Flip, Whether a tablet's eraser mode is being used
|
|
23
|
-
:type pen_flip: bool | None
|
|
19
|
+
:param pen_flip: Pen Flip, Whether a tablets eraser mode is being used
|
|
24
20
|
"""
|
|
25
21
|
|
|
26
22
|
def connect_hair(
|
|
@@ -32,10 +28,7 @@ def connect_hair(
|
|
|
32
28
|
) -> None:
|
|
33
29
|
"""Connect hair to the emitter mesh
|
|
34
30
|
|
|
35
|
-
:type execution_context: int | str | None
|
|
36
|
-
:type undo: bool | None
|
|
37
31
|
:param all: All Hair, Connect all hair systems to the emitter mesh
|
|
38
|
-
:type all: bool | None
|
|
39
32
|
"""
|
|
40
33
|
|
|
41
34
|
def copy_particle_systems(
|
|
@@ -49,20 +42,15 @@ def copy_particle_systems(
|
|
|
49
42
|
) -> None:
|
|
50
43
|
"""Copy particle systems from the active object to selected objects
|
|
51
44
|
|
|
52
|
-
:type execution_context: int | str | None
|
|
53
|
-
:type undo: bool | None
|
|
54
45
|
:param space: Space, Space transform for copying from one object to another
|
|
55
46
|
|
|
56
47
|
OBJECT
|
|
57
|
-
Object -- Copy inside each
|
|
48
|
+
Object -- Copy inside each objects local space.
|
|
58
49
|
|
|
59
50
|
WORLD
|
|
60
51
|
World -- Copy in world space.
|
|
61
|
-
:type space: typing.Literal['OBJECT','WORLD'] | None
|
|
62
52
|
:param remove_target_particles: Remove Target Particles, Remove particle systems on the target objects
|
|
63
|
-
:type remove_target_particles: bool | None
|
|
64
53
|
:param use_active: Use Active, Use the active particle system from the context
|
|
65
|
-
:type use_active: bool | None
|
|
66
54
|
"""
|
|
67
55
|
|
|
68
56
|
def delete(
|
|
@@ -74,10 +62,7 @@ def delete(
|
|
|
74
62
|
) -> None:
|
|
75
63
|
"""Delete selected particles or keys
|
|
76
64
|
|
|
77
|
-
:type execution_context: int | str | None
|
|
78
|
-
:type undo: bool | None
|
|
79
65
|
:param type: Type, Delete a full particle or only keys
|
|
80
|
-
:type type: typing.Literal['PARTICLE','KEY'] | None
|
|
81
66
|
"""
|
|
82
67
|
|
|
83
68
|
def disconnect_hair(
|
|
@@ -89,10 +74,7 @@ def disconnect_hair(
|
|
|
89
74
|
) -> None:
|
|
90
75
|
"""Disconnect hair from the emitter mesh
|
|
91
76
|
|
|
92
|
-
:type execution_context: int | str | None
|
|
93
|
-
:type undo: bool | None
|
|
94
77
|
:param all: All Hair, Disconnect all hair systems from the emitter mesh
|
|
95
|
-
:type all: bool | None
|
|
96
78
|
"""
|
|
97
79
|
|
|
98
80
|
def duplicate_particle_system(
|
|
@@ -104,65 +86,50 @@ def duplicate_particle_system(
|
|
|
104
86
|
) -> None:
|
|
105
87
|
"""Duplicate particle system within the active object
|
|
106
88
|
|
|
107
|
-
:type execution_context: int | str | None
|
|
108
|
-
:type undo: bool | None
|
|
109
89
|
:param use_duplicate_settings: Duplicate Settings, Duplicate settings as well, so the new particle system uses its own settings
|
|
110
|
-
:type use_duplicate_settings: bool | None
|
|
111
90
|
"""
|
|
112
91
|
|
|
113
92
|
def dupliob_copy(
|
|
114
|
-
execution_context: int | str | None = None,
|
|
93
|
+
execution_context: int | str | None = None,
|
|
94
|
+
undo: bool | None = None,
|
|
95
|
+
/,
|
|
115
96
|
) -> None:
|
|
116
|
-
"""Duplicate the current instance object
|
|
117
|
-
|
|
118
|
-
:type execution_context: int | str | None
|
|
119
|
-
:type undo: bool | None
|
|
120
|
-
"""
|
|
97
|
+
"""Duplicate the current instance object"""
|
|
121
98
|
|
|
122
99
|
def dupliob_move_down(
|
|
123
|
-
execution_context: int | str | None = None,
|
|
100
|
+
execution_context: int | str | None = None,
|
|
101
|
+
undo: bool | None = None,
|
|
102
|
+
/,
|
|
124
103
|
) -> None:
|
|
125
|
-
"""Move instance object down in the list
|
|
126
|
-
|
|
127
|
-
:type execution_context: int | str | None
|
|
128
|
-
:type undo: bool | None
|
|
129
|
-
"""
|
|
104
|
+
"""Move instance object down in the list"""
|
|
130
105
|
|
|
131
106
|
def dupliob_move_up(
|
|
132
|
-
execution_context: int | str | None = None,
|
|
107
|
+
execution_context: int | str | None = None,
|
|
108
|
+
undo: bool | None = None,
|
|
109
|
+
/,
|
|
133
110
|
) -> None:
|
|
134
|
-
"""Move instance object up in the list
|
|
135
|
-
|
|
136
|
-
:type execution_context: int | str | None
|
|
137
|
-
:type undo: bool | None
|
|
138
|
-
"""
|
|
111
|
+
"""Move instance object up in the list"""
|
|
139
112
|
|
|
140
113
|
def dupliob_refresh(
|
|
141
|
-
execution_context: int | str | None = None,
|
|
114
|
+
execution_context: int | str | None = None,
|
|
115
|
+
undo: bool | None = None,
|
|
116
|
+
/,
|
|
142
117
|
) -> None:
|
|
143
|
-
"""Refresh list of instance objects and their weights
|
|
144
|
-
|
|
145
|
-
:type execution_context: int | str | None
|
|
146
|
-
:type undo: bool | None
|
|
147
|
-
"""
|
|
118
|
+
"""Refresh list of instance objects and their weights"""
|
|
148
119
|
|
|
149
120
|
def dupliob_remove(
|
|
150
|
-
execution_context: int | str | None = None,
|
|
121
|
+
execution_context: int | str | None = None,
|
|
122
|
+
undo: bool | None = None,
|
|
123
|
+
/,
|
|
151
124
|
) -> None:
|
|
152
|
-
"""Remove the selected instance object
|
|
153
|
-
|
|
154
|
-
:type execution_context: int | str | None
|
|
155
|
-
:type undo: bool | None
|
|
156
|
-
"""
|
|
125
|
+
"""Remove the selected instance object"""
|
|
157
126
|
|
|
158
127
|
def edited_clear(
|
|
159
|
-
execution_context: int | str | None = None,
|
|
128
|
+
execution_context: int | str | None = None,
|
|
129
|
+
undo: bool | None = None,
|
|
130
|
+
/,
|
|
160
131
|
) -> None:
|
|
161
|
-
"""Undo all edition performed on the particle system
|
|
162
|
-
|
|
163
|
-
:type execution_context: int | str | None
|
|
164
|
-
:type undo: bool | None
|
|
165
|
-
"""
|
|
132
|
+
"""Undo all edition performed on the particle system"""
|
|
166
133
|
|
|
167
134
|
def hair_dynamics_preset_add(
|
|
168
135
|
execution_context: int | str | None = None,
|
|
@@ -175,14 +142,9 @@ def hair_dynamics_preset_add(
|
|
|
175
142
|
) -> None:
|
|
176
143
|
"""Add or remove a Hair Dynamics Preset
|
|
177
144
|
|
|
178
|
-
:type execution_context: int | str | None
|
|
179
|
-
:type undo: bool | None
|
|
180
145
|
:param name: Name, Name of the preset, used to make the path name
|
|
181
|
-
:type name: str
|
|
182
146
|
:param remove_name: remove_name
|
|
183
|
-
:type remove_name: bool | None
|
|
184
147
|
:param remove_active: remove_active
|
|
185
|
-
:type remove_active: bool | None
|
|
186
148
|
"""
|
|
187
149
|
|
|
188
150
|
def hide(
|
|
@@ -194,54 +156,43 @@ def hide(
|
|
|
194
156
|
) -> None:
|
|
195
157
|
"""Hide selected particles
|
|
196
158
|
|
|
197
|
-
:type execution_context: int | str | None
|
|
198
|
-
:type undo: bool | None
|
|
199
159
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
200
|
-
:type unselected: bool | None
|
|
201
160
|
"""
|
|
202
161
|
|
|
203
162
|
def mirror(
|
|
204
|
-
execution_context: int | str | None = None,
|
|
163
|
+
execution_context: int | str | None = None,
|
|
164
|
+
undo: bool | None = None,
|
|
165
|
+
/,
|
|
205
166
|
) -> None:
|
|
206
|
-
"""Duplicate and mirror the selected particles along the local X axis
|
|
167
|
+
"""Duplicate and mirror the selected particles along the local X axis"""
|
|
207
168
|
|
|
208
|
-
|
|
209
|
-
:
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
"""Add new particle settings
|
|
214
|
-
|
|
215
|
-
:type execution_context: int | str | None
|
|
216
|
-
:type undo: bool | None
|
|
217
|
-
"""
|
|
169
|
+
def new(
|
|
170
|
+
execution_context: int | str | None = None,
|
|
171
|
+
undo: bool | None = None,
|
|
172
|
+
/,
|
|
173
|
+
) -> None:
|
|
174
|
+
"""Add new particle settings"""
|
|
218
175
|
|
|
219
176
|
def new_target(
|
|
220
|
-
execution_context: int | str | None = None,
|
|
177
|
+
execution_context: int | str | None = None,
|
|
178
|
+
undo: bool | None = None,
|
|
179
|
+
/,
|
|
221
180
|
) -> None:
|
|
222
|
-
"""Add a new particle target
|
|
223
|
-
|
|
224
|
-
:type execution_context: int | str | None
|
|
225
|
-
:type undo: bool | None
|
|
226
|
-
"""
|
|
181
|
+
"""Add a new particle target"""
|
|
227
182
|
|
|
228
183
|
def particle_edit_toggle(
|
|
229
|
-
execution_context: int | str | None = None,
|
|
184
|
+
execution_context: int | str | None = None,
|
|
185
|
+
undo: bool | None = None,
|
|
186
|
+
/,
|
|
230
187
|
) -> None:
|
|
231
|
-
"""Toggle particle edit mode
|
|
232
|
-
|
|
233
|
-
:type execution_context: int | str | None
|
|
234
|
-
:type undo: bool | None
|
|
235
|
-
"""
|
|
188
|
+
"""Toggle particle edit mode"""
|
|
236
189
|
|
|
237
190
|
def particle_system_remove_all(
|
|
238
|
-
execution_context: int | str | None = None,
|
|
191
|
+
execution_context: int | str | None = None,
|
|
192
|
+
undo: bool | None = None,
|
|
193
|
+
/,
|
|
239
194
|
) -> None:
|
|
240
|
-
"""Remove all particle system within the active object
|
|
241
|
-
|
|
242
|
-
:type execution_context: int | str | None
|
|
243
|
-
:type undo: bool | None
|
|
244
|
-
"""
|
|
195
|
+
"""Remove all particle system within the active object"""
|
|
245
196
|
|
|
246
197
|
def rekey(
|
|
247
198
|
execution_context: int | str | None = None,
|
|
@@ -252,10 +203,7 @@ def rekey(
|
|
|
252
203
|
) -> None:
|
|
253
204
|
"""Change the number of keys of selected particles (root and tip keys included)
|
|
254
205
|
|
|
255
|
-
:type execution_context: int | str | None
|
|
256
|
-
:type undo: bool | None
|
|
257
206
|
:param keys_number: Number of Keys
|
|
258
|
-
:type keys_number: int | None
|
|
259
207
|
"""
|
|
260
208
|
|
|
261
209
|
def remove_doubles(
|
|
@@ -267,10 +215,7 @@ def remove_doubles(
|
|
|
267
215
|
) -> None:
|
|
268
216
|
"""Remove selected particles close enough of others
|
|
269
217
|
|
|
270
|
-
:type execution_context: int | str | None
|
|
271
|
-
:type undo: bool | None
|
|
272
218
|
:param threshold: Merge Distance, Threshold distance within which particles are removed
|
|
273
|
-
:type threshold: float | None
|
|
274
219
|
"""
|
|
275
220
|
|
|
276
221
|
def reveal(
|
|
@@ -282,10 +227,7 @@ def reveal(
|
|
|
282
227
|
) -> None:
|
|
283
228
|
"""Show hidden particles
|
|
284
229
|
|
|
285
|
-
:type execution_context: int | str | None
|
|
286
|
-
:type undo: bool | None
|
|
287
230
|
:param select: Select
|
|
288
|
-
:type select: bool | None
|
|
289
231
|
"""
|
|
290
232
|
|
|
291
233
|
def select_all(
|
|
@@ -295,10 +237,8 @@ def select_all(
|
|
|
295
237
|
*,
|
|
296
238
|
action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
|
|
297
239
|
) -> None:
|
|
298
|
-
"""(De)select all particles
|
|
240
|
+
"""(De)select all particles keys
|
|
299
241
|
|
|
300
|
-
:type execution_context: int | str | None
|
|
301
|
-
:type undo: bool | None
|
|
302
242
|
:param action: Action, Selection action to execute
|
|
303
243
|
|
|
304
244
|
TOGGLE
|
|
@@ -312,26 +252,21 @@ def select_all(
|
|
|
312
252
|
|
|
313
253
|
INVERT
|
|
314
254
|
Invert -- Invert selection of all elements.
|
|
315
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
316
255
|
"""
|
|
317
256
|
|
|
318
257
|
def select_less(
|
|
319
|
-
execution_context: int | str | None = None,
|
|
258
|
+
execution_context: int | str | None = None,
|
|
259
|
+
undo: bool | None = None,
|
|
260
|
+
/,
|
|
320
261
|
) -> None:
|
|
321
|
-
"""Deselect boundary selected keys of each particle
|
|
322
|
-
|
|
323
|
-
:type execution_context: int | str | None
|
|
324
|
-
:type undo: bool | None
|
|
325
|
-
"""
|
|
262
|
+
"""Deselect boundary selected keys of each particle"""
|
|
326
263
|
|
|
327
264
|
def select_linked(
|
|
328
|
-
execution_context: int | str | None = None,
|
|
265
|
+
execution_context: int | str | None = None,
|
|
266
|
+
undo: bool | None = None,
|
|
267
|
+
/,
|
|
329
268
|
) -> None:
|
|
330
|
-
"""Select all keys linked to already selected ones
|
|
331
|
-
|
|
332
|
-
:type execution_context: int | str | None
|
|
333
|
-
:type undo: bool | None
|
|
334
|
-
"""
|
|
269
|
+
"""Select all keys linked to already selected ones"""
|
|
335
270
|
|
|
336
271
|
def select_linked_pick(
|
|
337
272
|
execution_context: int | str | None = None,
|
|
@@ -343,22 +278,16 @@ def select_linked_pick(
|
|
|
343
278
|
) -> None:
|
|
344
279
|
"""Select nearest particle from mouse pointer
|
|
345
280
|
|
|
346
|
-
:type execution_context: int | str | None
|
|
347
|
-
:type undo: bool | None
|
|
348
281
|
:param deselect: Deselect, Deselect linked keys rather than selecting them
|
|
349
|
-
:type deselect: bool | None
|
|
350
282
|
:param location: Location
|
|
351
|
-
:type location: collections.abc.Iterable[int] | None
|
|
352
283
|
"""
|
|
353
284
|
|
|
354
285
|
def select_more(
|
|
355
|
-
execution_context: int | str | None = None,
|
|
286
|
+
execution_context: int | str | None = None,
|
|
287
|
+
undo: bool | None = None,
|
|
288
|
+
/,
|
|
356
289
|
) -> None:
|
|
357
|
-
"""Select keys linked to boundary selected keys of each particle
|
|
358
|
-
|
|
359
|
-
:type execution_context: int | str | None
|
|
360
|
-
:type undo: bool | None
|
|
361
|
-
"""
|
|
290
|
+
"""Select keys linked to boundary selected keys of each particle"""
|
|
362
291
|
|
|
363
292
|
def select_random(
|
|
364
293
|
execution_context: int | str | None = None,
|
|
@@ -372,12 +301,8 @@ def select_random(
|
|
|
372
301
|
) -> None:
|
|
373
302
|
"""Select a randomly distributed set of hair or points
|
|
374
303
|
|
|
375
|
-
:type execution_context: int | str | None
|
|
376
|
-
:type undo: bool | None
|
|
377
304
|
:param ratio: Ratio, Portion of items to select randomly
|
|
378
|
-
:type ratio: float | None
|
|
379
305
|
:param seed: Random Seed, Seed for the random number generator
|
|
380
|
-
:type seed: int | None
|
|
381
306
|
:param action: Action, Selection action to execute
|
|
382
307
|
|
|
383
308
|
SELECT
|
|
@@ -385,9 +310,7 @@ def select_random(
|
|
|
385
310
|
|
|
386
311
|
DESELECT
|
|
387
312
|
Deselect -- Deselect all elements.
|
|
388
|
-
:type action: typing.Literal['SELECT','DESELECT'] | None
|
|
389
313
|
:param type: Type, Select either hair or points
|
|
390
|
-
:type type: typing.Literal['HAIR','POINTS'] | None
|
|
391
314
|
"""
|
|
392
315
|
|
|
393
316
|
def select_roots(
|
|
@@ -399,8 +322,6 @@ def select_roots(
|
|
|
399
322
|
) -> None:
|
|
400
323
|
"""Select roots of all visible particles
|
|
401
324
|
|
|
402
|
-
:type execution_context: int | str | None
|
|
403
|
-
:type undo: bool | None
|
|
404
325
|
:param action: Action, Selection action to execute
|
|
405
326
|
|
|
406
327
|
TOGGLE
|
|
@@ -414,7 +335,6 @@ def select_roots(
|
|
|
414
335
|
|
|
415
336
|
INVERT
|
|
416
337
|
Invert -- Invert selection of all elements.
|
|
417
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
418
338
|
"""
|
|
419
339
|
|
|
420
340
|
def select_tips(
|
|
@@ -426,8 +346,6 @@ def select_tips(
|
|
|
426
346
|
) -> None:
|
|
427
347
|
"""Select tips of all visible particles
|
|
428
348
|
|
|
429
|
-
:type execution_context: int | str | None
|
|
430
|
-
:type undo: bool | None
|
|
431
349
|
:param action: Action, Selection action to execute
|
|
432
350
|
|
|
433
351
|
TOGGLE
|
|
@@ -441,62 +359,49 @@ def select_tips(
|
|
|
441
359
|
|
|
442
360
|
INVERT
|
|
443
361
|
Invert -- Invert selection of all elements.
|
|
444
|
-
:type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
|
|
445
362
|
"""
|
|
446
363
|
|
|
447
364
|
def shape_cut(
|
|
448
|
-
execution_context: int | str | None = None,
|
|
365
|
+
execution_context: int | str | None = None,
|
|
366
|
+
undo: bool | None = None,
|
|
367
|
+
/,
|
|
449
368
|
) -> None:
|
|
450
|
-
"""Cut hair to conform to the set shape object
|
|
451
|
-
|
|
452
|
-
:type execution_context: int | str | None
|
|
453
|
-
:type undo: bool | None
|
|
454
|
-
"""
|
|
369
|
+
"""Cut hair to conform to the set shape object"""
|
|
455
370
|
|
|
456
371
|
def subdivide(
|
|
457
|
-
execution_context: int | str | None = None,
|
|
372
|
+
execution_context: int | str | None = None,
|
|
373
|
+
undo: bool | None = None,
|
|
374
|
+
/,
|
|
458
375
|
) -> None:
|
|
459
|
-
"""Subdivide selected particles segments (adds keys)
|
|
460
|
-
|
|
461
|
-
:type execution_context: int | str | None
|
|
462
|
-
:type undo: bool | None
|
|
463
|
-
"""
|
|
376
|
+
"""Subdivide selected particles segments (adds keys)"""
|
|
464
377
|
|
|
465
378
|
def target_move_down(
|
|
466
|
-
execution_context: int | str | None = None,
|
|
379
|
+
execution_context: int | str | None = None,
|
|
380
|
+
undo: bool | None = None,
|
|
381
|
+
/,
|
|
467
382
|
) -> None:
|
|
468
|
-
"""Move particle target down in the list
|
|
469
|
-
|
|
470
|
-
:type execution_context: int | str | None
|
|
471
|
-
:type undo: bool | None
|
|
472
|
-
"""
|
|
383
|
+
"""Move particle target down in the list"""
|
|
473
384
|
|
|
474
385
|
def target_move_up(
|
|
475
|
-
execution_context: int | str | None = None,
|
|
386
|
+
execution_context: int | str | None = None,
|
|
387
|
+
undo: bool | None = None,
|
|
388
|
+
/,
|
|
476
389
|
) -> None:
|
|
477
|
-
"""Move particle target up in the list
|
|
478
|
-
|
|
479
|
-
:type execution_context: int | str | None
|
|
480
|
-
:type undo: bool | None
|
|
481
|
-
"""
|
|
390
|
+
"""Move particle target up in the list"""
|
|
482
391
|
|
|
483
392
|
def target_remove(
|
|
484
|
-
execution_context: int | str | None = None,
|
|
393
|
+
execution_context: int | str | None = None,
|
|
394
|
+
undo: bool | None = None,
|
|
395
|
+
/,
|
|
485
396
|
) -> None:
|
|
486
|
-
"""Remove the selected particle target
|
|
487
|
-
|
|
488
|
-
:type execution_context: int | str | None
|
|
489
|
-
:type undo: bool | None
|
|
490
|
-
"""
|
|
397
|
+
"""Remove the selected particle target"""
|
|
491
398
|
|
|
492
399
|
def unify_length(
|
|
493
|
-
execution_context: int | str | None = None,
|
|
400
|
+
execution_context: int | str | None = None,
|
|
401
|
+
undo: bool | None = None,
|
|
402
|
+
/,
|
|
494
403
|
) -> None:
|
|
495
|
-
"""Make selected hair the same length
|
|
496
|
-
|
|
497
|
-
:type execution_context: int | str | None
|
|
498
|
-
:type undo: bool | None
|
|
499
|
-
"""
|
|
404
|
+
"""Make selected hair the same length"""
|
|
500
405
|
|
|
501
406
|
def weight_set(
|
|
502
407
|
execution_context: int | str | None = None,
|
|
@@ -507,8 +412,5 @@ def weight_set(
|
|
|
507
412
|
) -> None:
|
|
508
413
|
"""Set the weight of selected keys
|
|
509
414
|
|
|
510
|
-
:
|
|
511
|
-
:type undo: bool | None
|
|
512
|
-
:param factor: Factor, Interpolation factor between current brush weight, and keys' weights
|
|
513
|
-
:type factor: float | None
|
|
415
|
+
:param factor: Factor, Interpolation factor between current brush weight, and keys weights
|
|
514
416
|
"""
|