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
|
@@ -2,26 +2,27 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
+
import bl_ui.node_add_menu
|
|
5
6
|
import bpy.types
|
|
6
7
|
|
|
7
|
-
class
|
|
8
|
-
|
|
8
|
+
class NODE_MT_category_utilities_bundle_base(bl_ui.node_add_menu.NodeMenu):
|
|
9
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
10
|
+
|
|
9
11
|
bl_label: typing.Any
|
|
10
12
|
bl_rna: typing.Any
|
|
11
13
|
id_data: typing.Any
|
|
14
|
+
menu_path: typing.Any
|
|
12
15
|
|
|
13
16
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
14
17
|
"""
|
|
15
18
|
|
|
16
19
|
:return: The RNA type or default when not found.
|
|
17
|
-
:rtype: bpy.types.Struct
|
|
18
20
|
"""
|
|
19
21
|
|
|
20
22
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
21
23
|
"""
|
|
22
24
|
|
|
23
25
|
:return: The class or default when not found.
|
|
24
|
-
:rtype: typing.Any
|
|
25
26
|
"""
|
|
26
27
|
|
|
27
28
|
def draw(self, context) -> None:
|
|
@@ -30,24 +31,24 @@ class NODE_MT_category_GEO_GROUP(bpy.types.Menu):
|
|
|
30
31
|
:param context:
|
|
31
32
|
"""
|
|
32
33
|
|
|
33
|
-
class
|
|
34
|
-
|
|
34
|
+
class NODE_MT_category_utilities_closure_base(bl_ui.node_add_menu.NodeMenu):
|
|
35
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
36
|
+
|
|
35
37
|
bl_label: typing.Any
|
|
36
38
|
bl_rna: typing.Any
|
|
37
39
|
id_data: typing.Any
|
|
40
|
+
menu_path: typing.Any
|
|
38
41
|
|
|
39
42
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
40
43
|
"""
|
|
41
44
|
|
|
42
45
|
:return: The RNA type or default when not found.
|
|
43
|
-
:rtype: bpy.types.Struct
|
|
44
46
|
"""
|
|
45
47
|
|
|
46
48
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
47
49
|
"""
|
|
48
50
|
|
|
49
51
|
:return: The class or default when not found.
|
|
50
|
-
:rtype: typing.Any
|
|
51
52
|
"""
|
|
52
53
|
|
|
53
54
|
def draw(self, context) -> None:
|
|
@@ -56,24 +57,24 @@ class NODE_MT_category_GEO_OUTPUT(bpy.types.Menu):
|
|
|
56
57
|
:param context:
|
|
57
58
|
"""
|
|
58
59
|
|
|
59
|
-
class
|
|
60
|
-
|
|
60
|
+
class NODE_MT_gn_all_base(bl_ui.node_add_menu.NodeMenu):
|
|
61
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
62
|
+
|
|
61
63
|
bl_label: typing.Any
|
|
62
64
|
bl_rna: typing.Any
|
|
63
65
|
id_data: typing.Any
|
|
66
|
+
menu_path: typing.Any
|
|
64
67
|
|
|
65
68
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
66
69
|
"""
|
|
67
70
|
|
|
68
71
|
:return: The RNA type or default when not found.
|
|
69
|
-
:rtype: bpy.types.Struct
|
|
70
72
|
"""
|
|
71
73
|
|
|
72
74
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
73
75
|
"""
|
|
74
76
|
|
|
75
77
|
:return: The class or default when not found.
|
|
76
|
-
:rtype: typing.Any
|
|
77
78
|
"""
|
|
78
79
|
|
|
79
80
|
def draw(self, context) -> None:
|
|
@@ -82,8 +83,9 @@ class NODE_MT_category_GEO_POINT(bpy.types.Menu):
|
|
|
82
83
|
:param context:
|
|
83
84
|
"""
|
|
84
85
|
|
|
85
|
-
class
|
|
86
|
-
|
|
86
|
+
class NODE_MT_gn_attribute_base(bl_ui.node_add_menu.NodeMenu):
|
|
87
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
88
|
+
|
|
87
89
|
bl_label: typing.Any
|
|
88
90
|
bl_rna: typing.Any
|
|
89
91
|
id_data: typing.Any
|
|
@@ -92,14 +94,12 @@ class NODE_MT_category_GEO_TEXT(bpy.types.Menu):
|
|
|
92
94
|
"""
|
|
93
95
|
|
|
94
96
|
:return: The RNA type or default when not found.
|
|
95
|
-
:rtype: bpy.types.Struct
|
|
96
97
|
"""
|
|
97
98
|
|
|
98
99
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
99
100
|
"""
|
|
100
101
|
|
|
101
102
|
:return: The class or default when not found.
|
|
102
|
-
:rtype: typing.Any
|
|
103
103
|
"""
|
|
104
104
|
|
|
105
105
|
def draw(self, _context) -> None:
|
|
@@ -108,8 +108,9 @@ class NODE_MT_category_GEO_TEXT(bpy.types.Menu):
|
|
|
108
108
|
:param _context:
|
|
109
109
|
"""
|
|
110
110
|
|
|
111
|
-
class
|
|
112
|
-
|
|
111
|
+
class NODE_MT_gn_color_base(bl_ui.node_add_menu.NodeMenu):
|
|
112
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
113
|
+
|
|
113
114
|
bl_label: typing.Any
|
|
114
115
|
bl_rna: typing.Any
|
|
115
116
|
id_data: typing.Any
|
|
@@ -118,24 +119,23 @@ class NODE_MT_category_GEO_TEXTURE(bpy.types.Menu):
|
|
|
118
119
|
"""
|
|
119
120
|
|
|
120
121
|
:return: The RNA type or default when not found.
|
|
121
|
-
:rtype: bpy.types.Struct
|
|
122
122
|
"""
|
|
123
123
|
|
|
124
124
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
125
125
|
"""
|
|
126
126
|
|
|
127
127
|
:return: The class or default when not found.
|
|
128
|
-
:rtype: typing.Any
|
|
129
128
|
"""
|
|
130
129
|
|
|
131
|
-
def draw(self,
|
|
130
|
+
def draw(self, context) -> None:
|
|
132
131
|
"""
|
|
133
132
|
|
|
134
|
-
:param
|
|
133
|
+
:param context:
|
|
135
134
|
"""
|
|
136
135
|
|
|
137
|
-
class
|
|
138
|
-
|
|
136
|
+
class NODE_MT_gn_curve_base(bl_ui.node_add_menu.NodeMenu):
|
|
137
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
138
|
+
|
|
139
139
|
bl_label: typing.Any
|
|
140
140
|
bl_rna: typing.Any
|
|
141
141
|
id_data: typing.Any
|
|
@@ -144,66 +144,64 @@ class NODE_MT_category_GEO_UTILITIES(bpy.types.Menu):
|
|
|
144
144
|
"""
|
|
145
145
|
|
|
146
146
|
:return: The RNA type or default when not found.
|
|
147
|
-
:rtype: bpy.types.Struct
|
|
148
147
|
"""
|
|
149
148
|
|
|
150
149
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
151
150
|
"""
|
|
152
151
|
|
|
153
152
|
:return: The class or default when not found.
|
|
154
|
-
:rtype: typing.Any
|
|
155
153
|
"""
|
|
156
154
|
|
|
157
|
-
def draw(self,
|
|
155
|
+
def draw(self, _context) -> None:
|
|
158
156
|
"""
|
|
159
157
|
|
|
160
|
-
:param
|
|
158
|
+
:param _context:
|
|
161
159
|
"""
|
|
162
160
|
|
|
163
|
-
class
|
|
164
|
-
|
|
161
|
+
class NODE_MT_gn_curve_operations_base(bl_ui.node_add_menu.NodeMenu):
|
|
162
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
163
|
+
|
|
165
164
|
bl_label: typing.Any
|
|
166
165
|
bl_rna: typing.Any
|
|
167
166
|
id_data: typing.Any
|
|
167
|
+
menu_path: typing.Any
|
|
168
168
|
|
|
169
169
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
170
170
|
"""
|
|
171
171
|
|
|
172
172
|
:return: The RNA type or default when not found.
|
|
173
|
-
:rtype: bpy.types.Struct
|
|
174
173
|
"""
|
|
175
174
|
|
|
176
175
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
177
176
|
"""
|
|
178
177
|
|
|
179
178
|
:return: The class or default when not found.
|
|
180
|
-
:rtype: typing.Any
|
|
181
179
|
"""
|
|
182
180
|
|
|
183
|
-
def draw(self,
|
|
181
|
+
def draw(self, _context) -> None:
|
|
184
182
|
"""
|
|
185
183
|
|
|
186
|
-
:param
|
|
184
|
+
:param _context:
|
|
187
185
|
"""
|
|
188
186
|
|
|
189
|
-
class
|
|
190
|
-
|
|
187
|
+
class NODE_MT_gn_curve_primitives_base(bl_ui.node_add_menu.NodeMenu):
|
|
188
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
189
|
+
|
|
191
190
|
bl_label: typing.Any
|
|
192
191
|
bl_rna: typing.Any
|
|
193
192
|
id_data: typing.Any
|
|
193
|
+
menu_path: typing.Any
|
|
194
194
|
|
|
195
195
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
196
196
|
"""
|
|
197
197
|
|
|
198
198
|
:return: The RNA type or default when not found.
|
|
199
|
-
:rtype: bpy.types.Struct
|
|
200
199
|
"""
|
|
201
200
|
|
|
202
201
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
203
202
|
"""
|
|
204
203
|
|
|
205
204
|
:return: The class or default when not found.
|
|
206
|
-
:rtype: typing.Any
|
|
207
205
|
"""
|
|
208
206
|
|
|
209
207
|
def draw(self, _context) -> None:
|
|
@@ -212,50 +210,50 @@ class NODE_MT_category_GEO_UTILITIES_FIELD(bpy.types.Menu):
|
|
|
212
210
|
:param _context:
|
|
213
211
|
"""
|
|
214
212
|
|
|
215
|
-
class
|
|
216
|
-
|
|
213
|
+
class NODE_MT_gn_curve_read_base(bl_ui.node_add_menu.NodeMenu):
|
|
214
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
215
|
+
|
|
217
216
|
bl_label: typing.Any
|
|
218
217
|
bl_rna: typing.Any
|
|
219
218
|
id_data: typing.Any
|
|
219
|
+
menu_path: typing.Any
|
|
220
220
|
|
|
221
221
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
222
222
|
"""
|
|
223
223
|
|
|
224
224
|
:return: The RNA type or default when not found.
|
|
225
|
-
:rtype: bpy.types.Struct
|
|
226
225
|
"""
|
|
227
226
|
|
|
228
227
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
229
228
|
"""
|
|
230
229
|
|
|
231
230
|
:return: The class or default when not found.
|
|
232
|
-
:rtype: typing.Any
|
|
233
231
|
"""
|
|
234
232
|
|
|
235
|
-
def draw(self,
|
|
233
|
+
def draw(self, _context) -> None:
|
|
236
234
|
"""
|
|
237
235
|
|
|
238
|
-
:param
|
|
236
|
+
:param _context:
|
|
239
237
|
"""
|
|
240
238
|
|
|
241
|
-
class
|
|
242
|
-
|
|
239
|
+
class NODE_MT_gn_curve_sample_base(bl_ui.node_add_menu.NodeMenu):
|
|
240
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
241
|
+
|
|
243
242
|
bl_label: typing.Any
|
|
244
243
|
bl_rna: typing.Any
|
|
245
244
|
id_data: typing.Any
|
|
245
|
+
menu_path: typing.Any
|
|
246
246
|
|
|
247
247
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
248
248
|
"""
|
|
249
249
|
|
|
250
250
|
:return: The RNA type or default when not found.
|
|
251
|
-
:rtype: bpy.types.Struct
|
|
252
251
|
"""
|
|
253
252
|
|
|
254
253
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
255
254
|
"""
|
|
256
255
|
|
|
257
256
|
:return: The class or default when not found.
|
|
258
|
-
:rtype: typing.Any
|
|
259
257
|
"""
|
|
260
258
|
|
|
261
259
|
def draw(self, _context) -> None:
|
|
@@ -264,24 +262,24 @@ class NODE_MT_category_GEO_UTILITIES_ROTATION(bpy.types.Menu):
|
|
|
264
262
|
:param _context:
|
|
265
263
|
"""
|
|
266
264
|
|
|
267
|
-
class
|
|
268
|
-
|
|
265
|
+
class NODE_MT_gn_curve_topology_base(bl_ui.node_add_menu.NodeMenu):
|
|
266
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
267
|
+
|
|
269
268
|
bl_label: typing.Any
|
|
270
269
|
bl_rna: typing.Any
|
|
271
270
|
id_data: typing.Any
|
|
271
|
+
menu_path: typing.Any
|
|
272
272
|
|
|
273
273
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
274
274
|
"""
|
|
275
275
|
|
|
276
276
|
:return: The RNA type or default when not found.
|
|
277
|
-
:rtype: bpy.types.Struct
|
|
278
277
|
"""
|
|
279
278
|
|
|
280
279
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
281
280
|
"""
|
|
282
281
|
|
|
283
282
|
:return: The class or default when not found.
|
|
284
|
-
:rtype: typing.Any
|
|
285
283
|
"""
|
|
286
284
|
|
|
287
285
|
def draw(self, _context) -> None:
|
|
@@ -290,77 +288,75 @@ class NODE_MT_category_GEO_UV(bpy.types.Menu):
|
|
|
290
288
|
:param _context:
|
|
291
289
|
"""
|
|
292
290
|
|
|
293
|
-
class
|
|
294
|
-
|
|
291
|
+
class NODE_MT_gn_curve_write_base(bl_ui.node_add_menu.NodeMenu):
|
|
292
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
293
|
+
|
|
295
294
|
bl_label: typing.Any
|
|
296
295
|
bl_rna: typing.Any
|
|
297
296
|
id_data: typing.Any
|
|
297
|
+
menu_path: typing.Any
|
|
298
298
|
|
|
299
299
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
300
300
|
"""
|
|
301
301
|
|
|
302
302
|
:return: The RNA type or default when not found.
|
|
303
|
-
:rtype: bpy.types.Struct
|
|
304
303
|
"""
|
|
305
304
|
|
|
306
305
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
307
306
|
"""
|
|
308
307
|
|
|
309
308
|
:return: The class or default when not found.
|
|
310
|
-
:rtype: typing.Any
|
|
311
309
|
"""
|
|
312
310
|
|
|
313
|
-
def draw(self,
|
|
311
|
+
def draw(self, _context) -> None:
|
|
314
312
|
"""
|
|
315
313
|
|
|
316
|
-
:param
|
|
314
|
+
:param _context:
|
|
317
315
|
"""
|
|
318
316
|
|
|
319
|
-
class
|
|
320
|
-
|
|
317
|
+
class NODE_MT_gn_geometry_base(bl_ui.node_add_menu.NodeMenu):
|
|
318
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
319
|
+
|
|
321
320
|
bl_label: typing.Any
|
|
322
321
|
bl_rna: typing.Any
|
|
323
|
-
bl_translation_context: typing.Any
|
|
324
322
|
id_data: typing.Any
|
|
325
323
|
|
|
326
324
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
327
325
|
"""
|
|
328
326
|
|
|
329
327
|
:return: The RNA type or default when not found.
|
|
330
|
-
:rtype: bpy.types.Struct
|
|
331
328
|
"""
|
|
332
329
|
|
|
333
330
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
334
331
|
"""
|
|
335
332
|
|
|
336
333
|
:return: The class or default when not found.
|
|
337
|
-
:rtype: typing.Any
|
|
338
334
|
"""
|
|
339
335
|
|
|
340
|
-
def draw(self,
|
|
336
|
+
def draw(self, _context) -> None:
|
|
341
337
|
"""
|
|
342
338
|
|
|
343
|
-
:param
|
|
339
|
+
:param _context:
|
|
344
340
|
"""
|
|
345
341
|
|
|
346
|
-
class
|
|
347
|
-
|
|
342
|
+
class NODE_MT_gn_geometry_operations_base(bl_ui.node_add_menu.NodeMenu):
|
|
343
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
344
|
+
|
|
348
345
|
bl_label: typing.Any
|
|
349
346
|
bl_rna: typing.Any
|
|
350
347
|
id_data: typing.Any
|
|
348
|
+
menu_path: typing.Any
|
|
351
349
|
|
|
352
350
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
353
351
|
"""
|
|
354
352
|
|
|
355
353
|
:return: The RNA type or default when not found.
|
|
356
|
-
:rtype: bpy.types.Struct
|
|
357
354
|
"""
|
|
358
355
|
|
|
359
356
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
360
357
|
"""
|
|
361
358
|
|
|
362
359
|
:return: The class or default when not found.
|
|
363
|
-
:rtype: typing.Any
|
|
364
360
|
"""
|
|
365
361
|
|
|
366
362
|
def draw(self, _context) -> None:
|
|
@@ -369,50 +365,50 @@ class NODE_MT_category_PRIMITIVES_MESH(bpy.types.Menu):
|
|
|
369
365
|
:param _context:
|
|
370
366
|
"""
|
|
371
367
|
|
|
372
|
-
class
|
|
373
|
-
|
|
368
|
+
class NODE_MT_gn_geometry_read_base(bl_ui.node_add_menu.NodeMenu):
|
|
369
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
370
|
+
|
|
374
371
|
bl_label: typing.Any
|
|
375
372
|
bl_rna: typing.Any
|
|
376
373
|
id_data: typing.Any
|
|
374
|
+
menu_path: typing.Any
|
|
377
375
|
|
|
378
376
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
379
377
|
"""
|
|
380
378
|
|
|
381
379
|
:return: The RNA type or default when not found.
|
|
382
|
-
:rtype: bpy.types.Struct
|
|
383
380
|
"""
|
|
384
381
|
|
|
385
382
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
386
383
|
"""
|
|
387
384
|
|
|
388
385
|
:return: The class or default when not found.
|
|
389
|
-
:rtype: typing.Any
|
|
390
386
|
"""
|
|
391
387
|
|
|
392
|
-
def draw(self,
|
|
388
|
+
def draw(self, context) -> None:
|
|
393
389
|
"""
|
|
394
390
|
|
|
395
|
-
:param
|
|
391
|
+
:param context:
|
|
396
392
|
"""
|
|
397
393
|
|
|
398
|
-
class
|
|
399
|
-
|
|
394
|
+
class NODE_MT_gn_geometry_sample_base(bl_ui.node_add_menu.NodeMenu):
|
|
395
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
396
|
+
|
|
400
397
|
bl_label: typing.Any
|
|
401
398
|
bl_rna: typing.Any
|
|
402
399
|
id_data: typing.Any
|
|
400
|
+
menu_path: typing.Any
|
|
403
401
|
|
|
404
402
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
405
403
|
"""
|
|
406
404
|
|
|
407
405
|
:return: The RNA type or default when not found.
|
|
408
|
-
:rtype: bpy.types.Struct
|
|
409
406
|
"""
|
|
410
407
|
|
|
411
408
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
412
409
|
"""
|
|
413
410
|
|
|
414
411
|
:return: The class or default when not found.
|
|
415
|
-
:rtype: typing.Any
|
|
416
412
|
"""
|
|
417
413
|
|
|
418
414
|
def draw(self, _context) -> None:
|
|
@@ -421,34 +417,35 @@ class NODE_MT_category_simulation(bpy.types.Menu):
|
|
|
421
417
|
:param _context:
|
|
422
418
|
"""
|
|
423
419
|
|
|
424
|
-
class
|
|
425
|
-
|
|
420
|
+
class NODE_MT_gn_geometry_write_base(bl_ui.node_add_menu.NodeMenu):
|
|
421
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
422
|
+
|
|
426
423
|
bl_label: typing.Any
|
|
427
424
|
bl_rna: typing.Any
|
|
428
425
|
id_data: typing.Any
|
|
426
|
+
menu_path: typing.Any
|
|
429
427
|
|
|
430
428
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
431
429
|
"""
|
|
432
430
|
|
|
433
431
|
:return: The RNA type or default when not found.
|
|
434
|
-
:rtype: bpy.types.Struct
|
|
435
432
|
"""
|
|
436
433
|
|
|
437
434
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
438
435
|
"""
|
|
439
436
|
|
|
440
437
|
:return: The class or default when not found.
|
|
441
|
-
:rtype: typing.Any
|
|
442
438
|
"""
|
|
443
439
|
|
|
444
|
-
def draw(self,
|
|
440
|
+
def draw(self, context) -> None:
|
|
445
441
|
"""
|
|
446
442
|
|
|
447
|
-
:param
|
|
443
|
+
:param context:
|
|
448
444
|
"""
|
|
449
445
|
|
|
450
|
-
class
|
|
451
|
-
|
|
446
|
+
class NODE_MT_gn_grease_pencil_base(bl_ui.node_add_menu.NodeMenu):
|
|
447
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
448
|
+
|
|
452
449
|
bl_label: typing.Any
|
|
453
450
|
bl_rna: typing.Any
|
|
454
451
|
id_data: typing.Any
|
|
@@ -457,14 +454,12 @@ class NODE_MT_geometry_node_GEO_ATTRIBUTE(bpy.types.Menu):
|
|
|
457
454
|
"""
|
|
458
455
|
|
|
459
456
|
:return: The RNA type or default when not found.
|
|
460
|
-
:rtype: bpy.types.Struct
|
|
461
457
|
"""
|
|
462
458
|
|
|
463
459
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
464
460
|
"""
|
|
465
461
|
|
|
466
462
|
:return: The class or default when not found.
|
|
467
|
-
:rtype: typing.Any
|
|
468
463
|
"""
|
|
469
464
|
|
|
470
465
|
def draw(self, _context) -> None:
|
|
@@ -473,50 +468,50 @@ class NODE_MT_geometry_node_GEO_ATTRIBUTE(bpy.types.Menu):
|
|
|
473
468
|
:param _context:
|
|
474
469
|
"""
|
|
475
470
|
|
|
476
|
-
class
|
|
477
|
-
|
|
471
|
+
class NODE_MT_gn_grease_pencil_operations_base(bl_ui.node_add_menu.NodeMenu):
|
|
472
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
473
|
+
|
|
478
474
|
bl_label: typing.Any
|
|
479
475
|
bl_rna: typing.Any
|
|
480
476
|
id_data: typing.Any
|
|
477
|
+
menu_path: typing.Any
|
|
481
478
|
|
|
482
479
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
483
480
|
"""
|
|
484
481
|
|
|
485
482
|
:return: The RNA type or default when not found.
|
|
486
|
-
:rtype: bpy.types.Struct
|
|
487
483
|
"""
|
|
488
484
|
|
|
489
485
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
490
486
|
"""
|
|
491
487
|
|
|
492
488
|
:return: The class or default when not found.
|
|
493
|
-
:rtype: typing.Any
|
|
494
489
|
"""
|
|
495
490
|
|
|
496
|
-
def draw(self,
|
|
491
|
+
def draw(self, _context) -> None:
|
|
497
492
|
"""
|
|
498
493
|
|
|
499
|
-
:param
|
|
494
|
+
:param _context:
|
|
500
495
|
"""
|
|
501
496
|
|
|
502
|
-
class
|
|
503
|
-
|
|
497
|
+
class NODE_MT_gn_grease_pencil_read_base(bl_ui.node_add_menu.NodeMenu):
|
|
498
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
499
|
+
|
|
504
500
|
bl_label: typing.Any
|
|
505
501
|
bl_rna: typing.Any
|
|
506
502
|
id_data: typing.Any
|
|
503
|
+
menu_path: typing.Any
|
|
507
504
|
|
|
508
505
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
509
506
|
"""
|
|
510
507
|
|
|
511
508
|
:return: The RNA type or default when not found.
|
|
512
|
-
:rtype: bpy.types.Struct
|
|
513
509
|
"""
|
|
514
510
|
|
|
515
511
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
516
512
|
"""
|
|
517
513
|
|
|
518
514
|
:return: The class or default when not found.
|
|
519
|
-
:rtype: typing.Any
|
|
520
515
|
"""
|
|
521
516
|
|
|
522
517
|
def draw(self, _context) -> None:
|
|
@@ -525,24 +520,24 @@ class NODE_MT_geometry_node_GEO_CURVE(bpy.types.Menu):
|
|
|
525
520
|
:param _context:
|
|
526
521
|
"""
|
|
527
522
|
|
|
528
|
-
class
|
|
529
|
-
|
|
523
|
+
class NODE_MT_gn_grease_pencil_write_base(bl_ui.node_add_menu.NodeMenu):
|
|
524
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
525
|
+
|
|
530
526
|
bl_label: typing.Any
|
|
531
527
|
bl_rna: typing.Any
|
|
532
528
|
id_data: typing.Any
|
|
529
|
+
menu_path: typing.Any
|
|
533
530
|
|
|
534
531
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
535
532
|
"""
|
|
536
533
|
|
|
537
534
|
:return: The RNA type or default when not found.
|
|
538
|
-
:rtype: bpy.types.Struct
|
|
539
535
|
"""
|
|
540
536
|
|
|
541
537
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
542
538
|
"""
|
|
543
539
|
|
|
544
540
|
:return: The class or default when not found.
|
|
545
|
-
:rtype: typing.Any
|
|
546
541
|
"""
|
|
547
542
|
|
|
548
543
|
def draw(self, _context) -> None:
|
|
@@ -551,8 +546,9 @@ class NODE_MT_geometry_node_GEO_CURVE_OPERATIONS(bpy.types.Menu):
|
|
|
551
546
|
:param _context:
|
|
552
547
|
"""
|
|
553
548
|
|
|
554
|
-
class
|
|
555
|
-
|
|
549
|
+
class NODE_MT_gn_input_base(bl_ui.node_add_menu.NodeMenu):
|
|
550
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
551
|
+
|
|
556
552
|
bl_label: typing.Any
|
|
557
553
|
bl_rna: typing.Any
|
|
558
554
|
id_data: typing.Any
|
|
@@ -561,40 +557,39 @@ class NODE_MT_geometry_node_GEO_CURVE_READ(bpy.types.Menu):
|
|
|
561
557
|
"""
|
|
562
558
|
|
|
563
559
|
:return: The RNA type or default when not found.
|
|
564
|
-
:rtype: bpy.types.Struct
|
|
565
560
|
"""
|
|
566
561
|
|
|
567
562
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
568
563
|
"""
|
|
569
564
|
|
|
570
565
|
:return: The class or default when not found.
|
|
571
|
-
:rtype: typing.Any
|
|
572
566
|
"""
|
|
573
567
|
|
|
574
|
-
def draw(self,
|
|
568
|
+
def draw(self, context) -> None:
|
|
575
569
|
"""
|
|
576
570
|
|
|
577
|
-
:param
|
|
571
|
+
:param context:
|
|
578
572
|
"""
|
|
579
573
|
|
|
580
|
-
class
|
|
581
|
-
|
|
574
|
+
class NODE_MT_gn_input_constant_base(bl_ui.node_add_menu.NodeMenu):
|
|
575
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
576
|
+
|
|
582
577
|
bl_label: typing.Any
|
|
583
578
|
bl_rna: typing.Any
|
|
579
|
+
bl_translation_context: typing.Any
|
|
584
580
|
id_data: typing.Any
|
|
581
|
+
menu_path: typing.Any
|
|
585
582
|
|
|
586
583
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
587
584
|
"""
|
|
588
585
|
|
|
589
586
|
:return: The RNA type or default when not found.
|
|
590
|
-
:rtype: bpy.types.Struct
|
|
591
587
|
"""
|
|
592
588
|
|
|
593
589
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
594
590
|
"""
|
|
595
591
|
|
|
596
592
|
:return: The class or default when not found.
|
|
597
|
-
:rtype: typing.Any
|
|
598
593
|
"""
|
|
599
594
|
|
|
600
595
|
def draw(self, _context) -> None:
|
|
@@ -603,50 +598,50 @@ class NODE_MT_geometry_node_GEO_CURVE_SAMPLE(bpy.types.Menu):
|
|
|
603
598
|
:param _context:
|
|
604
599
|
"""
|
|
605
600
|
|
|
606
|
-
class
|
|
607
|
-
|
|
601
|
+
class NODE_MT_gn_input_gizmo_base(bl_ui.node_add_menu.NodeMenu):
|
|
602
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
603
|
+
|
|
608
604
|
bl_label: typing.Any
|
|
609
605
|
bl_rna: typing.Any
|
|
610
606
|
id_data: typing.Any
|
|
607
|
+
menu_path: typing.Any
|
|
611
608
|
|
|
612
609
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
613
610
|
"""
|
|
614
611
|
|
|
615
612
|
:return: The RNA type or default when not found.
|
|
616
|
-
:rtype: bpy.types.Struct
|
|
617
613
|
"""
|
|
618
614
|
|
|
619
615
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
620
616
|
"""
|
|
621
617
|
|
|
622
618
|
:return: The class or default when not found.
|
|
623
|
-
:rtype: typing.Any
|
|
624
619
|
"""
|
|
625
620
|
|
|
626
|
-
def draw(self,
|
|
621
|
+
def draw(self, context) -> None:
|
|
627
622
|
"""
|
|
628
623
|
|
|
629
|
-
:param
|
|
624
|
+
:param context:
|
|
630
625
|
"""
|
|
631
626
|
|
|
632
|
-
class
|
|
633
|
-
|
|
627
|
+
class NODE_MT_gn_input_group_base(bl_ui.node_add_menu.NodeMenu):
|
|
628
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
629
|
+
|
|
634
630
|
bl_label: typing.Any
|
|
635
631
|
bl_rna: typing.Any
|
|
636
632
|
id_data: typing.Any
|
|
633
|
+
menu_path: typing.Any
|
|
637
634
|
|
|
638
635
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
639
636
|
"""
|
|
640
637
|
|
|
641
638
|
:return: The RNA type or default when not found.
|
|
642
|
-
:rtype: bpy.types.Struct
|
|
643
639
|
"""
|
|
644
640
|
|
|
645
641
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
646
642
|
"""
|
|
647
643
|
|
|
648
644
|
:return: The class or default when not found.
|
|
649
|
-
:rtype: typing.Any
|
|
650
645
|
"""
|
|
651
646
|
|
|
652
647
|
def draw(self, _context) -> None:
|
|
@@ -655,24 +650,24 @@ class NODE_MT_geometry_node_GEO_GEOMETRY(bpy.types.Menu):
|
|
|
655
650
|
:param _context:
|
|
656
651
|
"""
|
|
657
652
|
|
|
658
|
-
class
|
|
659
|
-
|
|
653
|
+
class NODE_MT_gn_input_import_base(bl_ui.node_add_menu.NodeMenu):
|
|
654
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
655
|
+
|
|
660
656
|
bl_label: typing.Any
|
|
661
657
|
bl_rna: typing.Any
|
|
662
658
|
id_data: typing.Any
|
|
659
|
+
menu_path: typing.Any
|
|
663
660
|
|
|
664
661
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
665
662
|
"""
|
|
666
663
|
|
|
667
664
|
:return: The RNA type or default when not found.
|
|
668
|
-
:rtype: bpy.types.Struct
|
|
669
665
|
"""
|
|
670
666
|
|
|
671
667
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
672
668
|
"""
|
|
673
669
|
|
|
674
670
|
:return: The class or default when not found.
|
|
675
|
-
:rtype: typing.Any
|
|
676
671
|
"""
|
|
677
672
|
|
|
678
673
|
def draw(self, _context) -> None:
|
|
@@ -681,24 +676,24 @@ class NODE_MT_geometry_node_GEO_GEOMETRY_OPERATIONS(bpy.types.Menu):
|
|
|
681
676
|
:param _context:
|
|
682
677
|
"""
|
|
683
678
|
|
|
684
|
-
class
|
|
685
|
-
|
|
679
|
+
class NODE_MT_gn_input_scene_base(bl_ui.node_add_menu.NodeMenu):
|
|
680
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
681
|
+
|
|
686
682
|
bl_label: typing.Any
|
|
687
683
|
bl_rna: typing.Any
|
|
688
684
|
id_data: typing.Any
|
|
685
|
+
menu_path: typing.Any
|
|
689
686
|
|
|
690
687
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
691
688
|
"""
|
|
692
689
|
|
|
693
690
|
:return: The RNA type or default when not found.
|
|
694
|
-
:rtype: bpy.types.Struct
|
|
695
691
|
"""
|
|
696
692
|
|
|
697
693
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
698
694
|
"""
|
|
699
695
|
|
|
700
696
|
:return: The class or default when not found.
|
|
701
|
-
:rtype: typing.Any
|
|
702
697
|
"""
|
|
703
698
|
|
|
704
699
|
def draw(self, context) -> None:
|
|
@@ -707,8 +702,9 @@ class NODE_MT_geometry_node_GEO_GEOMETRY_READ(bpy.types.Menu):
|
|
|
707
702
|
:param context:
|
|
708
703
|
"""
|
|
709
704
|
|
|
710
|
-
class
|
|
711
|
-
|
|
705
|
+
class NODE_MT_gn_instance_base(bl_ui.node_add_menu.NodeMenu):
|
|
706
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
707
|
+
|
|
712
708
|
bl_label: typing.Any
|
|
713
709
|
bl_rna: typing.Any
|
|
714
710
|
id_data: typing.Any
|
|
@@ -717,14 +713,12 @@ class NODE_MT_geometry_node_GEO_GEOMETRY_SAMPLE(bpy.types.Menu):
|
|
|
717
713
|
"""
|
|
718
714
|
|
|
719
715
|
:return: The RNA type or default when not found.
|
|
720
|
-
:rtype: bpy.types.Struct
|
|
721
716
|
"""
|
|
722
717
|
|
|
723
718
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
724
719
|
"""
|
|
725
720
|
|
|
726
721
|
:return: The class or default when not found.
|
|
727
|
-
:rtype: typing.Any
|
|
728
722
|
"""
|
|
729
723
|
|
|
730
724
|
def draw(self, _context) -> None:
|
|
@@ -733,50 +727,75 @@ class NODE_MT_geometry_node_GEO_GEOMETRY_SAMPLE(bpy.types.Menu):
|
|
|
733
727
|
:param _context:
|
|
734
728
|
"""
|
|
735
729
|
|
|
736
|
-
class
|
|
737
|
-
|
|
730
|
+
class NODE_MT_gn_material_base(bl_ui.node_add_menu.NodeMenu):
|
|
731
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
732
|
+
|
|
738
733
|
bl_label: typing.Any
|
|
739
734
|
bl_rna: typing.Any
|
|
740
735
|
id_data: typing.Any
|
|
736
|
+
menu_path: typing.Any
|
|
741
737
|
|
|
742
738
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
743
739
|
"""
|
|
744
740
|
|
|
745
741
|
:return: The RNA type or default when not found.
|
|
746
|
-
:rtype: bpy.types.Struct
|
|
747
742
|
"""
|
|
748
743
|
|
|
749
744
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
750
745
|
"""
|
|
751
746
|
|
|
752
747
|
:return: The class or default when not found.
|
|
753
|
-
:rtype: typing.Any
|
|
754
748
|
"""
|
|
755
749
|
|
|
756
|
-
def draw(self,
|
|
750
|
+
def draw(self, _context) -> None:
|
|
757
751
|
"""
|
|
758
752
|
|
|
759
|
-
:param
|
|
753
|
+
:param _context:
|
|
754
|
+
"""
|
|
755
|
+
|
|
756
|
+
class NODE_MT_gn_mesh_base(bl_ui.node_add_menu.NodeMenu):
|
|
757
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
758
|
+
|
|
759
|
+
bl_label: typing.Any
|
|
760
|
+
bl_rna: typing.Any
|
|
761
|
+
id_data: typing.Any
|
|
762
|
+
|
|
763
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
764
|
+
"""
|
|
765
|
+
|
|
766
|
+
:return: The RNA type or default when not found.
|
|
767
|
+
"""
|
|
768
|
+
|
|
769
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
760
770
|
"""
|
|
761
771
|
|
|
762
|
-
class
|
|
763
|
-
|
|
772
|
+
:return: The class or default when not found.
|
|
773
|
+
"""
|
|
774
|
+
|
|
775
|
+
def draw(self, _context) -> None:
|
|
776
|
+
"""
|
|
777
|
+
|
|
778
|
+
:param _context:
|
|
779
|
+
"""
|
|
780
|
+
|
|
781
|
+
class NODE_MT_gn_mesh_operations_base(bl_ui.node_add_menu.NodeMenu):
|
|
782
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
783
|
+
|
|
764
784
|
bl_label: typing.Any
|
|
765
785
|
bl_rna: typing.Any
|
|
766
786
|
id_data: typing.Any
|
|
787
|
+
menu_path: typing.Any
|
|
767
788
|
|
|
768
789
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
769
790
|
"""
|
|
770
791
|
|
|
771
792
|
:return: The RNA type or default when not found.
|
|
772
|
-
:rtype: bpy.types.Struct
|
|
773
793
|
"""
|
|
774
794
|
|
|
775
795
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
776
796
|
"""
|
|
777
797
|
|
|
778
798
|
:return: The class or default when not found.
|
|
779
|
-
:rtype: typing.Any
|
|
780
799
|
"""
|
|
781
800
|
|
|
782
801
|
def draw(self, context) -> None:
|
|
@@ -785,25 +804,24 @@ class NODE_MT_geometry_node_GEO_INPUT(bpy.types.Menu):
|
|
|
785
804
|
:param context:
|
|
786
805
|
"""
|
|
787
806
|
|
|
788
|
-
class
|
|
789
|
-
|
|
807
|
+
class NODE_MT_gn_mesh_primitives_base(bl_ui.node_add_menu.NodeMenu):
|
|
808
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
809
|
+
|
|
790
810
|
bl_label: typing.Any
|
|
791
811
|
bl_rna: typing.Any
|
|
792
|
-
bl_translation_context: typing.Any
|
|
793
812
|
id_data: typing.Any
|
|
813
|
+
menu_path: typing.Any
|
|
794
814
|
|
|
795
815
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
796
816
|
"""
|
|
797
817
|
|
|
798
818
|
:return: The RNA type or default when not found.
|
|
799
|
-
:rtype: bpy.types.Struct
|
|
800
819
|
"""
|
|
801
820
|
|
|
802
821
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
803
822
|
"""
|
|
804
823
|
|
|
805
824
|
:return: The class or default when not found.
|
|
806
|
-
:rtype: typing.Any
|
|
807
825
|
"""
|
|
808
826
|
|
|
809
827
|
def draw(self, _context) -> None:
|
|
@@ -812,24 +830,24 @@ class NODE_MT_geometry_node_GEO_INPUT_CONSTANT(bpy.types.Menu):
|
|
|
812
830
|
:param _context:
|
|
813
831
|
"""
|
|
814
832
|
|
|
815
|
-
class
|
|
816
|
-
|
|
833
|
+
class NODE_MT_gn_mesh_read_base(bl_ui.node_add_menu.NodeMenu):
|
|
834
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
835
|
+
|
|
817
836
|
bl_label: typing.Any
|
|
818
837
|
bl_rna: typing.Any
|
|
819
838
|
id_data: typing.Any
|
|
839
|
+
menu_path: typing.Any
|
|
820
840
|
|
|
821
841
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
822
842
|
"""
|
|
823
843
|
|
|
824
844
|
:return: The RNA type or default when not found.
|
|
825
|
-
:rtype: bpy.types.Struct
|
|
826
845
|
"""
|
|
827
846
|
|
|
828
847
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
829
848
|
"""
|
|
830
849
|
|
|
831
850
|
:return: The class or default when not found.
|
|
832
|
-
:rtype: typing.Any
|
|
833
851
|
"""
|
|
834
852
|
|
|
835
853
|
def draw(self, context) -> None:
|
|
@@ -838,24 +856,24 @@ class NODE_MT_geometry_node_GEO_INPUT_GIZMO(bpy.types.Menu):
|
|
|
838
856
|
:param context:
|
|
839
857
|
"""
|
|
840
858
|
|
|
841
|
-
class
|
|
842
|
-
|
|
859
|
+
class NODE_MT_gn_mesh_sample_base(bl_ui.node_add_menu.NodeMenu):
|
|
860
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
861
|
+
|
|
843
862
|
bl_label: typing.Any
|
|
844
863
|
bl_rna: typing.Any
|
|
845
864
|
id_data: typing.Any
|
|
865
|
+
menu_path: typing.Any
|
|
846
866
|
|
|
847
867
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
848
868
|
"""
|
|
849
869
|
|
|
850
870
|
:return: The RNA type or default when not found.
|
|
851
|
-
:rtype: bpy.types.Struct
|
|
852
871
|
"""
|
|
853
872
|
|
|
854
873
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
855
874
|
"""
|
|
856
875
|
|
|
857
876
|
:return: The class or default when not found.
|
|
858
|
-
:rtype: typing.Any
|
|
859
877
|
"""
|
|
860
878
|
|
|
861
879
|
def draw(self, _context) -> None:
|
|
@@ -864,50 +882,50 @@ class NODE_MT_geometry_node_GEO_INPUT_GROUP(bpy.types.Menu):
|
|
|
864
882
|
:param _context:
|
|
865
883
|
"""
|
|
866
884
|
|
|
867
|
-
class
|
|
868
|
-
|
|
885
|
+
class NODE_MT_gn_mesh_topology_base(bl_ui.node_add_menu.NodeMenu):
|
|
886
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
887
|
+
|
|
869
888
|
bl_label: typing.Any
|
|
870
889
|
bl_rna: typing.Any
|
|
871
890
|
id_data: typing.Any
|
|
891
|
+
menu_path: typing.Any
|
|
872
892
|
|
|
873
893
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
874
894
|
"""
|
|
875
895
|
|
|
876
896
|
:return: The RNA type or default when not found.
|
|
877
|
-
:rtype: bpy.types.Struct
|
|
878
897
|
"""
|
|
879
898
|
|
|
880
899
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
881
900
|
"""
|
|
882
901
|
|
|
883
902
|
:return: The class or default when not found.
|
|
884
|
-
:rtype: typing.Any
|
|
885
903
|
"""
|
|
886
904
|
|
|
887
|
-
def draw(self,
|
|
905
|
+
def draw(self, _context) -> None:
|
|
888
906
|
"""
|
|
889
907
|
|
|
890
|
-
:param
|
|
908
|
+
:param _context:
|
|
891
909
|
"""
|
|
892
910
|
|
|
893
|
-
class
|
|
894
|
-
|
|
911
|
+
class NODE_MT_gn_mesh_uv_base(bl_ui.node_add_menu.NodeMenu):
|
|
912
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
913
|
+
|
|
895
914
|
bl_label: typing.Any
|
|
896
915
|
bl_rna: typing.Any
|
|
897
916
|
id_data: typing.Any
|
|
917
|
+
menu_path: typing.Any
|
|
898
918
|
|
|
899
919
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
900
920
|
"""
|
|
901
921
|
|
|
902
922
|
:return: The RNA type or default when not found.
|
|
903
|
-
:rtype: bpy.types.Struct
|
|
904
923
|
"""
|
|
905
924
|
|
|
906
925
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
907
926
|
"""
|
|
908
927
|
|
|
909
928
|
:return: The class or default when not found.
|
|
910
|
-
:rtype: typing.Any
|
|
911
929
|
"""
|
|
912
930
|
|
|
913
931
|
def draw(self, _context) -> None:
|
|
@@ -916,34 +934,35 @@ class NODE_MT_geometry_node_GEO_INSTANCE(bpy.types.Menu):
|
|
|
916
934
|
:param _context:
|
|
917
935
|
"""
|
|
918
936
|
|
|
919
|
-
class
|
|
920
|
-
|
|
937
|
+
class NODE_MT_gn_mesh_write_base(bl_ui.node_add_menu.NodeMenu):
|
|
938
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
939
|
+
|
|
921
940
|
bl_label: typing.Any
|
|
922
941
|
bl_rna: typing.Any
|
|
923
942
|
id_data: typing.Any
|
|
943
|
+
menu_path: typing.Any
|
|
924
944
|
|
|
925
945
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
926
946
|
"""
|
|
927
947
|
|
|
928
948
|
:return: The RNA type or default when not found.
|
|
929
|
-
:rtype: bpy.types.Struct
|
|
930
949
|
"""
|
|
931
950
|
|
|
932
951
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
933
952
|
"""
|
|
934
953
|
|
|
935
954
|
:return: The class or default when not found.
|
|
936
|
-
:rtype: typing.Any
|
|
937
955
|
"""
|
|
938
956
|
|
|
939
|
-
def draw(self,
|
|
957
|
+
def draw(self, context) -> None:
|
|
940
958
|
"""
|
|
941
959
|
|
|
942
|
-
:param
|
|
960
|
+
:param context:
|
|
943
961
|
"""
|
|
944
962
|
|
|
945
|
-
class
|
|
946
|
-
|
|
963
|
+
class NODE_MT_gn_output_base(bl_ui.node_add_menu.NodeMenu):
|
|
964
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
965
|
+
|
|
947
966
|
bl_label: typing.Any
|
|
948
967
|
bl_rna: typing.Any
|
|
949
968
|
id_data: typing.Any
|
|
@@ -952,24 +971,23 @@ class NODE_MT_geometry_node_GEO_MESH(bpy.types.Menu):
|
|
|
952
971
|
"""
|
|
953
972
|
|
|
954
973
|
:return: The RNA type or default when not found.
|
|
955
|
-
:rtype: bpy.types.Struct
|
|
956
974
|
"""
|
|
957
975
|
|
|
958
976
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
959
977
|
"""
|
|
960
978
|
|
|
961
979
|
:return: The class or default when not found.
|
|
962
|
-
:rtype: typing.Any
|
|
963
980
|
"""
|
|
964
981
|
|
|
965
|
-
def draw(self,
|
|
982
|
+
def draw(self, context) -> None:
|
|
966
983
|
"""
|
|
967
984
|
|
|
968
|
-
:param
|
|
985
|
+
:param context:
|
|
969
986
|
"""
|
|
970
987
|
|
|
971
|
-
class
|
|
972
|
-
|
|
988
|
+
class NODE_MT_gn_point_base(bl_ui.node_add_menu.NodeMenu):
|
|
989
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
990
|
+
|
|
973
991
|
bl_label: typing.Any
|
|
974
992
|
bl_rna: typing.Any
|
|
975
993
|
id_data: typing.Any
|
|
@@ -978,14 +996,12 @@ class NODE_MT_geometry_node_GEO_MESH_OPERATIONS(bpy.types.Menu):
|
|
|
978
996
|
"""
|
|
979
997
|
|
|
980
998
|
:return: The RNA type or default when not found.
|
|
981
|
-
:rtype: bpy.types.Struct
|
|
982
999
|
"""
|
|
983
1000
|
|
|
984
1001
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
985
1002
|
"""
|
|
986
1003
|
|
|
987
1004
|
:return: The class or default when not found.
|
|
988
|
-
:rtype: typing.Any
|
|
989
1005
|
"""
|
|
990
1006
|
|
|
991
1007
|
def draw(self, context) -> None:
|
|
@@ -994,8 +1010,9 @@ class NODE_MT_geometry_node_GEO_MESH_OPERATIONS(bpy.types.Menu):
|
|
|
994
1010
|
:param context:
|
|
995
1011
|
"""
|
|
996
1012
|
|
|
997
|
-
class
|
|
998
|
-
|
|
1013
|
+
class NODE_MT_gn_simulation_base(bl_ui.node_add_menu.NodeMenu):
|
|
1014
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1015
|
+
|
|
999
1016
|
bl_label: typing.Any
|
|
1000
1017
|
bl_rna: typing.Any
|
|
1001
1018
|
id_data: typing.Any
|
|
@@ -1004,24 +1021,23 @@ class NODE_MT_geometry_node_GEO_MESH_READ(bpy.types.Menu):
|
|
|
1004
1021
|
"""
|
|
1005
1022
|
|
|
1006
1023
|
:return: The RNA type or default when not found.
|
|
1007
|
-
:rtype: bpy.types.Struct
|
|
1008
1024
|
"""
|
|
1009
1025
|
|
|
1010
1026
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1011
1027
|
"""
|
|
1012
1028
|
|
|
1013
1029
|
:return: The class or default when not found.
|
|
1014
|
-
:rtype: typing.Any
|
|
1015
1030
|
"""
|
|
1016
1031
|
|
|
1017
|
-
def draw(self,
|
|
1032
|
+
def draw(self, _context) -> None:
|
|
1018
1033
|
"""
|
|
1019
1034
|
|
|
1020
|
-
:param
|
|
1035
|
+
:param _context:
|
|
1021
1036
|
"""
|
|
1022
1037
|
|
|
1023
|
-
class
|
|
1024
|
-
|
|
1038
|
+
class NODE_MT_gn_texture_base(bl_ui.node_add_menu.NodeMenu):
|
|
1039
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1040
|
+
|
|
1025
1041
|
bl_label: typing.Any
|
|
1026
1042
|
bl_rna: typing.Any
|
|
1027
1043
|
id_data: typing.Any
|
|
@@ -1030,14 +1046,12 @@ class NODE_MT_geometry_node_GEO_MESH_SAMPLE(bpy.types.Menu):
|
|
|
1030
1046
|
"""
|
|
1031
1047
|
|
|
1032
1048
|
:return: The RNA type or default when not found.
|
|
1033
|
-
:rtype: bpy.types.Struct
|
|
1034
1049
|
"""
|
|
1035
1050
|
|
|
1036
1051
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1037
1052
|
"""
|
|
1038
1053
|
|
|
1039
1054
|
:return: The class or default when not found.
|
|
1040
|
-
:rtype: typing.Any
|
|
1041
1055
|
"""
|
|
1042
1056
|
|
|
1043
1057
|
def draw(self, _context) -> None:
|
|
@@ -1046,8 +1060,9 @@ class NODE_MT_geometry_node_GEO_MESH_SAMPLE(bpy.types.Menu):
|
|
|
1046
1060
|
:param _context:
|
|
1047
1061
|
"""
|
|
1048
1062
|
|
|
1049
|
-
class
|
|
1050
|
-
|
|
1063
|
+
class NODE_MT_gn_utilities_base(bl_ui.node_add_menu.NodeMenu):
|
|
1064
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1065
|
+
|
|
1051
1066
|
bl_label: typing.Any
|
|
1052
1067
|
bl_rna: typing.Any
|
|
1053
1068
|
id_data: typing.Any
|
|
@@ -1056,14 +1071,12 @@ class NODE_MT_geometry_node_GEO_MESH_WRITE(bpy.types.Menu):
|
|
|
1056
1071
|
"""
|
|
1057
1072
|
|
|
1058
1073
|
:return: The RNA type or default when not found.
|
|
1059
|
-
:rtype: bpy.types.Struct
|
|
1060
1074
|
"""
|
|
1061
1075
|
|
|
1062
1076
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1063
1077
|
"""
|
|
1064
1078
|
|
|
1065
1079
|
:return: The class or default when not found.
|
|
1066
|
-
:rtype: typing.Any
|
|
1067
1080
|
"""
|
|
1068
1081
|
|
|
1069
1082
|
def draw(self, context) -> None:
|
|
@@ -1072,102 +1085,102 @@ class NODE_MT_geometry_node_GEO_MESH_WRITE(bpy.types.Menu):
|
|
|
1072
1085
|
:param context:
|
|
1073
1086
|
"""
|
|
1074
1087
|
|
|
1075
|
-
class
|
|
1076
|
-
|
|
1088
|
+
class NODE_MT_gn_utilities_deprecated_base(bl_ui.node_add_menu.NodeMenu):
|
|
1089
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1090
|
+
|
|
1077
1091
|
bl_label: typing.Any
|
|
1078
1092
|
bl_rna: typing.Any
|
|
1079
1093
|
id_data: typing.Any
|
|
1094
|
+
menu_path: typing.Any
|
|
1080
1095
|
|
|
1081
1096
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1082
1097
|
"""
|
|
1083
1098
|
|
|
1084
1099
|
:return: The RNA type or default when not found.
|
|
1085
|
-
:rtype: bpy.types.Struct
|
|
1086
1100
|
"""
|
|
1087
1101
|
|
|
1088
1102
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1089
1103
|
"""
|
|
1090
1104
|
|
|
1091
1105
|
:return: The class or default when not found.
|
|
1092
|
-
:rtype: typing.Any
|
|
1093
1106
|
"""
|
|
1094
1107
|
|
|
1095
|
-
def draw(self,
|
|
1108
|
+
def draw(self, context) -> None:
|
|
1096
1109
|
"""
|
|
1097
1110
|
|
|
1098
|
-
:param
|
|
1111
|
+
:param context:
|
|
1099
1112
|
"""
|
|
1100
1113
|
|
|
1101
|
-
class
|
|
1102
|
-
|
|
1114
|
+
class NODE_MT_gn_utilities_field_base(bl_ui.node_add_menu.NodeMenu):
|
|
1115
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1116
|
+
|
|
1103
1117
|
bl_label: typing.Any
|
|
1104
1118
|
bl_rna: typing.Any
|
|
1105
1119
|
id_data: typing.Any
|
|
1120
|
+
menu_path: typing.Any
|
|
1106
1121
|
|
|
1107
1122
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1108
1123
|
"""
|
|
1109
1124
|
|
|
1110
1125
|
:return: The RNA type or default when not found.
|
|
1111
|
-
:rtype: bpy.types.Struct
|
|
1112
1126
|
"""
|
|
1113
1127
|
|
|
1114
1128
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1115
1129
|
"""
|
|
1116
1130
|
|
|
1117
1131
|
:return: The class or default when not found.
|
|
1118
|
-
:rtype: typing.Any
|
|
1119
1132
|
"""
|
|
1120
1133
|
|
|
1121
|
-
def draw(self,
|
|
1134
|
+
def draw(self, _context) -> None:
|
|
1122
1135
|
"""
|
|
1123
1136
|
|
|
1124
|
-
:param
|
|
1137
|
+
:param _context:
|
|
1125
1138
|
"""
|
|
1126
1139
|
|
|
1127
|
-
class
|
|
1128
|
-
|
|
1140
|
+
class NODE_MT_gn_utilities_list_base(bl_ui.node_add_menu.NodeMenu):
|
|
1141
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1142
|
+
|
|
1129
1143
|
bl_label: typing.Any
|
|
1130
1144
|
bl_rna: typing.Any
|
|
1131
1145
|
id_data: typing.Any
|
|
1146
|
+
menu_path: typing.Any
|
|
1132
1147
|
|
|
1133
1148
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1134
1149
|
"""
|
|
1135
1150
|
|
|
1136
1151
|
:return: The RNA type or default when not found.
|
|
1137
|
-
:rtype: bpy.types.Struct
|
|
1138
1152
|
"""
|
|
1139
1153
|
|
|
1140
1154
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1141
1155
|
"""
|
|
1142
1156
|
|
|
1143
1157
|
:return: The class or default when not found.
|
|
1144
|
-
:rtype: typing.Any
|
|
1145
1158
|
"""
|
|
1146
1159
|
|
|
1147
|
-
def draw(self,
|
|
1160
|
+
def draw(self, _context) -> None:
|
|
1148
1161
|
"""
|
|
1149
1162
|
|
|
1150
|
-
:param
|
|
1163
|
+
:param _context:
|
|
1151
1164
|
"""
|
|
1152
1165
|
|
|
1153
|
-
class
|
|
1154
|
-
|
|
1166
|
+
class NODE_MT_gn_utilities_math_base(bl_ui.node_add_menu.NodeMenu):
|
|
1167
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1168
|
+
|
|
1155
1169
|
bl_label: typing.Any
|
|
1156
1170
|
bl_rna: typing.Any
|
|
1157
1171
|
id_data: typing.Any
|
|
1172
|
+
menu_path: typing.Any
|
|
1158
1173
|
|
|
1159
1174
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1160
1175
|
"""
|
|
1161
1176
|
|
|
1162
1177
|
:return: The RNA type or default when not found.
|
|
1163
|
-
:rtype: bpy.types.Struct
|
|
1164
1178
|
"""
|
|
1165
1179
|
|
|
1166
1180
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1167
1181
|
"""
|
|
1168
1182
|
|
|
1169
1183
|
:return: The class or default when not found.
|
|
1170
|
-
:rtype: typing.Any
|
|
1171
1184
|
"""
|
|
1172
1185
|
|
|
1173
1186
|
def draw(self, context) -> None:
|
|
@@ -1176,76 +1189,76 @@ class NODE_MT_geometry_node_GEO_VOLUME_READ(bpy.types.Menu):
|
|
|
1176
1189
|
:param context:
|
|
1177
1190
|
"""
|
|
1178
1191
|
|
|
1179
|
-
class
|
|
1180
|
-
|
|
1192
|
+
class NODE_MT_gn_utilities_matrix_base(bl_ui.node_add_menu.NodeMenu):
|
|
1193
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1194
|
+
|
|
1181
1195
|
bl_label: typing.Any
|
|
1182
1196
|
bl_rna: typing.Any
|
|
1183
1197
|
id_data: typing.Any
|
|
1198
|
+
menu_path: typing.Any
|
|
1184
1199
|
|
|
1185
1200
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1186
1201
|
"""
|
|
1187
1202
|
|
|
1188
1203
|
:return: The RNA type or default when not found.
|
|
1189
|
-
:rtype: bpy.types.Struct
|
|
1190
1204
|
"""
|
|
1191
1205
|
|
|
1192
1206
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1193
1207
|
"""
|
|
1194
1208
|
|
|
1195
1209
|
:return: The class or default when not found.
|
|
1196
|
-
:rtype: typing.Any
|
|
1197
1210
|
"""
|
|
1198
1211
|
|
|
1199
|
-
def draw(self,
|
|
1212
|
+
def draw(self, _context) -> None:
|
|
1200
1213
|
"""
|
|
1201
1214
|
|
|
1202
|
-
:param
|
|
1215
|
+
:param _context:
|
|
1203
1216
|
"""
|
|
1204
1217
|
|
|
1205
|
-
class
|
|
1206
|
-
|
|
1218
|
+
class NODE_MT_gn_utilities_rotation_base(bl_ui.node_add_menu.NodeMenu):
|
|
1219
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1220
|
+
|
|
1207
1221
|
bl_label: typing.Any
|
|
1208
1222
|
bl_rna: typing.Any
|
|
1209
1223
|
id_data: typing.Any
|
|
1224
|
+
menu_path: typing.Any
|
|
1210
1225
|
|
|
1211
1226
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1212
1227
|
"""
|
|
1213
1228
|
|
|
1214
1229
|
:return: The RNA type or default when not found.
|
|
1215
|
-
:rtype: bpy.types.Struct
|
|
1216
1230
|
"""
|
|
1217
1231
|
|
|
1218
1232
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1219
1233
|
"""
|
|
1220
1234
|
|
|
1221
1235
|
:return: The class or default when not found.
|
|
1222
|
-
:rtype: typing.Any
|
|
1223
1236
|
"""
|
|
1224
1237
|
|
|
1225
|
-
def draw(self,
|
|
1238
|
+
def draw(self, _context) -> None:
|
|
1226
1239
|
"""
|
|
1227
1240
|
|
|
1228
|
-
:param
|
|
1241
|
+
:param _context:
|
|
1229
1242
|
"""
|
|
1230
1243
|
|
|
1231
|
-
class
|
|
1232
|
-
|
|
1244
|
+
class NODE_MT_gn_utilities_text_base(bl_ui.node_add_menu.NodeMenu):
|
|
1245
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1246
|
+
|
|
1233
1247
|
bl_label: typing.Any
|
|
1234
1248
|
bl_rna: typing.Any
|
|
1235
1249
|
id_data: typing.Any
|
|
1250
|
+
menu_path: typing.Any
|
|
1236
1251
|
|
|
1237
1252
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1238
1253
|
"""
|
|
1239
1254
|
|
|
1240
1255
|
:return: The RNA type or default when not found.
|
|
1241
|
-
:rtype: bpy.types.Struct
|
|
1242
1256
|
"""
|
|
1243
1257
|
|
|
1244
1258
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1245
1259
|
"""
|
|
1246
1260
|
|
|
1247
1261
|
:return: The class or default when not found.
|
|
1248
|
-
:rtype: typing.Any
|
|
1249
1262
|
"""
|
|
1250
1263
|
|
|
1251
1264
|
def draw(self, _context) -> None:
|
|
@@ -1254,154 +1267,180 @@ class NODE_MT_geometry_node_curve_topology(bpy.types.Menu):
|
|
|
1254
1267
|
:param _context:
|
|
1255
1268
|
"""
|
|
1256
1269
|
|
|
1257
|
-
class
|
|
1258
|
-
|
|
1270
|
+
class NODE_MT_gn_utilities_vector_base(bl_ui.node_add_menu.NodeMenu):
|
|
1271
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1272
|
+
|
|
1259
1273
|
bl_label: typing.Any
|
|
1260
1274
|
bl_rna: typing.Any
|
|
1261
1275
|
id_data: typing.Any
|
|
1276
|
+
menu_path: typing.Any
|
|
1262
1277
|
|
|
1263
1278
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1264
1279
|
"""
|
|
1265
1280
|
|
|
1266
1281
|
:return: The RNA type or default when not found.
|
|
1267
|
-
:rtype: bpy.types.Struct
|
|
1268
1282
|
"""
|
|
1269
1283
|
|
|
1270
1284
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1271
1285
|
"""
|
|
1272
1286
|
|
|
1273
1287
|
:return: The class or default when not found.
|
|
1274
|
-
:rtype: typing.Any
|
|
1275
1288
|
"""
|
|
1276
1289
|
|
|
1277
|
-
def draw(self,
|
|
1290
|
+
def draw(self, context) -> None:
|
|
1278
1291
|
"""
|
|
1279
1292
|
|
|
1280
|
-
:param
|
|
1293
|
+
:param context:
|
|
1281
1294
|
"""
|
|
1282
1295
|
|
|
1283
|
-
class
|
|
1284
|
-
|
|
1296
|
+
class NODE_MT_gn_volume_base(bl_ui.node_add_menu.NodeMenu):
|
|
1297
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1298
|
+
|
|
1285
1299
|
bl_label: typing.Any
|
|
1286
1300
|
bl_rna: typing.Any
|
|
1301
|
+
bl_translation_context: typing.Any
|
|
1287
1302
|
id_data: typing.Any
|
|
1288
1303
|
|
|
1289
1304
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1290
1305
|
"""
|
|
1291
1306
|
|
|
1292
1307
|
:return: The RNA type or default when not found.
|
|
1293
|
-
:rtype: bpy.types.Struct
|
|
1294
1308
|
"""
|
|
1295
1309
|
|
|
1296
1310
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1297
1311
|
"""
|
|
1298
1312
|
|
|
1299
1313
|
:return: The class or default when not found.
|
|
1300
|
-
:rtype: typing.Any
|
|
1301
1314
|
"""
|
|
1302
1315
|
|
|
1303
|
-
def draw(self,
|
|
1316
|
+
def draw(self, context) -> None:
|
|
1304
1317
|
"""
|
|
1305
1318
|
|
|
1306
|
-
:param
|
|
1319
|
+
:param context:
|
|
1307
1320
|
"""
|
|
1308
1321
|
|
|
1309
|
-
class
|
|
1310
|
-
|
|
1322
|
+
class NODE_MT_gn_volume_operations_base(bl_ui.node_add_menu.NodeMenu):
|
|
1323
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1324
|
+
|
|
1311
1325
|
bl_label: typing.Any
|
|
1312
1326
|
bl_rna: typing.Any
|
|
1313
1327
|
id_data: typing.Any
|
|
1328
|
+
menu_path: typing.Any
|
|
1314
1329
|
|
|
1315
1330
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1316
1331
|
"""
|
|
1317
1332
|
|
|
1318
1333
|
:return: The RNA type or default when not found.
|
|
1319
|
-
:rtype: bpy.types.Struct
|
|
1320
1334
|
"""
|
|
1321
1335
|
|
|
1322
1336
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1323
1337
|
"""
|
|
1324
1338
|
|
|
1325
1339
|
:return: The class or default when not found.
|
|
1326
|
-
:rtype: typing.Any
|
|
1327
1340
|
"""
|
|
1328
1341
|
|
|
1329
|
-
def draw(self,
|
|
1342
|
+
def draw(self, context) -> None:
|
|
1330
1343
|
"""
|
|
1331
1344
|
|
|
1332
|
-
:param
|
|
1345
|
+
:param context:
|
|
1333
1346
|
"""
|
|
1334
1347
|
|
|
1335
|
-
class
|
|
1336
|
-
|
|
1348
|
+
class NODE_MT_gn_volume_primitives_base(bl_ui.node_add_menu.NodeMenu):
|
|
1349
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1350
|
+
|
|
1337
1351
|
bl_label: typing.Any
|
|
1338
1352
|
bl_rna: typing.Any
|
|
1339
1353
|
id_data: typing.Any
|
|
1354
|
+
menu_path: typing.Any
|
|
1340
1355
|
|
|
1341
1356
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1342
1357
|
"""
|
|
1343
1358
|
|
|
1344
1359
|
:return: The RNA type or default when not found.
|
|
1345
|
-
:rtype: bpy.types.Struct
|
|
1346
1360
|
"""
|
|
1347
1361
|
|
|
1348
1362
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1349
1363
|
"""
|
|
1350
1364
|
|
|
1351
1365
|
:return: The class or default when not found.
|
|
1352
|
-
:rtype: typing.Any
|
|
1353
1366
|
"""
|
|
1354
1367
|
|
|
1355
|
-
def draw(self,
|
|
1368
|
+
def draw(self, context) -> None:
|
|
1356
1369
|
"""
|
|
1357
1370
|
|
|
1358
|
-
:param
|
|
1371
|
+
:param context:
|
|
1359
1372
|
"""
|
|
1360
1373
|
|
|
1361
|
-
class
|
|
1362
|
-
|
|
1374
|
+
class NODE_MT_gn_volume_read_base(bl_ui.node_add_menu.NodeMenu):
|
|
1375
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1376
|
+
|
|
1363
1377
|
bl_label: typing.Any
|
|
1364
1378
|
bl_rna: typing.Any
|
|
1365
1379
|
id_data: typing.Any
|
|
1380
|
+
menu_path: typing.Any
|
|
1366
1381
|
|
|
1367
1382
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1368
1383
|
"""
|
|
1369
1384
|
|
|
1370
1385
|
:return: The RNA type or default when not found.
|
|
1371
|
-
:rtype: bpy.types.Struct
|
|
1372
1386
|
"""
|
|
1373
1387
|
|
|
1374
1388
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1375
1389
|
"""
|
|
1376
1390
|
|
|
1377
1391
|
:return: The class or default when not found.
|
|
1378
|
-
:rtype: typing.Any
|
|
1379
1392
|
"""
|
|
1380
1393
|
|
|
1381
|
-
def draw(self,
|
|
1394
|
+
def draw(self, context) -> None:
|
|
1382
1395
|
"""
|
|
1383
1396
|
|
|
1384
|
-
:param
|
|
1397
|
+
:param context:
|
|
1398
|
+
"""
|
|
1399
|
+
|
|
1400
|
+
class NODE_MT_gn_volume_sample_base(bl_ui.node_add_menu.NodeMenu):
|
|
1401
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1402
|
+
|
|
1403
|
+
bl_label: typing.Any
|
|
1404
|
+
bl_rna: typing.Any
|
|
1405
|
+
id_data: typing.Any
|
|
1406
|
+
menu_path: typing.Any
|
|
1407
|
+
|
|
1408
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1409
|
+
"""
|
|
1410
|
+
|
|
1411
|
+
:return: The RNA type or default when not found.
|
|
1385
1412
|
"""
|
|
1386
1413
|
|
|
1387
|
-
|
|
1388
|
-
|
|
1414
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1415
|
+
"""
|
|
1416
|
+
|
|
1417
|
+
:return: The class or default when not found.
|
|
1418
|
+
"""
|
|
1419
|
+
|
|
1420
|
+
def draw(self, context) -> None:
|
|
1421
|
+
"""
|
|
1422
|
+
|
|
1423
|
+
:param context:
|
|
1424
|
+
"""
|
|
1425
|
+
|
|
1426
|
+
class NODE_MT_gn_volume_write_base(bl_ui.node_add_menu.NodeMenu):
|
|
1427
|
+
"""A base-class defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
1428
|
+
|
|
1389
1429
|
bl_label: typing.Any
|
|
1390
1430
|
bl_rna: typing.Any
|
|
1391
1431
|
id_data: typing.Any
|
|
1432
|
+
menu_path: typing.Any
|
|
1392
1433
|
|
|
1393
1434
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1394
1435
|
"""
|
|
1395
1436
|
|
|
1396
1437
|
:return: The RNA type or default when not found.
|
|
1397
|
-
:rtype: bpy.types.Struct
|
|
1398
1438
|
"""
|
|
1399
1439
|
|
|
1400
1440
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1401
1441
|
"""
|
|
1402
1442
|
|
|
1403
1443
|
:return: The class or default when not found.
|
|
1404
|
-
:rtype: typing.Any
|
|
1405
1444
|
"""
|
|
1406
1445
|
|
|
1407
1446
|
def draw(self, context) -> None:
|