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
bl_operators/wm/__init__.pyi
CHANGED
|
@@ -2,9 +2,10 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
+
import _bpy_types
|
|
5
6
|
import bpy.types
|
|
6
7
|
|
|
7
|
-
class BatchRenameAction(
|
|
8
|
+
class BatchRenameAction(_bpy_types.PropertyGroup):
|
|
8
9
|
bl_rna: typing.Any
|
|
9
10
|
id_data: typing.Any
|
|
10
11
|
|
|
@@ -12,17 +13,15 @@ class BatchRenameAction(bpy.types.PropertyGroup):
|
|
|
12
13
|
"""
|
|
13
14
|
|
|
14
15
|
:return: The RNA type or default when not found.
|
|
15
|
-
:rtype: bpy.types.Struct
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
18
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
19
19
|
"""
|
|
20
20
|
|
|
21
21
|
:return: The class or default when not found.
|
|
22
|
-
:rtype: typing.Any
|
|
23
22
|
"""
|
|
24
23
|
|
|
25
|
-
class WM_MT_region_toggle_pie(
|
|
24
|
+
class WM_MT_region_toggle_pie(_bpy_types.Menu):
|
|
26
25
|
bl_label: typing.Any
|
|
27
26
|
bl_rna: typing.Any
|
|
28
27
|
id_data: typing.Any
|
|
@@ -31,14 +30,12 @@ class WM_MT_region_toggle_pie(bpy.types.Menu):
|
|
|
31
30
|
"""
|
|
32
31
|
|
|
33
32
|
:return: The RNA type or default when not found.
|
|
34
|
-
:rtype: bpy.types.Struct
|
|
35
33
|
"""
|
|
36
34
|
|
|
37
35
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
38
36
|
"""
|
|
39
37
|
|
|
40
38
|
:return: The class or default when not found.
|
|
41
|
-
:rtype: typing.Any
|
|
42
39
|
"""
|
|
43
40
|
|
|
44
41
|
def draw(self, context) -> None:
|
|
@@ -54,7 +51,7 @@ class WM_MT_region_toggle_pie(bpy.types.Menu):
|
|
|
54
51
|
:param context:
|
|
55
52
|
"""
|
|
56
53
|
|
|
57
|
-
class WM_MT_splash(
|
|
54
|
+
class WM_MT_splash(_bpy_types.Menu):
|
|
58
55
|
bl_label: typing.Any
|
|
59
56
|
bl_rna: typing.Any
|
|
60
57
|
id_data: typing.Any
|
|
@@ -63,14 +60,12 @@ class WM_MT_splash(bpy.types.Menu):
|
|
|
63
60
|
"""
|
|
64
61
|
|
|
65
62
|
:return: The RNA type or default when not found.
|
|
66
|
-
:rtype: bpy.types.Struct
|
|
67
63
|
"""
|
|
68
64
|
|
|
69
65
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
70
66
|
"""
|
|
71
67
|
|
|
72
68
|
:return: The class or default when not found.
|
|
73
|
-
:rtype: typing.Any
|
|
74
69
|
"""
|
|
75
70
|
|
|
76
71
|
def draw(self, context) -> None:
|
|
@@ -79,7 +74,7 @@ class WM_MT_splash(bpy.types.Menu):
|
|
|
79
74
|
:param context:
|
|
80
75
|
"""
|
|
81
76
|
|
|
82
|
-
class WM_MT_splash_about(
|
|
77
|
+
class WM_MT_splash_about(_bpy_types.Menu):
|
|
83
78
|
bl_label: typing.Any
|
|
84
79
|
bl_rna: typing.Any
|
|
85
80
|
id_data: typing.Any
|
|
@@ -88,14 +83,12 @@ class WM_MT_splash_about(bpy.types.Menu):
|
|
|
88
83
|
"""
|
|
89
84
|
|
|
90
85
|
:return: The RNA type or default when not found.
|
|
91
|
-
:rtype: bpy.types.Struct
|
|
92
86
|
"""
|
|
93
87
|
|
|
94
88
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
95
89
|
"""
|
|
96
90
|
|
|
97
91
|
:return: The class or default when not found.
|
|
98
|
-
:rtype: typing.Any
|
|
99
92
|
"""
|
|
100
93
|
|
|
101
94
|
def draw(self, context) -> None:
|
|
@@ -104,7 +97,7 @@ class WM_MT_splash_about(bpy.types.Menu):
|
|
|
104
97
|
:param context:
|
|
105
98
|
"""
|
|
106
99
|
|
|
107
|
-
class WM_MT_splash_quick_setup(
|
|
100
|
+
class WM_MT_splash_quick_setup(_bpy_types.Menu):
|
|
108
101
|
bl_label: typing.Any
|
|
109
102
|
bl_rna: typing.Any
|
|
110
103
|
id_data: typing.Any
|
|
@@ -113,14 +106,12 @@ class WM_MT_splash_quick_setup(bpy.types.Menu):
|
|
|
113
106
|
"""
|
|
114
107
|
|
|
115
108
|
:return: The RNA type or default when not found.
|
|
116
|
-
:rtype: bpy.types.Struct
|
|
117
109
|
"""
|
|
118
110
|
|
|
119
111
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
120
112
|
"""
|
|
121
113
|
|
|
122
114
|
:return: The class or default when not found.
|
|
123
|
-
:rtype: typing.Any
|
|
124
115
|
"""
|
|
125
116
|
|
|
126
117
|
def draw(self, context) -> None:
|
|
@@ -129,7 +120,7 @@ class WM_MT_splash_quick_setup(bpy.types.Menu):
|
|
|
129
120
|
:param context:
|
|
130
121
|
"""
|
|
131
122
|
|
|
132
|
-
class WM_OT_batch_rename(
|
|
123
|
+
class WM_OT_batch_rename(_bpy_types.Operator):
|
|
133
124
|
"""Rename multiple items at once"""
|
|
134
125
|
|
|
135
126
|
bl_idname: typing.Any
|
|
@@ -142,14 +133,12 @@ class WM_OT_batch_rename(bpy.types.Operator):
|
|
|
142
133
|
"""
|
|
143
134
|
|
|
144
135
|
:return: The RNA type or default when not found.
|
|
145
|
-
:rtype: bpy.types.Struct
|
|
146
136
|
"""
|
|
147
137
|
|
|
148
138
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
149
139
|
"""
|
|
150
140
|
|
|
151
141
|
:return: The class or default when not found.
|
|
152
|
-
:rtype: typing.Any
|
|
153
142
|
"""
|
|
154
143
|
|
|
155
144
|
def check(self, context) -> None:
|
|
@@ -177,7 +166,7 @@ class WM_OT_batch_rename(bpy.types.Operator):
|
|
|
177
166
|
:param event:
|
|
178
167
|
"""
|
|
179
168
|
|
|
180
|
-
class WM_OT_context_collection_boolean_set(
|
|
169
|
+
class WM_OT_context_collection_boolean_set(_bpy_types.Operator):
|
|
181
170
|
"""Set boolean values for a collection of items"""
|
|
182
171
|
|
|
183
172
|
bl_idname: typing.Any
|
|
@@ -190,14 +179,12 @@ class WM_OT_context_collection_boolean_set(bpy.types.Operator):
|
|
|
190
179
|
"""
|
|
191
180
|
|
|
192
181
|
:return: The RNA type or default when not found.
|
|
193
|
-
:rtype: bpy.types.Struct
|
|
194
182
|
"""
|
|
195
183
|
|
|
196
184
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
197
185
|
"""
|
|
198
186
|
|
|
199
187
|
:return: The class or default when not found.
|
|
200
|
-
:rtype: typing.Any
|
|
201
188
|
"""
|
|
202
189
|
|
|
203
190
|
def execute(self, context) -> None:
|
|
@@ -206,7 +193,7 @@ class WM_OT_context_collection_boolean_set(bpy.types.Operator):
|
|
|
206
193
|
:param context:
|
|
207
194
|
"""
|
|
208
195
|
|
|
209
|
-
class WM_OT_context_cycle_array(
|
|
196
|
+
class WM_OT_context_cycle_array(_bpy_types.Operator):
|
|
210
197
|
"""Set a context array value (useful for cycling the active mesh edit mode)"""
|
|
211
198
|
|
|
212
199
|
bl_idname: typing.Any
|
|
@@ -219,14 +206,12 @@ class WM_OT_context_cycle_array(bpy.types.Operator):
|
|
|
219
206
|
"""
|
|
220
207
|
|
|
221
208
|
:return: The RNA type or default when not found.
|
|
222
|
-
:rtype: bpy.types.Struct
|
|
223
209
|
"""
|
|
224
210
|
|
|
225
211
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
226
212
|
"""
|
|
227
213
|
|
|
228
214
|
:return: The class or default when not found.
|
|
229
|
-
:rtype: typing.Any
|
|
230
215
|
"""
|
|
231
216
|
|
|
232
217
|
@classmethod
|
|
@@ -243,7 +228,7 @@ class WM_OT_context_cycle_array(bpy.types.Operator):
|
|
|
243
228
|
:param context:
|
|
244
229
|
"""
|
|
245
230
|
|
|
246
|
-
class WM_OT_context_cycle_enum(
|
|
231
|
+
class WM_OT_context_cycle_enum(_bpy_types.Operator):
|
|
247
232
|
"""Toggle a context value"""
|
|
248
233
|
|
|
249
234
|
bl_idname: typing.Any
|
|
@@ -256,14 +241,12 @@ class WM_OT_context_cycle_enum(bpy.types.Operator):
|
|
|
256
241
|
"""
|
|
257
242
|
|
|
258
243
|
:return: The RNA type or default when not found.
|
|
259
|
-
:rtype: bpy.types.Struct
|
|
260
244
|
"""
|
|
261
245
|
|
|
262
246
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
263
247
|
"""
|
|
264
248
|
|
|
265
249
|
:return: The class or default when not found.
|
|
266
|
-
:rtype: typing.Any
|
|
267
250
|
"""
|
|
268
251
|
|
|
269
252
|
@classmethod
|
|
@@ -280,7 +263,7 @@ class WM_OT_context_cycle_enum(bpy.types.Operator):
|
|
|
280
263
|
:param context:
|
|
281
264
|
"""
|
|
282
265
|
|
|
283
|
-
class WM_OT_context_cycle_int(
|
|
266
|
+
class WM_OT_context_cycle_int(_bpy_types.Operator):
|
|
284
267
|
"""Set a context value (useful for cycling active material, shape keys, groups, etc.)"""
|
|
285
268
|
|
|
286
269
|
bl_idname: typing.Any
|
|
@@ -293,14 +276,12 @@ class WM_OT_context_cycle_int(bpy.types.Operator):
|
|
|
293
276
|
"""
|
|
294
277
|
|
|
295
278
|
:return: The RNA type or default when not found.
|
|
296
|
-
:rtype: bpy.types.Struct
|
|
297
279
|
"""
|
|
298
280
|
|
|
299
281
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
300
282
|
"""
|
|
301
283
|
|
|
302
284
|
:return: The class or default when not found.
|
|
303
|
-
:rtype: typing.Any
|
|
304
285
|
"""
|
|
305
286
|
|
|
306
287
|
@classmethod
|
|
@@ -317,7 +298,7 @@ class WM_OT_context_cycle_int(bpy.types.Operator):
|
|
|
317
298
|
:param context:
|
|
318
299
|
"""
|
|
319
300
|
|
|
320
|
-
class WM_OT_context_menu_enum(
|
|
301
|
+
class WM_OT_context_menu_enum(_bpy_types.Operator):
|
|
321
302
|
bl_idname: typing.Any
|
|
322
303
|
bl_label: typing.Any
|
|
323
304
|
bl_options: typing.Any
|
|
@@ -328,14 +309,12 @@ class WM_OT_context_menu_enum(bpy.types.Operator):
|
|
|
328
309
|
"""
|
|
329
310
|
|
|
330
311
|
:return: The RNA type or default when not found.
|
|
331
|
-
:rtype: bpy.types.Struct
|
|
332
312
|
"""
|
|
333
313
|
|
|
334
314
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
335
315
|
"""
|
|
336
316
|
|
|
337
317
|
:return: The class or default when not found.
|
|
338
|
-
:rtype: typing.Any
|
|
339
318
|
"""
|
|
340
319
|
|
|
341
320
|
@classmethod
|
|
@@ -352,7 +331,7 @@ class WM_OT_context_menu_enum(bpy.types.Operator):
|
|
|
352
331
|
:param context:
|
|
353
332
|
"""
|
|
354
333
|
|
|
355
|
-
class WM_OT_context_modal_mouse(
|
|
334
|
+
class WM_OT_context_modal_mouse(_bpy_types.Operator):
|
|
356
335
|
"""Adjust arbitrary values with mouse input"""
|
|
357
336
|
|
|
358
337
|
bl_idname: typing.Any
|
|
@@ -365,14 +344,12 @@ class WM_OT_context_modal_mouse(bpy.types.Operator):
|
|
|
365
344
|
"""
|
|
366
345
|
|
|
367
346
|
:return: The RNA type or default when not found.
|
|
368
|
-
:rtype: bpy.types.Struct
|
|
369
347
|
"""
|
|
370
348
|
|
|
371
349
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
372
350
|
"""
|
|
373
351
|
|
|
374
352
|
:return: The class or default when not found.
|
|
375
|
-
:rtype: typing.Any
|
|
376
353
|
"""
|
|
377
354
|
|
|
378
355
|
def invoke(self, context, event) -> None:
|
|
@@ -389,7 +366,7 @@ class WM_OT_context_modal_mouse(bpy.types.Operator):
|
|
|
389
366
|
:param event:
|
|
390
367
|
"""
|
|
391
368
|
|
|
392
|
-
class WM_OT_context_pie_enum(
|
|
369
|
+
class WM_OT_context_pie_enum(_bpy_types.Operator):
|
|
393
370
|
bl_idname: typing.Any
|
|
394
371
|
bl_label: typing.Any
|
|
395
372
|
bl_options: typing.Any
|
|
@@ -400,14 +377,12 @@ class WM_OT_context_pie_enum(bpy.types.Operator):
|
|
|
400
377
|
"""
|
|
401
378
|
|
|
402
379
|
:return: The RNA type or default when not found.
|
|
403
|
-
:rtype: bpy.types.Struct
|
|
404
380
|
"""
|
|
405
381
|
|
|
406
382
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
407
383
|
"""
|
|
408
384
|
|
|
409
385
|
:return: The class or default when not found.
|
|
410
|
-
:rtype: typing.Any
|
|
411
386
|
"""
|
|
412
387
|
|
|
413
388
|
@classmethod
|
|
@@ -425,7 +400,7 @@ class WM_OT_context_pie_enum(bpy.types.Operator):
|
|
|
425
400
|
:param event:
|
|
426
401
|
"""
|
|
427
402
|
|
|
428
|
-
class WM_OT_context_scale_float(
|
|
403
|
+
class WM_OT_context_scale_float(_bpy_types.Operator):
|
|
429
404
|
"""Scale a float context value"""
|
|
430
405
|
|
|
431
406
|
bl_idname: typing.Any
|
|
@@ -438,14 +413,12 @@ class WM_OT_context_scale_float(bpy.types.Operator):
|
|
|
438
413
|
"""
|
|
439
414
|
|
|
440
415
|
:return: The RNA type or default when not found.
|
|
441
|
-
:rtype: bpy.types.Struct
|
|
442
416
|
"""
|
|
443
417
|
|
|
444
418
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
445
419
|
"""
|
|
446
420
|
|
|
447
421
|
:return: The class or default when not found.
|
|
448
|
-
:rtype: typing.Any
|
|
449
422
|
"""
|
|
450
423
|
|
|
451
424
|
@classmethod
|
|
@@ -462,7 +435,7 @@ class WM_OT_context_scale_float(bpy.types.Operator):
|
|
|
462
435
|
:param context:
|
|
463
436
|
"""
|
|
464
437
|
|
|
465
|
-
class WM_OT_context_scale_int(
|
|
438
|
+
class WM_OT_context_scale_int(_bpy_types.Operator):
|
|
466
439
|
"""Scale an int context value"""
|
|
467
440
|
|
|
468
441
|
bl_idname: typing.Any
|
|
@@ -475,14 +448,12 @@ class WM_OT_context_scale_int(bpy.types.Operator):
|
|
|
475
448
|
"""
|
|
476
449
|
|
|
477
450
|
:return: The RNA type or default when not found.
|
|
478
|
-
:rtype: bpy.types.Struct
|
|
479
451
|
"""
|
|
480
452
|
|
|
481
453
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
482
454
|
"""
|
|
483
455
|
|
|
484
456
|
:return: The class or default when not found.
|
|
485
|
-
:rtype: typing.Any
|
|
486
457
|
"""
|
|
487
458
|
|
|
488
459
|
@classmethod
|
|
@@ -499,7 +470,7 @@ class WM_OT_context_scale_int(bpy.types.Operator):
|
|
|
499
470
|
:param context:
|
|
500
471
|
"""
|
|
501
472
|
|
|
502
|
-
class WM_OT_context_set_boolean(
|
|
473
|
+
class WM_OT_context_set_boolean(_bpy_types.Operator):
|
|
503
474
|
"""Set a context value"""
|
|
504
475
|
|
|
505
476
|
bl_idname: typing.Any
|
|
@@ -512,14 +483,12 @@ class WM_OT_context_set_boolean(bpy.types.Operator):
|
|
|
512
483
|
"""
|
|
513
484
|
|
|
514
485
|
:return: The RNA type or default when not found.
|
|
515
|
-
:rtype: bpy.types.Struct
|
|
516
486
|
"""
|
|
517
487
|
|
|
518
488
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
519
489
|
"""
|
|
520
490
|
|
|
521
491
|
:return: The class or default when not found.
|
|
522
|
-
:rtype: typing.Any
|
|
523
492
|
"""
|
|
524
493
|
|
|
525
494
|
@classmethod
|
|
@@ -530,7 +499,7 @@ class WM_OT_context_set_boolean(bpy.types.Operator):
|
|
|
530
499
|
:param props:
|
|
531
500
|
"""
|
|
532
501
|
|
|
533
|
-
class WM_OT_context_set_enum(
|
|
502
|
+
class WM_OT_context_set_enum(_bpy_types.Operator):
|
|
534
503
|
"""Set a context value"""
|
|
535
504
|
|
|
536
505
|
bl_idname: typing.Any
|
|
@@ -543,14 +512,12 @@ class WM_OT_context_set_enum(bpy.types.Operator):
|
|
|
543
512
|
"""
|
|
544
513
|
|
|
545
514
|
:return: The RNA type or default when not found.
|
|
546
|
-
:rtype: bpy.types.Struct
|
|
547
515
|
"""
|
|
548
516
|
|
|
549
517
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
550
518
|
"""
|
|
551
519
|
|
|
552
520
|
:return: The class or default when not found.
|
|
553
|
-
:rtype: typing.Any
|
|
554
521
|
"""
|
|
555
522
|
|
|
556
523
|
@classmethod
|
|
@@ -561,7 +528,7 @@ class WM_OT_context_set_enum(bpy.types.Operator):
|
|
|
561
528
|
:param props:
|
|
562
529
|
"""
|
|
563
530
|
|
|
564
|
-
class WM_OT_context_set_float(
|
|
531
|
+
class WM_OT_context_set_float(_bpy_types.Operator):
|
|
565
532
|
"""Set a context value"""
|
|
566
533
|
|
|
567
534
|
bl_idname: typing.Any
|
|
@@ -574,14 +541,12 @@ class WM_OT_context_set_float(bpy.types.Operator):
|
|
|
574
541
|
"""
|
|
575
542
|
|
|
576
543
|
:return: The RNA type or default when not found.
|
|
577
|
-
:rtype: bpy.types.Struct
|
|
578
544
|
"""
|
|
579
545
|
|
|
580
546
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
581
547
|
"""
|
|
582
548
|
|
|
583
549
|
:return: The class or default when not found.
|
|
584
|
-
:rtype: typing.Any
|
|
585
550
|
"""
|
|
586
551
|
|
|
587
552
|
@classmethod
|
|
@@ -592,7 +557,7 @@ class WM_OT_context_set_float(bpy.types.Operator):
|
|
|
592
557
|
:param props:
|
|
593
558
|
"""
|
|
594
559
|
|
|
595
|
-
class WM_OT_context_set_id(
|
|
560
|
+
class WM_OT_context_set_id(_bpy_types.Operator):
|
|
596
561
|
"""Set a context value to an ID data-block"""
|
|
597
562
|
|
|
598
563
|
bl_idname: typing.Any
|
|
@@ -605,14 +570,12 @@ class WM_OT_context_set_id(bpy.types.Operator):
|
|
|
605
570
|
"""
|
|
606
571
|
|
|
607
572
|
:return: The RNA type or default when not found.
|
|
608
|
-
:rtype: bpy.types.Struct
|
|
609
573
|
"""
|
|
610
574
|
|
|
611
575
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
612
576
|
"""
|
|
613
577
|
|
|
614
578
|
:return: The class or default when not found.
|
|
615
|
-
:rtype: typing.Any
|
|
616
579
|
"""
|
|
617
580
|
|
|
618
581
|
def execute(self, context) -> None:
|
|
@@ -621,7 +584,7 @@ class WM_OT_context_set_id(bpy.types.Operator):
|
|
|
621
584
|
:param context:
|
|
622
585
|
"""
|
|
623
586
|
|
|
624
|
-
class WM_OT_context_set_int(
|
|
587
|
+
class WM_OT_context_set_int(_bpy_types.Operator):
|
|
625
588
|
"""Set a context value"""
|
|
626
589
|
|
|
627
590
|
bl_idname: typing.Any
|
|
@@ -634,14 +597,12 @@ class WM_OT_context_set_int(bpy.types.Operator):
|
|
|
634
597
|
"""
|
|
635
598
|
|
|
636
599
|
:return: The RNA type or default when not found.
|
|
637
|
-
:rtype: bpy.types.Struct
|
|
638
600
|
"""
|
|
639
601
|
|
|
640
602
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
641
603
|
"""
|
|
642
604
|
|
|
643
605
|
:return: The class or default when not found.
|
|
644
|
-
:rtype: typing.Any
|
|
645
606
|
"""
|
|
646
607
|
|
|
647
608
|
@classmethod
|
|
@@ -652,7 +613,7 @@ class WM_OT_context_set_int(bpy.types.Operator):
|
|
|
652
613
|
:param props:
|
|
653
614
|
"""
|
|
654
615
|
|
|
655
|
-
class WM_OT_context_set_string(
|
|
616
|
+
class WM_OT_context_set_string(_bpy_types.Operator):
|
|
656
617
|
"""Set a context value"""
|
|
657
618
|
|
|
658
619
|
bl_idname: typing.Any
|
|
@@ -665,14 +626,12 @@ class WM_OT_context_set_string(bpy.types.Operator):
|
|
|
665
626
|
"""
|
|
666
627
|
|
|
667
628
|
:return: The RNA type or default when not found.
|
|
668
|
-
:rtype: bpy.types.Struct
|
|
669
629
|
"""
|
|
670
630
|
|
|
671
631
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
672
632
|
"""
|
|
673
633
|
|
|
674
634
|
:return: The class or default when not found.
|
|
675
|
-
:rtype: typing.Any
|
|
676
635
|
"""
|
|
677
636
|
|
|
678
637
|
@classmethod
|
|
@@ -683,7 +642,7 @@ class WM_OT_context_set_string(bpy.types.Operator):
|
|
|
683
642
|
:param props:
|
|
684
643
|
"""
|
|
685
644
|
|
|
686
|
-
class WM_OT_context_set_value(
|
|
645
|
+
class WM_OT_context_set_value(_bpy_types.Operator):
|
|
687
646
|
"""Set a context value"""
|
|
688
647
|
|
|
689
648
|
bl_idname: typing.Any
|
|
@@ -696,14 +655,12 @@ class WM_OT_context_set_value(bpy.types.Operator):
|
|
|
696
655
|
"""
|
|
697
656
|
|
|
698
657
|
:return: The RNA type or default when not found.
|
|
699
|
-
:rtype: bpy.types.Struct
|
|
700
658
|
"""
|
|
701
659
|
|
|
702
660
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
703
661
|
"""
|
|
704
662
|
|
|
705
663
|
:return: The class or default when not found.
|
|
706
|
-
:rtype: typing.Any
|
|
707
664
|
"""
|
|
708
665
|
|
|
709
666
|
@classmethod
|
|
@@ -720,7 +677,7 @@ class WM_OT_context_set_value(bpy.types.Operator):
|
|
|
720
677
|
:param context:
|
|
721
678
|
"""
|
|
722
679
|
|
|
723
|
-
class WM_OT_context_toggle(
|
|
680
|
+
class WM_OT_context_toggle(_bpy_types.Operator):
|
|
724
681
|
"""Toggle a context value"""
|
|
725
682
|
|
|
726
683
|
bl_idname: typing.Any
|
|
@@ -733,14 +690,12 @@ class WM_OT_context_toggle(bpy.types.Operator):
|
|
|
733
690
|
"""
|
|
734
691
|
|
|
735
692
|
:return: The RNA type or default when not found.
|
|
736
|
-
:rtype: bpy.types.Struct
|
|
737
693
|
"""
|
|
738
694
|
|
|
739
695
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
740
696
|
"""
|
|
741
697
|
|
|
742
698
|
:return: The class or default when not found.
|
|
743
|
-
:rtype: typing.Any
|
|
744
699
|
"""
|
|
745
700
|
|
|
746
701
|
@classmethod
|
|
@@ -757,7 +712,7 @@ class WM_OT_context_toggle(bpy.types.Operator):
|
|
|
757
712
|
:param context:
|
|
758
713
|
"""
|
|
759
714
|
|
|
760
|
-
class WM_OT_context_toggle_enum(
|
|
715
|
+
class WM_OT_context_toggle_enum(_bpy_types.Operator):
|
|
761
716
|
"""Toggle a context value"""
|
|
762
717
|
|
|
763
718
|
bl_idname: typing.Any
|
|
@@ -770,14 +725,12 @@ class WM_OT_context_toggle_enum(bpy.types.Operator):
|
|
|
770
725
|
"""
|
|
771
726
|
|
|
772
727
|
:return: The RNA type or default when not found.
|
|
773
|
-
:rtype: bpy.types.Struct
|
|
774
728
|
"""
|
|
775
729
|
|
|
776
730
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
777
731
|
"""
|
|
778
732
|
|
|
779
733
|
:return: The class or default when not found.
|
|
780
|
-
:rtype: typing.Any
|
|
781
734
|
"""
|
|
782
735
|
|
|
783
736
|
@classmethod
|
|
@@ -794,7 +747,7 @@ class WM_OT_context_toggle_enum(bpy.types.Operator):
|
|
|
794
747
|
:param context:
|
|
795
748
|
"""
|
|
796
749
|
|
|
797
|
-
class WM_OT_doc_view(
|
|
750
|
+
class WM_OT_doc_view(_bpy_types.Operator):
|
|
798
751
|
"""Open online reference docs in a web browser"""
|
|
799
752
|
|
|
800
753
|
bl_idname: typing.Any
|
|
@@ -806,14 +759,12 @@ class WM_OT_doc_view(bpy.types.Operator):
|
|
|
806
759
|
"""
|
|
807
760
|
|
|
808
761
|
:return: The RNA type or default when not found.
|
|
809
|
-
:rtype: bpy.types.Struct
|
|
810
762
|
"""
|
|
811
763
|
|
|
812
764
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
813
765
|
"""
|
|
814
766
|
|
|
815
767
|
:return: The class or default when not found.
|
|
816
|
-
:rtype: typing.Any
|
|
817
768
|
"""
|
|
818
769
|
|
|
819
770
|
def execute(self, _context) -> None:
|
|
@@ -822,7 +773,7 @@ class WM_OT_doc_view(bpy.types.Operator):
|
|
|
822
773
|
:param _context:
|
|
823
774
|
"""
|
|
824
775
|
|
|
825
|
-
class WM_OT_doc_view_manual(
|
|
776
|
+
class WM_OT_doc_view_manual(_bpy_types.Operator):
|
|
826
777
|
"""Load online manual"""
|
|
827
778
|
|
|
828
779
|
bl_idname: typing.Any
|
|
@@ -834,14 +785,12 @@ class WM_OT_doc_view_manual(bpy.types.Operator):
|
|
|
834
785
|
"""
|
|
835
786
|
|
|
836
787
|
:return: The RNA type or default when not found.
|
|
837
|
-
:rtype: bpy.types.Struct
|
|
838
788
|
"""
|
|
839
789
|
|
|
840
790
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
841
791
|
"""
|
|
842
792
|
|
|
843
793
|
:return: The class or default when not found.
|
|
844
|
-
:rtype: typing.Any
|
|
845
794
|
"""
|
|
846
795
|
|
|
847
796
|
def execute(self, _context) -> None:
|
|
@@ -850,7 +799,7 @@ class WM_OT_doc_view_manual(bpy.types.Operator):
|
|
|
850
799
|
:param _context:
|
|
851
800
|
"""
|
|
852
801
|
|
|
853
|
-
class WM_OT_drop_blend_file(
|
|
802
|
+
class WM_OT_drop_blend_file(_bpy_types.Operator):
|
|
854
803
|
bl_idname: typing.Any
|
|
855
804
|
bl_label: typing.Any
|
|
856
805
|
bl_options: typing.Any
|
|
@@ -861,14 +810,12 @@ class WM_OT_drop_blend_file(bpy.types.Operator):
|
|
|
861
810
|
"""
|
|
862
811
|
|
|
863
812
|
:return: The RNA type or default when not found.
|
|
864
|
-
:rtype: bpy.types.Struct
|
|
865
813
|
"""
|
|
866
814
|
|
|
867
815
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
868
816
|
"""
|
|
869
817
|
|
|
870
818
|
:return: The class or default when not found.
|
|
871
|
-
:rtype: typing.Any
|
|
872
819
|
"""
|
|
873
820
|
|
|
874
821
|
def draw_menu(self, menu, _context) -> None:
|
|
@@ -885,7 +832,7 @@ class WM_OT_drop_blend_file(bpy.types.Operator):
|
|
|
885
832
|
:param _event:
|
|
886
833
|
"""
|
|
887
834
|
|
|
888
|
-
class WM_OT_operator_cheat_sheet(
|
|
835
|
+
class WM_OT_operator_cheat_sheet(_bpy_types.Operator):
|
|
889
836
|
"""List all the operators in a text-block, useful for scripting"""
|
|
890
837
|
|
|
891
838
|
bl_idname: typing.Any
|
|
@@ -897,14 +844,12 @@ class WM_OT_operator_cheat_sheet(bpy.types.Operator):
|
|
|
897
844
|
"""
|
|
898
845
|
|
|
899
846
|
:return: The RNA type or default when not found.
|
|
900
|
-
:rtype: bpy.types.Struct
|
|
901
847
|
"""
|
|
902
848
|
|
|
903
849
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
904
850
|
"""
|
|
905
851
|
|
|
906
852
|
:return: The class or default when not found.
|
|
907
|
-
:rtype: typing.Any
|
|
908
853
|
"""
|
|
909
854
|
|
|
910
855
|
def execute(self, _context) -> None:
|
|
@@ -913,7 +858,7 @@ class WM_OT_operator_cheat_sheet(bpy.types.Operator):
|
|
|
913
858
|
:param _context:
|
|
914
859
|
"""
|
|
915
860
|
|
|
916
|
-
class WM_OT_operator_pie_enum(
|
|
861
|
+
class WM_OT_operator_pie_enum(_bpy_types.Operator):
|
|
917
862
|
bl_idname: typing.Any
|
|
918
863
|
bl_label: typing.Any
|
|
919
864
|
bl_options: typing.Any
|
|
@@ -924,14 +869,12 @@ class WM_OT_operator_pie_enum(bpy.types.Operator):
|
|
|
924
869
|
"""
|
|
925
870
|
|
|
926
871
|
:return: The RNA type or default when not found.
|
|
927
|
-
:rtype: bpy.types.Struct
|
|
928
872
|
"""
|
|
929
873
|
|
|
930
874
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
931
875
|
"""
|
|
932
876
|
|
|
933
877
|
:return: The class or default when not found.
|
|
934
|
-
:rtype: typing.Any
|
|
935
878
|
"""
|
|
936
879
|
|
|
937
880
|
@classmethod
|
|
@@ -949,7 +892,7 @@ class WM_OT_operator_pie_enum(bpy.types.Operator):
|
|
|
949
892
|
:param event:
|
|
950
893
|
"""
|
|
951
894
|
|
|
952
|
-
class WM_OT_owner_disable(
|
|
895
|
+
class WM_OT_owner_disable(_bpy_types.Operator):
|
|
953
896
|
"""Disable add-on for workspace"""
|
|
954
897
|
|
|
955
898
|
bl_idname: typing.Any
|
|
@@ -961,14 +904,12 @@ class WM_OT_owner_disable(bpy.types.Operator):
|
|
|
961
904
|
"""
|
|
962
905
|
|
|
963
906
|
:return: The RNA type or default when not found.
|
|
964
|
-
:rtype: bpy.types.Struct
|
|
965
907
|
"""
|
|
966
908
|
|
|
967
909
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
968
910
|
"""
|
|
969
911
|
|
|
970
912
|
:return: The class or default when not found.
|
|
971
|
-
:rtype: typing.Any
|
|
972
913
|
"""
|
|
973
914
|
|
|
974
915
|
def execute(self, context) -> None:
|
|
@@ -977,7 +918,7 @@ class WM_OT_owner_disable(bpy.types.Operator):
|
|
|
977
918
|
:param context:
|
|
978
919
|
"""
|
|
979
920
|
|
|
980
|
-
class WM_OT_owner_enable(
|
|
921
|
+
class WM_OT_owner_enable(_bpy_types.Operator):
|
|
981
922
|
"""Enable add-on for workspace"""
|
|
982
923
|
|
|
983
924
|
bl_idname: typing.Any
|
|
@@ -989,14 +930,12 @@ class WM_OT_owner_enable(bpy.types.Operator):
|
|
|
989
930
|
"""
|
|
990
931
|
|
|
991
932
|
:return: The RNA type or default when not found.
|
|
992
|
-
:rtype: bpy.types.Struct
|
|
993
933
|
"""
|
|
994
934
|
|
|
995
935
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
996
936
|
"""
|
|
997
937
|
|
|
998
938
|
:return: The class or default when not found.
|
|
999
|
-
:rtype: typing.Any
|
|
1000
939
|
"""
|
|
1001
940
|
|
|
1002
941
|
def execute(self, context) -> None:
|
|
@@ -1005,7 +944,7 @@ class WM_OT_owner_enable(bpy.types.Operator):
|
|
|
1005
944
|
:param context:
|
|
1006
945
|
"""
|
|
1007
946
|
|
|
1008
|
-
class WM_OT_path_open(
|
|
947
|
+
class WM_OT_path_open(_bpy_types.Operator):
|
|
1009
948
|
"""Open a path in a file browser"""
|
|
1010
949
|
|
|
1011
950
|
bl_idname: typing.Any
|
|
@@ -1018,14 +957,12 @@ class WM_OT_path_open(bpy.types.Operator):
|
|
|
1018
957
|
"""
|
|
1019
958
|
|
|
1020
959
|
:return: The RNA type or default when not found.
|
|
1021
|
-
:rtype: bpy.types.Struct
|
|
1022
960
|
"""
|
|
1023
961
|
|
|
1024
962
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1025
963
|
"""
|
|
1026
964
|
|
|
1027
965
|
:return: The class or default when not found.
|
|
1028
|
-
:rtype: typing.Any
|
|
1029
966
|
"""
|
|
1030
967
|
|
|
1031
968
|
def execute(self, _context) -> None:
|
|
@@ -1034,7 +971,7 @@ class WM_OT_path_open(bpy.types.Operator):
|
|
|
1034
971
|
:param _context:
|
|
1035
972
|
"""
|
|
1036
973
|
|
|
1037
|
-
class WM_OT_properties_add(
|
|
974
|
+
class WM_OT_properties_add(_bpy_types.Operator):
|
|
1038
975
|
"""Add your own property to the data-block"""
|
|
1039
976
|
|
|
1040
977
|
bl_idname: typing.Any
|
|
@@ -1047,14 +984,12 @@ class WM_OT_properties_add(bpy.types.Operator):
|
|
|
1047
984
|
"""
|
|
1048
985
|
|
|
1049
986
|
:return: The RNA type or default when not found.
|
|
1050
|
-
:rtype: bpy.types.Struct
|
|
1051
987
|
"""
|
|
1052
988
|
|
|
1053
989
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1054
990
|
"""
|
|
1055
991
|
|
|
1056
992
|
:return: The class or default when not found.
|
|
1057
|
-
:rtype: typing.Any
|
|
1058
993
|
"""
|
|
1059
994
|
|
|
1060
995
|
def execute(self, context) -> None:
|
|
@@ -1063,7 +998,7 @@ class WM_OT_properties_add(bpy.types.Operator):
|
|
|
1063
998
|
:param context:
|
|
1064
999
|
"""
|
|
1065
1000
|
|
|
1066
|
-
class WM_OT_properties_context_change(
|
|
1001
|
+
class WM_OT_properties_context_change(_bpy_types.Operator):
|
|
1067
1002
|
"""Jump to a different tab inside the properties editor"""
|
|
1068
1003
|
|
|
1069
1004
|
bl_idname: typing.Any
|
|
@@ -1076,14 +1011,12 @@ class WM_OT_properties_context_change(bpy.types.Operator):
|
|
|
1076
1011
|
"""
|
|
1077
1012
|
|
|
1078
1013
|
:return: The RNA type or default when not found.
|
|
1079
|
-
:rtype: bpy.types.Struct
|
|
1080
1014
|
"""
|
|
1081
1015
|
|
|
1082
1016
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1083
1017
|
"""
|
|
1084
1018
|
|
|
1085
1019
|
:return: The class or default when not found.
|
|
1086
|
-
:rtype: typing.Any
|
|
1087
1020
|
"""
|
|
1088
1021
|
|
|
1089
1022
|
def execute(self, context) -> None:
|
|
@@ -1092,8 +1025,8 @@ class WM_OT_properties_context_change(bpy.types.Operator):
|
|
|
1092
1025
|
:param context:
|
|
1093
1026
|
"""
|
|
1094
1027
|
|
|
1095
|
-
class WM_OT_properties_edit(
|
|
1096
|
-
"""Change a custom
|
|
1028
|
+
class WM_OT_properties_edit(_bpy_types.Operator):
|
|
1029
|
+
"""Change a custom propertys type, or adjust how it is displayed in the interface"""
|
|
1097
1030
|
|
|
1098
1031
|
bl_idname: typing.Any
|
|
1099
1032
|
bl_label: typing.Any
|
|
@@ -1105,14 +1038,12 @@ class WM_OT_properties_edit(bpy.types.Operator):
|
|
|
1105
1038
|
"""
|
|
1106
1039
|
|
|
1107
1040
|
:return: The RNA type or default when not found.
|
|
1108
|
-
:rtype: bpy.types.Struct
|
|
1109
1041
|
"""
|
|
1110
1042
|
|
|
1111
1043
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1112
1044
|
"""
|
|
1113
1045
|
|
|
1114
1046
|
:return: The class or default when not found.
|
|
1115
|
-
:rtype: typing.Any
|
|
1116
1047
|
"""
|
|
1117
1048
|
|
|
1118
1049
|
def check(self, context) -> None:
|
|
@@ -1176,7 +1107,7 @@ class WM_OT_properties_edit(bpy.types.Operator):
|
|
|
1176
1107
|
:param context:
|
|
1177
1108
|
"""
|
|
1178
1109
|
|
|
1179
|
-
class WM_OT_properties_edit_value(
|
|
1110
|
+
class WM_OT_properties_edit_value(_bpy_types.Operator):
|
|
1180
1111
|
"""Edit the value of a custom property"""
|
|
1181
1112
|
|
|
1182
1113
|
bl_idname: typing.Any
|
|
@@ -1189,14 +1120,12 @@ class WM_OT_properties_edit_value(bpy.types.Operator):
|
|
|
1189
1120
|
"""
|
|
1190
1121
|
|
|
1191
1122
|
:return: The RNA type or default when not found.
|
|
1192
|
-
:rtype: bpy.types.Struct
|
|
1193
1123
|
"""
|
|
1194
1124
|
|
|
1195
1125
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1196
1126
|
"""
|
|
1197
1127
|
|
|
1198
1128
|
:return: The class or default when not found.
|
|
1199
|
-
:rtype: typing.Any
|
|
1200
1129
|
"""
|
|
1201
1130
|
|
|
1202
1131
|
def draw(self, context) -> None:
|
|
@@ -1218,7 +1147,7 @@ class WM_OT_properties_edit_value(bpy.types.Operator):
|
|
|
1218
1147
|
:param _event:
|
|
1219
1148
|
"""
|
|
1220
1149
|
|
|
1221
|
-
class WM_OT_properties_remove(
|
|
1150
|
+
class WM_OT_properties_remove(_bpy_types.Operator):
|
|
1222
1151
|
"""Internal use (edit a property data_path)"""
|
|
1223
1152
|
|
|
1224
1153
|
bl_idname: typing.Any
|
|
@@ -1231,14 +1160,12 @@ class WM_OT_properties_remove(bpy.types.Operator):
|
|
|
1231
1160
|
"""
|
|
1232
1161
|
|
|
1233
1162
|
:return: The RNA type or default when not found.
|
|
1234
|
-
:rtype: bpy.types.Struct
|
|
1235
1163
|
"""
|
|
1236
1164
|
|
|
1237
1165
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1238
1166
|
"""
|
|
1239
1167
|
|
|
1240
1168
|
:return: The class or default when not found.
|
|
1241
|
-
:rtype: typing.Any
|
|
1242
1169
|
"""
|
|
1243
1170
|
|
|
1244
1171
|
def execute(self, context) -> None:
|
|
@@ -1247,7 +1174,7 @@ class WM_OT_properties_remove(bpy.types.Operator):
|
|
|
1247
1174
|
:param context:
|
|
1248
1175
|
"""
|
|
1249
1176
|
|
|
1250
|
-
class WM_OT_sysinfo(
|
|
1177
|
+
class WM_OT_sysinfo(_bpy_types.Operator):
|
|
1251
1178
|
"""Generate system information, saved into a text file"""
|
|
1252
1179
|
|
|
1253
1180
|
bl_idname: typing.Any
|
|
@@ -1259,14 +1186,12 @@ class WM_OT_sysinfo(bpy.types.Operator):
|
|
|
1259
1186
|
"""
|
|
1260
1187
|
|
|
1261
1188
|
:return: The RNA type or default when not found.
|
|
1262
|
-
:rtype: bpy.types.Struct
|
|
1263
1189
|
"""
|
|
1264
1190
|
|
|
1265
1191
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1266
1192
|
"""
|
|
1267
1193
|
|
|
1268
1194
|
:return: The class or default when not found.
|
|
1269
|
-
:rtype: typing.Any
|
|
1270
1195
|
"""
|
|
1271
1196
|
|
|
1272
1197
|
def execute(self, _context) -> None:
|
|
@@ -1282,7 +1207,7 @@ class WM_OT_sysinfo(bpy.types.Operator):
|
|
|
1282
1207
|
:param _event:
|
|
1283
1208
|
"""
|
|
1284
1209
|
|
|
1285
|
-
class WM_OT_tool_set_by_brush_type(
|
|
1210
|
+
class WM_OT_tool_set_by_brush_type(_bpy_types.Operator):
|
|
1286
1211
|
"""Look up the most appropriate tool for the given brush type and activate that"""
|
|
1287
1212
|
|
|
1288
1213
|
bl_idname: typing.Any
|
|
@@ -1294,14 +1219,12 @@ class WM_OT_tool_set_by_brush_type(bpy.types.Operator):
|
|
|
1294
1219
|
"""
|
|
1295
1220
|
|
|
1296
1221
|
:return: The RNA type or default when not found.
|
|
1297
|
-
:rtype: bpy.types.Struct
|
|
1298
1222
|
"""
|
|
1299
1223
|
|
|
1300
1224
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1301
1225
|
"""
|
|
1302
1226
|
|
|
1303
1227
|
:return: The class or default when not found.
|
|
1304
|
-
:rtype: typing.Any
|
|
1305
1228
|
"""
|
|
1306
1229
|
|
|
1307
1230
|
def execute(self, context) -> None:
|
|
@@ -1310,7 +1233,7 @@ class WM_OT_tool_set_by_brush_type(bpy.types.Operator):
|
|
|
1310
1233
|
:param context:
|
|
1311
1234
|
"""
|
|
1312
1235
|
|
|
1313
|
-
class WM_OT_tool_set_by_id(
|
|
1236
|
+
class WM_OT_tool_set_by_id(_bpy_types.Operator):
|
|
1314
1237
|
"""Set the tool by name (for key-maps)"""
|
|
1315
1238
|
|
|
1316
1239
|
bl_idname: typing.Any
|
|
@@ -1322,14 +1245,12 @@ class WM_OT_tool_set_by_id(bpy.types.Operator):
|
|
|
1322
1245
|
"""
|
|
1323
1246
|
|
|
1324
1247
|
:return: The RNA type or default when not found.
|
|
1325
|
-
:rtype: bpy.types.Struct
|
|
1326
1248
|
"""
|
|
1327
1249
|
|
|
1328
1250
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1329
1251
|
"""
|
|
1330
1252
|
|
|
1331
1253
|
:return: The class or default when not found.
|
|
1332
|
-
:rtype: typing.Any
|
|
1333
1254
|
"""
|
|
1334
1255
|
|
|
1335
1256
|
def execute(self, context) -> None:
|
|
@@ -1346,7 +1267,7 @@ class WM_OT_tool_set_by_id(bpy.types.Operator):
|
|
|
1346
1267
|
:param context:
|
|
1347
1268
|
"""
|
|
1348
1269
|
|
|
1349
|
-
class WM_OT_tool_set_by_index(
|
|
1270
|
+
class WM_OT_tool_set_by_index(_bpy_types.Operator):
|
|
1350
1271
|
"""Set the tool by index (for key-maps)"""
|
|
1351
1272
|
|
|
1352
1273
|
bl_idname: typing.Any
|
|
@@ -1358,14 +1279,12 @@ class WM_OT_tool_set_by_index(bpy.types.Operator):
|
|
|
1358
1279
|
"""
|
|
1359
1280
|
|
|
1360
1281
|
:return: The RNA type or default when not found.
|
|
1361
|
-
:rtype: bpy.types.Struct
|
|
1362
1282
|
"""
|
|
1363
1283
|
|
|
1364
1284
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1365
1285
|
"""
|
|
1366
1286
|
|
|
1367
1287
|
:return: The class or default when not found.
|
|
1368
|
-
:rtype: typing.Any
|
|
1369
1288
|
"""
|
|
1370
1289
|
|
|
1371
1290
|
def execute(self, context) -> None:
|
|
@@ -1374,7 +1293,7 @@ class WM_OT_tool_set_by_index(bpy.types.Operator):
|
|
|
1374
1293
|
:param context:
|
|
1375
1294
|
"""
|
|
1376
1295
|
|
|
1377
|
-
class WM_OT_toolbar(
|
|
1296
|
+
class WM_OT_toolbar(_bpy_types.Operator):
|
|
1378
1297
|
bl_idname: typing.Any
|
|
1379
1298
|
bl_label: typing.Any
|
|
1380
1299
|
bl_rna: typing.Any
|
|
@@ -1384,14 +1303,12 @@ class WM_OT_toolbar(bpy.types.Operator):
|
|
|
1384
1303
|
"""
|
|
1385
1304
|
|
|
1386
1305
|
:return: The RNA type or default when not found.
|
|
1387
|
-
:rtype: bpy.types.Struct
|
|
1388
1306
|
"""
|
|
1389
1307
|
|
|
1390
1308
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1391
1309
|
"""
|
|
1392
1310
|
|
|
1393
1311
|
:return: The class or default when not found.
|
|
1394
|
-
:rtype: typing.Any
|
|
1395
1312
|
"""
|
|
1396
1313
|
|
|
1397
1314
|
def execute(self, context) -> None:
|
|
@@ -1419,7 +1336,7 @@ class WM_OT_toolbar(bpy.types.Operator):
|
|
|
1419
1336
|
:param context:
|
|
1420
1337
|
"""
|
|
1421
1338
|
|
|
1422
|
-
class WM_OT_toolbar_fallback_pie(
|
|
1339
|
+
class WM_OT_toolbar_fallback_pie(_bpy_types.Operator):
|
|
1423
1340
|
bl_idname: typing.Any
|
|
1424
1341
|
bl_label: typing.Any
|
|
1425
1342
|
bl_rna: typing.Any
|
|
@@ -1429,14 +1346,12 @@ class WM_OT_toolbar_fallback_pie(bpy.types.Operator):
|
|
|
1429
1346
|
"""
|
|
1430
1347
|
|
|
1431
1348
|
:return: The RNA type or default when not found.
|
|
1432
|
-
:rtype: bpy.types.Struct
|
|
1433
1349
|
"""
|
|
1434
1350
|
|
|
1435
1351
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1436
1352
|
"""
|
|
1437
1353
|
|
|
1438
1354
|
:return: The class or default when not found.
|
|
1439
|
-
:rtype: typing.Any
|
|
1440
1355
|
"""
|
|
1441
1356
|
|
|
1442
1357
|
def invoke(self, context, event) -> None:
|
|
@@ -1453,7 +1368,7 @@ class WM_OT_toolbar_fallback_pie(bpy.types.Operator):
|
|
|
1453
1368
|
:param context:
|
|
1454
1369
|
"""
|
|
1455
1370
|
|
|
1456
|
-
class WM_OT_toolbar_prompt(
|
|
1371
|
+
class WM_OT_toolbar_prompt(_bpy_types.Operator):
|
|
1457
1372
|
"""Leader key like functionality for accessing tools"""
|
|
1458
1373
|
|
|
1459
1374
|
bl_idname: typing.Any
|
|
@@ -1465,14 +1380,12 @@ class WM_OT_toolbar_prompt(bpy.types.Operator):
|
|
|
1465
1380
|
"""
|
|
1466
1381
|
|
|
1467
1382
|
:return: The RNA type or default when not found.
|
|
1468
|
-
:rtype: bpy.types.Struct
|
|
1469
1383
|
"""
|
|
1470
1384
|
|
|
1471
1385
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1472
1386
|
"""
|
|
1473
1387
|
|
|
1474
1388
|
:return: The class or default when not found.
|
|
1475
|
-
:rtype: typing.Any
|
|
1476
1389
|
"""
|
|
1477
1390
|
|
|
1478
1391
|
def invoke(self, context, event) -> None:
|
|
@@ -1489,7 +1402,7 @@ class WM_OT_toolbar_prompt(bpy.types.Operator):
|
|
|
1489
1402
|
:param event:
|
|
1490
1403
|
"""
|
|
1491
1404
|
|
|
1492
|
-
class WM_OT_url_open(
|
|
1405
|
+
class WM_OT_url_open(_bpy_types.Operator):
|
|
1493
1406
|
"""Open a website in the web browser"""
|
|
1494
1407
|
|
|
1495
1408
|
bl_idname: typing.Any
|
|
@@ -1502,14 +1415,12 @@ class WM_OT_url_open(bpy.types.Operator):
|
|
|
1502
1415
|
"""
|
|
1503
1416
|
|
|
1504
1417
|
:return: The RNA type or default when not found.
|
|
1505
|
-
:rtype: bpy.types.Struct
|
|
1506
1418
|
"""
|
|
1507
1419
|
|
|
1508
1420
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1509
1421
|
"""
|
|
1510
1422
|
|
|
1511
1423
|
:return: The class or default when not found.
|
|
1512
|
-
:rtype: typing.Any
|
|
1513
1424
|
"""
|
|
1514
1425
|
|
|
1515
1426
|
def execute(self, _context) -> None:
|
|
@@ -1518,7 +1429,7 @@ class WM_OT_url_open(bpy.types.Operator):
|
|
|
1518
1429
|
:param _context:
|
|
1519
1430
|
"""
|
|
1520
1431
|
|
|
1521
|
-
class WM_OT_url_open_preset(
|
|
1432
|
+
class WM_OT_url_open_preset(_bpy_types.Operator):
|
|
1522
1433
|
"""Open a preset website in the web browser"""
|
|
1523
1434
|
|
|
1524
1435
|
bl_idname: typing.Any
|
|
@@ -1533,14 +1444,12 @@ class WM_OT_url_open_preset(bpy.types.Operator):
|
|
|
1533
1444
|
"""
|
|
1534
1445
|
|
|
1535
1446
|
:return: The RNA type or default when not found.
|
|
1536
|
-
:rtype: bpy.types.Struct
|
|
1537
1447
|
"""
|
|
1538
1448
|
|
|
1539
1449
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1540
1450
|
"""
|
|
1541
1451
|
|
|
1542
1452
|
:return: The class or default when not found.
|
|
1543
|
-
:rtype: typing.Any
|
|
1544
1453
|
"""
|
|
1545
1454
|
|
|
1546
1455
|
def execute(self, context) -> None:
|