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,19 +2,12 @@ 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 bl_ui.properties_grease_pencil_common
|
|
6
7
|
import bl_ui.properties_paint_common
|
|
7
8
|
import bl_ui.utils
|
|
8
9
|
import bpy.types
|
|
9
10
|
|
|
10
|
-
class GreasePencilPaintPanel:
|
|
11
|
-
bl_category: typing.Any
|
|
12
|
-
bl_context: typing.Any
|
|
13
|
-
|
|
14
|
-
class GreasePencilSculptPanel:
|
|
15
|
-
bl_category: typing.Any
|
|
16
|
-
bl_context: typing.Any
|
|
17
|
-
|
|
18
11
|
class GreasePencilV3PaintPanel:
|
|
19
12
|
bl_category: typing.Any
|
|
20
13
|
bl_context: typing.Any
|
|
@@ -46,7 +39,7 @@ class SelectPaintSlotHelper:
|
|
|
46
39
|
:param context:
|
|
47
40
|
"""
|
|
48
41
|
|
|
49
|
-
class TEXTURE_UL_texpaintslots(
|
|
42
|
+
class TEXTURE_UL_texpaintslots(_bpy_types.UIList):
|
|
50
43
|
bl_rna: typing.Any
|
|
51
44
|
id_data: typing.Any
|
|
52
45
|
|
|
@@ -54,14 +47,12 @@ class TEXTURE_UL_texpaintslots(bpy.types.UIList):
|
|
|
54
47
|
"""
|
|
55
48
|
|
|
56
49
|
:return: The RNA type or default when not found.
|
|
57
|
-
:rtype: bpy.types.Struct
|
|
58
50
|
"""
|
|
59
51
|
|
|
60
52
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
61
53
|
"""
|
|
62
54
|
|
|
63
55
|
:return: The class or default when not found.
|
|
64
|
-
:rtype: typing.Any
|
|
65
56
|
"""
|
|
66
57
|
|
|
67
58
|
def draw_item(
|
|
@@ -87,7 +78,7 @@ class TEXTURE_UL_texpaintslots(bpy.types.UIList):
|
|
|
87
78
|
:param _index:
|
|
88
79
|
"""
|
|
89
80
|
|
|
90
|
-
class VIEW3D_MT_brush_context_menu(
|
|
81
|
+
class VIEW3D_MT_brush_context_menu(_bpy_types.Menu):
|
|
91
82
|
bl_label: typing.Any
|
|
92
83
|
bl_rna: typing.Any
|
|
93
84
|
id_data: typing.Any
|
|
@@ -96,14 +87,12 @@ class VIEW3D_MT_brush_context_menu(bpy.types.Menu):
|
|
|
96
87
|
"""
|
|
97
88
|
|
|
98
89
|
:return: The RNA type or default when not found.
|
|
99
|
-
:rtype: bpy.types.Struct
|
|
100
90
|
"""
|
|
101
91
|
|
|
102
92
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
103
93
|
"""
|
|
104
94
|
|
|
105
95
|
:return: The class or default when not found.
|
|
106
|
-
:rtype: typing.Any
|
|
107
96
|
"""
|
|
108
97
|
|
|
109
98
|
def draw(self, context) -> None:
|
|
@@ -112,7 +101,7 @@ class VIEW3D_MT_brush_context_menu(bpy.types.Menu):
|
|
|
112
101
|
:param context:
|
|
113
102
|
"""
|
|
114
103
|
|
|
115
|
-
class
|
|
104
|
+
class VIEW3D_MT_tools_projectpaint_stencil(_bpy_types.Menu):
|
|
116
105
|
bl_label: typing.Any
|
|
117
106
|
bl_rna: typing.Any
|
|
118
107
|
id_data: typing.Any
|
|
@@ -121,14 +110,12 @@ class VIEW3D_MT_brush_gpencil_context_menu(bpy.types.Menu):
|
|
|
121
110
|
"""
|
|
122
111
|
|
|
123
112
|
:return: The RNA type or default when not found.
|
|
124
|
-
:rtype: bpy.types.Struct
|
|
125
113
|
"""
|
|
126
114
|
|
|
127
115
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
128
116
|
"""
|
|
129
117
|
|
|
130
118
|
:return: The class or default when not found.
|
|
131
|
-
:rtype: typing.Any
|
|
132
119
|
"""
|
|
133
120
|
|
|
134
121
|
def draw(self, context) -> None:
|
|
@@ -137,7 +124,7 @@ class VIEW3D_MT_brush_gpencil_context_menu(bpy.types.Menu):
|
|
|
137
124
|
:param context:
|
|
138
125
|
"""
|
|
139
126
|
|
|
140
|
-
class
|
|
127
|
+
class VIEW3D_MT_tools_projectpaint_uvlayer(_bpy_types.Menu):
|
|
141
128
|
bl_label: typing.Any
|
|
142
129
|
bl_rna: typing.Any
|
|
143
130
|
id_data: typing.Any
|
|
@@ -146,39 +133,12 @@ class VIEW3D_MT_tools_projectpaint_stencil(bpy.types.Menu):
|
|
|
146
133
|
"""
|
|
147
134
|
|
|
148
135
|
:return: The RNA type or default when not found.
|
|
149
|
-
:rtype: bpy.types.Struct
|
|
150
136
|
"""
|
|
151
137
|
|
|
152
138
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
153
139
|
"""
|
|
154
140
|
|
|
155
141
|
:return: The class or default when not found.
|
|
156
|
-
:rtype: typing.Any
|
|
157
|
-
"""
|
|
158
|
-
|
|
159
|
-
def draw(self, context) -> None:
|
|
160
|
-
"""
|
|
161
|
-
|
|
162
|
-
:param context:
|
|
163
|
-
"""
|
|
164
|
-
|
|
165
|
-
class VIEW3D_MT_tools_projectpaint_uvlayer(bpy.types.Menu):
|
|
166
|
-
bl_label: typing.Any
|
|
167
|
-
bl_rna: typing.Any
|
|
168
|
-
id_data: typing.Any
|
|
169
|
-
|
|
170
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
171
|
-
"""
|
|
172
|
-
|
|
173
|
-
:return: The RNA type or default when not found.
|
|
174
|
-
:rtype: bpy.types.Struct
|
|
175
|
-
"""
|
|
176
|
-
|
|
177
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
178
|
-
"""
|
|
179
|
-
|
|
180
|
-
:return: The class or default when not found.
|
|
181
|
-
:rtype: typing.Any
|
|
182
142
|
"""
|
|
183
143
|
|
|
184
144
|
def draw(self, context) -> None:
|
|
@@ -192,7 +152,7 @@ class View3DPaintPanel(View3DPanel, bl_ui.properties_paint_common.UnifiedPaintPa
|
|
|
192
152
|
bl_region_type: typing.Any
|
|
193
153
|
bl_space_type: typing.Any
|
|
194
154
|
|
|
195
|
-
class VIEW3D_PT_curves_sculpt_symmetry_for_topbar(
|
|
155
|
+
class VIEW3D_PT_curves_sculpt_symmetry_for_topbar(_bpy_types.Panel):
|
|
196
156
|
bl_label: typing.Any
|
|
197
157
|
bl_region_type: typing.Any
|
|
198
158
|
bl_rna: typing.Any
|
|
@@ -203,17 +163,15 @@ class VIEW3D_PT_curves_sculpt_symmetry_for_topbar(bpy.types.Panel):
|
|
|
203
163
|
"""
|
|
204
164
|
|
|
205
165
|
:return: The RNA type or default when not found.
|
|
206
|
-
:rtype: bpy.types.Struct
|
|
207
166
|
"""
|
|
208
167
|
|
|
209
168
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
210
169
|
"""
|
|
211
170
|
|
|
212
171
|
:return: The class or default when not found.
|
|
213
|
-
:rtype: typing.Any
|
|
214
172
|
"""
|
|
215
173
|
|
|
216
|
-
class VIEW3D_PT_gpencil_brush_presets(
|
|
174
|
+
class VIEW3D_PT_gpencil_brush_presets(_bpy_types.Panel, bl_ui.utils.PresetPanel):
|
|
217
175
|
"""Brush settings"""
|
|
218
176
|
|
|
219
177
|
bl_label: typing.Any
|
|
@@ -229,17 +187,15 @@ class VIEW3D_PT_gpencil_brush_presets(bpy.types.Panel, bl_ui.utils.PresetPanel):
|
|
|
229
187
|
"""
|
|
230
188
|
|
|
231
189
|
:return: The RNA type or default when not found.
|
|
232
|
-
:rtype: bpy.types.Struct
|
|
233
190
|
"""
|
|
234
191
|
|
|
235
192
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
236
193
|
"""
|
|
237
194
|
|
|
238
195
|
:return: The class or default when not found.
|
|
239
|
-
:rtype: typing.Any
|
|
240
196
|
"""
|
|
241
197
|
|
|
242
|
-
class VIEW3D_PT_mask(
|
|
198
|
+
class VIEW3D_PT_mask(_bpy_types.Panel):
|
|
243
199
|
bl_label: typing.Any
|
|
244
200
|
bl_options: typing.Any
|
|
245
201
|
bl_region_type: typing.Any
|
|
@@ -251,14 +207,12 @@ class VIEW3D_PT_mask(bpy.types.Panel):
|
|
|
251
207
|
"""
|
|
252
208
|
|
|
253
209
|
:return: The RNA type or default when not found.
|
|
254
|
-
:rtype: bpy.types.Struct
|
|
255
210
|
"""
|
|
256
211
|
|
|
257
212
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
258
213
|
"""
|
|
259
214
|
|
|
260
215
|
:return: The class or default when not found.
|
|
261
|
-
:rtype: typing.Any
|
|
262
216
|
"""
|
|
263
217
|
|
|
264
218
|
def draw(self, context) -> None:
|
|
@@ -267,7 +221,7 @@ class VIEW3D_PT_mask(bpy.types.Panel):
|
|
|
267
221
|
:param context:
|
|
268
222
|
"""
|
|
269
223
|
|
|
270
|
-
class VIEW3D_PT_sculpt_symmetry_for_topbar(
|
|
224
|
+
class VIEW3D_PT_sculpt_symmetry_for_topbar(_bpy_types.Panel):
|
|
271
225
|
bl_label: typing.Any
|
|
272
226
|
bl_region_type: typing.Any
|
|
273
227
|
bl_rna: typing.Any
|
|
@@ -279,17 +233,15 @@ class VIEW3D_PT_sculpt_symmetry_for_topbar(bpy.types.Panel):
|
|
|
279
233
|
"""
|
|
280
234
|
|
|
281
235
|
:return: The RNA type or default when not found.
|
|
282
|
-
:rtype: bpy.types.Struct
|
|
283
236
|
"""
|
|
284
237
|
|
|
285
238
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
286
239
|
"""
|
|
287
240
|
|
|
288
241
|
:return: The class or default when not found.
|
|
289
|
-
:rtype: typing.Any
|
|
290
242
|
"""
|
|
291
243
|
|
|
292
|
-
class VIEW3D_PT_slots_color_attributes(
|
|
244
|
+
class VIEW3D_PT_slots_color_attributes(_bpy_types.Panel):
|
|
293
245
|
bl_label: typing.Any
|
|
294
246
|
bl_region_type: typing.Any
|
|
295
247
|
bl_rna: typing.Any
|
|
@@ -301,14 +253,12 @@ class VIEW3D_PT_slots_color_attributes(bpy.types.Panel):
|
|
|
301
253
|
"""
|
|
302
254
|
|
|
303
255
|
:return: The RNA type or default when not found.
|
|
304
|
-
:rtype: bpy.types.Struct
|
|
305
256
|
"""
|
|
306
257
|
|
|
307
258
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
308
259
|
"""
|
|
309
260
|
|
|
310
261
|
:return: The class or default when not found.
|
|
311
|
-
:rtype: typing.Any
|
|
312
262
|
"""
|
|
313
263
|
|
|
314
264
|
def draw(self, context) -> None:
|
|
@@ -323,7 +273,9 @@ class VIEW3D_PT_slots_color_attributes(bpy.types.Panel):
|
|
|
323
273
|
:param context:
|
|
324
274
|
"""
|
|
325
275
|
|
|
326
|
-
class VIEW3D_PT_slots_paint_canvas(
|
|
276
|
+
class VIEW3D_PT_slots_paint_canvas(
|
|
277
|
+
View3DPanel, SelectPaintSlotHelper, _bpy_types.Panel
|
|
278
|
+
):
|
|
327
279
|
bl_label: typing.Any
|
|
328
280
|
bl_region_type: typing.Any
|
|
329
281
|
bl_rna: typing.Any
|
|
@@ -336,14 +288,12 @@ class VIEW3D_PT_slots_paint_canvas(View3DPanel, SelectPaintSlotHelper, bpy.types
|
|
|
336
288
|
"""
|
|
337
289
|
|
|
338
290
|
:return: The RNA type or default when not found.
|
|
339
|
-
:rtype: bpy.types.Struct
|
|
340
291
|
"""
|
|
341
292
|
|
|
342
293
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
343
294
|
"""
|
|
344
295
|
|
|
345
296
|
:return: The class or default when not found.
|
|
346
|
-
:rtype: typing.Any
|
|
347
297
|
"""
|
|
348
298
|
|
|
349
299
|
def draw_header(self, context) -> None:
|
|
@@ -371,7 +321,9 @@ class VIEW3D_PT_slots_paint_canvas(View3DPanel, SelectPaintSlotHelper, bpy.types
|
|
|
371
321
|
:param context:
|
|
372
322
|
"""
|
|
373
323
|
|
|
374
|
-
class VIEW3D_PT_slots_projectpaint(
|
|
324
|
+
class VIEW3D_PT_slots_projectpaint(
|
|
325
|
+
View3DPanel, SelectPaintSlotHelper, _bpy_types.Panel
|
|
326
|
+
):
|
|
375
327
|
bl_label: typing.Any
|
|
376
328
|
bl_region_type: typing.Any
|
|
377
329
|
bl_rna: typing.Any
|
|
@@ -384,14 +336,12 @@ class VIEW3D_PT_slots_projectpaint(View3DPanel, SelectPaintSlotHelper, bpy.types
|
|
|
384
336
|
"""
|
|
385
337
|
|
|
386
338
|
:return: The RNA type or default when not found.
|
|
387
|
-
:rtype: bpy.types.Struct
|
|
388
339
|
"""
|
|
389
340
|
|
|
390
341
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
391
342
|
"""
|
|
392
343
|
|
|
393
344
|
:return: The class or default when not found.
|
|
394
|
-
:rtype: typing.Any
|
|
395
345
|
"""
|
|
396
346
|
|
|
397
347
|
def draw_header(self, context) -> None:
|
|
@@ -420,7 +370,7 @@ class VIEW3D_PT_slots_projectpaint(View3DPanel, SelectPaintSlotHelper, bpy.types
|
|
|
420
370
|
:param context:
|
|
421
371
|
"""
|
|
422
372
|
|
|
423
|
-
class VIEW3D_PT_slots_vertex_groups(
|
|
373
|
+
class VIEW3D_PT_slots_vertex_groups(_bpy_types.Panel):
|
|
424
374
|
bl_label: typing.Any
|
|
425
375
|
bl_region_type: typing.Any
|
|
426
376
|
bl_rna: typing.Any
|
|
@@ -432,14 +382,12 @@ class VIEW3D_PT_slots_vertex_groups(bpy.types.Panel):
|
|
|
432
382
|
"""
|
|
433
383
|
|
|
434
384
|
:return: The RNA type or default when not found.
|
|
435
|
-
:rtype: bpy.types.Struct
|
|
436
385
|
"""
|
|
437
386
|
|
|
438
387
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
439
388
|
"""
|
|
440
389
|
|
|
441
390
|
:return: The class or default when not found.
|
|
442
|
-
:rtype: typing.Any
|
|
443
391
|
"""
|
|
444
392
|
|
|
445
393
|
def draw(self, context) -> None:
|
|
@@ -454,7 +402,7 @@ class VIEW3D_PT_slots_vertex_groups(bpy.types.Panel):
|
|
|
454
402
|
:param context:
|
|
455
403
|
"""
|
|
456
404
|
|
|
457
|
-
class VIEW3D_PT_stencil_projectpaint(
|
|
405
|
+
class VIEW3D_PT_stencil_projectpaint(_bpy_types.Panel):
|
|
458
406
|
bl_label: typing.Any
|
|
459
407
|
bl_options: typing.Any
|
|
460
408
|
bl_parent_id: typing.Any
|
|
@@ -468,14 +416,12 @@ class VIEW3D_PT_stencil_projectpaint(bpy.types.Panel):
|
|
|
468
416
|
"""
|
|
469
417
|
|
|
470
418
|
:return: The RNA type or default when not found.
|
|
471
|
-
:rtype: bpy.types.Struct
|
|
472
419
|
"""
|
|
473
420
|
|
|
474
421
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
475
422
|
"""
|
|
476
423
|
|
|
477
424
|
:return: The class or default when not found.
|
|
478
|
-
:rtype: typing.Any
|
|
479
425
|
"""
|
|
480
426
|
|
|
481
427
|
def draw(self, context) -> None:
|
|
@@ -497,7 +443,7 @@ class VIEW3D_PT_stencil_projectpaint(bpy.types.Panel):
|
|
|
497
443
|
:param context:
|
|
498
444
|
"""
|
|
499
445
|
|
|
500
|
-
class VIEW3D_PT_tools_armatureedit_options(View3DPanel,
|
|
446
|
+
class VIEW3D_PT_tools_armatureedit_options(View3DPanel, _bpy_types.Panel):
|
|
501
447
|
bl_category: typing.Any
|
|
502
448
|
bl_context: typing.Any
|
|
503
449
|
bl_label: typing.Any
|
|
@@ -510,14 +456,12 @@ class VIEW3D_PT_tools_armatureedit_options(View3DPanel, bpy.types.Panel):
|
|
|
510
456
|
"""
|
|
511
457
|
|
|
512
458
|
:return: The RNA type or default when not found.
|
|
513
|
-
:rtype: bpy.types.Struct
|
|
514
459
|
"""
|
|
515
460
|
|
|
516
461
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
517
462
|
"""
|
|
518
463
|
|
|
519
464
|
:return: The class or default when not found.
|
|
520
|
-
:rtype: typing.Any
|
|
521
465
|
"""
|
|
522
466
|
|
|
523
467
|
def draw(self, context) -> None:
|
|
@@ -527,7 +471,7 @@ class VIEW3D_PT_tools_armatureedit_options(View3DPanel, bpy.types.Panel):
|
|
|
527
471
|
"""
|
|
528
472
|
|
|
529
473
|
class VIEW3D_PT_tools_brush_clone(
|
|
530
|
-
View3DPaintPanel,
|
|
474
|
+
View3DPaintPanel, _bpy_types.Panel, bl_ui.properties_paint_common.ClonePanel
|
|
531
475
|
):
|
|
532
476
|
bl_category: typing.Any
|
|
533
477
|
bl_context: typing.Any
|
|
@@ -543,18 +487,16 @@ class VIEW3D_PT_tools_brush_clone(
|
|
|
543
487
|
"""
|
|
544
488
|
|
|
545
489
|
:return: The RNA type or default when not found.
|
|
546
|
-
:rtype: bpy.types.Struct
|
|
547
490
|
"""
|
|
548
491
|
|
|
549
492
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
550
493
|
"""
|
|
551
494
|
|
|
552
495
|
:return: The class or default when not found.
|
|
553
|
-
:rtype: typing.Any
|
|
554
496
|
"""
|
|
555
497
|
|
|
556
498
|
class VIEW3D_PT_tools_brush_display(
|
|
557
|
-
View3DPaintBrushPanel,
|
|
499
|
+
View3DPaintBrushPanel, _bpy_types.Panel, bl_ui.properties_paint_common.DisplayPanel
|
|
558
500
|
):
|
|
559
501
|
bl_category: typing.Any
|
|
560
502
|
bl_context: typing.Any
|
|
@@ -571,18 +513,16 @@ class VIEW3D_PT_tools_brush_display(
|
|
|
571
513
|
"""
|
|
572
514
|
|
|
573
515
|
:return: The RNA type or default when not found.
|
|
574
|
-
:rtype: bpy.types.Struct
|
|
575
516
|
"""
|
|
576
517
|
|
|
577
518
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
578
519
|
"""
|
|
579
520
|
|
|
580
521
|
:return: The class or default when not found.
|
|
581
|
-
:rtype: typing.Any
|
|
582
522
|
"""
|
|
583
523
|
|
|
584
524
|
class VIEW3D_PT_tools_brush_falloff(
|
|
585
|
-
View3DPaintPanel,
|
|
525
|
+
View3DPaintPanel, _bpy_types.Panel, bl_ui.properties_paint_common.FalloffPanel
|
|
586
526
|
):
|
|
587
527
|
bl_category: typing.Any
|
|
588
528
|
bl_context: typing.Any
|
|
@@ -598,17 +538,15 @@ class VIEW3D_PT_tools_brush_falloff(
|
|
|
598
538
|
"""
|
|
599
539
|
|
|
600
540
|
:return: The RNA type or default when not found.
|
|
601
|
-
:rtype: bpy.types.Struct
|
|
602
541
|
"""
|
|
603
542
|
|
|
604
543
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
605
544
|
"""
|
|
606
545
|
|
|
607
546
|
:return: The class or default when not found.
|
|
608
|
-
:rtype: typing.Any
|
|
609
547
|
"""
|
|
610
548
|
|
|
611
|
-
class VIEW3D_PT_tools_brush_falloff_frontface(View3DPaintPanel,
|
|
549
|
+
class VIEW3D_PT_tools_brush_falloff_frontface(View3DPaintPanel, _bpy_types.Panel):
|
|
612
550
|
bl_category: typing.Any
|
|
613
551
|
bl_context: typing.Any
|
|
614
552
|
bl_label: typing.Any
|
|
@@ -623,14 +561,12 @@ class VIEW3D_PT_tools_brush_falloff_frontface(View3DPaintPanel, bpy.types.Panel)
|
|
|
623
561
|
"""
|
|
624
562
|
|
|
625
563
|
:return: The RNA type or default when not found.
|
|
626
|
-
:rtype: bpy.types.Struct
|
|
627
564
|
"""
|
|
628
565
|
|
|
629
566
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
630
567
|
"""
|
|
631
568
|
|
|
632
569
|
:return: The class or default when not found.
|
|
633
|
-
:rtype: typing.Any
|
|
634
570
|
"""
|
|
635
571
|
|
|
636
572
|
def draw(self, context) -> None:
|
|
@@ -652,7 +588,7 @@ class VIEW3D_PT_tools_brush_falloff_frontface(View3DPaintPanel, bpy.types.Panel)
|
|
|
652
588
|
:param context:
|
|
653
589
|
"""
|
|
654
590
|
|
|
655
|
-
class VIEW3D_PT_tools_brush_falloff_normal(View3DPaintPanel,
|
|
591
|
+
class VIEW3D_PT_tools_brush_falloff_normal(View3DPaintPanel, _bpy_types.Panel):
|
|
656
592
|
bl_category: typing.Any
|
|
657
593
|
bl_context: typing.Any
|
|
658
594
|
bl_label: typing.Any
|
|
@@ -667,14 +603,12 @@ class VIEW3D_PT_tools_brush_falloff_normal(View3DPaintPanel, bpy.types.Panel):
|
|
|
667
603
|
"""
|
|
668
604
|
|
|
669
605
|
:return: The RNA type or default when not found.
|
|
670
|
-
:rtype: bpy.types.Struct
|
|
671
606
|
"""
|
|
672
607
|
|
|
673
608
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
674
609
|
"""
|
|
675
610
|
|
|
676
611
|
:return: The class or default when not found.
|
|
677
|
-
:rtype: typing.Any
|
|
678
612
|
"""
|
|
679
613
|
|
|
680
614
|
def draw(self, context) -> None:
|
|
@@ -698,7 +632,7 @@ class VIEW3D_PT_tools_brush_falloff_normal(View3DPaintPanel, bpy.types.Panel):
|
|
|
698
632
|
|
|
699
633
|
class VIEW3D_PT_tools_brush_select(
|
|
700
634
|
View3DPaintBrushPanel,
|
|
701
|
-
|
|
635
|
+
_bpy_types.Panel,
|
|
702
636
|
bl_ui.properties_paint_common.BrushSelectPanel,
|
|
703
637
|
):
|
|
704
638
|
bl_category: typing.Any
|
|
@@ -713,18 +647,16 @@ class VIEW3D_PT_tools_brush_select(
|
|
|
713
647
|
"""
|
|
714
648
|
|
|
715
649
|
:return: The RNA type or default when not found.
|
|
716
|
-
:rtype: bpy.types.Struct
|
|
717
650
|
"""
|
|
718
651
|
|
|
719
652
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
720
653
|
"""
|
|
721
654
|
|
|
722
655
|
:return: The class or default when not found.
|
|
723
|
-
:rtype: typing.Any
|
|
724
656
|
"""
|
|
725
657
|
|
|
726
658
|
class VIEW3D_PT_tools_brush_stroke(
|
|
727
|
-
View3DPaintPanel,
|
|
659
|
+
View3DPaintPanel, _bpy_types.Panel, bl_ui.properties_paint_common.StrokePanel
|
|
728
660
|
):
|
|
729
661
|
bl_category: typing.Any
|
|
730
662
|
bl_context: typing.Any
|
|
@@ -741,18 +673,16 @@ class VIEW3D_PT_tools_brush_stroke(
|
|
|
741
673
|
"""
|
|
742
674
|
|
|
743
675
|
:return: The RNA type or default when not found.
|
|
744
|
-
:rtype: bpy.types.Struct
|
|
745
676
|
"""
|
|
746
677
|
|
|
747
678
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
748
679
|
"""
|
|
749
680
|
|
|
750
681
|
:return: The class or default when not found.
|
|
751
|
-
:rtype: typing.Any
|
|
752
682
|
"""
|
|
753
683
|
|
|
754
684
|
class VIEW3D_PT_tools_brush_stroke_smooth_stroke(
|
|
755
|
-
View3DPaintPanel,
|
|
685
|
+
View3DPaintPanel, _bpy_types.Panel, bl_ui.properties_paint_common.SmoothStrokePanel
|
|
756
686
|
):
|
|
757
687
|
bl_category: typing.Any
|
|
758
688
|
bl_context: typing.Any
|
|
@@ -768,18 +698,16 @@ class VIEW3D_PT_tools_brush_stroke_smooth_stroke(
|
|
|
768
698
|
"""
|
|
769
699
|
|
|
770
700
|
:return: The RNA type or default when not found.
|
|
771
|
-
:rtype: bpy.types.Struct
|
|
772
701
|
"""
|
|
773
702
|
|
|
774
703
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
775
704
|
"""
|
|
776
705
|
|
|
777
706
|
:return: The class or default when not found.
|
|
778
|
-
:rtype: typing.Any
|
|
779
707
|
"""
|
|
780
708
|
|
|
781
709
|
class VIEW3D_PT_tools_brush_swatches(
|
|
782
|
-
View3DPaintPanel,
|
|
710
|
+
View3DPaintPanel, _bpy_types.Panel, bl_ui.properties_paint_common.ColorPalettePanel
|
|
783
711
|
):
|
|
784
712
|
bl_category: typing.Any
|
|
785
713
|
bl_context: typing.Any
|
|
@@ -791,367 +719,22 @@ class VIEW3D_PT_tools_brush_swatches(
|
|
|
791
719
|
bl_space_type: typing.Any
|
|
792
720
|
id_data: typing.Any
|
|
793
721
|
|
|
794
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
795
|
-
"""
|
|
796
|
-
|
|
797
|
-
:return: The RNA type or default when not found.
|
|
798
|
-
:rtype: bpy.types.Struct
|
|
799
|
-
"""
|
|
800
|
-
|
|
801
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
802
|
-
"""
|
|
803
|
-
|
|
804
|
-
:return: The class or default when not found.
|
|
805
|
-
:rtype: typing.Any
|
|
806
|
-
"""
|
|
807
|
-
|
|
808
|
-
class VIEW3D_PT_tools_grease_pencil_brush_advanced(View3DPanel, bpy.types.Panel):
|
|
809
|
-
bl_category: typing.Any
|
|
810
|
-
bl_context: typing.Any
|
|
811
|
-
bl_label: typing.Any
|
|
812
|
-
bl_options: typing.Any
|
|
813
|
-
bl_parent_id: typing.Any
|
|
814
|
-
bl_region_type: typing.Any
|
|
815
|
-
bl_rna: typing.Any
|
|
816
|
-
bl_space_type: typing.Any
|
|
817
|
-
bl_ui_units_x: typing.Any
|
|
818
|
-
id_data: typing.Any
|
|
819
|
-
|
|
820
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
821
|
-
"""
|
|
822
|
-
|
|
823
|
-
:return: The RNA type or default when not found.
|
|
824
|
-
:rtype: bpy.types.Struct
|
|
825
|
-
"""
|
|
826
|
-
|
|
827
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
828
|
-
"""
|
|
829
|
-
|
|
830
|
-
:return: The class or default when not found.
|
|
831
|
-
:rtype: typing.Any
|
|
832
|
-
"""
|
|
833
|
-
|
|
834
|
-
def draw(self, context) -> None:
|
|
835
|
-
"""
|
|
836
|
-
|
|
837
|
-
:param context:
|
|
838
|
-
"""
|
|
839
|
-
|
|
840
|
-
@classmethod
|
|
841
|
-
def poll(cls, context) -> None:
|
|
842
|
-
"""
|
|
843
|
-
|
|
844
|
-
:param context:
|
|
845
|
-
"""
|
|
846
|
-
|
|
847
|
-
class VIEW3D_PT_tools_grease_pencil_brush_eraser(View3DPanel, bpy.types.Panel):
|
|
848
|
-
bl_category: typing.Any
|
|
849
|
-
bl_context: typing.Any
|
|
850
|
-
bl_label: typing.Any
|
|
851
|
-
bl_options: typing.Any
|
|
852
|
-
bl_region_type: typing.Any
|
|
853
|
-
bl_rna: typing.Any
|
|
854
|
-
bl_space_type: typing.Any
|
|
855
|
-
id_data: typing.Any
|
|
856
|
-
|
|
857
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
858
|
-
"""
|
|
859
|
-
|
|
860
|
-
:return: The RNA type or default when not found.
|
|
861
|
-
:rtype: bpy.types.Struct
|
|
862
|
-
"""
|
|
863
|
-
|
|
864
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
865
|
-
"""
|
|
866
|
-
|
|
867
|
-
:return: The class or default when not found.
|
|
868
|
-
:rtype: typing.Any
|
|
869
|
-
"""
|
|
870
|
-
|
|
871
|
-
def draw(self, context) -> None:
|
|
872
|
-
"""
|
|
873
|
-
|
|
874
|
-
:param context:
|
|
875
|
-
"""
|
|
876
|
-
|
|
877
|
-
@classmethod
|
|
878
|
-
def poll(cls, context) -> None:
|
|
879
|
-
"""
|
|
880
|
-
|
|
881
|
-
:param context:
|
|
882
|
-
"""
|
|
883
|
-
|
|
884
|
-
class VIEW3D_PT_tools_grease_pencil_brush_gap_closure(View3DPanel, bpy.types.Panel):
|
|
885
|
-
bl_category: typing.Any
|
|
886
|
-
bl_context: typing.Any
|
|
887
|
-
bl_label: typing.Any
|
|
888
|
-
bl_parent_id: typing.Any
|
|
889
|
-
bl_region_type: typing.Any
|
|
890
|
-
bl_rna: typing.Any
|
|
891
|
-
bl_space_type: typing.Any
|
|
892
|
-
id_data: typing.Any
|
|
893
|
-
|
|
894
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
895
|
-
"""
|
|
896
|
-
|
|
897
|
-
:return: The RNA type or default when not found.
|
|
898
|
-
:rtype: bpy.types.Struct
|
|
899
|
-
"""
|
|
900
|
-
|
|
901
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
902
|
-
"""
|
|
903
|
-
|
|
904
|
-
:return: The class or default when not found.
|
|
905
|
-
:rtype: typing.Any
|
|
906
|
-
"""
|
|
907
|
-
|
|
908
|
-
def draw(self, context) -> None:
|
|
909
|
-
"""
|
|
910
|
-
|
|
911
|
-
:param context:
|
|
912
|
-
"""
|
|
913
|
-
|
|
914
|
-
@classmethod
|
|
915
|
-
def poll(cls, context) -> None:
|
|
916
|
-
"""
|
|
917
|
-
|
|
918
|
-
:param context:
|
|
919
|
-
"""
|
|
920
|
-
|
|
921
|
-
class VIEW3D_PT_tools_grease_pencil_brush_mix_palette(View3DPanel, bpy.types.Panel):
|
|
922
|
-
bl_category: typing.Any
|
|
923
|
-
bl_context: typing.Any
|
|
924
|
-
bl_label: typing.Any
|
|
925
|
-
bl_parent_id: typing.Any
|
|
926
|
-
bl_region_type: typing.Any
|
|
927
|
-
bl_rna: typing.Any
|
|
928
|
-
bl_space_type: typing.Any
|
|
929
|
-
id_data: typing.Any
|
|
930
|
-
|
|
931
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
932
|
-
"""
|
|
933
|
-
|
|
934
|
-
:return: The RNA type or default when not found.
|
|
935
|
-
:rtype: bpy.types.Struct
|
|
936
|
-
"""
|
|
937
|
-
|
|
938
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
939
|
-
"""
|
|
940
|
-
|
|
941
|
-
:return: The class or default when not found.
|
|
942
|
-
:rtype: typing.Any
|
|
943
|
-
"""
|
|
944
|
-
|
|
945
|
-
def draw(self, context) -> None:
|
|
946
|
-
"""
|
|
947
|
-
|
|
948
|
-
:param context:
|
|
949
|
-
"""
|
|
950
|
-
|
|
951
|
-
@classmethod
|
|
952
|
-
def poll(cls, context) -> None:
|
|
953
|
-
"""
|
|
954
|
-
|
|
955
|
-
:param context:
|
|
956
|
-
"""
|
|
957
|
-
|
|
958
|
-
class VIEW3D_PT_tools_grease_pencil_brush_mixcolor(View3DPanel, bpy.types.Panel):
|
|
959
|
-
bl_category: typing.Any
|
|
960
|
-
bl_context: typing.Any
|
|
961
|
-
bl_label: typing.Any
|
|
962
|
-
bl_region_type: typing.Any
|
|
963
|
-
bl_rna: typing.Any
|
|
964
|
-
bl_space_type: typing.Any
|
|
965
|
-
id_data: typing.Any
|
|
966
|
-
|
|
967
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
968
|
-
"""
|
|
969
|
-
|
|
970
|
-
:return: The RNA type or default when not found.
|
|
971
|
-
:rtype: bpy.types.Struct
|
|
972
|
-
"""
|
|
973
|
-
|
|
974
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
975
|
-
"""
|
|
976
|
-
|
|
977
|
-
:return: The class or default when not found.
|
|
978
|
-
:rtype: typing.Any
|
|
979
|
-
"""
|
|
980
|
-
|
|
981
|
-
def draw(self, context) -> None:
|
|
982
|
-
"""
|
|
983
|
-
|
|
984
|
-
:param context:
|
|
985
|
-
"""
|
|
986
|
-
|
|
987
|
-
@classmethod
|
|
988
|
-
def poll(cls, context) -> None:
|
|
989
|
-
"""
|
|
990
|
-
|
|
991
|
-
:param context:
|
|
992
|
-
"""
|
|
993
|
-
|
|
994
|
-
class VIEW3D_PT_tools_grease_pencil_brush_post_processing(View3DPanel, bpy.types.Panel):
|
|
995
|
-
bl_category: typing.Any
|
|
996
|
-
bl_context: typing.Any
|
|
997
|
-
bl_label: typing.Any
|
|
998
|
-
bl_options: typing.Any
|
|
999
|
-
bl_parent_id: typing.Any
|
|
1000
|
-
bl_region_type: typing.Any
|
|
1001
|
-
bl_rna: typing.Any
|
|
1002
|
-
bl_space_type: typing.Any
|
|
1003
|
-
id_data: typing.Any
|
|
1004
|
-
|
|
1005
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1006
|
-
"""
|
|
1007
|
-
|
|
1008
|
-
:return: The RNA type or default when not found.
|
|
1009
|
-
:rtype: bpy.types.Struct
|
|
1010
|
-
"""
|
|
1011
|
-
|
|
1012
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1013
|
-
"""
|
|
1014
|
-
|
|
1015
|
-
:return: The class or default when not found.
|
|
1016
|
-
:rtype: typing.Any
|
|
1017
|
-
"""
|
|
1018
|
-
|
|
1019
|
-
def draw(self, context) -> None:
|
|
1020
|
-
"""
|
|
1021
|
-
|
|
1022
|
-
:param context:
|
|
1023
|
-
"""
|
|
1024
|
-
|
|
1025
|
-
def draw_header(self, context) -> None:
|
|
1026
|
-
"""
|
|
1027
|
-
|
|
1028
|
-
:param context:
|
|
1029
|
-
"""
|
|
1030
|
-
|
|
1031
|
-
@classmethod
|
|
1032
|
-
def poll(cls, context) -> None:
|
|
1033
|
-
"""
|
|
1034
|
-
|
|
1035
|
-
:param context:
|
|
1036
|
-
"""
|
|
1037
|
-
|
|
1038
|
-
class VIEW3D_PT_tools_grease_pencil_brush_random(View3DPanel, bpy.types.Panel):
|
|
1039
|
-
bl_category: typing.Any
|
|
1040
|
-
bl_context: typing.Any
|
|
1041
|
-
bl_label: typing.Any
|
|
1042
|
-
bl_options: typing.Any
|
|
1043
|
-
bl_parent_id: typing.Any
|
|
1044
|
-
bl_region_type: typing.Any
|
|
1045
|
-
bl_rna: typing.Any
|
|
1046
|
-
bl_space_type: typing.Any
|
|
1047
|
-
id_data: typing.Any
|
|
1048
|
-
|
|
1049
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1050
|
-
"""
|
|
1051
|
-
|
|
1052
|
-
:return: The RNA type or default when not found.
|
|
1053
|
-
:rtype: bpy.types.Struct
|
|
1054
|
-
"""
|
|
1055
|
-
|
|
1056
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1057
|
-
"""
|
|
1058
|
-
|
|
1059
|
-
:return: The class or default when not found.
|
|
1060
|
-
:rtype: typing.Any
|
|
1061
|
-
"""
|
|
1062
|
-
|
|
1063
|
-
def draw(self, context) -> None:
|
|
1064
|
-
"""
|
|
1065
|
-
|
|
1066
|
-
:param context:
|
|
1067
|
-
"""
|
|
1068
|
-
|
|
1069
|
-
def draw_header(self, context) -> None:
|
|
1070
|
-
"""
|
|
1071
|
-
|
|
1072
|
-
:param context:
|
|
1073
|
-
"""
|
|
1074
|
-
|
|
1075
|
-
@classmethod
|
|
1076
|
-
def poll(cls, context) -> None:
|
|
1077
|
-
"""
|
|
1078
|
-
|
|
1079
|
-
:param context:
|
|
1080
|
-
"""
|
|
1081
|
-
|
|
1082
|
-
class VIEW3D_PT_tools_grease_pencil_brush_select(
|
|
1083
|
-
GreasePencilPaintPanel,
|
|
1084
|
-
bpy.types.Panel,
|
|
1085
|
-
View3DPanel,
|
|
1086
|
-
bl_ui.properties_paint_common.BrushSelectPanel,
|
|
1087
|
-
):
|
|
1088
|
-
bl_category: typing.Any
|
|
1089
|
-
bl_context: typing.Any
|
|
1090
|
-
bl_label: typing.Any
|
|
1091
|
-
bl_region_type: typing.Any
|
|
1092
|
-
bl_rna: typing.Any
|
|
1093
|
-
bl_space_type: typing.Any
|
|
1094
|
-
id_data: typing.Any
|
|
1095
|
-
|
|
1096
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1097
|
-
"""
|
|
1098
|
-
|
|
1099
|
-
:return: The RNA type or default when not found.
|
|
1100
|
-
:rtype: bpy.types.Struct
|
|
1101
|
-
"""
|
|
1102
|
-
|
|
1103
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1104
|
-
"""
|
|
1105
|
-
|
|
1106
|
-
:return: The class or default when not found.
|
|
1107
|
-
:rtype: typing.Any
|
|
1108
|
-
"""
|
|
1109
|
-
|
|
1110
|
-
class View3DPanel:
|
|
1111
|
-
bl_region_type: typing.Any
|
|
1112
|
-
bl_space_type: typing.Any
|
|
1113
|
-
|
|
1114
|
-
class VIEW3D_PT_tools_grease_pencil_brush_vertex_color(View3DPanel, bpy.types.Panel):
|
|
1115
|
-
bl_category: typing.Any
|
|
1116
|
-
bl_context: typing.Any
|
|
1117
|
-
bl_label: typing.Any
|
|
1118
|
-
bl_region_type: typing.Any
|
|
1119
|
-
bl_rna: typing.Any
|
|
1120
|
-
bl_space_type: typing.Any
|
|
1121
|
-
id_data: typing.Any
|
|
1122
|
-
|
|
1123
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1124
|
-
"""
|
|
1125
|
-
|
|
1126
|
-
:return: The RNA type or default when not found.
|
|
1127
|
-
:rtype: bpy.types.Struct
|
|
1128
|
-
"""
|
|
1129
|
-
|
|
1130
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1131
|
-
"""
|
|
1132
|
-
|
|
1133
|
-
:return: The class or default when not found.
|
|
1134
|
-
:rtype: typing.Any
|
|
1135
|
-
"""
|
|
1136
|
-
|
|
1137
|
-
def draw(self, context) -> None:
|
|
722
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1138
723
|
"""
|
|
1139
724
|
|
|
1140
|
-
:
|
|
725
|
+
:return: The RNA type or default when not found.
|
|
1141
726
|
"""
|
|
1142
727
|
|
|
1143
|
-
|
|
1144
|
-
def poll(cls, context) -> None:
|
|
728
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1145
729
|
"""
|
|
1146
730
|
|
|
1147
|
-
:
|
|
731
|
+
:return: The class or default when not found.
|
|
1148
732
|
"""
|
|
1149
733
|
|
|
1150
|
-
class
|
|
734
|
+
class VIEW3D_PT_tools_grease_pencil_brush_vertex_color(View3DPanel, _bpy_types.Panel):
|
|
1151
735
|
bl_category: typing.Any
|
|
1152
736
|
bl_context: typing.Any
|
|
1153
737
|
bl_label: typing.Any
|
|
1154
|
-
bl_parent_id: typing.Any
|
|
1155
738
|
bl_region_type: typing.Any
|
|
1156
739
|
bl_rna: typing.Any
|
|
1157
740
|
bl_space_type: typing.Any
|
|
@@ -1161,14 +744,12 @@ class VIEW3D_PT_tools_grease_pencil_brush_vertex_palette(View3DPanel, bpy.types.
|
|
|
1161
744
|
"""
|
|
1162
745
|
|
|
1163
746
|
:return: The RNA type or default when not found.
|
|
1164
|
-
:rtype: bpy.types.Struct
|
|
1165
747
|
"""
|
|
1166
748
|
|
|
1167
749
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1168
750
|
"""
|
|
1169
751
|
|
|
1170
752
|
:return: The class or default when not found.
|
|
1171
|
-
:rtype: typing.Any
|
|
1172
753
|
"""
|
|
1173
754
|
|
|
1174
755
|
def draw(self, context) -> None:
|
|
@@ -1184,15 +765,10 @@ class VIEW3D_PT_tools_grease_pencil_brush_vertex_palette(View3DPanel, bpy.types.
|
|
|
1184
765
|
:param context:
|
|
1185
766
|
"""
|
|
1186
767
|
|
|
1187
|
-
class
|
|
1188
|
-
View3DPanel,
|
|
1189
|
-
bl_ui.properties_grease_pencil_common.GreasePencilSculptAdvancedPanel,
|
|
1190
|
-
bpy.types.Panel,
|
|
1191
|
-
):
|
|
768
|
+
class VIEW3D_PT_tools_grease_pencil_brush_vertex_palette(View3DPanel, _bpy_types.Panel):
|
|
1192
769
|
bl_category: typing.Any
|
|
1193
770
|
bl_context: typing.Any
|
|
1194
771
|
bl_label: typing.Any
|
|
1195
|
-
bl_options: typing.Any
|
|
1196
772
|
bl_parent_id: typing.Any
|
|
1197
773
|
bl_region_type: typing.Any
|
|
1198
774
|
bl_rna: typing.Any
|
|
@@ -1203,14 +779,18 @@ class VIEW3D_PT_tools_grease_pencil_sculpt_brush_advanced(
|
|
|
1203
779
|
"""
|
|
1204
780
|
|
|
1205
781
|
:return: The RNA type or default when not found.
|
|
1206
|
-
:rtype: bpy.types.Struct
|
|
1207
782
|
"""
|
|
1208
783
|
|
|
1209
784
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1210
785
|
"""
|
|
1211
786
|
|
|
1212
787
|
:return: The class or default when not found.
|
|
1213
|
-
|
|
788
|
+
"""
|
|
789
|
+
|
|
790
|
+
def draw(self, context) -> None:
|
|
791
|
+
"""
|
|
792
|
+
|
|
793
|
+
:param context:
|
|
1214
794
|
"""
|
|
1215
795
|
|
|
1216
796
|
@classmethod
|
|
@@ -1220,10 +800,14 @@ class VIEW3D_PT_tools_grease_pencil_sculpt_brush_advanced(
|
|
|
1220
800
|
:param context:
|
|
1221
801
|
"""
|
|
1222
802
|
|
|
803
|
+
class View3DPanel:
|
|
804
|
+
bl_region_type: typing.Any
|
|
805
|
+
bl_space_type: typing.Any
|
|
806
|
+
|
|
1223
807
|
class VIEW3D_PT_tools_grease_pencil_sculpt_brush_popover(
|
|
1224
808
|
View3DPanel,
|
|
1225
809
|
bl_ui.properties_grease_pencil_common.GreasePencilSculptAdvancedPanel,
|
|
1226
|
-
|
|
810
|
+
_bpy_types.Panel,
|
|
1227
811
|
):
|
|
1228
812
|
bl_category: typing.Any
|
|
1229
813
|
bl_context: typing.Any
|
|
@@ -1237,14 +821,12 @@ class VIEW3D_PT_tools_grease_pencil_sculpt_brush_popover(
|
|
|
1237
821
|
"""
|
|
1238
822
|
|
|
1239
823
|
:return: The RNA type or default when not found.
|
|
1240
|
-
:rtype: bpy.types.Struct
|
|
1241
824
|
"""
|
|
1242
825
|
|
|
1243
826
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1244
827
|
"""
|
|
1245
828
|
|
|
1246
829
|
:return: The class or default when not found.
|
|
1247
|
-
:rtype: typing.Any
|
|
1248
830
|
"""
|
|
1249
831
|
|
|
1250
832
|
@classmethod
|
|
@@ -1254,35 +836,7 @@ class VIEW3D_PT_tools_grease_pencil_sculpt_brush_popover(
|
|
|
1254
836
|
:param context:
|
|
1255
837
|
"""
|
|
1256
838
|
|
|
1257
|
-
class
|
|
1258
|
-
GreasePencilSculptPanel,
|
|
1259
|
-
bpy.types.Panel,
|
|
1260
|
-
View3DPanel,
|
|
1261
|
-
bl_ui.properties_paint_common.BrushSelectPanel,
|
|
1262
|
-
):
|
|
1263
|
-
bl_category: typing.Any
|
|
1264
|
-
bl_context: typing.Any
|
|
1265
|
-
bl_label: typing.Any
|
|
1266
|
-
bl_region_type: typing.Any
|
|
1267
|
-
bl_rna: typing.Any
|
|
1268
|
-
bl_space_type: typing.Any
|
|
1269
|
-
id_data: typing.Any
|
|
1270
|
-
|
|
1271
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1272
|
-
"""
|
|
1273
|
-
|
|
1274
|
-
:return: The RNA type or default when not found.
|
|
1275
|
-
:rtype: bpy.types.Struct
|
|
1276
|
-
"""
|
|
1277
|
-
|
|
1278
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1279
|
-
"""
|
|
1280
|
-
|
|
1281
|
-
:return: The class or default when not found.
|
|
1282
|
-
:rtype: typing.Any
|
|
1283
|
-
"""
|
|
1284
|
-
|
|
1285
|
-
class VIEW3D_PT_tools_grease_pencil_v3_brush_advanced(View3DPanel, bpy.types.Panel):
|
|
839
|
+
class VIEW3D_PT_tools_grease_pencil_v3_brush_advanced(View3DPanel, _bpy_types.Panel):
|
|
1286
840
|
bl_category: typing.Any
|
|
1287
841
|
bl_context: typing.Any
|
|
1288
842
|
bl_label: typing.Any
|
|
@@ -1298,14 +852,12 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_advanced(View3DPanel, bpy.types.Pan
|
|
|
1298
852
|
"""
|
|
1299
853
|
|
|
1300
854
|
:return: The RNA type or default when not found.
|
|
1301
|
-
:rtype: bpy.types.Struct
|
|
1302
855
|
"""
|
|
1303
856
|
|
|
1304
857
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1305
858
|
"""
|
|
1306
859
|
|
|
1307
860
|
:return: The class or default when not found.
|
|
1308
|
-
:rtype: typing.Any
|
|
1309
861
|
"""
|
|
1310
862
|
|
|
1311
863
|
def draw(self, context) -> None:
|
|
@@ -1321,7 +873,7 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_advanced(View3DPanel, bpy.types.Pan
|
|
|
1321
873
|
:param context:
|
|
1322
874
|
"""
|
|
1323
875
|
|
|
1324
|
-
class VIEW3D_PT_tools_grease_pencil_v3_brush_eraser(View3DPanel,
|
|
876
|
+
class VIEW3D_PT_tools_grease_pencil_v3_brush_eraser(View3DPanel, _bpy_types.Panel):
|
|
1325
877
|
bl_category: typing.Any
|
|
1326
878
|
bl_context: typing.Any
|
|
1327
879
|
bl_label: typing.Any
|
|
@@ -1335,14 +887,12 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_eraser(View3DPanel, bpy.types.Panel
|
|
|
1335
887
|
"""
|
|
1336
888
|
|
|
1337
889
|
:return: The RNA type or default when not found.
|
|
1338
|
-
:rtype: bpy.types.Struct
|
|
1339
890
|
"""
|
|
1340
891
|
|
|
1341
892
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1342
893
|
"""
|
|
1343
894
|
|
|
1344
895
|
:return: The class or default when not found.
|
|
1345
|
-
:rtype: typing.Any
|
|
1346
896
|
"""
|
|
1347
897
|
|
|
1348
898
|
def draw(self, context) -> None:
|
|
@@ -1359,7 +909,7 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_eraser(View3DPanel, bpy.types.Panel
|
|
|
1359
909
|
"""
|
|
1360
910
|
|
|
1361
911
|
class VIEW3D_PT_tools_grease_pencil_v3_brush_fill_advanced(
|
|
1362
|
-
View3DPanel,
|
|
912
|
+
View3DPanel, _bpy_types.Panel
|
|
1363
913
|
):
|
|
1364
914
|
bl_category: typing.Any
|
|
1365
915
|
bl_context: typing.Any
|
|
@@ -1376,14 +926,12 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_fill_advanced(
|
|
|
1376
926
|
"""
|
|
1377
927
|
|
|
1378
928
|
:return: The RNA type or default when not found.
|
|
1379
|
-
:rtype: bpy.types.Struct
|
|
1380
929
|
"""
|
|
1381
930
|
|
|
1382
931
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1383
932
|
"""
|
|
1384
933
|
|
|
1385
934
|
:return: The class or default when not found.
|
|
1386
|
-
:rtype: typing.Any
|
|
1387
935
|
"""
|
|
1388
936
|
|
|
1389
937
|
def draw(self, context) -> None:
|
|
@@ -1399,7 +947,7 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_fill_advanced(
|
|
|
1399
947
|
:param context:
|
|
1400
948
|
"""
|
|
1401
949
|
|
|
1402
|
-
class VIEW3D_PT_tools_grease_pencil_v3_brush_gap_closure(View3DPanel,
|
|
950
|
+
class VIEW3D_PT_tools_grease_pencil_v3_brush_gap_closure(View3DPanel, _bpy_types.Panel):
|
|
1403
951
|
bl_category: typing.Any
|
|
1404
952
|
bl_context: typing.Any
|
|
1405
953
|
bl_label: typing.Any
|
|
@@ -1413,14 +961,12 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_gap_closure(View3DPanel, bpy.types.
|
|
|
1413
961
|
"""
|
|
1414
962
|
|
|
1415
963
|
:return: The RNA type or default when not found.
|
|
1416
|
-
:rtype: bpy.types.Struct
|
|
1417
964
|
"""
|
|
1418
965
|
|
|
1419
966
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1420
967
|
"""
|
|
1421
968
|
|
|
1422
969
|
:return: The class or default when not found.
|
|
1423
|
-
:rtype: typing.Any
|
|
1424
970
|
"""
|
|
1425
971
|
|
|
1426
972
|
def draw(self, context) -> None:
|
|
@@ -1436,7 +982,7 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_gap_closure(View3DPanel, bpy.types.
|
|
|
1436
982
|
:param context:
|
|
1437
983
|
"""
|
|
1438
984
|
|
|
1439
|
-
class VIEW3D_PT_tools_grease_pencil_v3_brush_mix_palette(View3DPanel,
|
|
985
|
+
class VIEW3D_PT_tools_grease_pencil_v3_brush_mix_palette(View3DPanel, _bpy_types.Panel):
|
|
1440
986
|
bl_category: typing.Any
|
|
1441
987
|
bl_context: typing.Any
|
|
1442
988
|
bl_label: typing.Any
|
|
@@ -1450,14 +996,12 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_mix_palette(View3DPanel, bpy.types.
|
|
|
1450
996
|
"""
|
|
1451
997
|
|
|
1452
998
|
:return: The RNA type or default when not found.
|
|
1453
|
-
:rtype: bpy.types.Struct
|
|
1454
999
|
"""
|
|
1455
1000
|
|
|
1456
1001
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1457
1002
|
"""
|
|
1458
1003
|
|
|
1459
1004
|
:return: The class or default when not found.
|
|
1460
|
-
:rtype: typing.Any
|
|
1461
1005
|
"""
|
|
1462
1006
|
|
|
1463
1007
|
def draw(self, context) -> None:
|
|
@@ -1473,7 +1017,7 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_mix_palette(View3DPanel, bpy.types.
|
|
|
1473
1017
|
:param context:
|
|
1474
1018
|
"""
|
|
1475
1019
|
|
|
1476
|
-
class VIEW3D_PT_tools_grease_pencil_v3_brush_mixcolor(View3DPanel,
|
|
1020
|
+
class VIEW3D_PT_tools_grease_pencil_v3_brush_mixcolor(View3DPanel, _bpy_types.Panel):
|
|
1477
1021
|
bl_category: typing.Any
|
|
1478
1022
|
bl_context: typing.Any
|
|
1479
1023
|
bl_label: typing.Any
|
|
@@ -1486,14 +1030,12 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_mixcolor(View3DPanel, bpy.types.Pan
|
|
|
1486
1030
|
"""
|
|
1487
1031
|
|
|
1488
1032
|
:return: The RNA type or default when not found.
|
|
1489
|
-
:rtype: bpy.types.Struct
|
|
1490
1033
|
"""
|
|
1491
1034
|
|
|
1492
1035
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1493
1036
|
"""
|
|
1494
1037
|
|
|
1495
1038
|
:return: The class or default when not found.
|
|
1496
|
-
:rtype: typing.Any
|
|
1497
1039
|
"""
|
|
1498
1040
|
|
|
1499
1041
|
def draw(self, context) -> None:
|
|
@@ -1510,7 +1052,7 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_mixcolor(View3DPanel, bpy.types.Pan
|
|
|
1510
1052
|
"""
|
|
1511
1053
|
|
|
1512
1054
|
class VIEW3D_PT_tools_grease_pencil_v3_brush_post_processing(
|
|
1513
|
-
View3DPanel,
|
|
1055
|
+
View3DPanel, _bpy_types.Panel
|
|
1514
1056
|
):
|
|
1515
1057
|
bl_category: typing.Any
|
|
1516
1058
|
bl_context: typing.Any
|
|
@@ -1526,14 +1068,12 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_post_processing(
|
|
|
1526
1068
|
"""
|
|
1527
1069
|
|
|
1528
1070
|
:return: The RNA type or default when not found.
|
|
1529
|
-
:rtype: bpy.types.Struct
|
|
1530
1071
|
"""
|
|
1531
1072
|
|
|
1532
1073
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1533
1074
|
"""
|
|
1534
1075
|
|
|
1535
1076
|
:return: The class or default when not found.
|
|
1536
|
-
:rtype: typing.Any
|
|
1537
1077
|
"""
|
|
1538
1078
|
|
|
1539
1079
|
def draw(self, context) -> None:
|
|
@@ -1555,7 +1095,7 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_post_processing(
|
|
|
1555
1095
|
:param context:
|
|
1556
1096
|
"""
|
|
1557
1097
|
|
|
1558
|
-
class VIEW3D_PT_tools_grease_pencil_v3_brush_random(View3DPanel,
|
|
1098
|
+
class VIEW3D_PT_tools_grease_pencil_v3_brush_random(View3DPanel, _bpy_types.Panel):
|
|
1559
1099
|
bl_category: typing.Any
|
|
1560
1100
|
bl_context: typing.Any
|
|
1561
1101
|
bl_label: typing.Any
|
|
@@ -1570,14 +1110,12 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_random(View3DPanel, bpy.types.Panel
|
|
|
1570
1110
|
"""
|
|
1571
1111
|
|
|
1572
1112
|
:return: The RNA type or default when not found.
|
|
1573
|
-
:rtype: bpy.types.Struct
|
|
1574
1113
|
"""
|
|
1575
1114
|
|
|
1576
1115
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1577
1116
|
"""
|
|
1578
1117
|
|
|
1579
1118
|
:return: The class or default when not found.
|
|
1580
|
-
:rtype: typing.Any
|
|
1581
1119
|
"""
|
|
1582
1120
|
|
|
1583
1121
|
def draw(self, context) -> None:
|
|
@@ -1601,7 +1139,7 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_random(View3DPanel, bpy.types.Panel
|
|
|
1601
1139
|
|
|
1602
1140
|
class VIEW3D_PT_tools_grease_pencil_v3_brush_select(
|
|
1603
1141
|
GreasePencilV3PaintPanel,
|
|
1604
|
-
|
|
1142
|
+
_bpy_types.Panel,
|
|
1605
1143
|
View3DPanel,
|
|
1606
1144
|
bl_ui.properties_paint_common.BrushSelectPanel,
|
|
1607
1145
|
):
|
|
@@ -1617,20 +1155,18 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_select(
|
|
|
1617
1155
|
"""
|
|
1618
1156
|
|
|
1619
1157
|
:return: The RNA type or default when not found.
|
|
1620
|
-
:rtype: bpy.types.Struct
|
|
1621
1158
|
"""
|
|
1622
1159
|
|
|
1623
1160
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1624
1161
|
"""
|
|
1625
1162
|
|
|
1626
1163
|
:return: The class or default when not found.
|
|
1627
|
-
:rtype: typing.Any
|
|
1628
1164
|
"""
|
|
1629
1165
|
|
|
1630
1166
|
class VIEW3D_PT_tools_grease_pencil_vertex_paint_select(
|
|
1631
1167
|
GreasePencilVertexPanel,
|
|
1632
1168
|
View3DPanel,
|
|
1633
|
-
|
|
1169
|
+
_bpy_types.Panel,
|
|
1634
1170
|
bl_ui.properties_paint_common.BrushSelectPanel,
|
|
1635
1171
|
):
|
|
1636
1172
|
bl_category: typing.Any
|
|
@@ -1645,20 +1181,18 @@ class VIEW3D_PT_tools_grease_pencil_vertex_paint_select(
|
|
|
1645
1181
|
"""
|
|
1646
1182
|
|
|
1647
1183
|
:return: The RNA type or default when not found.
|
|
1648
|
-
:rtype: bpy.types.Struct
|
|
1649
1184
|
"""
|
|
1650
1185
|
|
|
1651
1186
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1652
1187
|
"""
|
|
1653
1188
|
|
|
1654
1189
|
:return: The class or default when not found.
|
|
1655
|
-
:rtype: typing.Any
|
|
1656
1190
|
"""
|
|
1657
1191
|
|
|
1658
1192
|
class VIEW3D_PT_tools_grease_pencil_weight_paint_select(
|
|
1659
1193
|
GreasePencilWeightPanel,
|
|
1660
1194
|
View3DPanel,
|
|
1661
|
-
|
|
1195
|
+
_bpy_types.Panel,
|
|
1662
1196
|
bl_ui.properties_paint_common.BrushSelectPanel,
|
|
1663
1197
|
):
|
|
1664
1198
|
bl_category: typing.Any
|
|
@@ -1673,17 +1207,15 @@ class VIEW3D_PT_tools_grease_pencil_weight_paint_select(
|
|
|
1673
1207
|
"""
|
|
1674
1208
|
|
|
1675
1209
|
:return: The RNA type or default when not found.
|
|
1676
|
-
:rtype: bpy.types.Struct
|
|
1677
1210
|
"""
|
|
1678
1211
|
|
|
1679
1212
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1680
1213
|
"""
|
|
1681
1214
|
|
|
1682
1215
|
:return: The class or default when not found.
|
|
1683
|
-
:rtype: typing.Any
|
|
1684
1216
|
"""
|
|
1685
1217
|
|
|
1686
|
-
class VIEW3D_PT_tools_imagepaint_options(View3DPaintPanel,
|
|
1218
|
+
class VIEW3D_PT_tools_imagepaint_options(View3DPaintPanel, _bpy_types.Panel):
|
|
1687
1219
|
bl_category: typing.Any
|
|
1688
1220
|
bl_context: typing.Any
|
|
1689
1221
|
bl_label: typing.Any
|
|
@@ -1697,14 +1229,12 @@ class VIEW3D_PT_tools_imagepaint_options(View3DPaintPanel, bpy.types.Panel):
|
|
|
1697
1229
|
"""
|
|
1698
1230
|
|
|
1699
1231
|
:return: The RNA type or default when not found.
|
|
1700
|
-
:rtype: bpy.types.Struct
|
|
1701
1232
|
"""
|
|
1702
1233
|
|
|
1703
1234
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1704
1235
|
"""
|
|
1705
1236
|
|
|
1706
1237
|
:return: The class or default when not found.
|
|
1707
|
-
:rtype: typing.Any
|
|
1708
1238
|
"""
|
|
1709
1239
|
|
|
1710
1240
|
def draw(self, context) -> None:
|
|
@@ -1720,7 +1250,7 @@ class VIEW3D_PT_tools_imagepaint_options(View3DPaintPanel, bpy.types.Panel):
|
|
|
1720
1250
|
:param context:
|
|
1721
1251
|
"""
|
|
1722
1252
|
|
|
1723
|
-
class VIEW3D_PT_tools_imagepaint_options_cavity(
|
|
1253
|
+
class VIEW3D_PT_tools_imagepaint_options_cavity(_bpy_types.Panel):
|
|
1724
1254
|
bl_label: typing.Any
|
|
1725
1255
|
bl_options: typing.Any
|
|
1726
1256
|
bl_parent_id: typing.Any
|
|
@@ -1733,14 +1263,12 @@ class VIEW3D_PT_tools_imagepaint_options_cavity(bpy.types.Panel):
|
|
|
1733
1263
|
"""
|
|
1734
1264
|
|
|
1735
1265
|
:return: The RNA type or default when not found.
|
|
1736
|
-
:rtype: bpy.types.Struct
|
|
1737
1266
|
"""
|
|
1738
1267
|
|
|
1739
1268
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1740
1269
|
"""
|
|
1741
1270
|
|
|
1742
1271
|
:return: The class or default when not found.
|
|
1743
|
-
:rtype: typing.Any
|
|
1744
1272
|
"""
|
|
1745
1273
|
|
|
1746
1274
|
def draw(self, context) -> None:
|
|
@@ -1756,7 +1284,7 @@ class VIEW3D_PT_tools_imagepaint_options_cavity(bpy.types.Panel):
|
|
|
1756
1284
|
"""
|
|
1757
1285
|
|
|
1758
1286
|
class VIEW3D_PT_tools_mask_texture(
|
|
1759
|
-
View3DPaintPanel,
|
|
1287
|
+
View3DPaintPanel, _bpy_types.Panel, bl_ui.properties_paint_common.TextureMaskPanel
|
|
1760
1288
|
):
|
|
1761
1289
|
bl_category: typing.Any
|
|
1762
1290
|
bl_context: typing.Any
|
|
@@ -1766,20 +1294,19 @@ class VIEW3D_PT_tools_mask_texture(
|
|
|
1766
1294
|
bl_region_type: typing.Any
|
|
1767
1295
|
bl_rna: typing.Any
|
|
1768
1296
|
bl_space_type: typing.Any
|
|
1297
|
+
bl_ui_units_x: typing.Any
|
|
1769
1298
|
id_data: typing.Any
|
|
1770
1299
|
|
|
1771
1300
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1772
1301
|
"""
|
|
1773
1302
|
|
|
1774
1303
|
:return: The RNA type or default when not found.
|
|
1775
|
-
:rtype: bpy.types.Struct
|
|
1776
1304
|
"""
|
|
1777
1305
|
|
|
1778
1306
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1779
1307
|
"""
|
|
1780
1308
|
|
|
1781
1309
|
:return: The class or default when not found.
|
|
1782
|
-
:rtype: typing.Any
|
|
1783
1310
|
"""
|
|
1784
1311
|
|
|
1785
1312
|
def draw(self, context) -> None:
|
|
@@ -1795,7 +1322,7 @@ class VIEW3D_PT_tools_mask_texture(
|
|
|
1795
1322
|
:param context:
|
|
1796
1323
|
"""
|
|
1797
1324
|
|
|
1798
|
-
class VIEW3D_PT_tools_meshedit_options(View3DPanel,
|
|
1325
|
+
class VIEW3D_PT_tools_meshedit_options(View3DPanel, _bpy_types.Panel):
|
|
1799
1326
|
bl_category: typing.Any
|
|
1800
1327
|
bl_context: typing.Any
|
|
1801
1328
|
bl_label: typing.Any
|
|
@@ -1810,14 +1337,12 @@ class VIEW3D_PT_tools_meshedit_options(View3DPanel, bpy.types.Panel):
|
|
|
1810
1337
|
"""
|
|
1811
1338
|
|
|
1812
1339
|
:return: The RNA type or default when not found.
|
|
1813
|
-
:rtype: bpy.types.Struct
|
|
1814
1340
|
"""
|
|
1815
1341
|
|
|
1816
1342
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1817
1343
|
"""
|
|
1818
1344
|
|
|
1819
1345
|
:return: The class or default when not found.
|
|
1820
|
-
:rtype: typing.Any
|
|
1821
1346
|
"""
|
|
1822
1347
|
|
|
1823
1348
|
def draw(self, _context) -> None:
|
|
@@ -1826,7 +1351,7 @@ class VIEW3D_PT_tools_meshedit_options(View3DPanel, bpy.types.Panel):
|
|
|
1826
1351
|
:param _context:
|
|
1827
1352
|
"""
|
|
1828
1353
|
|
|
1829
|
-
class VIEW3D_PT_tools_meshedit_options_transform(View3DPanel,
|
|
1354
|
+
class VIEW3D_PT_tools_meshedit_options_transform(View3DPanel, _bpy_types.Panel):
|
|
1830
1355
|
bl_category: typing.Any
|
|
1831
1356
|
bl_context: typing.Any
|
|
1832
1357
|
bl_label: typing.Any
|
|
@@ -1840,14 +1365,12 @@ class VIEW3D_PT_tools_meshedit_options_transform(View3DPanel, bpy.types.Panel):
|
|
|
1840
1365
|
"""
|
|
1841
1366
|
|
|
1842
1367
|
:return: The RNA type or default when not found.
|
|
1843
|
-
:rtype: bpy.types.Struct
|
|
1844
1368
|
"""
|
|
1845
1369
|
|
|
1846
1370
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1847
1371
|
"""
|
|
1848
1372
|
|
|
1849
1373
|
:return: The class or default when not found.
|
|
1850
|
-
:rtype: typing.Any
|
|
1851
1374
|
"""
|
|
1852
1375
|
|
|
1853
1376
|
def draw(self, context) -> None:
|
|
@@ -1863,7 +1386,7 @@ class VIEW3D_PT_tools_meshedit_options_transform(View3DPanel, bpy.types.Panel):
|
|
|
1863
1386
|
:param context:
|
|
1864
1387
|
"""
|
|
1865
1388
|
|
|
1866
|
-
class VIEW3D_PT_tools_meshedit_options_uvs(View3DPanel,
|
|
1389
|
+
class VIEW3D_PT_tools_meshedit_options_uvs(View3DPanel, _bpy_types.Panel):
|
|
1867
1390
|
bl_category: typing.Any
|
|
1868
1391
|
bl_context: typing.Any
|
|
1869
1392
|
bl_label: typing.Any
|
|
@@ -1877,14 +1400,12 @@ class VIEW3D_PT_tools_meshedit_options_uvs(View3DPanel, bpy.types.Panel):
|
|
|
1877
1400
|
"""
|
|
1878
1401
|
|
|
1879
1402
|
:return: The RNA type or default when not found.
|
|
1880
|
-
:rtype: bpy.types.Struct
|
|
1881
1403
|
"""
|
|
1882
1404
|
|
|
1883
1405
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1884
1406
|
"""
|
|
1885
1407
|
|
|
1886
1408
|
:return: The class or default when not found.
|
|
1887
|
-
:rtype: typing.Any
|
|
1888
1409
|
"""
|
|
1889
1410
|
|
|
1890
1411
|
def draw(self, context) -> None:
|
|
@@ -1893,7 +1414,7 @@ class VIEW3D_PT_tools_meshedit_options_uvs(View3DPanel, bpy.types.Panel):
|
|
|
1893
1414
|
:param context:
|
|
1894
1415
|
"""
|
|
1895
1416
|
|
|
1896
|
-
class VIEW3D_PT_tools_object_options(View3DPanel,
|
|
1417
|
+
class VIEW3D_PT_tools_object_options(View3DPanel, _bpy_types.Panel):
|
|
1897
1418
|
bl_category: typing.Any
|
|
1898
1419
|
bl_context: typing.Any
|
|
1899
1420
|
bl_label: typing.Any
|
|
@@ -1906,14 +1427,12 @@ class VIEW3D_PT_tools_object_options(View3DPanel, bpy.types.Panel):
|
|
|
1906
1427
|
"""
|
|
1907
1428
|
|
|
1908
1429
|
:return: The RNA type or default when not found.
|
|
1909
|
-
:rtype: bpy.types.Struct
|
|
1910
1430
|
"""
|
|
1911
1431
|
|
|
1912
1432
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1913
1433
|
"""
|
|
1914
1434
|
|
|
1915
1435
|
:return: The class or default when not found.
|
|
1916
|
-
:rtype: typing.Any
|
|
1917
1436
|
"""
|
|
1918
1437
|
|
|
1919
1438
|
def draw(self, context) -> None:
|
|
@@ -1922,7 +1441,7 @@ class VIEW3D_PT_tools_object_options(View3DPanel, bpy.types.Panel):
|
|
|
1922
1441
|
:param context:
|
|
1923
1442
|
"""
|
|
1924
1443
|
|
|
1925
|
-
class VIEW3D_PT_tools_object_options_transform(View3DPanel,
|
|
1444
|
+
class VIEW3D_PT_tools_object_options_transform(View3DPanel, _bpy_types.Panel):
|
|
1926
1445
|
bl_category: typing.Any
|
|
1927
1446
|
bl_context: typing.Any
|
|
1928
1447
|
bl_label: typing.Any
|
|
@@ -1936,14 +1455,12 @@ class VIEW3D_PT_tools_object_options_transform(View3DPanel, bpy.types.Panel):
|
|
|
1936
1455
|
"""
|
|
1937
1456
|
|
|
1938
1457
|
:return: The RNA type or default when not found.
|
|
1939
|
-
:rtype: bpy.types.Struct
|
|
1940
1458
|
"""
|
|
1941
1459
|
|
|
1942
1460
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1943
1461
|
"""
|
|
1944
1462
|
|
|
1945
1463
|
:return: The class or default when not found.
|
|
1946
|
-
:rtype: typing.Any
|
|
1947
1464
|
"""
|
|
1948
1465
|
|
|
1949
1466
|
def draw(self, context) -> None:
|
|
@@ -1952,7 +1469,7 @@ class VIEW3D_PT_tools_object_options_transform(View3DPanel, bpy.types.Panel):
|
|
|
1952
1469
|
:param context:
|
|
1953
1470
|
"""
|
|
1954
1471
|
|
|
1955
|
-
class VIEW3D_PT_tools_particlemode_options(View3DPanel,
|
|
1472
|
+
class VIEW3D_PT_tools_particlemode_options(View3DPanel, _bpy_types.Panel):
|
|
1956
1473
|
"""Default tools for particle mode"""
|
|
1957
1474
|
|
|
1958
1475
|
bl_category: typing.Any
|
|
@@ -1968,14 +1485,12 @@ class VIEW3D_PT_tools_particlemode_options(View3DPanel, bpy.types.Panel):
|
|
|
1968
1485
|
"""
|
|
1969
1486
|
|
|
1970
1487
|
:return: The RNA type or default when not found.
|
|
1971
|
-
:rtype: bpy.types.Struct
|
|
1972
1488
|
"""
|
|
1973
1489
|
|
|
1974
1490
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1975
1491
|
"""
|
|
1976
1492
|
|
|
1977
1493
|
:return: The class or default when not found.
|
|
1978
|
-
:rtype: typing.Any
|
|
1979
1494
|
"""
|
|
1980
1495
|
|
|
1981
1496
|
def draw(self, context) -> None:
|
|
@@ -1984,7 +1499,7 @@ class VIEW3D_PT_tools_particlemode_options(View3DPanel, bpy.types.Panel):
|
|
|
1984
1499
|
:param context:
|
|
1985
1500
|
"""
|
|
1986
1501
|
|
|
1987
|
-
class VIEW3D_PT_tools_particlemode_options_display(View3DPanel,
|
|
1502
|
+
class VIEW3D_PT_tools_particlemode_options_display(View3DPanel, _bpy_types.Panel):
|
|
1988
1503
|
"""Default tools for particle mode"""
|
|
1989
1504
|
|
|
1990
1505
|
bl_category: typing.Any
|
|
@@ -1999,14 +1514,12 @@ class VIEW3D_PT_tools_particlemode_options_display(View3DPanel, bpy.types.Panel)
|
|
|
1999
1514
|
"""
|
|
2000
1515
|
|
|
2001
1516
|
:return: The RNA type or default when not found.
|
|
2002
|
-
:rtype: bpy.types.Struct
|
|
2003
1517
|
"""
|
|
2004
1518
|
|
|
2005
1519
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2006
1520
|
"""
|
|
2007
1521
|
|
|
2008
1522
|
:return: The class or default when not found.
|
|
2009
|
-
:rtype: typing.Any
|
|
2010
1523
|
"""
|
|
2011
1524
|
|
|
2012
1525
|
def draw(self, context) -> None:
|
|
@@ -2015,7 +1528,7 @@ class VIEW3D_PT_tools_particlemode_options_display(View3DPanel, bpy.types.Panel)
|
|
|
2015
1528
|
:param context:
|
|
2016
1529
|
"""
|
|
2017
1530
|
|
|
2018
|
-
class VIEW3D_PT_tools_particlemode_options_shapecut(View3DPanel,
|
|
1531
|
+
class VIEW3D_PT_tools_particlemode_options_shapecut(View3DPanel, _bpy_types.Panel):
|
|
2019
1532
|
"""Default tools for particle mode"""
|
|
2020
1533
|
|
|
2021
1534
|
bl_category: typing.Any
|
|
@@ -2031,14 +1544,12 @@ class VIEW3D_PT_tools_particlemode_options_shapecut(View3DPanel, bpy.types.Panel
|
|
|
2031
1544
|
"""
|
|
2032
1545
|
|
|
2033
1546
|
:return: The RNA type or default when not found.
|
|
2034
|
-
:rtype: bpy.types.Struct
|
|
2035
1547
|
"""
|
|
2036
1548
|
|
|
2037
1549
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2038
1550
|
"""
|
|
2039
1551
|
|
|
2040
1552
|
:return: The class or default when not found.
|
|
2041
|
-
:rtype: typing.Any
|
|
2042
1553
|
"""
|
|
2043
1554
|
|
|
2044
1555
|
def draw(self, context) -> None:
|
|
@@ -2047,7 +1558,7 @@ class VIEW3D_PT_tools_particlemode_options_shapecut(View3DPanel, bpy.types.Panel
|
|
|
2047
1558
|
:param context:
|
|
2048
1559
|
"""
|
|
2049
1560
|
|
|
2050
|
-
class VIEW3D_PT_tools_posemode_options(View3DPanel,
|
|
1561
|
+
class VIEW3D_PT_tools_posemode_options(View3DPanel, _bpy_types.Panel):
|
|
2051
1562
|
bl_category: typing.Any
|
|
2052
1563
|
bl_context: typing.Any
|
|
2053
1564
|
bl_label: typing.Any
|
|
@@ -2060,14 +1571,12 @@ class VIEW3D_PT_tools_posemode_options(View3DPanel, bpy.types.Panel):
|
|
|
2060
1571
|
"""
|
|
2061
1572
|
|
|
2062
1573
|
:return: The RNA type or default when not found.
|
|
2063
|
-
:rtype: bpy.types.Struct
|
|
2064
1574
|
"""
|
|
2065
1575
|
|
|
2066
1576
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2067
1577
|
"""
|
|
2068
1578
|
|
|
2069
1579
|
:return: The class or default when not found.
|
|
2070
|
-
:rtype: typing.Any
|
|
2071
1580
|
"""
|
|
2072
1581
|
|
|
2073
1582
|
def draw(self, context) -> None:
|
|
@@ -2076,55 +1585,8 @@ class VIEW3D_PT_tools_posemode_options(View3DPanel, bpy.types.Panel):
|
|
|
2076
1585
|
:param context:
|
|
2077
1586
|
"""
|
|
2078
1587
|
|
|
2079
|
-
class VIEW3D_PT_tools_vertexpaint_symmetry_for_topbar(
|
|
2080
|
-
bl_label: typing.Any
|
|
2081
|
-
bl_region_type: typing.Any
|
|
2082
|
-
bl_rna: typing.Any
|
|
2083
|
-
bl_space_type: typing.Any
|
|
2084
|
-
id_data: typing.Any
|
|
2085
|
-
|
|
2086
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2087
|
-
"""
|
|
2088
|
-
|
|
2089
|
-
:return: The RNA type or default when not found.
|
|
2090
|
-
:rtype: bpy.types.Struct
|
|
2091
|
-
"""
|
|
2092
|
-
|
|
2093
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2094
|
-
"""
|
|
2095
|
-
|
|
2096
|
-
:return: The class or default when not found.
|
|
2097
|
-
:rtype: typing.Any
|
|
2098
|
-
"""
|
|
2099
|
-
|
|
2100
|
-
class VIEW3D_PT_tools_weightpaint_symmetry_for_topbar(bpy.types.Panel):
|
|
2101
|
-
bl_label: typing.Any
|
|
2102
|
-
bl_region_type: typing.Any
|
|
2103
|
-
bl_rna: typing.Any
|
|
2104
|
-
bl_space_type: typing.Any
|
|
2105
|
-
id_data: typing.Any
|
|
2106
|
-
|
|
2107
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2108
|
-
"""
|
|
2109
|
-
|
|
2110
|
-
:return: The RNA type or default when not found.
|
|
2111
|
-
:rtype: bpy.types.Struct
|
|
2112
|
-
"""
|
|
2113
|
-
|
|
2114
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2115
|
-
"""
|
|
2116
|
-
|
|
2117
|
-
:return: The class or default when not found.
|
|
2118
|
-
:rtype: typing.Any
|
|
2119
|
-
"""
|
|
2120
|
-
|
|
2121
|
-
class VIEW3D_PT_tools_grease_pencil_brush_settings(
|
|
2122
|
-
View3DPanel, bpy.types.Panel, GreasePencilPaintPanel
|
|
2123
|
-
):
|
|
2124
|
-
bl_category: typing.Any
|
|
2125
|
-
bl_context: typing.Any
|
|
1588
|
+
class VIEW3D_PT_tools_vertexpaint_symmetry_for_topbar(_bpy_types.Panel):
|
|
2126
1589
|
bl_label: typing.Any
|
|
2127
|
-
bl_options: typing.Any
|
|
2128
1590
|
bl_region_type: typing.Any
|
|
2129
1591
|
bl_rna: typing.Any
|
|
2130
1592
|
bl_space_type: typing.Any
|
|
@@ -2134,33 +1596,15 @@ class VIEW3D_PT_tools_grease_pencil_brush_settings(
|
|
|
2134
1596
|
"""
|
|
2135
1597
|
|
|
2136
1598
|
:return: The RNA type or default when not found.
|
|
2137
|
-
:rtype: bpy.types.Struct
|
|
2138
1599
|
"""
|
|
2139
1600
|
|
|
2140
1601
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2141
1602
|
"""
|
|
2142
1603
|
|
|
2143
1604
|
:return: The class or default when not found.
|
|
2144
|
-
:rtype: typing.Any
|
|
2145
|
-
"""
|
|
2146
|
-
|
|
2147
|
-
def draw(self, context) -> None:
|
|
2148
|
-
"""
|
|
2149
|
-
|
|
2150
|
-
:param context:
|
|
2151
|
-
"""
|
|
2152
|
-
|
|
2153
|
-
def draw_header_preset(self, _context) -> None:
|
|
2154
1605
|
"""
|
|
2155
1606
|
|
|
2156
|
-
|
|
2157
|
-
"""
|
|
2158
|
-
|
|
2159
|
-
class VIEW3D_PT_tools_grease_pencil_sculpt_settings(
|
|
2160
|
-
View3DPanel, bpy.types.Panel, GreasePencilSculptPanel
|
|
2161
|
-
):
|
|
2162
|
-
bl_category: typing.Any
|
|
2163
|
-
bl_context: typing.Any
|
|
1607
|
+
class VIEW3D_PT_tools_weightpaint_symmetry_for_topbar(_bpy_types.Panel):
|
|
2164
1608
|
bl_label: typing.Any
|
|
2165
1609
|
bl_region_type: typing.Any
|
|
2166
1610
|
bl_rna: typing.Any
|
|
@@ -2171,24 +1615,16 @@ class VIEW3D_PT_tools_grease_pencil_sculpt_settings(
|
|
|
2171
1615
|
"""
|
|
2172
1616
|
|
|
2173
1617
|
:return: The RNA type or default when not found.
|
|
2174
|
-
:rtype: bpy.types.Struct
|
|
2175
1618
|
"""
|
|
2176
1619
|
|
|
2177
1620
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2178
1621
|
"""
|
|
2179
1622
|
|
|
2180
1623
|
:return: The class or default when not found.
|
|
2181
|
-
:rtype: typing.Any
|
|
2182
|
-
"""
|
|
2183
|
-
|
|
2184
|
-
def draw(self, context) -> None:
|
|
2185
|
-
"""
|
|
2186
|
-
|
|
2187
|
-
:param context:
|
|
2188
1624
|
"""
|
|
2189
1625
|
|
|
2190
1626
|
class VIEW3D_PT_tools_grease_pencil_v3_brush_settings(
|
|
2191
|
-
View3DPanel,
|
|
1627
|
+
View3DPanel, _bpy_types.Panel, GreasePencilV3PaintPanel
|
|
2192
1628
|
):
|
|
2193
1629
|
bl_category: typing.Any
|
|
2194
1630
|
bl_context: typing.Any
|
|
@@ -2203,14 +1639,12 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_settings(
|
|
|
2203
1639
|
"""
|
|
2204
1640
|
|
|
2205
1641
|
:return: The RNA type or default when not found.
|
|
2206
|
-
:rtype: bpy.types.Struct
|
|
2207
1642
|
"""
|
|
2208
1643
|
|
|
2209
1644
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2210
1645
|
"""
|
|
2211
1646
|
|
|
2212
1647
|
:return: The class or default when not found.
|
|
2213
|
-
:rtype: typing.Any
|
|
2214
1648
|
"""
|
|
2215
1649
|
|
|
2216
1650
|
def draw(self, context) -> None:
|
|
@@ -2226,7 +1660,7 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_settings(
|
|
|
2226
1660
|
"""
|
|
2227
1661
|
|
|
2228
1662
|
class VIEW3D_PT_tools_grease_pencil_vertex_paint_settings(
|
|
2229
|
-
View3DPanel,
|
|
1663
|
+
View3DPanel, _bpy_types.Panel, GreasePencilVertexPanel
|
|
2230
1664
|
):
|
|
2231
1665
|
bl_category: typing.Any
|
|
2232
1666
|
bl_context: typing.Any
|
|
@@ -2240,14 +1674,12 @@ class VIEW3D_PT_tools_grease_pencil_vertex_paint_settings(
|
|
|
2240
1674
|
"""
|
|
2241
1675
|
|
|
2242
1676
|
:return: The RNA type or default when not found.
|
|
2243
|
-
:rtype: bpy.types.Struct
|
|
2244
1677
|
"""
|
|
2245
1678
|
|
|
2246
1679
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2247
1680
|
"""
|
|
2248
1681
|
|
|
2249
1682
|
:return: The class or default when not found.
|
|
2250
|
-
:rtype: typing.Any
|
|
2251
1683
|
"""
|
|
2252
1684
|
|
|
2253
1685
|
def draw(self, context) -> None:
|
|
@@ -2257,7 +1689,7 @@ class VIEW3D_PT_tools_grease_pencil_vertex_paint_settings(
|
|
|
2257
1689
|
"""
|
|
2258
1690
|
|
|
2259
1691
|
class VIEW3D_PT_tools_grease_pencil_weight_options(
|
|
2260
|
-
View3DPanel,
|
|
1692
|
+
View3DPanel, _bpy_types.Panel, GreasePencilWeightPanel
|
|
2261
1693
|
):
|
|
2262
1694
|
bl_category: typing.Any
|
|
2263
1695
|
bl_context: typing.Any
|
|
@@ -2272,14 +1704,12 @@ class VIEW3D_PT_tools_grease_pencil_weight_options(
|
|
|
2272
1704
|
"""
|
|
2273
1705
|
|
|
2274
1706
|
:return: The RNA type or default when not found.
|
|
2275
|
-
:rtype: bpy.types.Struct
|
|
2276
1707
|
"""
|
|
2277
1708
|
|
|
2278
1709
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2279
1710
|
"""
|
|
2280
1711
|
|
|
2281
1712
|
:return: The class or default when not found.
|
|
2282
|
-
:rtype: typing.Any
|
|
2283
1713
|
"""
|
|
2284
1714
|
|
|
2285
1715
|
def draw(self, context) -> None:
|
|
@@ -2289,7 +1719,7 @@ class VIEW3D_PT_tools_grease_pencil_weight_options(
|
|
|
2289
1719
|
"""
|
|
2290
1720
|
|
|
2291
1721
|
class VIEW3D_PT_tools_grease_pencil_weight_paint_settings(
|
|
2292
|
-
View3DPanel,
|
|
1722
|
+
View3DPanel, _bpy_types.Panel, GreasePencilWeightPanel
|
|
2293
1723
|
):
|
|
2294
1724
|
bl_category: typing.Any
|
|
2295
1725
|
bl_context: typing.Any
|
|
@@ -2303,14 +1733,12 @@ class VIEW3D_PT_tools_grease_pencil_weight_paint_settings(
|
|
|
2303
1733
|
"""
|
|
2304
1734
|
|
|
2305
1735
|
:return: The RNA type or default when not found.
|
|
2306
|
-
:rtype: bpy.types.Struct
|
|
2307
1736
|
"""
|
|
2308
1737
|
|
|
2309
1738
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2310
1739
|
"""
|
|
2311
1740
|
|
|
2312
1741
|
:return: The class or default when not found.
|
|
2313
|
-
:rtype: typing.Any
|
|
2314
1742
|
"""
|
|
2315
1743
|
|
|
2316
1744
|
def draw(self, context) -> None:
|
|
@@ -2319,7 +1747,7 @@ class VIEW3D_PT_tools_grease_pencil_weight_paint_settings(
|
|
|
2319
1747
|
:param context:
|
|
2320
1748
|
"""
|
|
2321
1749
|
|
|
2322
|
-
class VIEW3D_PT_curves_sculpt_symmetry(
|
|
1750
|
+
class VIEW3D_PT_curves_sculpt_symmetry(_bpy_types.Panel, View3DPaintPanel):
|
|
2323
1751
|
bl_category: typing.Any
|
|
2324
1752
|
bl_context: typing.Any
|
|
2325
1753
|
bl_label: typing.Any
|
|
@@ -2333,14 +1761,12 @@ class VIEW3D_PT_curves_sculpt_symmetry(bpy.types.Panel, View3DPaintPanel):
|
|
|
2333
1761
|
"""
|
|
2334
1762
|
|
|
2335
1763
|
:return: The RNA type or default when not found.
|
|
2336
|
-
:rtype: bpy.types.Struct
|
|
2337
1764
|
"""
|
|
2338
1765
|
|
|
2339
1766
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2340
1767
|
"""
|
|
2341
1768
|
|
|
2342
1769
|
:return: The class or default when not found.
|
|
2343
|
-
:rtype: typing.Any
|
|
2344
1770
|
"""
|
|
2345
1771
|
|
|
2346
1772
|
def draw(self, context) -> None:
|
|
@@ -2375,7 +1801,7 @@ class VIEW3D_PT_imagepaint_options(View3DPaintPanel):
|
|
|
2375
1801
|
:param _context:
|
|
2376
1802
|
"""
|
|
2377
1803
|
|
|
2378
|
-
class VIEW3D_PT_sculpt_dyntopo(
|
|
1804
|
+
class VIEW3D_PT_sculpt_dyntopo(_bpy_types.Panel, View3DPaintPanel):
|
|
2379
1805
|
bl_category: typing.Any
|
|
2380
1806
|
bl_context: typing.Any
|
|
2381
1807
|
bl_label: typing.Any
|
|
@@ -2390,14 +1816,12 @@ class VIEW3D_PT_sculpt_dyntopo(bpy.types.Panel, View3DPaintPanel):
|
|
|
2390
1816
|
"""
|
|
2391
1817
|
|
|
2392
1818
|
:return: The RNA type or default when not found.
|
|
2393
|
-
:rtype: bpy.types.Struct
|
|
2394
1819
|
"""
|
|
2395
1820
|
|
|
2396
1821
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2397
1822
|
"""
|
|
2398
1823
|
|
|
2399
1824
|
:return: The class or default when not found.
|
|
2400
|
-
:rtype: typing.Any
|
|
2401
1825
|
"""
|
|
2402
1826
|
|
|
2403
1827
|
def draw(self, context) -> None:
|
|
@@ -2419,7 +1843,7 @@ class VIEW3D_PT_sculpt_dyntopo(bpy.types.Panel, View3DPaintPanel):
|
|
|
2419
1843
|
:param context:
|
|
2420
1844
|
"""
|
|
2421
1845
|
|
|
2422
|
-
class VIEW3D_PT_sculpt_options(
|
|
1846
|
+
class VIEW3D_PT_sculpt_options(_bpy_types.Panel, View3DPaintPanel):
|
|
2423
1847
|
bl_category: typing.Any
|
|
2424
1848
|
bl_context: typing.Any
|
|
2425
1849
|
bl_label: typing.Any
|
|
@@ -2434,14 +1858,12 @@ class VIEW3D_PT_sculpt_options(bpy.types.Panel, View3DPaintPanel):
|
|
|
2434
1858
|
"""
|
|
2435
1859
|
|
|
2436
1860
|
:return: The RNA type or default when not found.
|
|
2437
|
-
:rtype: bpy.types.Struct
|
|
2438
1861
|
"""
|
|
2439
1862
|
|
|
2440
1863
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2441
1864
|
"""
|
|
2442
1865
|
|
|
2443
1866
|
:return: The class or default when not found.
|
|
2444
|
-
:rtype: typing.Any
|
|
2445
1867
|
"""
|
|
2446
1868
|
|
|
2447
1869
|
def draw(self, context) -> None:
|
|
@@ -2457,7 +1879,7 @@ class VIEW3D_PT_sculpt_options(bpy.types.Panel, View3DPaintPanel):
|
|
|
2457
1879
|
:param context:
|
|
2458
1880
|
"""
|
|
2459
1881
|
|
|
2460
|
-
class VIEW3D_PT_sculpt_options_gravity(
|
|
1882
|
+
class VIEW3D_PT_sculpt_options_gravity(_bpy_types.Panel, View3DPaintPanel):
|
|
2461
1883
|
bl_category: typing.Any
|
|
2462
1884
|
bl_context: typing.Any
|
|
2463
1885
|
bl_label: typing.Any
|
|
@@ -2471,14 +1893,12 @@ class VIEW3D_PT_sculpt_options_gravity(bpy.types.Panel, View3DPaintPanel):
|
|
|
2471
1893
|
"""
|
|
2472
1894
|
|
|
2473
1895
|
:return: The RNA type or default when not found.
|
|
2474
|
-
:rtype: bpy.types.Struct
|
|
2475
1896
|
"""
|
|
2476
1897
|
|
|
2477
1898
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2478
1899
|
"""
|
|
2479
1900
|
|
|
2480
1901
|
:return: The class or default when not found.
|
|
2481
|
-
:rtype: typing.Any
|
|
2482
1902
|
"""
|
|
2483
1903
|
|
|
2484
1904
|
def draw(self, context) -> None:
|
|
@@ -2494,7 +1914,7 @@ class VIEW3D_PT_sculpt_options_gravity(bpy.types.Panel, View3DPaintPanel):
|
|
|
2494
1914
|
:param context:
|
|
2495
1915
|
"""
|
|
2496
1916
|
|
|
2497
|
-
class VIEW3D_PT_sculpt_symmetry(
|
|
1917
|
+
class VIEW3D_PT_sculpt_symmetry(_bpy_types.Panel, View3DPaintPanel):
|
|
2498
1918
|
bl_category: typing.Any
|
|
2499
1919
|
bl_context: typing.Any
|
|
2500
1920
|
bl_label: typing.Any
|
|
@@ -2508,14 +1928,12 @@ class VIEW3D_PT_sculpt_symmetry(bpy.types.Panel, View3DPaintPanel):
|
|
|
2508
1928
|
"""
|
|
2509
1929
|
|
|
2510
1930
|
:return: The RNA type or default when not found.
|
|
2511
|
-
:rtype: bpy.types.Struct
|
|
2512
1931
|
"""
|
|
2513
1932
|
|
|
2514
1933
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2515
1934
|
"""
|
|
2516
1935
|
|
|
2517
1936
|
:return: The class or default when not found.
|
|
2518
|
-
:rtype: typing.Any
|
|
2519
1937
|
"""
|
|
2520
1938
|
|
|
2521
1939
|
def draw(self, context) -> None:
|
|
@@ -2531,7 +1949,7 @@ class VIEW3D_PT_sculpt_symmetry(bpy.types.Panel, View3DPaintPanel):
|
|
|
2531
1949
|
:param context:
|
|
2532
1950
|
"""
|
|
2533
1951
|
|
|
2534
|
-
class VIEW3D_PT_sculpt_voxel_remesh(
|
|
1952
|
+
class VIEW3D_PT_sculpt_voxel_remesh(_bpy_types.Panel, View3DPaintPanel):
|
|
2535
1953
|
bl_category: typing.Any
|
|
2536
1954
|
bl_context: typing.Any
|
|
2537
1955
|
bl_label: typing.Any
|
|
@@ -2546,14 +1964,12 @@ class VIEW3D_PT_sculpt_voxel_remesh(bpy.types.Panel, View3DPaintPanel):
|
|
|
2546
1964
|
"""
|
|
2547
1965
|
|
|
2548
1966
|
:return: The RNA type or default when not found.
|
|
2549
|
-
:rtype: bpy.types.Struct
|
|
2550
1967
|
"""
|
|
2551
1968
|
|
|
2552
1969
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2553
1970
|
"""
|
|
2554
1971
|
|
|
2555
1972
|
:return: The class or default when not found.
|
|
2556
|
-
:rtype: typing.Any
|
|
2557
1973
|
"""
|
|
2558
1974
|
|
|
2559
1975
|
def draw(self, context) -> None:
|
|
@@ -2569,7 +1985,7 @@ class VIEW3D_PT_sculpt_voxel_remesh(bpy.types.Panel, View3DPaintPanel):
|
|
|
2569
1985
|
:param context:
|
|
2570
1986
|
"""
|
|
2571
1987
|
|
|
2572
|
-
class VIEW3D_PT_tools_brush_color(
|
|
1988
|
+
class VIEW3D_PT_tools_brush_color(_bpy_types.Panel, View3DPaintPanel):
|
|
2573
1989
|
bl_category: typing.Any
|
|
2574
1990
|
bl_context: typing.Any
|
|
2575
1991
|
bl_label: typing.Any
|
|
@@ -2583,14 +1999,12 @@ class VIEW3D_PT_tools_brush_color(bpy.types.Panel, View3DPaintPanel):
|
|
|
2583
1999
|
"""
|
|
2584
2000
|
|
|
2585
2001
|
:return: The RNA type or default when not found.
|
|
2586
|
-
:rtype: bpy.types.Struct
|
|
2587
2002
|
"""
|
|
2588
2003
|
|
|
2589
2004
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2590
2005
|
"""
|
|
2591
2006
|
|
|
2592
2007
|
:return: The class or default when not found.
|
|
2593
|
-
:rtype: typing.Any
|
|
2594
2008
|
"""
|
|
2595
2009
|
|
|
2596
2010
|
def draw(self, context) -> None:
|
|
@@ -2606,7 +2020,7 @@ class VIEW3D_PT_tools_brush_color(bpy.types.Panel, View3DPaintPanel):
|
|
|
2606
2020
|
:param context:
|
|
2607
2021
|
"""
|
|
2608
2022
|
|
|
2609
|
-
class VIEW3D_PT_tools_brush_texture(
|
|
2023
|
+
class VIEW3D_PT_tools_brush_texture(_bpy_types.Panel, View3DPaintPanel):
|
|
2610
2024
|
bl_category: typing.Any
|
|
2611
2025
|
bl_context: typing.Any
|
|
2612
2026
|
bl_label: typing.Any
|
|
@@ -2615,20 +2029,19 @@ class VIEW3D_PT_tools_brush_texture(bpy.types.Panel, View3DPaintPanel):
|
|
|
2615
2029
|
bl_region_type: typing.Any
|
|
2616
2030
|
bl_rna: typing.Any
|
|
2617
2031
|
bl_space_type: typing.Any
|
|
2032
|
+
bl_ui_units_x: typing.Any
|
|
2618
2033
|
id_data: typing.Any
|
|
2619
2034
|
|
|
2620
2035
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2621
2036
|
"""
|
|
2622
2037
|
|
|
2623
2038
|
:return: The RNA type or default when not found.
|
|
2624
|
-
:rtype: bpy.types.Struct
|
|
2625
2039
|
"""
|
|
2626
2040
|
|
|
2627
2041
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2628
2042
|
"""
|
|
2629
2043
|
|
|
2630
2044
|
:return: The class or default when not found.
|
|
2631
|
-
:rtype: typing.Any
|
|
2632
2045
|
"""
|
|
2633
2046
|
|
|
2634
2047
|
def draw(self, context) -> None:
|
|
@@ -2644,78 +2057,8 @@ class VIEW3D_PT_tools_brush_texture(bpy.types.Panel, View3DPaintPanel):
|
|
|
2644
2057
|
:param context:
|
|
2645
2058
|
"""
|
|
2646
2059
|
|
|
2647
|
-
class VIEW3D_PT_tools_grease_pencil_brush_paint_falloff(
|
|
2648
|
-
bpy.types.Panel,
|
|
2649
|
-
bl_ui.properties_grease_pencil_common.GreasePencilBrushFalloff,
|
|
2650
|
-
View3DPaintPanel,
|
|
2651
|
-
):
|
|
2652
|
-
bl_category: typing.Any
|
|
2653
|
-
bl_context: typing.Any
|
|
2654
|
-
bl_label: typing.Any
|
|
2655
|
-
bl_options: typing.Any
|
|
2656
|
-
bl_region_type: typing.Any
|
|
2657
|
-
bl_rna: typing.Any
|
|
2658
|
-
bl_space_type: typing.Any
|
|
2659
|
-
id_data: typing.Any
|
|
2660
|
-
|
|
2661
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2662
|
-
"""
|
|
2663
|
-
|
|
2664
|
-
:return: The RNA type or default when not found.
|
|
2665
|
-
:rtype: bpy.types.Struct
|
|
2666
|
-
"""
|
|
2667
|
-
|
|
2668
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2669
|
-
"""
|
|
2670
|
-
|
|
2671
|
-
:return: The class or default when not found.
|
|
2672
|
-
:rtype: typing.Any
|
|
2673
|
-
"""
|
|
2674
|
-
|
|
2675
|
-
@classmethod
|
|
2676
|
-
def poll(cls, context) -> None:
|
|
2677
|
-
"""
|
|
2678
|
-
|
|
2679
|
-
:param context:
|
|
2680
|
-
"""
|
|
2681
|
-
|
|
2682
|
-
class VIEW3D_PT_tools_grease_pencil_brush_sculpt_falloff(
|
|
2683
|
-
bpy.types.Panel,
|
|
2684
|
-
bl_ui.properties_grease_pencil_common.GreasePencilBrushFalloff,
|
|
2685
|
-
View3DPaintPanel,
|
|
2686
|
-
):
|
|
2687
|
-
bl_category: typing.Any
|
|
2688
|
-
bl_context: typing.Any
|
|
2689
|
-
bl_label: typing.Any
|
|
2690
|
-
bl_options: typing.Any
|
|
2691
|
-
bl_region_type: typing.Any
|
|
2692
|
-
bl_rna: typing.Any
|
|
2693
|
-
bl_space_type: typing.Any
|
|
2694
|
-
id_data: typing.Any
|
|
2695
|
-
|
|
2696
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2697
|
-
"""
|
|
2698
|
-
|
|
2699
|
-
:return: The RNA type or default when not found.
|
|
2700
|
-
:rtype: bpy.types.Struct
|
|
2701
|
-
"""
|
|
2702
|
-
|
|
2703
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2704
|
-
"""
|
|
2705
|
-
|
|
2706
|
-
:return: The class or default when not found.
|
|
2707
|
-
:rtype: typing.Any
|
|
2708
|
-
"""
|
|
2709
|
-
|
|
2710
|
-
@classmethod
|
|
2711
|
-
def poll(cls, context) -> None:
|
|
2712
|
-
"""
|
|
2713
|
-
|
|
2714
|
-
:param context:
|
|
2715
|
-
"""
|
|
2716
|
-
|
|
2717
2060
|
class VIEW3D_PT_tools_grease_pencil_brush_vertex_falloff(
|
|
2718
|
-
|
|
2061
|
+
_bpy_types.Panel,
|
|
2719
2062
|
bl_ui.properties_grease_pencil_common.GreasePencilBrushFalloff,
|
|
2720
2063
|
View3DPaintPanel,
|
|
2721
2064
|
):
|
|
@@ -2732,14 +2075,12 @@ class VIEW3D_PT_tools_grease_pencil_brush_vertex_falloff(
|
|
|
2732
2075
|
"""
|
|
2733
2076
|
|
|
2734
2077
|
:return: The RNA type or default when not found.
|
|
2735
|
-
:rtype: bpy.types.Struct
|
|
2736
2078
|
"""
|
|
2737
2079
|
|
|
2738
2080
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2739
2081
|
"""
|
|
2740
2082
|
|
|
2741
2083
|
:return: The class or default when not found.
|
|
2742
|
-
:rtype: typing.Any
|
|
2743
2084
|
"""
|
|
2744
2085
|
|
|
2745
2086
|
@classmethod
|
|
@@ -2750,7 +2091,7 @@ class VIEW3D_PT_tools_grease_pencil_brush_vertex_falloff(
|
|
|
2750
2091
|
"""
|
|
2751
2092
|
|
|
2752
2093
|
class VIEW3D_PT_tools_grease_pencil_brush_weight_falloff(
|
|
2753
|
-
|
|
2094
|
+
_bpy_types.Panel,
|
|
2754
2095
|
bl_ui.properties_grease_pencil_common.GreasePencilBrushFalloff,
|
|
2755
2096
|
View3DPaintPanel,
|
|
2756
2097
|
):
|
|
@@ -2768,14 +2109,12 @@ class VIEW3D_PT_tools_grease_pencil_brush_weight_falloff(
|
|
|
2768
2109
|
"""
|
|
2769
2110
|
|
|
2770
2111
|
:return: The RNA type or default when not found.
|
|
2771
|
-
:rtype: bpy.types.Struct
|
|
2772
2112
|
"""
|
|
2773
2113
|
|
|
2774
2114
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2775
2115
|
"""
|
|
2776
2116
|
|
|
2777
2117
|
:return: The class or default when not found.
|
|
2778
|
-
:rtype: typing.Any
|
|
2779
2118
|
"""
|
|
2780
2119
|
|
|
2781
2120
|
@classmethod
|
|
@@ -2785,7 +2124,7 @@ class VIEW3D_PT_tools_grease_pencil_brush_weight_falloff(
|
|
|
2785
2124
|
:param context:
|
|
2786
2125
|
"""
|
|
2787
2126
|
|
|
2788
|
-
class VIEW3D_PT_tools_imagepaint_options_external(
|
|
2127
|
+
class VIEW3D_PT_tools_imagepaint_options_external(_bpy_types.Panel, View3DPaintPanel):
|
|
2789
2128
|
bl_category: typing.Any
|
|
2790
2129
|
bl_context: typing.Any
|
|
2791
2130
|
bl_label: typing.Any
|
|
@@ -2800,14 +2139,12 @@ class VIEW3D_PT_tools_imagepaint_options_external(bpy.types.Panel, View3DPaintPa
|
|
|
2800
2139
|
"""
|
|
2801
2140
|
|
|
2802
2141
|
:return: The RNA type or default when not found.
|
|
2803
|
-
:rtype: bpy.types.Struct
|
|
2804
2142
|
"""
|
|
2805
2143
|
|
|
2806
2144
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2807
2145
|
"""
|
|
2808
2146
|
|
|
2809
2147
|
:return: The class or default when not found.
|
|
2810
|
-
:rtype: typing.Any
|
|
2811
2148
|
"""
|
|
2812
2149
|
|
|
2813
2150
|
def draw(self, context) -> None:
|
|
@@ -2816,7 +2153,7 @@ class VIEW3D_PT_tools_imagepaint_options_external(bpy.types.Panel, View3DPaintPa
|
|
|
2816
2153
|
:param context:
|
|
2817
2154
|
"""
|
|
2818
2155
|
|
|
2819
|
-
class VIEW3D_PT_tools_imagepaint_symmetry(
|
|
2156
|
+
class VIEW3D_PT_tools_imagepaint_symmetry(_bpy_types.Panel, View3DPaintPanel):
|
|
2820
2157
|
bl_category: typing.Any
|
|
2821
2158
|
bl_context: typing.Any
|
|
2822
2159
|
bl_label: typing.Any
|
|
@@ -2830,14 +2167,12 @@ class VIEW3D_PT_tools_imagepaint_symmetry(bpy.types.Panel, View3DPaintPanel):
|
|
|
2830
2167
|
"""
|
|
2831
2168
|
|
|
2832
2169
|
:return: The RNA type or default when not found.
|
|
2833
|
-
:rtype: bpy.types.Struct
|
|
2834
2170
|
"""
|
|
2835
2171
|
|
|
2836
2172
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2837
2173
|
"""
|
|
2838
2174
|
|
|
2839
2175
|
:return: The class or default when not found.
|
|
2840
|
-
:rtype: typing.Any
|
|
2841
2176
|
"""
|
|
2842
2177
|
|
|
2843
2178
|
def draw(self, context) -> None:
|
|
@@ -2853,11 +2188,10 @@ class VIEW3D_PT_tools_imagepaint_symmetry(bpy.types.Panel, View3DPaintPanel):
|
|
|
2853
2188
|
:param context:
|
|
2854
2189
|
"""
|
|
2855
2190
|
|
|
2856
|
-
class VIEW3D_PT_tools_particlemode(
|
|
2191
|
+
class VIEW3D_PT_tools_particlemode(_bpy_types.Panel, View3DPaintPanel):
|
|
2857
2192
|
bl_category: typing.Any
|
|
2858
2193
|
bl_context: typing.Any
|
|
2859
2194
|
bl_label: typing.Any
|
|
2860
|
-
bl_options: typing.Any
|
|
2861
2195
|
bl_region_type: typing.Any
|
|
2862
2196
|
bl_rna: typing.Any
|
|
2863
2197
|
bl_space_type: typing.Any
|
|
@@ -2867,14 +2201,12 @@ class VIEW3D_PT_tools_particlemode(bpy.types.Panel, View3DPaintPanel):
|
|
|
2867
2201
|
"""
|
|
2868
2202
|
|
|
2869
2203
|
:return: The RNA type or default when not found.
|
|
2870
|
-
:rtype: bpy.types.Struct
|
|
2871
2204
|
"""
|
|
2872
2205
|
|
|
2873
2206
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2874
2207
|
"""
|
|
2875
2208
|
|
|
2876
2209
|
:return: The class or default when not found.
|
|
2877
|
-
:rtype: typing.Any
|
|
2878
2210
|
"""
|
|
2879
2211
|
|
|
2880
2212
|
def draw(self, context) -> None:
|
|
@@ -2890,7 +2222,7 @@ class VIEW3D_PT_tools_particlemode(bpy.types.Panel, View3DPaintPanel):
|
|
|
2890
2222
|
:param context:
|
|
2891
2223
|
"""
|
|
2892
2224
|
|
|
2893
|
-
class VIEW3D_PT_tools_vertexpaint_options(
|
|
2225
|
+
class VIEW3D_PT_tools_vertexpaint_options(_bpy_types.Panel, View3DPaintPanel):
|
|
2894
2226
|
bl_category: typing.Any
|
|
2895
2227
|
bl_context: typing.Any
|
|
2896
2228
|
bl_label: typing.Any
|
|
@@ -2904,14 +2236,12 @@ class VIEW3D_PT_tools_vertexpaint_options(bpy.types.Panel, View3DPaintPanel):
|
|
|
2904
2236
|
"""
|
|
2905
2237
|
|
|
2906
2238
|
:return: The RNA type or default when not found.
|
|
2907
|
-
:rtype: bpy.types.Struct
|
|
2908
2239
|
"""
|
|
2909
2240
|
|
|
2910
2241
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2911
2242
|
"""
|
|
2912
2243
|
|
|
2913
2244
|
:return: The class or default when not found.
|
|
2914
|
-
:rtype: typing.Any
|
|
2915
2245
|
"""
|
|
2916
2246
|
|
|
2917
2247
|
def draw(self, _context) -> None:
|
|
@@ -2927,7 +2257,7 @@ class VIEW3D_PT_tools_vertexpaint_options(bpy.types.Panel, View3DPaintPanel):
|
|
|
2927
2257
|
:param _context:
|
|
2928
2258
|
"""
|
|
2929
2259
|
|
|
2930
|
-
class VIEW3D_PT_tools_vertexpaint_symmetry(
|
|
2260
|
+
class VIEW3D_PT_tools_vertexpaint_symmetry(_bpy_types.Panel, View3DPaintPanel):
|
|
2931
2261
|
bl_category: typing.Any
|
|
2932
2262
|
bl_context: typing.Any
|
|
2933
2263
|
bl_label: typing.Any
|
|
@@ -2941,14 +2271,12 @@ class VIEW3D_PT_tools_vertexpaint_symmetry(bpy.types.Panel, View3DPaintPanel):
|
|
|
2941
2271
|
"""
|
|
2942
2272
|
|
|
2943
2273
|
:return: The RNA type or default when not found.
|
|
2944
|
-
:rtype: bpy.types.Struct
|
|
2945
2274
|
"""
|
|
2946
2275
|
|
|
2947
2276
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2948
2277
|
"""
|
|
2949
2278
|
|
|
2950
2279
|
:return: The class or default when not found.
|
|
2951
|
-
:rtype: typing.Any
|
|
2952
2280
|
"""
|
|
2953
2281
|
|
|
2954
2282
|
def draw(self, context) -> None:
|
|
@@ -2964,7 +2292,7 @@ class VIEW3D_PT_tools_vertexpaint_symmetry(bpy.types.Panel, View3DPaintPanel):
|
|
|
2964
2292
|
:param context:
|
|
2965
2293
|
"""
|
|
2966
2294
|
|
|
2967
|
-
class VIEW3D_PT_tools_weight_gradient(
|
|
2295
|
+
class VIEW3D_PT_tools_weight_gradient(_bpy_types.Panel, View3DPaintPanel):
|
|
2968
2296
|
bl_category: typing.Any
|
|
2969
2297
|
bl_label: typing.Any
|
|
2970
2298
|
bl_options: typing.Any
|
|
@@ -2977,14 +2305,12 @@ class VIEW3D_PT_tools_weight_gradient(bpy.types.Panel, View3DPaintPanel):
|
|
|
2977
2305
|
"""
|
|
2978
2306
|
|
|
2979
2307
|
:return: The RNA type or default when not found.
|
|
2980
|
-
:rtype: bpy.types.Struct
|
|
2981
2308
|
"""
|
|
2982
2309
|
|
|
2983
2310
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2984
2311
|
"""
|
|
2985
2312
|
|
|
2986
2313
|
:return: The class or default when not found.
|
|
2987
|
-
:rtype: typing.Any
|
|
2988
2314
|
"""
|
|
2989
2315
|
|
|
2990
2316
|
def draw(self, context) -> None:
|
|
@@ -3000,7 +2326,7 @@ class VIEW3D_PT_tools_weight_gradient(bpy.types.Panel, View3DPaintPanel):
|
|
|
3000
2326
|
:param context:
|
|
3001
2327
|
"""
|
|
3002
2328
|
|
|
3003
|
-
class VIEW3D_PT_tools_weightpaint_options(
|
|
2329
|
+
class VIEW3D_PT_tools_weightpaint_options(_bpy_types.Panel, View3DPaintPanel):
|
|
3004
2330
|
bl_category: typing.Any
|
|
3005
2331
|
bl_context: typing.Any
|
|
3006
2332
|
bl_label: typing.Any
|
|
@@ -3014,14 +2340,12 @@ class VIEW3D_PT_tools_weightpaint_options(bpy.types.Panel, View3DPaintPanel):
|
|
|
3014
2340
|
"""
|
|
3015
2341
|
|
|
3016
2342
|
:return: The RNA type or default when not found.
|
|
3017
|
-
:rtype: bpy.types.Struct
|
|
3018
2343
|
"""
|
|
3019
2344
|
|
|
3020
2345
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
3021
2346
|
"""
|
|
3022
2347
|
|
|
3023
2348
|
:return: The class or default when not found.
|
|
3024
|
-
:rtype: typing.Any
|
|
3025
2349
|
"""
|
|
3026
2350
|
|
|
3027
2351
|
def draw(self, context) -> None:
|
|
@@ -3030,7 +2354,7 @@ class VIEW3D_PT_tools_weightpaint_options(bpy.types.Panel, View3DPaintPanel):
|
|
|
3030
2354
|
:param context:
|
|
3031
2355
|
"""
|
|
3032
2356
|
|
|
3033
|
-
class VIEW3D_PT_tools_weightpaint_symmetry(
|
|
2357
|
+
class VIEW3D_PT_tools_weightpaint_symmetry(_bpy_types.Panel, View3DPaintPanel):
|
|
3034
2358
|
bl_category: typing.Any
|
|
3035
2359
|
bl_context: typing.Any
|
|
3036
2360
|
bl_label: typing.Any
|
|
@@ -3044,14 +2368,12 @@ class VIEW3D_PT_tools_weightpaint_symmetry(bpy.types.Panel, View3DPaintPanel):
|
|
|
3044
2368
|
"""
|
|
3045
2369
|
|
|
3046
2370
|
:return: The RNA type or default when not found.
|
|
3047
|
-
:rtype: bpy.types.Struct
|
|
3048
2371
|
"""
|
|
3049
2372
|
|
|
3050
2373
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
3051
2374
|
"""
|
|
3052
2375
|
|
|
3053
2376
|
:return: The class or default when not found.
|
|
3054
|
-
:rtype: typing.Any
|
|
3055
2377
|
"""
|
|
3056
2378
|
|
|
3057
2379
|
def draw(self, context) -> None:
|
|
@@ -3079,91 +2401,8 @@ class View3DPaintBrushPanel(View3DPaintPanel):
|
|
|
3079
2401
|
:param context:
|
|
3080
2402
|
"""
|
|
3081
2403
|
|
|
3082
|
-
class VIEW3D_PT_tools_grease_pencil_brush_stabilizer(bpy.types.Panel, View3DPanel):
|
|
3083
|
-
bl_category: typing.Any
|
|
3084
|
-
bl_context: typing.Any
|
|
3085
|
-
bl_label: typing.Any
|
|
3086
|
-
bl_options: typing.Any
|
|
3087
|
-
bl_parent_id: typing.Any
|
|
3088
|
-
bl_region_type: typing.Any
|
|
3089
|
-
bl_rna: typing.Any
|
|
3090
|
-
bl_space_type: typing.Any
|
|
3091
|
-
id_data: typing.Any
|
|
3092
|
-
|
|
3093
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
3094
|
-
"""
|
|
3095
|
-
|
|
3096
|
-
:return: The RNA type or default when not found.
|
|
3097
|
-
:rtype: bpy.types.Struct
|
|
3098
|
-
"""
|
|
3099
|
-
|
|
3100
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
3101
|
-
"""
|
|
3102
|
-
|
|
3103
|
-
:return: The class or default when not found.
|
|
3104
|
-
:rtype: typing.Any
|
|
3105
|
-
"""
|
|
3106
|
-
|
|
3107
|
-
def draw(self, context) -> None:
|
|
3108
|
-
"""
|
|
3109
|
-
|
|
3110
|
-
:param context:
|
|
3111
|
-
"""
|
|
3112
|
-
|
|
3113
|
-
def draw_header(self, context) -> None:
|
|
3114
|
-
"""
|
|
3115
|
-
|
|
3116
|
-
:param context:
|
|
3117
|
-
"""
|
|
3118
|
-
|
|
3119
|
-
@classmethod
|
|
3120
|
-
def poll(cls, context) -> None:
|
|
3121
|
-
"""
|
|
3122
|
-
|
|
3123
|
-
:param context:
|
|
3124
|
-
"""
|
|
3125
|
-
|
|
3126
|
-
class VIEW3D_PT_tools_grease_pencil_brush_stroke(bpy.types.Panel, View3DPanel):
|
|
3127
|
-
bl_category: typing.Any
|
|
3128
|
-
bl_context: typing.Any
|
|
3129
|
-
bl_label: typing.Any
|
|
3130
|
-
bl_options: typing.Any
|
|
3131
|
-
bl_parent_id: typing.Any
|
|
3132
|
-
bl_region_type: typing.Any
|
|
3133
|
-
bl_rna: typing.Any
|
|
3134
|
-
bl_space_type: typing.Any
|
|
3135
|
-
bl_ui_units_x: typing.Any
|
|
3136
|
-
id_data: typing.Any
|
|
3137
|
-
|
|
3138
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
3139
|
-
"""
|
|
3140
|
-
|
|
3141
|
-
:return: The RNA type or default when not found.
|
|
3142
|
-
:rtype: bpy.types.Struct
|
|
3143
|
-
"""
|
|
3144
|
-
|
|
3145
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
3146
|
-
"""
|
|
3147
|
-
|
|
3148
|
-
:return: The class or default when not found.
|
|
3149
|
-
:rtype: typing.Any
|
|
3150
|
-
"""
|
|
3151
|
-
|
|
3152
|
-
def draw(self, _context) -> None:
|
|
3153
|
-
"""
|
|
3154
|
-
|
|
3155
|
-
:param _context:
|
|
3156
|
-
"""
|
|
3157
|
-
|
|
3158
|
-
@classmethod
|
|
3159
|
-
def poll(cls, context) -> None:
|
|
3160
|
-
"""
|
|
3161
|
-
|
|
3162
|
-
:param context:
|
|
3163
|
-
"""
|
|
3164
|
-
|
|
3165
2404
|
class VIEW3D_PT_tools_grease_pencil_paint_appearance(
|
|
3166
|
-
|
|
2405
|
+
_bpy_types.Panel,
|
|
3167
2406
|
bl_ui.properties_grease_pencil_common.GreasePencilDisplayPanel,
|
|
3168
2407
|
View3DPanel,
|
|
3169
2408
|
):
|
|
@@ -3182,18 +2421,16 @@ class VIEW3D_PT_tools_grease_pencil_paint_appearance(
|
|
|
3182
2421
|
"""
|
|
3183
2422
|
|
|
3184
2423
|
:return: The RNA type or default when not found.
|
|
3185
|
-
:rtype: bpy.types.Struct
|
|
3186
2424
|
"""
|
|
3187
2425
|
|
|
3188
2426
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
3189
2427
|
"""
|
|
3190
2428
|
|
|
3191
2429
|
:return: The class or default when not found.
|
|
3192
|
-
:rtype: typing.Any
|
|
3193
2430
|
"""
|
|
3194
2431
|
|
|
3195
2432
|
class VIEW3D_PT_tools_grease_pencil_sculpt_appearance(
|
|
3196
|
-
|
|
2433
|
+
_bpy_types.Panel,
|
|
3197
2434
|
bl_ui.properties_grease_pencil_common.GreasePencilDisplayPanel,
|
|
3198
2435
|
View3DPanel,
|
|
3199
2436
|
):
|
|
@@ -3211,17 +2448,22 @@ class VIEW3D_PT_tools_grease_pencil_sculpt_appearance(
|
|
|
3211
2448
|
"""
|
|
3212
2449
|
|
|
3213
2450
|
:return: The RNA type or default when not found.
|
|
3214
|
-
:rtype: bpy.types.Struct
|
|
3215
2451
|
"""
|
|
3216
2452
|
|
|
3217
2453
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
3218
2454
|
"""
|
|
3219
2455
|
|
|
3220
2456
|
:return: The class or default when not found.
|
|
3221
|
-
:rtype: typing.Any
|
|
3222
2457
|
"""
|
|
3223
2458
|
|
|
3224
|
-
|
|
2459
|
+
@classmethod
|
|
2460
|
+
def poll(cls, context) -> None:
|
|
2461
|
+
"""
|
|
2462
|
+
|
|
2463
|
+
:param context:
|
|
2464
|
+
"""
|
|
2465
|
+
|
|
2466
|
+
class VIEW3D_PT_tools_grease_pencil_v3_brush_stabilizer(_bpy_types.Panel, View3DPanel):
|
|
3225
2467
|
bl_category: typing.Any
|
|
3226
2468
|
bl_context: typing.Any
|
|
3227
2469
|
bl_label: typing.Any
|
|
@@ -3236,14 +2478,12 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_stabilizer(bpy.types.Panel, View3DP
|
|
|
3236
2478
|
"""
|
|
3237
2479
|
|
|
3238
2480
|
:return: The RNA type or default when not found.
|
|
3239
|
-
:rtype: bpy.types.Struct
|
|
3240
2481
|
"""
|
|
3241
2482
|
|
|
3242
2483
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
3243
2484
|
"""
|
|
3244
2485
|
|
|
3245
2486
|
:return: The class or default when not found.
|
|
3246
|
-
:rtype: typing.Any
|
|
3247
2487
|
"""
|
|
3248
2488
|
|
|
3249
2489
|
def draw(self, context) -> None:
|
|
@@ -3265,7 +2505,7 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_stabilizer(bpy.types.Panel, View3DP
|
|
|
3265
2505
|
:param context:
|
|
3266
2506
|
"""
|
|
3267
2507
|
|
|
3268
|
-
class VIEW3D_PT_tools_grease_pencil_v3_brush_stroke(
|
|
2508
|
+
class VIEW3D_PT_tools_grease_pencil_v3_brush_stroke(_bpy_types.Panel, View3DPanel):
|
|
3269
2509
|
bl_category: typing.Any
|
|
3270
2510
|
bl_context: typing.Any
|
|
3271
2511
|
bl_label: typing.Any
|
|
@@ -3281,14 +2521,12 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_stroke(bpy.types.Panel, View3DPanel
|
|
|
3281
2521
|
"""
|
|
3282
2522
|
|
|
3283
2523
|
:return: The RNA type or default when not found.
|
|
3284
|
-
:rtype: bpy.types.Struct
|
|
3285
2524
|
"""
|
|
3286
2525
|
|
|
3287
2526
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
3288
2527
|
"""
|
|
3289
2528
|
|
|
3290
2529
|
:return: The class or default when not found.
|
|
3291
|
-
:rtype: typing.Any
|
|
3292
2530
|
"""
|
|
3293
2531
|
|
|
3294
2532
|
def draw(self, _context) -> None:
|
|
@@ -3305,7 +2543,7 @@ class VIEW3D_PT_tools_grease_pencil_v3_brush_stroke(bpy.types.Panel, View3DPanel
|
|
|
3305
2543
|
"""
|
|
3306
2544
|
|
|
3307
2545
|
class VIEW3D_PT_tools_grease_pencil_vertex_appearance(
|
|
3308
|
-
|
|
2546
|
+
_bpy_types.Panel,
|
|
3309
2547
|
bl_ui.properties_grease_pencil_common.GreasePencilDisplayPanel,
|
|
3310
2548
|
View3DPanel,
|
|
3311
2549
|
):
|
|
@@ -3323,18 +2561,16 @@ class VIEW3D_PT_tools_grease_pencil_vertex_appearance(
|
|
|
3323
2561
|
"""
|
|
3324
2562
|
|
|
3325
2563
|
:return: The RNA type or default when not found.
|
|
3326
|
-
:rtype: bpy.types.Struct
|
|
3327
2564
|
"""
|
|
3328
2565
|
|
|
3329
2566
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
3330
2567
|
"""
|
|
3331
2568
|
|
|
3332
2569
|
:return: The class or default when not found.
|
|
3333
|
-
:rtype: typing.Any
|
|
3334
2570
|
"""
|
|
3335
2571
|
|
|
3336
2572
|
class VIEW3D_PT_tools_grease_pencil_weight_appearance(
|
|
3337
|
-
|
|
2573
|
+
_bpy_types.Panel,
|
|
3338
2574
|
bl_ui.properties_grease_pencil_common.GreasePencilDisplayPanel,
|
|
3339
2575
|
View3DPanel,
|
|
3340
2576
|
):
|
|
@@ -3352,17 +2588,15 @@ class VIEW3D_PT_tools_grease_pencil_weight_appearance(
|
|
|
3352
2588
|
"""
|
|
3353
2589
|
|
|
3354
2590
|
:return: The RNA type or default when not found.
|
|
3355
|
-
:rtype: bpy.types.Struct
|
|
3356
2591
|
"""
|
|
3357
2592
|
|
|
3358
2593
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
3359
2594
|
"""
|
|
3360
2595
|
|
|
3361
2596
|
:return: The class or default when not found.
|
|
3362
|
-
:rtype: typing.Any
|
|
3363
2597
|
"""
|
|
3364
2598
|
|
|
3365
|
-
class VIEW3D_PT_tools_brush_settings(
|
|
2599
|
+
class VIEW3D_PT_tools_brush_settings(_bpy_types.Panel, View3DPaintBrushPanel):
|
|
3366
2600
|
bl_category: typing.Any
|
|
3367
2601
|
bl_context: typing.Any
|
|
3368
2602
|
bl_label: typing.Any
|
|
@@ -3375,14 +2609,12 @@ class VIEW3D_PT_tools_brush_settings(bpy.types.Panel, View3DPaintBrushPanel):
|
|
|
3375
2609
|
"""
|
|
3376
2610
|
|
|
3377
2611
|
:return: The RNA type or default when not found.
|
|
3378
|
-
:rtype: bpy.types.Struct
|
|
3379
2612
|
"""
|
|
3380
2613
|
|
|
3381
2614
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
3382
2615
|
"""
|
|
3383
2616
|
|
|
3384
2617
|
:return: The class or default when not found.
|
|
3385
|
-
:rtype: typing.Any
|
|
3386
2618
|
"""
|
|
3387
2619
|
|
|
3388
2620
|
def draw(self, context) -> None:
|
|
@@ -3398,7 +2630,7 @@ class VIEW3D_PT_tools_brush_settings(bpy.types.Panel, View3DPaintBrushPanel):
|
|
|
3398
2630
|
:param context:
|
|
3399
2631
|
"""
|
|
3400
2632
|
|
|
3401
|
-
class VIEW3D_PT_tools_brush_settings_advanced(
|
|
2633
|
+
class VIEW3D_PT_tools_brush_settings_advanced(_bpy_types.Panel, View3DPaintBrushPanel):
|
|
3402
2634
|
bl_category: typing.Any
|
|
3403
2635
|
bl_context: typing.Any
|
|
3404
2636
|
bl_label: typing.Any
|
|
@@ -3414,14 +2646,12 @@ class VIEW3D_PT_tools_brush_settings_advanced(bpy.types.Panel, View3DPaintBrushP
|
|
|
3414
2646
|
"""
|
|
3415
2647
|
|
|
3416
2648
|
:return: The RNA type or default when not found.
|
|
3417
|
-
:rtype: bpy.types.Struct
|
|
3418
2649
|
"""
|
|
3419
2650
|
|
|
3420
2651
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
3421
2652
|
"""
|
|
3422
2653
|
|
|
3423
2654
|
:return: The class or default when not found.
|
|
3424
|
-
:rtype: typing.Any
|
|
3425
2655
|
"""
|
|
3426
2656
|
|
|
3427
2657
|
def draw(self, context) -> None:
|
|
@@ -3437,5 +2667,5 @@ class VIEW3D_PT_tools_brush_settings_advanced(bpy.types.Panel, View3DPaintBrushP
|
|
|
3437
2667
|
:param context:
|
|
3438
2668
|
"""
|
|
3439
2669
|
|
|
3440
|
-
def draw_vpaint_symmetry(layout,
|
|
2670
|
+
def draw_vpaint_symmetry(layout, obj) -> None: ...
|
|
3441
2671
|
def tool_use_brush(context) -> None: ...
|