fake-bpy-module 20250612__py3-none-any.whl → 20260118__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_calltip/__init__.pyi +0 -13
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_import/__init__.pyi +0 -5
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_namespace/__init__.pyi +0 -11
- {bl_console_utils → _bl_console_utils}/autocomplete/intellisense/__init__.pyi +0 -10
- {bl_i18n_utils → _bl_i18n_utils}/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/bl_extract_messages/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/settings/__init__.pyi +3 -1
- {bl_i18n_utils → _bl_i18n_utils}/utils/__init__.pyi +4 -4
- _bl_i18n_utils/utils_spell_check/__init__.pyi +22 -0
- {bl_ui_utils → _bl_ui_utils}/__init__.pyi +1 -0
- _blendfile_header/__init__.pyi +48 -0
- _bpy_internal/__init__.pyi +4 -1
- _bpy_internal/assets/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/blender_asset_library_openapi/__init__.pyi +13 -0
- _bpy_internal/disk_file_hash_service/__init__.pyi +19 -0
- _bpy_internal/disk_file_hash_service/backend_sqlite/__init__.pyi +48 -0
- _bpy_internal/disk_file_hash_service/hash_service/__init__.pyi +64 -0
- _bpy_internal/disk_file_hash_service/types/__init__.pyi +53 -0
- _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
- _bpy_internal/filesystem/__init__.pyi +5 -0
- _bpy_internal/filesystem/locking/__init__.pyi +28 -0
- _bpy_internal/grease_pencil/stroke/__init__.pyi +2 -2
- _bpy_internal/platform/__init__.pyi +5 -0
- _bpy_types/__init__.pyi +1592 -0
- {keyingsets_utils → _keyingsets_utils}/__init__.pyi +2 -0
- {rna_info → _rna_info}/__init__.pyi +4 -2
- addon_utils/__init__.pyi +0 -13
- aud/__init__.pyi +122 -145
- bl_app_templates_system/Storyboarding/__init__.pyi +11 -0
- bl_app_templates_system/__init__.pyi +5 -0
- bl_app_templates_system/py.typed +0 -0
- bl_math/__init__.pyi +3 -13
- bl_operators/__init__.pyi +1 -0
- bl_operators/add_mesh_torus/__init__.pyi +2 -3
- bl_operators/anim/__init__.pyi +62 -38
- bl_operators/assets/__init__.pyi +4 -9
- bl_operators/bone_selection_sets/__init__.pyi +15 -42
- bl_operators/clip/__init__.pyi +12 -31
- bl_operators/connect_to_output/__init__.pyi +2 -3
- bl_operators/console/__init__.pyi +6 -15
- bl_operators/constraint/__init__.pyi +6 -13
- bl_operators/copy_global_transform/__init__.pyi +261 -0
- bl_operators/file/__init__.pyi +6 -11
- bl_operators/freestyle/__init__.pyi +5 -12
- bl_operators/geometry_nodes/__init__.pyi +5 -12
- bl_operators/grease_pencil/__init__.pyi +2 -3
- bl_operators/image/__init__.pyi +6 -15
- bl_operators/image_as_planes/__init__.pyi +3 -10
- bl_operators/mesh/__init__.pyi +3 -49
- bl_operators/node/__init__.pyi +294 -73
- bl_operators/object/__init__.pyi +17 -53
- bl_operators/object_align/__init__.pyi +2 -3
- bl_operators/object_quick_effects/__init__.pyi +5 -12
- bl_operators/object_randomize_transform/__init__.pyi +2 -3
- bl_operators/presets/__init__.pyi +27 -76
- bl_operators/rigidbody/__init__.pyi +4 -9
- bl_operators/screen_play_rendered_anim/__init__.pyi +2 -3
- bl_operators/sequencer/__init__.pyi +12 -27
- bl_operators/spreadsheet/__init__.pyi +2 -3
- bl_operators/userpref/__init__.pyi +26 -75
- bl_operators/uvcalc_follow_active/__init__.pyi +3 -4
- bl_operators/uvcalc_lightmap/__init__.pyi +3 -4
- bl_operators/uvcalc_transform/__init__.pyi +26 -16
- bl_operators/vertexpaint_dirt/__init__.pyi +2 -3
- bl_operators/view3d/__init__.pyi +9 -24
- bl_operators/wm/__init__.pyi +48 -139
- bl_operators/world/__init__.pyi +3 -4
- bl_ui/__init__.pyi +7 -7
- bl_ui/anim/__init__.pyi +2 -3
- bl_ui/asset_shelf/__init__.pyi +2 -3
- bl_ui/generic_ui_list/__init__.pyi +4 -19
- bl_ui/node_add_menu/__init__.pyi +263 -7
- bl_ui/node_add_menu_compositor/__init__.pyi +96 -79
- bl_ui/node_add_menu_geometry/__init__.pyi +309 -270
- bl_ui/node_add_menu_shader/__init__.pyi +49 -49
- bl_ui/node_add_menu_texture/__init__.pyi +17 -62
- bl_ui/properties_collection/__init__.pyi +9 -22
- bl_ui/properties_constraint/__init__.pyi +129 -282
- bl_ui/properties_data_armature/__init__.pyi +22 -57
- bl_ui/properties_data_bone/__init__.pyi +12 -31
- bl_ui/properties_data_camera/__init__.pyi +18 -47
- bl_ui/properties_data_curve/__init__.pyi +18 -47
- bl_ui/properties_data_curves/__init__.pyi +11 -26
- bl_ui/properties_data_empty/__init__.pyi +3 -6
- bl_ui/properties_data_grease_pencil/__init__.pyi +23 -62
- bl_ui/properties_data_lattice/__init__.pyi +7 -14
- bl_ui/properties_data_light/__init__.pyi +13 -32
- bl_ui/properties_data_lightprobe/__init__.pyi +16 -43
- bl_ui/properties_data_mesh/__init__.pyi +47 -62
- bl_ui/properties_data_metaball/__init__.pyi +9 -20
- bl_ui/properties_data_modifier/__init__.pyi +22 -28
- bl_ui/properties_data_pointcloud/__init__.pyi +8 -19
- bl_ui/properties_data_shaderfx/__init__.pyi +2 -3
- bl_ui/properties_data_speaker/__init__.pyi +9 -20
- bl_ui/properties_data_volume/__init__.pyi +12 -29
- bl_ui/properties_freestyle/__init__.pyi +27 -76
- bl_ui/properties_grease_pencil_common/__init__.pyi +10 -168
- bl_ui/properties_mask_common/__init__.pyi +8 -21
- bl_ui/properties_material/__init__.pyi +26 -86
- bl_ui/properties_material_gpencil/__init__.pyi +36 -57
- bl_ui/properties_object/__init__.pyi +59 -65
- bl_ui/properties_output/__init__.pyi +21 -60
- bl_ui/properties_paint_common/__init__.pyi +30 -22
- bl_ui/properties_particle/__init__.pyi +58 -161
- bl_ui/properties_physics_cloth/__init__.pyi +15 -42
- bl_ui/properties_physics_common/__init__.pyi +2 -3
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +23 -66
- bl_ui/properties_physics_field/__init__.pyi +11 -30
- bl_ui/properties_physics_fluid/__init__.pyi +29 -84
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +2 -3
- bl_ui/properties_physics_rigidbody/__init__.pyi +9 -24
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +14 -39
- bl_ui/properties_physics_softbody/__init__.pyi +16 -45
- bl_ui/properties_render/__init__.pyi +139 -197
- bl_ui/properties_scene/__init__.pyi +46 -50
- bl_ui/properties_strip/__init__.pyi +744 -0
- bl_ui/properties_strip_modifier/__init__.pyi +45 -0
- bl_ui/properties_texture/__init__.pyi +30 -83
- bl_ui/properties_view_layer/__init__.pyi +84 -39
- bl_ui/properties_workspace/__init__.pyi +6 -13
- bl_ui/properties_world/__init__.pyi +14 -35
- bl_ui/space_clip/__init__.pyi +150 -231
- bl_ui/space_console/__init__.pyi +7 -18
- bl_ui/space_dopesheet/__init__.pyi +143 -100
- bl_ui/space_filebrowser/__init__.pyi +33 -90
- bl_ui/space_graph/__init__.pyi +48 -85
- bl_ui/space_image/__init__.pyi +111 -229
- bl_ui/space_info/__init__.pyi +7 -18
- bl_ui/space_nla/__init__.pyi +44 -73
- bl_ui/space_node/__init__.pyi +161 -123
- bl_ui/space_outliner/__init__.pyi +16 -45
- bl_ui/space_properties/__init__.pyi +34 -10
- bl_ui/space_sequencer/__init__.pyi +164 -901
- bl_ui/space_spreadsheet/__init__.pyi +4 -9
- bl_ui/space_statusbar/__init__.pyi +2 -3
- bl_ui/space_text/__init__.pyi +17 -48
- bl_ui/space_time/__init__.pyi +25 -71
- bl_ui/space_toolsystem_common/__init__.pyi +2 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +30 -7
- bl_ui/space_topbar/__init__.pyi +35 -79
- bl_ui/space_userpref/__init__.pyi +185 -321
- bl_ui/space_view3d/__init__.pyi +337 -817
- bl_ui/space_view3d_sidebar/__init__.pyi +127 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +110 -880
- bl_ui/utils/__init__.pyi +0 -17
- blend_render_info/__init__.pyi +1 -0
- blf/__init__.pyi +8 -54
- bmesh/__init__.pyi +2 -9
- bmesh/geometry/__init__.pyi +1 -4
- bmesh/ops/__init__.pyi +125 -508
- bmesh/types/__init__.pyi +318 -664
- bmesh/utils/__init__.pyi +17 -43
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +93 -88
- bpy/app/handlers/__init__.pyi +19 -19
- bpy/app/icons/__init__.pyi +0 -6
- bpy/app/timers/__init__.pyi +2 -7
- bpy/app/translations/__init__.pyi +8 -23
- bpy/msgbus/__init__.pyi +4 -6
- bpy/ops/action/__init__.pyi +68 -199
- bpy/ops/anim/__init__.pyi +142 -299
- bpy/ops/armature/__init__.pyi +78 -209
- bpy/ops/asset/__init__.pyi +46 -108
- bpy/ops/boid/__init__.pyi +28 -45
- bpy/ops/brush/__init__.pyi +13 -108
- bpy/ops/buttons/__init__.pyi +16 -75
- bpy/ops/cachefile/__init__.pyi +8 -65
- bpy/ops/camera/__init__.pyi +0 -11
- bpy/ops/clip/__init__.pyi +173 -471
- bpy/ops/cloth/__init__.pyi +0 -5
- bpy/ops/collection/__init__.pyi +23 -36
- bpy/ops/console/__init__.pyi +40 -98
- bpy/ops/constraint/__init__.pyi +14 -85
- bpy/ops/curve/__init__.pyi +94 -277
- bpy/ops/curves/__init__.pyi +119 -166
- bpy/ops/cycles/__init__.pyi +4 -15
- bpy/ops/dpaint/__init__.pyi +14 -24
- bpy/ops/ed/__init__.pyi +44 -92
- bpy/ops/export_anim/__init__.pyi +2 -10
- bpy/ops/export_scene/__init__.pyi +16 -170
- bpy/ops/extensions/__init__.pyi +60 -165
- bpy/ops/file/__init__.pyi +110 -246
- bpy/ops/fluid/__init__.pyi +52 -83
- bpy/ops/font/__init__.pyi +40 -144
- bpy/ops/geometry/__init__.pyi +12 -127
- bpy/ops/gizmogroup/__init__.pyi +4 -13
- bpy/ops/gpencil/__init__.pyi +22 -54
- bpy/ops/graph/__init__.pyi +92 -343
- bpy/ops/grease_pencil/__init__.pyi +218 -550
- bpy/ops/image/__init__.pyi +85 -435
- bpy/ops/import_anim/__init__.pyi +3 -17
- bpy/ops/import_curve/__init__.pyi +2 -5
- bpy/ops/import_scene/__init__.pyi +15 -49
- bpy/ops/info/__init__.pyi +16 -39
- bpy/ops/lattice/__init__.pyi +12 -36
- bpy/ops/marker/__init__.pyi +12 -51
- bpy/ops/mask/__init__.pyi +68 -193
- bpy/ops/material/__init__.pyi +18 -18
- bpy/ops/mball/__init__.pyi +4 -31
- bpy/ops/mesh/__init__.pyi +140 -967
- bpy/ops/nla/__init__.pyi +87 -206
- bpy/ops/node/__init__.pyi +714 -744
- bpy/ops/object/__init__.pyi +461 -1341
- bpy/ops/outliner/__init__.pyi +192 -376
- bpy/ops/paint/__init__.pyi +94 -319
- bpy/ops/paintcurve/__init__.pyi +20 -40
- bpy/ops/palette/__init__.pyi +14 -30
- bpy/ops/particle/__init__.pyi +86 -184
- bpy/ops/pointcloud/__init__.pyi +12 -38
- bpy/ops/pose/__init__.pyi +108 -261
- bpy/ops/poselib/__init__.pyi +32 -67
- bpy/ops/preferences/__init__.pyi +37 -187
- bpy/ops/ptcache/__init__.pyi +22 -36
- bpy/ops/render/__init__.pyi +20 -72
- bpy/ops/rigidbody/__init__.pyi +25 -63
- bpy/ops/scene/__init__.pyi +122 -181
- bpy/ops/screen/__init__.pyi +93 -221
- bpy/ops/script/__init__.pyi +4 -13
- bpy/ops/sculpt/__init__.pyi +69 -324
- bpy/ops/sculpt_curves/__init__.pyi +10 -23
- bpy/ops/sequencer/__init__.pyi +410 -730
- bpy/ops/sound/__init__.pyi +16 -114
- bpy/ops/spreadsheet/__init__.pyi +20 -37
- bpy/ops/surface/__init__.pyi +0 -48
- bpy/ops/text/__init__.pyi +112 -250
- bpy/ops/text_editor/__init__.pyi +0 -5
- bpy/ops/texture/__init__.pyi +14 -21
- bpy/ops/transform/__init__.pyi +18 -386
- bpy/ops/ui/__init__.pyi +117 -188
- bpy/ops/uilist/__init__.pyi +0 -13
- bpy/ops/uv/__init__.pyi +238 -305
- bpy/ops/view2d/__init__.pyi +16 -76
- bpy/ops/view3d/__init__.pyi +153 -377
- bpy/ops/wm/__init__.pyi +277 -1397
- bpy/ops/workspace/__init__.pyi +32 -39
- bpy/ops/world/__init__.pyi +10 -12
- bpy/path/__init__.pyi +1 -35
- bpy/props/__init__.pyi +347 -218
- bpy/stub_internal/rna_enums/__init__.pyi +142 -108
- bpy/types/__init__.pyi +77367 -101305
- bpy/utils/__init__.pyi +11 -82
- bpy/utils/previews/__init__.pyi +2 -11
- bpy/utils/units/__init__.pyi +5 -15
- bpy_extras/anim_utils/__init__.pyi +24 -16
- bpy_extras/bmesh_utils/__init__.pyi +0 -1
- bpy_extras/id_map_utils/__init__.pyi +14 -6
- bpy_extras/image_utils/__init__.pyi +2 -11
- bpy_extras/io_utils/__init__.pyi +8 -27
- bpy_extras/keyconfig_utils/__init__.pyi +1 -1
- bpy_extras/mesh_utils/__init__.pyi +0 -12
- bpy_extras/node_shader_utils/__init__.pyi +1 -9
- bpy_extras/object_utils/__init__.pyi +1 -15
- bpy_extras/view3d_utils/__init__.pyi +0 -18
- bpy_extras/wm_utils/progress_report/__init__.pyi +1 -1
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/METADATA +4 -1
- fake_bpy_module-20260118.dist-info/RECORD +385 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/top_level.txt +17 -16
- freestyle/chainingiterators/__init__.pyi +5 -27
- freestyle/functions/__init__.pyi +0 -139
- freestyle/predicates/__init__.pyi +2 -53
- freestyle/shaders/__init__.pyi +15 -81
- freestyle/types/__init__.pyi +159 -799
- freestyle/utils/ContextFunctions/__init__.pyi +0 -23
- freestyle/utils/__init__.pyi +5 -11
- gpu/capabilities/__init__.pyi +0 -21
- gpu/matrix/__init__.pyi +1 -10
- gpu/platform/__init__.pyi +2 -7
- gpu/shader/__init__.pyi +26 -9
- gpu/state/__init__.pyi +60 -39
- gpu/texture/__init__.pyi +3 -5
- gpu/types/__init__.pyi +116 -184
- gpu_extras/batch/__init__.pyi +1 -5
- gpu_extras/presets/__init__.pyi +6 -8
- idprop/types/__init__.pyi +6 -6
- imbuf/__init__.pyi +3 -10
- imbuf/types/__init__.pyi +7 -21
- keyingsets_builtins/__init__.pyi +24 -67
- mathutils/__init__.pyi +241 -2207
- mathutils/bvhtree/__init__.pyi +18 -26
- mathutils/geometry/__init__.pyi +82 -132
- mathutils/interpolate/__init__.pyi +6 -5
- mathutils/kdtree/__init__.pyi +1 -11
- mathutils/noise/__init__.pyi +61 -106
- rna_prop_ui/__init__.pyi +1 -1
- bgl/__init__.pyi +0 -4256
- bpy_types/__init__.pyi +0 -30
- fake_bpy_module-20250612.dist-info/RECORD +0 -367
- {animsys_refactor → _animsys_refactor}/__init__.pyi +0 -0
- {animsys_refactor → _animsys_refactor}/py.typed +0 -0
- {bl_console_utils → _bl_console_utils}/__init__.pyi +0 -0
- {bl_console_utils → _bl_console_utils}/autocomplete/__init__.pyi +0 -0
- {bgl → _bl_console_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/merge_po/__init__.pyi +0 -0
- {bl_console_utils → _bl_i18n_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_cli/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_languages_menu/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_rtl/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/bl_previews_render/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_previews_utils}/py.typed +0 -0
- {bl_rna_utils → _bl_rna_utils}/__init__.pyi +0 -0
- {bl_rna_utils → _bl_rna_utils}/data_path/__init__.pyi +0 -0
- {bl_previews_utils → _bl_rna_utils}/py.typed +0 -0
- {bl_text_utils → _bl_text_utils}/__init__.pyi +0 -0
- {bl_text_utils → _bl_text_utils}/external_editor/__init__.pyi +0 -0
- {bl_rna_utils → _bl_text_utils}/py.typed +0 -0
- {bl_ui_utils → _bl_ui_utils}/layout/__init__.pyi +0 -0
- {bl_text_utils → _bl_ui_utils}/py.typed +0 -0
- {bl_ui_utils → _blendfile_header}/py.typed +0 -0
- /_bpy_internal/{freedesktop → platform/freedesktop}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/py.typed +0 -0
- {bpy_types → _bpy_types}/py.typed +0 -0
- {console_python → _console_python}/__init__.pyi +0 -0
- {console_python → _console_python}/py.typed +0 -0
- {console_shell → _console_shell}/__init__.pyi +0 -0
- {console_shell → _console_shell}/py.typed +0 -0
- {graphviz_export → _graphviz_export}/__init__.pyi +0 -0
- {graphviz_export → _graphviz_export}/py.typed +0 -0
- {keyingsets_utils → _keyingsets_utils}/py.typed +0 -0
- {rna_info → _rna_info}/py.typed +0 -0
- {rna_xml → _rna_xml}/__init__.pyi +0 -0
- {rna_xml → _rna_xml}/py.typed +0 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/WHEEL +0 -0
bl_ui/space_image/__init__.pyi
CHANGED
|
@@ -2,6 +2,7 @@ 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_mask_common
|
|
7
8
|
import bl_ui.properties_paint_common
|
|
@@ -19,13 +20,13 @@ class BrushButtonsPanel(bl_ui.properties_paint_common.UnifiedPaintPanel):
|
|
|
19
20
|
:param context:
|
|
20
21
|
"""
|
|
21
22
|
|
|
22
|
-
class IMAGE_AST_brush_paint(ImageAssetShelf,
|
|
23
|
+
class IMAGE_AST_brush_paint(ImageAssetShelf, _bpy_types.AssetShelf):
|
|
23
24
|
bl_activate_operator: typing.Any
|
|
24
|
-
bl_default_preview_size: typing.Any
|
|
25
25
|
bl_options: typing.Any
|
|
26
26
|
bl_rna: typing.Any
|
|
27
27
|
bl_space_type: typing.Any
|
|
28
28
|
brush_type_prop: typing.Any
|
|
29
|
+
filter_brush: typing.Any
|
|
29
30
|
id_data: typing.Any
|
|
30
31
|
mode_prop: typing.Any
|
|
31
32
|
|
|
@@ -33,14 +34,12 @@ class IMAGE_AST_brush_paint(ImageAssetShelf, bpy.types.AssetShelf):
|
|
|
33
34
|
"""
|
|
34
35
|
|
|
35
36
|
:return: The RNA type or default when not found.
|
|
36
|
-
:rtype: bpy.types.Struct
|
|
37
37
|
"""
|
|
38
38
|
|
|
39
39
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
40
40
|
"""
|
|
41
41
|
|
|
42
42
|
:return: The class or default when not found.
|
|
43
|
-
:rtype: typing.Any
|
|
44
43
|
"""
|
|
45
44
|
|
|
46
45
|
@classmethod
|
|
@@ -50,7 +49,7 @@ class IMAGE_AST_brush_paint(ImageAssetShelf, bpy.types.AssetShelf):
|
|
|
50
49
|
:param context:
|
|
51
50
|
"""
|
|
52
51
|
|
|
53
|
-
class IMAGE_HT_header(
|
|
52
|
+
class IMAGE_HT_header(_bpy_types.Header):
|
|
54
53
|
bl_rna: typing.Any
|
|
55
54
|
bl_space_type: typing.Any
|
|
56
55
|
id_data: typing.Any
|
|
@@ -59,14 +58,12 @@ class IMAGE_HT_header(bpy.types.Header):
|
|
|
59
58
|
"""
|
|
60
59
|
|
|
61
60
|
:return: The RNA type or default when not found.
|
|
62
|
-
:rtype: bpy.types.Struct
|
|
63
61
|
"""
|
|
64
62
|
|
|
65
63
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
66
64
|
"""
|
|
67
65
|
|
|
68
66
|
:return: The class or default when not found.
|
|
69
|
-
:rtype: typing.Any
|
|
70
67
|
"""
|
|
71
68
|
|
|
72
69
|
def draw(self, context) -> None:
|
|
@@ -83,7 +80,7 @@ class IMAGE_HT_header(bpy.types.Header):
|
|
|
83
80
|
:param context:
|
|
84
81
|
"""
|
|
85
82
|
|
|
86
|
-
class IMAGE_HT_tool_header(
|
|
83
|
+
class IMAGE_HT_tool_header(_bpy_types.Header):
|
|
87
84
|
bl_region_type: typing.Any
|
|
88
85
|
bl_rna: typing.Any
|
|
89
86
|
bl_space_type: typing.Any
|
|
@@ -93,14 +90,12 @@ class IMAGE_HT_tool_header(bpy.types.Header):
|
|
|
93
90
|
"""
|
|
94
91
|
|
|
95
92
|
:return: The RNA type or default when not found.
|
|
96
|
-
:rtype: bpy.types.Struct
|
|
97
93
|
"""
|
|
98
94
|
|
|
99
95
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
100
96
|
"""
|
|
101
97
|
|
|
102
98
|
:return: The class or default when not found.
|
|
103
|
-
:rtype: typing.Any
|
|
104
99
|
"""
|
|
105
100
|
|
|
106
101
|
def draw(self, context) -> None:
|
|
@@ -121,7 +116,7 @@ class IMAGE_HT_tool_header(bpy.types.Header):
|
|
|
121
116
|
:param context:
|
|
122
117
|
"""
|
|
123
118
|
|
|
124
|
-
class IMAGE_MT_editor_menus(
|
|
119
|
+
class IMAGE_MT_editor_menus(_bpy_types.Menu):
|
|
125
120
|
bl_idname: typing.Any
|
|
126
121
|
bl_label: typing.Any
|
|
127
122
|
bl_rna: typing.Any
|
|
@@ -131,14 +126,12 @@ class IMAGE_MT_editor_menus(bpy.types.Menu):
|
|
|
131
126
|
"""
|
|
132
127
|
|
|
133
128
|
:return: The RNA type or default when not found.
|
|
134
|
-
:rtype: bpy.types.Struct
|
|
135
129
|
"""
|
|
136
130
|
|
|
137
131
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
138
132
|
"""
|
|
139
133
|
|
|
140
134
|
:return: The class or default when not found.
|
|
141
|
-
:rtype: typing.Any
|
|
142
135
|
"""
|
|
143
136
|
|
|
144
137
|
def draw(self, context) -> None:
|
|
@@ -147,7 +140,7 @@ class IMAGE_MT_editor_menus(bpy.types.Menu):
|
|
|
147
140
|
:param context:
|
|
148
141
|
"""
|
|
149
142
|
|
|
150
|
-
class IMAGE_MT_image(
|
|
143
|
+
class IMAGE_MT_image(_bpy_types.Menu):
|
|
151
144
|
bl_label: typing.Any
|
|
152
145
|
bl_rna: typing.Any
|
|
153
146
|
id_data: typing.Any
|
|
@@ -156,14 +149,12 @@ class IMAGE_MT_image(bpy.types.Menu):
|
|
|
156
149
|
"""
|
|
157
150
|
|
|
158
151
|
:return: The RNA type or default when not found.
|
|
159
|
-
:rtype: bpy.types.Struct
|
|
160
152
|
"""
|
|
161
153
|
|
|
162
154
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
163
155
|
"""
|
|
164
156
|
|
|
165
157
|
:return: The class or default when not found.
|
|
166
|
-
:rtype: typing.Any
|
|
167
158
|
"""
|
|
168
159
|
|
|
169
160
|
def draw(self, context) -> None:
|
|
@@ -172,7 +163,7 @@ class IMAGE_MT_image(bpy.types.Menu):
|
|
|
172
163
|
:param context:
|
|
173
164
|
"""
|
|
174
165
|
|
|
175
|
-
class IMAGE_MT_image_invert(
|
|
166
|
+
class IMAGE_MT_image_invert(_bpy_types.Menu):
|
|
176
167
|
bl_label: typing.Any
|
|
177
168
|
bl_rna: typing.Any
|
|
178
169
|
id_data: typing.Any
|
|
@@ -181,14 +172,12 @@ class IMAGE_MT_image_invert(bpy.types.Menu):
|
|
|
181
172
|
"""
|
|
182
173
|
|
|
183
174
|
:return: The RNA type or default when not found.
|
|
184
|
-
:rtype: bpy.types.Struct
|
|
185
175
|
"""
|
|
186
176
|
|
|
187
177
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
188
178
|
"""
|
|
189
179
|
|
|
190
180
|
:return: The class or default when not found.
|
|
191
|
-
:rtype: typing.Any
|
|
192
181
|
"""
|
|
193
182
|
|
|
194
183
|
def draw(self, _context) -> None:
|
|
@@ -197,7 +186,7 @@ class IMAGE_MT_image_invert(bpy.types.Menu):
|
|
|
197
186
|
:param _context:
|
|
198
187
|
"""
|
|
199
188
|
|
|
200
|
-
class IMAGE_MT_image_transform(
|
|
189
|
+
class IMAGE_MT_image_transform(_bpy_types.Menu):
|
|
201
190
|
bl_label: typing.Any
|
|
202
191
|
bl_rna: typing.Any
|
|
203
192
|
id_data: typing.Any
|
|
@@ -206,14 +195,12 @@ class IMAGE_MT_image_transform(bpy.types.Menu):
|
|
|
206
195
|
"""
|
|
207
196
|
|
|
208
197
|
:return: The RNA type or default when not found.
|
|
209
|
-
:rtype: bpy.types.Struct
|
|
210
198
|
"""
|
|
211
199
|
|
|
212
200
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
213
201
|
"""
|
|
214
202
|
|
|
215
203
|
:return: The class or default when not found.
|
|
216
|
-
:rtype: typing.Any
|
|
217
204
|
"""
|
|
218
205
|
|
|
219
206
|
def draw(self, _context) -> None:
|
|
@@ -222,7 +209,7 @@ class IMAGE_MT_image_transform(bpy.types.Menu):
|
|
|
222
209
|
:param _context:
|
|
223
210
|
"""
|
|
224
211
|
|
|
225
|
-
class IMAGE_MT_mask_context_menu(
|
|
212
|
+
class IMAGE_MT_mask_context_menu(_bpy_types.Menu):
|
|
226
213
|
bl_label: typing.Any
|
|
227
214
|
bl_rna: typing.Any
|
|
228
215
|
id_data: typing.Any
|
|
@@ -231,14 +218,12 @@ class IMAGE_MT_mask_context_menu(bpy.types.Menu):
|
|
|
231
218
|
"""
|
|
232
219
|
|
|
233
220
|
:return: The RNA type or default when not found.
|
|
234
|
-
:rtype: bpy.types.Struct
|
|
235
221
|
"""
|
|
236
222
|
|
|
237
223
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
238
224
|
"""
|
|
239
225
|
|
|
240
226
|
:return: The class or default when not found.
|
|
241
|
-
:rtype: typing.Any
|
|
242
227
|
"""
|
|
243
228
|
|
|
244
229
|
def draw(self, context) -> None:
|
|
@@ -254,7 +239,7 @@ class IMAGE_MT_mask_context_menu(bpy.types.Menu):
|
|
|
254
239
|
:param context:
|
|
255
240
|
"""
|
|
256
241
|
|
|
257
|
-
class IMAGE_MT_pivot_pie(
|
|
242
|
+
class IMAGE_MT_pivot_pie(_bpy_types.Menu):
|
|
258
243
|
bl_label: typing.Any
|
|
259
244
|
bl_rna: typing.Any
|
|
260
245
|
id_data: typing.Any
|
|
@@ -263,14 +248,12 @@ class IMAGE_MT_pivot_pie(bpy.types.Menu):
|
|
|
263
248
|
"""
|
|
264
249
|
|
|
265
250
|
:return: The RNA type or default when not found.
|
|
266
|
-
:rtype: bpy.types.Struct
|
|
267
251
|
"""
|
|
268
252
|
|
|
269
253
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
270
254
|
"""
|
|
271
255
|
|
|
272
256
|
:return: The class or default when not found.
|
|
273
|
-
:rtype: typing.Any
|
|
274
257
|
"""
|
|
275
258
|
|
|
276
259
|
def draw(self, context) -> None:
|
|
@@ -279,7 +262,7 @@ class IMAGE_MT_pivot_pie(bpy.types.Menu):
|
|
|
279
262
|
:param context:
|
|
280
263
|
"""
|
|
281
264
|
|
|
282
|
-
class IMAGE_MT_select(
|
|
265
|
+
class IMAGE_MT_select(_bpy_types.Menu):
|
|
283
266
|
bl_label: typing.Any
|
|
284
267
|
bl_rna: typing.Any
|
|
285
268
|
id_data: typing.Any
|
|
@@ -288,14 +271,12 @@ class IMAGE_MT_select(bpy.types.Menu):
|
|
|
288
271
|
"""
|
|
289
272
|
|
|
290
273
|
:return: The RNA type or default when not found.
|
|
291
|
-
:rtype: bpy.types.Struct
|
|
292
274
|
"""
|
|
293
275
|
|
|
294
276
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
295
277
|
"""
|
|
296
278
|
|
|
297
279
|
:return: The class or default when not found.
|
|
298
|
-
:rtype: typing.Any
|
|
299
280
|
"""
|
|
300
281
|
|
|
301
282
|
def draw(self, _context) -> None:
|
|
@@ -304,7 +285,7 @@ class IMAGE_MT_select(bpy.types.Menu):
|
|
|
304
285
|
:param _context:
|
|
305
286
|
"""
|
|
306
287
|
|
|
307
|
-
class IMAGE_MT_select_linked(
|
|
288
|
+
class IMAGE_MT_select_linked(_bpy_types.Menu):
|
|
308
289
|
bl_label: typing.Any
|
|
309
290
|
bl_rna: typing.Any
|
|
310
291
|
id_data: typing.Any
|
|
@@ -313,14 +294,12 @@ class IMAGE_MT_select_linked(bpy.types.Menu):
|
|
|
313
294
|
"""
|
|
314
295
|
|
|
315
296
|
:return: The RNA type or default when not found.
|
|
316
|
-
:rtype: bpy.types.Struct
|
|
317
297
|
"""
|
|
318
298
|
|
|
319
299
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
320
300
|
"""
|
|
321
301
|
|
|
322
302
|
:return: The class or default when not found.
|
|
323
|
-
:rtype: typing.Any
|
|
324
303
|
"""
|
|
325
304
|
|
|
326
305
|
def draw(self, _context) -> None:
|
|
@@ -329,7 +308,7 @@ class IMAGE_MT_select_linked(bpy.types.Menu):
|
|
|
329
308
|
:param _context:
|
|
330
309
|
"""
|
|
331
310
|
|
|
332
|
-
class IMAGE_MT_uvs(
|
|
311
|
+
class IMAGE_MT_uvs(_bpy_types.Menu):
|
|
333
312
|
bl_label: typing.Any
|
|
334
313
|
bl_rna: typing.Any
|
|
335
314
|
id_data: typing.Any
|
|
@@ -338,17 +317,15 @@ class IMAGE_MT_uvs(bpy.types.Menu):
|
|
|
338
317
|
"""
|
|
339
318
|
|
|
340
319
|
:return: The RNA type or default when not found.
|
|
341
|
-
:rtype: bpy.types.Struct
|
|
342
320
|
"""
|
|
343
321
|
|
|
344
322
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
345
323
|
"""
|
|
346
324
|
|
|
347
325
|
:return: The class or default when not found.
|
|
348
|
-
:rtype: typing.Any
|
|
349
326
|
"""
|
|
350
327
|
|
|
351
|
-
class IMAGE_MT_uvs_align(
|
|
328
|
+
class IMAGE_MT_uvs_align(_bpy_types.Menu):
|
|
352
329
|
bl_label: typing.Any
|
|
353
330
|
bl_rna: typing.Any
|
|
354
331
|
id_data: typing.Any
|
|
@@ -357,14 +334,12 @@ class IMAGE_MT_uvs_align(bpy.types.Menu):
|
|
|
357
334
|
"""
|
|
358
335
|
|
|
359
336
|
:return: The RNA type or default when not found.
|
|
360
|
-
:rtype: bpy.types.Struct
|
|
361
337
|
"""
|
|
362
338
|
|
|
363
339
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
364
340
|
"""
|
|
365
341
|
|
|
366
342
|
:return: The class or default when not found.
|
|
367
|
-
:rtype: typing.Any
|
|
368
343
|
"""
|
|
369
344
|
|
|
370
345
|
def draw(self, _context) -> None:
|
|
@@ -373,7 +348,7 @@ class IMAGE_MT_uvs_align(bpy.types.Menu):
|
|
|
373
348
|
:param _context:
|
|
374
349
|
"""
|
|
375
350
|
|
|
376
|
-
class IMAGE_MT_uvs_context_menu(
|
|
351
|
+
class IMAGE_MT_uvs_context_menu(_bpy_types.Menu):
|
|
377
352
|
bl_label: typing.Any
|
|
378
353
|
bl_rna: typing.Any
|
|
379
354
|
id_data: typing.Any
|
|
@@ -382,14 +357,12 @@ class IMAGE_MT_uvs_context_menu(bpy.types.Menu):
|
|
|
382
357
|
"""
|
|
383
358
|
|
|
384
359
|
:return: The RNA type or default when not found.
|
|
385
|
-
:rtype: bpy.types.Struct
|
|
386
360
|
"""
|
|
387
361
|
|
|
388
362
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
389
363
|
"""
|
|
390
364
|
|
|
391
365
|
:return: The class or default when not found.
|
|
392
|
-
:rtype: typing.Any
|
|
393
366
|
"""
|
|
394
367
|
|
|
395
368
|
def draw(self, context) -> None:
|
|
@@ -398,7 +371,7 @@ class IMAGE_MT_uvs_context_menu(bpy.types.Menu):
|
|
|
398
371
|
:param context:
|
|
399
372
|
"""
|
|
400
373
|
|
|
401
|
-
class IMAGE_MT_uvs_merge(
|
|
374
|
+
class IMAGE_MT_uvs_merge(_bpy_types.Menu):
|
|
402
375
|
bl_label: typing.Any
|
|
403
376
|
bl_rna: typing.Any
|
|
404
377
|
id_data: typing.Any
|
|
@@ -407,14 +380,12 @@ class IMAGE_MT_uvs_merge(bpy.types.Menu):
|
|
|
407
380
|
"""
|
|
408
381
|
|
|
409
382
|
:return: The RNA type or default when not found.
|
|
410
|
-
:rtype: bpy.types.Struct
|
|
411
383
|
"""
|
|
412
384
|
|
|
413
385
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
414
386
|
"""
|
|
415
387
|
|
|
416
388
|
:return: The class or default when not found.
|
|
417
|
-
:rtype: typing.Any
|
|
418
389
|
"""
|
|
419
390
|
|
|
420
391
|
def draw(self, _context) -> None:
|
|
@@ -423,23 +394,22 @@ class IMAGE_MT_uvs_merge(bpy.types.Menu):
|
|
|
423
394
|
:param _context:
|
|
424
395
|
"""
|
|
425
396
|
|
|
426
|
-
class IMAGE_MT_uvs_mirror(
|
|
397
|
+
class IMAGE_MT_uvs_mirror(_bpy_types.Menu):
|
|
427
398
|
bl_label: typing.Any
|
|
428
399
|
bl_rna: typing.Any
|
|
400
|
+
bl_translation_context: typing.Any
|
|
429
401
|
id_data: typing.Any
|
|
430
402
|
|
|
431
403
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
432
404
|
"""
|
|
433
405
|
|
|
434
406
|
:return: The RNA type or default when not found.
|
|
435
|
-
:rtype: bpy.types.Struct
|
|
436
407
|
"""
|
|
437
408
|
|
|
438
409
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
439
410
|
"""
|
|
440
411
|
|
|
441
412
|
:return: The class or default when not found.
|
|
442
|
-
:rtype: typing.Any
|
|
443
413
|
"""
|
|
444
414
|
|
|
445
415
|
def draw(self, _context) -> None:
|
|
@@ -448,7 +418,7 @@ class IMAGE_MT_uvs_mirror(bpy.types.Menu):
|
|
|
448
418
|
:param _context:
|
|
449
419
|
"""
|
|
450
420
|
|
|
451
|
-
class IMAGE_MT_uvs_select_mode(
|
|
421
|
+
class IMAGE_MT_uvs_select_mode(_bpy_types.Menu):
|
|
452
422
|
bl_label: typing.Any
|
|
453
423
|
bl_rna: typing.Any
|
|
454
424
|
id_data: typing.Any
|
|
@@ -457,14 +427,12 @@ class IMAGE_MT_uvs_select_mode(bpy.types.Menu):
|
|
|
457
427
|
"""
|
|
458
428
|
|
|
459
429
|
:return: The RNA type or default when not found.
|
|
460
|
-
:rtype: bpy.types.Struct
|
|
461
430
|
"""
|
|
462
431
|
|
|
463
432
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
464
433
|
"""
|
|
465
434
|
|
|
466
435
|
:return: The class or default when not found.
|
|
467
|
-
:rtype: typing.Any
|
|
468
436
|
"""
|
|
469
437
|
|
|
470
438
|
def draw(self, context) -> None:
|
|
@@ -473,7 +441,7 @@ class IMAGE_MT_uvs_select_mode(bpy.types.Menu):
|
|
|
473
441
|
:param context:
|
|
474
442
|
"""
|
|
475
443
|
|
|
476
|
-
class IMAGE_MT_uvs_showhide(
|
|
444
|
+
class IMAGE_MT_uvs_showhide(_bpy_types.Menu):
|
|
477
445
|
bl_label: typing.Any
|
|
478
446
|
bl_rna: typing.Any
|
|
479
447
|
id_data: typing.Any
|
|
@@ -482,14 +450,12 @@ class IMAGE_MT_uvs_showhide(bpy.types.Menu):
|
|
|
482
450
|
"""
|
|
483
451
|
|
|
484
452
|
:return: The RNA type or default when not found.
|
|
485
|
-
:rtype: bpy.types.Struct
|
|
486
453
|
"""
|
|
487
454
|
|
|
488
455
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
489
456
|
"""
|
|
490
457
|
|
|
491
458
|
:return: The class or default when not found.
|
|
492
|
-
:rtype: typing.Any
|
|
493
459
|
"""
|
|
494
460
|
|
|
495
461
|
def draw(self, _context) -> None:
|
|
@@ -498,7 +464,7 @@ class IMAGE_MT_uvs_showhide(bpy.types.Menu):
|
|
|
498
464
|
:param _context:
|
|
499
465
|
"""
|
|
500
466
|
|
|
501
|
-
class IMAGE_MT_uvs_snap(
|
|
467
|
+
class IMAGE_MT_uvs_snap(_bpy_types.Menu):
|
|
502
468
|
bl_label: typing.Any
|
|
503
469
|
bl_rna: typing.Any
|
|
504
470
|
id_data: typing.Any
|
|
@@ -507,14 +473,12 @@ class IMAGE_MT_uvs_snap(bpy.types.Menu):
|
|
|
507
473
|
"""
|
|
508
474
|
|
|
509
475
|
:return: The RNA type or default when not found.
|
|
510
|
-
:rtype: bpy.types.Struct
|
|
511
476
|
"""
|
|
512
477
|
|
|
513
478
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
514
479
|
"""
|
|
515
480
|
|
|
516
481
|
:return: The class or default when not found.
|
|
517
|
-
:rtype: typing.Any
|
|
518
482
|
"""
|
|
519
483
|
|
|
520
484
|
def draw(self, _context) -> None:
|
|
@@ -523,7 +487,7 @@ class IMAGE_MT_uvs_snap(bpy.types.Menu):
|
|
|
523
487
|
:param _context:
|
|
524
488
|
"""
|
|
525
489
|
|
|
526
|
-
class IMAGE_MT_uvs_snap_pie(
|
|
490
|
+
class IMAGE_MT_uvs_snap_pie(_bpy_types.Menu):
|
|
527
491
|
bl_label: typing.Any
|
|
528
492
|
bl_rna: typing.Any
|
|
529
493
|
id_data: typing.Any
|
|
@@ -532,14 +496,12 @@ class IMAGE_MT_uvs_snap_pie(bpy.types.Menu):
|
|
|
532
496
|
"""
|
|
533
497
|
|
|
534
498
|
:return: The RNA type or default when not found.
|
|
535
|
-
:rtype: bpy.types.Struct
|
|
536
499
|
"""
|
|
537
500
|
|
|
538
501
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
539
502
|
"""
|
|
540
503
|
|
|
541
504
|
:return: The class or default when not found.
|
|
542
|
-
:rtype: typing.Any
|
|
543
505
|
"""
|
|
544
506
|
|
|
545
507
|
def draw(self, _context) -> None:
|
|
@@ -548,7 +510,7 @@ class IMAGE_MT_uvs_snap_pie(bpy.types.Menu):
|
|
|
548
510
|
:param _context:
|
|
549
511
|
"""
|
|
550
512
|
|
|
551
|
-
class IMAGE_MT_uvs_split(
|
|
513
|
+
class IMAGE_MT_uvs_split(_bpy_types.Menu):
|
|
552
514
|
bl_label: typing.Any
|
|
553
515
|
bl_rna: typing.Any
|
|
554
516
|
id_data: typing.Any
|
|
@@ -557,14 +519,12 @@ class IMAGE_MT_uvs_split(bpy.types.Menu):
|
|
|
557
519
|
"""
|
|
558
520
|
|
|
559
521
|
:return: The RNA type or default when not found.
|
|
560
|
-
:rtype: bpy.types.Struct
|
|
561
522
|
"""
|
|
562
523
|
|
|
563
524
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
564
525
|
"""
|
|
565
526
|
|
|
566
527
|
:return: The class or default when not found.
|
|
567
|
-
:rtype: typing.Any
|
|
568
528
|
"""
|
|
569
529
|
|
|
570
530
|
def draw(self, _context) -> None:
|
|
@@ -573,7 +533,7 @@ class IMAGE_MT_uvs_split(bpy.types.Menu):
|
|
|
573
533
|
:param _context:
|
|
574
534
|
"""
|
|
575
535
|
|
|
576
|
-
class IMAGE_MT_uvs_transform(
|
|
536
|
+
class IMAGE_MT_uvs_transform(_bpy_types.Menu):
|
|
577
537
|
bl_label: typing.Any
|
|
578
538
|
bl_rna: typing.Any
|
|
579
539
|
id_data: typing.Any
|
|
@@ -582,14 +542,12 @@ class IMAGE_MT_uvs_transform(bpy.types.Menu):
|
|
|
582
542
|
"""
|
|
583
543
|
|
|
584
544
|
:return: The RNA type or default when not found.
|
|
585
|
-
:rtype: bpy.types.Struct
|
|
586
545
|
"""
|
|
587
546
|
|
|
588
547
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
589
548
|
"""
|
|
590
549
|
|
|
591
550
|
:return: The class or default when not found.
|
|
592
|
-
:rtype: typing.Any
|
|
593
551
|
"""
|
|
594
552
|
|
|
595
553
|
def draw(self, _context) -> None:
|
|
@@ -598,7 +556,7 @@ class IMAGE_MT_uvs_transform(bpy.types.Menu):
|
|
|
598
556
|
:param _context:
|
|
599
557
|
"""
|
|
600
558
|
|
|
601
|
-
class IMAGE_MT_uvs_unwrap(
|
|
559
|
+
class IMAGE_MT_uvs_unwrap(_bpy_types.Menu):
|
|
602
560
|
bl_label: typing.Any
|
|
603
561
|
bl_rna: typing.Any
|
|
604
562
|
id_data: typing.Any
|
|
@@ -607,14 +565,12 @@ class IMAGE_MT_uvs_unwrap(bpy.types.Menu):
|
|
|
607
565
|
"""
|
|
608
566
|
|
|
609
567
|
:return: The RNA type or default when not found.
|
|
610
|
-
:rtype: bpy.types.Struct
|
|
611
568
|
"""
|
|
612
569
|
|
|
613
570
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
614
571
|
"""
|
|
615
572
|
|
|
616
573
|
:return: The class or default when not found.
|
|
617
|
-
:rtype: typing.Any
|
|
618
574
|
"""
|
|
619
575
|
|
|
620
576
|
def draw(self, _context) -> None:
|
|
@@ -623,7 +579,7 @@ class IMAGE_MT_uvs_unwrap(bpy.types.Menu):
|
|
|
623
579
|
:param _context:
|
|
624
580
|
"""
|
|
625
581
|
|
|
626
|
-
class IMAGE_MT_view(
|
|
582
|
+
class IMAGE_MT_view(_bpy_types.Menu):
|
|
627
583
|
bl_label: typing.Any
|
|
628
584
|
bl_rna: typing.Any
|
|
629
585
|
id_data: typing.Any
|
|
@@ -632,14 +588,12 @@ class IMAGE_MT_view(bpy.types.Menu):
|
|
|
632
588
|
"""
|
|
633
589
|
|
|
634
590
|
:return: The RNA type or default when not found.
|
|
635
|
-
:rtype: bpy.types.Struct
|
|
636
591
|
"""
|
|
637
592
|
|
|
638
593
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
639
594
|
"""
|
|
640
595
|
|
|
641
596
|
:return: The class or default when not found.
|
|
642
|
-
:rtype: typing.Any
|
|
643
597
|
"""
|
|
644
598
|
|
|
645
599
|
def draw(self, context) -> None:
|
|
@@ -648,7 +602,7 @@ class IMAGE_MT_view(bpy.types.Menu):
|
|
|
648
602
|
:param context:
|
|
649
603
|
"""
|
|
650
604
|
|
|
651
|
-
class IMAGE_MT_view_pie(
|
|
605
|
+
class IMAGE_MT_view_pie(_bpy_types.Menu):
|
|
652
606
|
bl_label: typing.Any
|
|
653
607
|
bl_rna: typing.Any
|
|
654
608
|
id_data: typing.Any
|
|
@@ -657,14 +611,12 @@ class IMAGE_MT_view_pie(bpy.types.Menu):
|
|
|
657
611
|
"""
|
|
658
612
|
|
|
659
613
|
:return: The RNA type or default when not found.
|
|
660
|
-
:rtype: bpy.types.Struct
|
|
661
614
|
"""
|
|
662
615
|
|
|
663
616
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
664
617
|
"""
|
|
665
618
|
|
|
666
619
|
:return: The class or default when not found.
|
|
667
|
-
:rtype: typing.Any
|
|
668
620
|
"""
|
|
669
621
|
|
|
670
622
|
def draw(self, context) -> None:
|
|
@@ -673,7 +625,7 @@ class IMAGE_MT_view_pie(bpy.types.Menu):
|
|
|
673
625
|
:param context:
|
|
674
626
|
"""
|
|
675
627
|
|
|
676
|
-
class IMAGE_MT_view_zoom(
|
|
628
|
+
class IMAGE_MT_view_zoom(_bpy_types.Menu):
|
|
677
629
|
bl_label: typing.Any
|
|
678
630
|
bl_rna: typing.Any
|
|
679
631
|
id_data: typing.Any
|
|
@@ -682,14 +634,12 @@ class IMAGE_MT_view_zoom(bpy.types.Menu):
|
|
|
682
634
|
"""
|
|
683
635
|
|
|
684
636
|
:return: The RNA type or default when not found.
|
|
685
|
-
:rtype: bpy.types.Struct
|
|
686
637
|
"""
|
|
687
638
|
|
|
688
639
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
689
640
|
"""
|
|
690
641
|
|
|
691
642
|
:return: The class or default when not found.
|
|
692
|
-
:rtype: typing.Any
|
|
693
643
|
"""
|
|
694
644
|
|
|
695
645
|
def draw(self, context) -> None:
|
|
@@ -699,7 +649,7 @@ class IMAGE_MT_view_zoom(bpy.types.Menu):
|
|
|
699
649
|
"""
|
|
700
650
|
|
|
701
651
|
class IMAGE_PT_active_mask_point(
|
|
702
|
-
bl_ui.properties_mask_common.MASK_PT_point,
|
|
652
|
+
bl_ui.properties_mask_common.MASK_PT_point, _bpy_types.Panel
|
|
703
653
|
):
|
|
704
654
|
bl_category: typing.Any
|
|
705
655
|
bl_label: typing.Any
|
|
@@ -712,18 +662,16 @@ class IMAGE_PT_active_mask_point(
|
|
|
712
662
|
"""
|
|
713
663
|
|
|
714
664
|
:return: The RNA type or default when not found.
|
|
715
|
-
:rtype: bpy.types.Struct
|
|
716
665
|
"""
|
|
717
666
|
|
|
718
667
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
719
668
|
"""
|
|
720
669
|
|
|
721
670
|
:return: The class or default when not found.
|
|
722
|
-
:rtype: typing.Any
|
|
723
671
|
"""
|
|
724
672
|
|
|
725
673
|
class IMAGE_PT_active_mask_spline(
|
|
726
|
-
bl_ui.properties_mask_common.MASK_PT_spline,
|
|
674
|
+
bl_ui.properties_mask_common.MASK_PT_spline, _bpy_types.Panel
|
|
727
675
|
):
|
|
728
676
|
bl_category: typing.Any
|
|
729
677
|
bl_label: typing.Any
|
|
@@ -736,18 +684,16 @@ class IMAGE_PT_active_mask_spline(
|
|
|
736
684
|
"""
|
|
737
685
|
|
|
738
686
|
:return: The RNA type or default when not found.
|
|
739
|
-
:rtype: bpy.types.Struct
|
|
740
687
|
"""
|
|
741
688
|
|
|
742
689
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
743
690
|
"""
|
|
744
691
|
|
|
745
692
|
:return: The class or default when not found.
|
|
746
|
-
:rtype: typing.Any
|
|
747
693
|
"""
|
|
748
694
|
|
|
749
695
|
class IMAGE_PT_active_tool(
|
|
750
|
-
|
|
696
|
+
_bpy_types.Panel, bl_ui.space_toolsystem_common.ToolActivePanelHelper
|
|
751
697
|
):
|
|
752
698
|
bl_category: typing.Any
|
|
753
699
|
bl_label: typing.Any
|
|
@@ -760,18 +706,16 @@ class IMAGE_PT_active_tool(
|
|
|
760
706
|
"""
|
|
761
707
|
|
|
762
708
|
:return: The RNA type or default when not found.
|
|
763
|
-
:rtype: bpy.types.Struct
|
|
764
709
|
"""
|
|
765
710
|
|
|
766
711
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
767
712
|
"""
|
|
768
713
|
|
|
769
714
|
:return: The class or default when not found.
|
|
770
|
-
:rtype: typing.Any
|
|
771
715
|
"""
|
|
772
716
|
|
|
773
717
|
class IMAGE_PT_annotation(
|
|
774
|
-
bl_ui.properties_grease_pencil_common.AnnotationDataPanel,
|
|
718
|
+
bl_ui.properties_grease_pencil_common.AnnotationDataPanel, _bpy_types.Panel
|
|
775
719
|
):
|
|
776
720
|
bl_category: typing.Any
|
|
777
721
|
bl_label: typing.Any
|
|
@@ -785,17 +729,15 @@ class IMAGE_PT_annotation(
|
|
|
785
729
|
"""
|
|
786
730
|
|
|
787
731
|
:return: The RNA type or default when not found.
|
|
788
|
-
:rtype: bpy.types.Struct
|
|
789
732
|
"""
|
|
790
733
|
|
|
791
734
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
792
735
|
"""
|
|
793
736
|
|
|
794
737
|
:return: The class or default when not found.
|
|
795
|
-
:rtype: typing.Any
|
|
796
738
|
"""
|
|
797
739
|
|
|
798
|
-
class IMAGE_PT_gizmo_display(
|
|
740
|
+
class IMAGE_PT_gizmo_display(_bpy_types.Panel):
|
|
799
741
|
bl_label: typing.Any
|
|
800
742
|
bl_region_type: typing.Any
|
|
801
743
|
bl_rna: typing.Any
|
|
@@ -807,14 +749,12 @@ class IMAGE_PT_gizmo_display(bpy.types.Panel):
|
|
|
807
749
|
"""
|
|
808
750
|
|
|
809
751
|
:return: The RNA type or default when not found.
|
|
810
|
-
:rtype: bpy.types.Struct
|
|
811
752
|
"""
|
|
812
753
|
|
|
813
754
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
814
755
|
"""
|
|
815
756
|
|
|
816
757
|
:return: The class or default when not found.
|
|
817
|
-
:rtype: typing.Any
|
|
818
758
|
"""
|
|
819
759
|
|
|
820
760
|
def draw(self, context) -> None:
|
|
@@ -823,7 +763,7 @@ class IMAGE_PT_gizmo_display(bpy.types.Panel):
|
|
|
823
763
|
:param context:
|
|
824
764
|
"""
|
|
825
765
|
|
|
826
|
-
class IMAGE_PT_image_properties(
|
|
766
|
+
class IMAGE_PT_image_properties(_bpy_types.Panel):
|
|
827
767
|
bl_category: typing.Any
|
|
828
768
|
bl_label: typing.Any
|
|
829
769
|
bl_region_type: typing.Any
|
|
@@ -835,14 +775,12 @@ class IMAGE_PT_image_properties(bpy.types.Panel):
|
|
|
835
775
|
"""
|
|
836
776
|
|
|
837
777
|
:return: The RNA type or default when not found.
|
|
838
|
-
:rtype: bpy.types.Struct
|
|
839
778
|
"""
|
|
840
779
|
|
|
841
780
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
842
781
|
"""
|
|
843
782
|
|
|
844
783
|
:return: The class or default when not found.
|
|
845
|
-
:rtype: typing.Any
|
|
846
784
|
"""
|
|
847
785
|
|
|
848
786
|
def draw(self, context) -> None:
|
|
@@ -858,7 +796,7 @@ class IMAGE_PT_image_properties(bpy.types.Panel):
|
|
|
858
796
|
:param context:
|
|
859
797
|
"""
|
|
860
798
|
|
|
861
|
-
class IMAGE_PT_mask(bl_ui.properties_mask_common.MASK_PT_mask,
|
|
799
|
+
class IMAGE_PT_mask(bl_ui.properties_mask_common.MASK_PT_mask, _bpy_types.Panel):
|
|
862
800
|
bl_category: typing.Any
|
|
863
801
|
bl_label: typing.Any
|
|
864
802
|
bl_options: typing.Any
|
|
@@ -871,18 +809,16 @@ class IMAGE_PT_mask(bl_ui.properties_mask_common.MASK_PT_mask, bpy.types.Panel):
|
|
|
871
809
|
"""
|
|
872
810
|
|
|
873
811
|
:return: The RNA type or default when not found.
|
|
874
|
-
:rtype: bpy.types.Struct
|
|
875
812
|
"""
|
|
876
813
|
|
|
877
814
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
878
815
|
"""
|
|
879
816
|
|
|
880
817
|
:return: The class or default when not found.
|
|
881
|
-
:rtype: typing.Any
|
|
882
818
|
"""
|
|
883
819
|
|
|
884
820
|
class IMAGE_PT_mask_animation(
|
|
885
|
-
bl_ui.properties_mask_common.MASK_PT_animation,
|
|
821
|
+
bl_ui.properties_mask_common.MASK_PT_animation, _bpy_types.Panel
|
|
886
822
|
):
|
|
887
823
|
bl_category: typing.Any
|
|
888
824
|
bl_label: typing.Any
|
|
@@ -896,19 +832,18 @@ class IMAGE_PT_mask_animation(
|
|
|
896
832
|
"""
|
|
897
833
|
|
|
898
834
|
:return: The RNA type or default when not found.
|
|
899
|
-
:rtype: bpy.types.Struct
|
|
900
835
|
"""
|
|
901
836
|
|
|
902
837
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
903
838
|
"""
|
|
904
839
|
|
|
905
840
|
:return: The class or default when not found.
|
|
906
|
-
:rtype: typing.Any
|
|
907
841
|
"""
|
|
908
842
|
|
|
909
|
-
class
|
|
910
|
-
bl_ui.properties_mask_common.
|
|
843
|
+
class IMAGE_PT_mask_layers(
|
|
844
|
+
bl_ui.properties_mask_common.MASK_PT_layers, _bpy_types.Panel
|
|
911
845
|
):
|
|
846
|
+
bl_category: typing.Any
|
|
912
847
|
bl_label: typing.Any
|
|
913
848
|
bl_region_type: typing.Any
|
|
914
849
|
bl_rna: typing.Any
|
|
@@ -919,60 +854,58 @@ class IMAGE_PT_mask_display(
|
|
|
919
854
|
"""
|
|
920
855
|
|
|
921
856
|
:return: The RNA type or default when not found.
|
|
922
|
-
:rtype: bpy.types.Struct
|
|
923
857
|
"""
|
|
924
858
|
|
|
925
859
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
926
860
|
"""
|
|
927
861
|
|
|
928
862
|
:return: The class or default when not found.
|
|
929
|
-
:rtype: typing.Any
|
|
930
863
|
"""
|
|
931
864
|
|
|
932
|
-
class
|
|
933
|
-
bl_ui.properties_mask_common.MASK_PT_layers, bpy.types.Panel
|
|
934
|
-
):
|
|
935
|
-
bl_category: typing.Any
|
|
865
|
+
class IMAGE_PT_overlay(_bpy_types.Panel):
|
|
936
866
|
bl_label: typing.Any
|
|
937
867
|
bl_region_type: typing.Any
|
|
938
868
|
bl_rna: typing.Any
|
|
939
869
|
bl_space_type: typing.Any
|
|
870
|
+
bl_ui_units_x: typing.Any
|
|
940
871
|
id_data: typing.Any
|
|
941
872
|
|
|
942
873
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
943
874
|
"""
|
|
944
875
|
|
|
945
876
|
:return: The RNA type or default when not found.
|
|
946
|
-
:rtype: bpy.types.Struct
|
|
947
877
|
"""
|
|
948
878
|
|
|
949
879
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
950
880
|
"""
|
|
951
881
|
|
|
952
882
|
:return: The class or default when not found.
|
|
953
|
-
:rtype: typing.Any
|
|
954
883
|
"""
|
|
955
884
|
|
|
956
|
-
|
|
885
|
+
def draw(self, context) -> None:
|
|
886
|
+
"""
|
|
887
|
+
|
|
888
|
+
:param context:
|
|
889
|
+
"""
|
|
890
|
+
|
|
891
|
+
class IMAGE_PT_overlay_guides(_bpy_types.Panel):
|
|
957
892
|
bl_label: typing.Any
|
|
893
|
+
bl_parent_id: typing.Any
|
|
958
894
|
bl_region_type: typing.Any
|
|
959
895
|
bl_rna: typing.Any
|
|
960
896
|
bl_space_type: typing.Any
|
|
961
|
-
bl_ui_units_x: typing.Any
|
|
962
897
|
id_data: typing.Any
|
|
963
898
|
|
|
964
899
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
965
900
|
"""
|
|
966
901
|
|
|
967
902
|
:return: The RNA type or default when not found.
|
|
968
|
-
:rtype: bpy.types.Struct
|
|
969
903
|
"""
|
|
970
904
|
|
|
971
905
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
972
906
|
"""
|
|
973
907
|
|
|
974
908
|
:return: The class or default when not found.
|
|
975
|
-
:rtype: typing.Any
|
|
976
909
|
"""
|
|
977
910
|
|
|
978
911
|
def draw(self, context) -> None:
|
|
@@ -981,7 +914,14 @@ class IMAGE_PT_overlay(bpy.types.Panel):
|
|
|
981
914
|
:param context:
|
|
982
915
|
"""
|
|
983
916
|
|
|
984
|
-
|
|
917
|
+
@classmethod
|
|
918
|
+
def poll(cls, context) -> None:
|
|
919
|
+
"""
|
|
920
|
+
|
|
921
|
+
:param context:
|
|
922
|
+
"""
|
|
923
|
+
|
|
924
|
+
class IMAGE_PT_overlay_image(_bpy_types.Panel):
|
|
985
925
|
bl_label: typing.Any
|
|
986
926
|
bl_parent_id: typing.Any
|
|
987
927
|
bl_region_type: typing.Any
|
|
@@ -993,14 +933,12 @@ class IMAGE_PT_overlay_guides(bpy.types.Panel):
|
|
|
993
933
|
"""
|
|
994
934
|
|
|
995
935
|
:return: The RNA type or default when not found.
|
|
996
|
-
:rtype: bpy.types.Struct
|
|
997
936
|
"""
|
|
998
937
|
|
|
999
938
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1000
939
|
"""
|
|
1001
940
|
|
|
1002
941
|
:return: The class or default when not found.
|
|
1003
|
-
:rtype: typing.Any
|
|
1004
942
|
"""
|
|
1005
943
|
|
|
1006
944
|
def draw(self, context) -> None:
|
|
@@ -1009,14 +947,9 @@ class IMAGE_PT_overlay_guides(bpy.types.Panel):
|
|
|
1009
947
|
:param context:
|
|
1010
948
|
"""
|
|
1011
949
|
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
:param context:
|
|
1017
|
-
"""
|
|
1018
|
-
|
|
1019
|
-
class IMAGE_PT_overlay_image(bpy.types.Panel):
|
|
950
|
+
class IMAGE_PT_overlay_mask(
|
|
951
|
+
bl_ui.properties_mask_common.MASK_PT_display, _bpy_types.Panel
|
|
952
|
+
):
|
|
1020
953
|
bl_label: typing.Any
|
|
1021
954
|
bl_parent_id: typing.Any
|
|
1022
955
|
bl_region_type: typing.Any
|
|
@@ -1028,23 +961,22 @@ class IMAGE_PT_overlay_image(bpy.types.Panel):
|
|
|
1028
961
|
"""
|
|
1029
962
|
|
|
1030
963
|
:return: The RNA type or default when not found.
|
|
1031
|
-
:rtype: bpy.types.Struct
|
|
1032
964
|
"""
|
|
1033
965
|
|
|
1034
966
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1035
967
|
"""
|
|
1036
968
|
|
|
1037
969
|
:return: The class or default when not found.
|
|
1038
|
-
:rtype: typing.Any
|
|
1039
970
|
"""
|
|
1040
971
|
|
|
1041
|
-
|
|
972
|
+
@classmethod
|
|
973
|
+
def poll(cls, context) -> None:
|
|
1042
974
|
"""
|
|
1043
975
|
|
|
1044
976
|
:param context:
|
|
1045
977
|
"""
|
|
1046
978
|
|
|
1047
|
-
class IMAGE_PT_overlay_render_guides(
|
|
979
|
+
class IMAGE_PT_overlay_render_guides(_bpy_types.Panel):
|
|
1048
980
|
bl_label: typing.Any
|
|
1049
981
|
bl_parent_id: typing.Any
|
|
1050
982
|
bl_region_type: typing.Any
|
|
@@ -1056,14 +988,12 @@ class IMAGE_PT_overlay_render_guides(bpy.types.Panel):
|
|
|
1056
988
|
"""
|
|
1057
989
|
|
|
1058
990
|
:return: The RNA type or default when not found.
|
|
1059
|
-
:rtype: bpy.types.Struct
|
|
1060
991
|
"""
|
|
1061
992
|
|
|
1062
993
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1063
994
|
"""
|
|
1064
995
|
|
|
1065
996
|
:return: The class or default when not found.
|
|
1066
|
-
:rtype: typing.Any
|
|
1067
997
|
"""
|
|
1068
998
|
|
|
1069
999
|
def draw(self, context) -> None:
|
|
@@ -1079,7 +1009,7 @@ class IMAGE_PT_overlay_render_guides(bpy.types.Panel):
|
|
|
1079
1009
|
:param context:
|
|
1080
1010
|
"""
|
|
1081
1011
|
|
|
1082
|
-
class IMAGE_PT_overlay_uv_display(
|
|
1012
|
+
class IMAGE_PT_overlay_uv_display(_bpy_types.Panel):
|
|
1083
1013
|
bl_label: typing.Any
|
|
1084
1014
|
bl_parent_id: typing.Any
|
|
1085
1015
|
bl_region_type: typing.Any
|
|
@@ -1091,14 +1021,12 @@ class IMAGE_PT_overlay_uv_display(bpy.types.Panel):
|
|
|
1091
1021
|
"""
|
|
1092
1022
|
|
|
1093
1023
|
:return: The RNA type or default when not found.
|
|
1094
|
-
:rtype: bpy.types.Struct
|
|
1095
1024
|
"""
|
|
1096
1025
|
|
|
1097
1026
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1098
1027
|
"""
|
|
1099
1028
|
|
|
1100
1029
|
:return: The class or default when not found.
|
|
1101
|
-
:rtype: typing.Any
|
|
1102
1030
|
"""
|
|
1103
1031
|
|
|
1104
1032
|
def draw(self, context) -> None:
|
|
@@ -1114,7 +1042,7 @@ class IMAGE_PT_overlay_uv_display(bpy.types.Panel):
|
|
|
1114
1042
|
:param context:
|
|
1115
1043
|
"""
|
|
1116
1044
|
|
|
1117
|
-
class IMAGE_PT_overlay_uv_edit_geometry(
|
|
1045
|
+
class IMAGE_PT_overlay_uv_edit_geometry(_bpy_types.Panel):
|
|
1118
1046
|
bl_label: typing.Any
|
|
1119
1047
|
bl_parent_id: typing.Any
|
|
1120
1048
|
bl_region_type: typing.Any
|
|
@@ -1126,14 +1054,12 @@ class IMAGE_PT_overlay_uv_edit_geometry(bpy.types.Panel):
|
|
|
1126
1054
|
"""
|
|
1127
1055
|
|
|
1128
1056
|
:return: The RNA type or default when not found.
|
|
1129
|
-
:rtype: bpy.types.Struct
|
|
1130
1057
|
"""
|
|
1131
1058
|
|
|
1132
1059
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1133
1060
|
"""
|
|
1134
1061
|
|
|
1135
1062
|
:return: The class or default when not found.
|
|
1136
|
-
:rtype: typing.Any
|
|
1137
1063
|
"""
|
|
1138
1064
|
|
|
1139
1065
|
def draw(self, context) -> None:
|
|
@@ -1149,7 +1075,7 @@ class IMAGE_PT_overlay_uv_edit_geometry(bpy.types.Panel):
|
|
|
1149
1075
|
:param context:
|
|
1150
1076
|
"""
|
|
1151
1077
|
|
|
1152
|
-
class IMAGE_PT_overlay_uv_stretch(
|
|
1078
|
+
class IMAGE_PT_overlay_uv_stretch(_bpy_types.Panel):
|
|
1153
1079
|
bl_label: typing.Any
|
|
1154
1080
|
bl_parent_id: typing.Any
|
|
1155
1081
|
bl_region_type: typing.Any
|
|
@@ -1161,14 +1087,12 @@ class IMAGE_PT_overlay_uv_stretch(bpy.types.Panel):
|
|
|
1161
1087
|
"""
|
|
1162
1088
|
|
|
1163
1089
|
:return: The RNA type or default when not found.
|
|
1164
|
-
:rtype: bpy.types.Struct
|
|
1165
1090
|
"""
|
|
1166
1091
|
|
|
1167
1092
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1168
1093
|
"""
|
|
1169
1094
|
|
|
1170
1095
|
:return: The class or default when not found.
|
|
1171
|
-
:rtype: typing.Any
|
|
1172
1096
|
"""
|
|
1173
1097
|
|
|
1174
1098
|
def draw(self, context) -> None:
|
|
@@ -1185,7 +1109,7 @@ class IMAGE_PT_overlay_uv_stretch(bpy.types.Panel):
|
|
|
1185
1109
|
"""
|
|
1186
1110
|
|
|
1187
1111
|
class IMAGE_PT_paint_clone(
|
|
1188
|
-
ImagePaintPanel,
|
|
1112
|
+
ImagePaintPanel, _bpy_types.Panel, bl_ui.properties_paint_common.ClonePanel
|
|
1189
1113
|
):
|
|
1190
1114
|
bl_category: typing.Any
|
|
1191
1115
|
bl_context: typing.Any
|
|
@@ -1201,22 +1125,20 @@ class IMAGE_PT_paint_clone(
|
|
|
1201
1125
|
"""
|
|
1202
1126
|
|
|
1203
1127
|
:return: The RNA type or default when not found.
|
|
1204
|
-
:rtype: bpy.types.Struct
|
|
1205
1128
|
"""
|
|
1206
1129
|
|
|
1207
1130
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1208
1131
|
"""
|
|
1209
1132
|
|
|
1210
1133
|
:return: The class or default when not found.
|
|
1211
|
-
:rtype: typing.Any
|
|
1212
1134
|
"""
|
|
1213
1135
|
|
|
1214
|
-
class ImagePaintPanel:
|
|
1136
|
+
class ImagePaintPanel(bl_ui.properties_paint_common.UnifiedPaintPanel):
|
|
1215
1137
|
bl_region_type: typing.Any
|
|
1216
1138
|
bl_space_type: typing.Any
|
|
1217
1139
|
|
|
1218
1140
|
class IMAGE_PT_paint_curve(
|
|
1219
|
-
|
|
1141
|
+
_bpy_types.Panel, BrushButtonsPanel, bl_ui.properties_paint_common.FalloffPanel
|
|
1220
1142
|
):
|
|
1221
1143
|
bl_category: typing.Any
|
|
1222
1144
|
bl_context: typing.Any
|
|
@@ -1232,18 +1154,16 @@ class IMAGE_PT_paint_curve(
|
|
|
1232
1154
|
"""
|
|
1233
1155
|
|
|
1234
1156
|
:return: The RNA type or default when not found.
|
|
1235
|
-
:rtype: bpy.types.Struct
|
|
1236
1157
|
"""
|
|
1237
1158
|
|
|
1238
1159
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1239
1160
|
"""
|
|
1240
1161
|
|
|
1241
1162
|
:return: The class or default when not found.
|
|
1242
|
-
:rtype: typing.Any
|
|
1243
1163
|
"""
|
|
1244
1164
|
|
|
1245
1165
|
class IMAGE_PT_paint_select(
|
|
1246
|
-
ImagePaintPanel,
|
|
1166
|
+
ImagePaintPanel, _bpy_types.Panel, bl_ui.properties_paint_common.BrushSelectPanel
|
|
1247
1167
|
):
|
|
1248
1168
|
bl_category: typing.Any
|
|
1249
1169
|
bl_context: typing.Any
|
|
@@ -1257,18 +1177,16 @@ class IMAGE_PT_paint_select(
|
|
|
1257
1177
|
"""
|
|
1258
1178
|
|
|
1259
1179
|
:return: The RNA type or default when not found.
|
|
1260
|
-
:rtype: bpy.types.Struct
|
|
1261
1180
|
"""
|
|
1262
1181
|
|
|
1263
1182
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1264
1183
|
"""
|
|
1265
1184
|
|
|
1266
1185
|
:return: The class or default when not found.
|
|
1267
|
-
:rtype: typing.Any
|
|
1268
1186
|
"""
|
|
1269
1187
|
|
|
1270
1188
|
class IMAGE_PT_paint_stroke(
|
|
1271
|
-
|
|
1189
|
+
_bpy_types.Panel, BrushButtonsPanel, bl_ui.properties_paint_common.StrokePanel
|
|
1272
1190
|
):
|
|
1273
1191
|
bl_category: typing.Any
|
|
1274
1192
|
bl_context: typing.Any
|
|
@@ -1285,18 +1203,16 @@ class IMAGE_PT_paint_stroke(
|
|
|
1285
1203
|
"""
|
|
1286
1204
|
|
|
1287
1205
|
:return: The RNA type or default when not found.
|
|
1288
|
-
:rtype: bpy.types.Struct
|
|
1289
1206
|
"""
|
|
1290
1207
|
|
|
1291
1208
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1292
1209
|
"""
|
|
1293
1210
|
|
|
1294
1211
|
:return: The class or default when not found.
|
|
1295
|
-
:rtype: typing.Any
|
|
1296
1212
|
"""
|
|
1297
1213
|
|
|
1298
1214
|
class IMAGE_PT_paint_stroke_smooth_stroke(
|
|
1299
|
-
BrushButtonsPanel,
|
|
1215
|
+
BrushButtonsPanel, _bpy_types.Panel, bl_ui.properties_paint_common.SmoothStrokePanel
|
|
1300
1216
|
):
|
|
1301
1217
|
bl_category: typing.Any
|
|
1302
1218
|
bl_context: typing.Any
|
|
@@ -1312,18 +1228,16 @@ class IMAGE_PT_paint_stroke_smooth_stroke(
|
|
|
1312
1228
|
"""
|
|
1313
1229
|
|
|
1314
1230
|
:return: The RNA type or default when not found.
|
|
1315
|
-
:rtype: bpy.types.Struct
|
|
1316
1231
|
"""
|
|
1317
1232
|
|
|
1318
1233
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1319
1234
|
"""
|
|
1320
1235
|
|
|
1321
1236
|
:return: The class or default when not found.
|
|
1322
|
-
:rtype: typing.Any
|
|
1323
1237
|
"""
|
|
1324
1238
|
|
|
1325
1239
|
class IMAGE_PT_paint_swatches(
|
|
1326
|
-
ImagePaintPanel,
|
|
1240
|
+
ImagePaintPanel, _bpy_types.Panel, bl_ui.properties_paint_common.ColorPalettePanel
|
|
1327
1241
|
):
|
|
1328
1242
|
bl_category: typing.Any
|
|
1329
1243
|
bl_context: typing.Any
|
|
@@ -1339,17 +1253,15 @@ class IMAGE_PT_paint_swatches(
|
|
|
1339
1253
|
"""
|
|
1340
1254
|
|
|
1341
1255
|
:return: The RNA type or default when not found.
|
|
1342
|
-
:rtype: bpy.types.Struct
|
|
1343
1256
|
"""
|
|
1344
1257
|
|
|
1345
1258
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1346
1259
|
"""
|
|
1347
1260
|
|
|
1348
1261
|
:return: The class or default when not found.
|
|
1349
|
-
:rtype: typing.Any
|
|
1350
1262
|
"""
|
|
1351
1263
|
|
|
1352
|
-
class IMAGE_PT_proportional_edit(
|
|
1264
|
+
class IMAGE_PT_proportional_edit(_bpy_types.Panel):
|
|
1353
1265
|
bl_label: typing.Any
|
|
1354
1266
|
bl_region_type: typing.Any
|
|
1355
1267
|
bl_rna: typing.Any
|
|
@@ -1361,14 +1273,12 @@ class IMAGE_PT_proportional_edit(bpy.types.Panel):
|
|
|
1361
1273
|
"""
|
|
1362
1274
|
|
|
1363
1275
|
:return: The RNA type or default when not found.
|
|
1364
|
-
:rtype: bpy.types.Struct
|
|
1365
1276
|
"""
|
|
1366
1277
|
|
|
1367
1278
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1368
1279
|
"""
|
|
1369
1280
|
|
|
1370
1281
|
:return: The class or default when not found.
|
|
1371
|
-
:rtype: typing.Any
|
|
1372
1282
|
"""
|
|
1373
1283
|
|
|
1374
1284
|
def draw(self, context) -> None:
|
|
@@ -1377,7 +1287,7 @@ class IMAGE_PT_proportional_edit(bpy.types.Panel):
|
|
|
1377
1287
|
:param context:
|
|
1378
1288
|
"""
|
|
1379
1289
|
|
|
1380
|
-
class IMAGE_PT_render_slots(
|
|
1290
|
+
class IMAGE_PT_render_slots(_bpy_types.Panel):
|
|
1381
1291
|
bl_category: typing.Any
|
|
1382
1292
|
bl_label: typing.Any
|
|
1383
1293
|
bl_region_type: typing.Any
|
|
@@ -1389,14 +1299,12 @@ class IMAGE_PT_render_slots(bpy.types.Panel):
|
|
|
1389
1299
|
"""
|
|
1390
1300
|
|
|
1391
1301
|
:return: The RNA type or default when not found.
|
|
1392
|
-
:rtype: bpy.types.Struct
|
|
1393
1302
|
"""
|
|
1394
1303
|
|
|
1395
1304
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1396
1305
|
"""
|
|
1397
1306
|
|
|
1398
1307
|
:return: The class or default when not found.
|
|
1399
|
-
:rtype: typing.Any
|
|
1400
1308
|
"""
|
|
1401
1309
|
|
|
1402
1310
|
def draw(self, context) -> None:
|
|
@@ -1412,7 +1320,7 @@ class IMAGE_PT_render_slots(bpy.types.Panel):
|
|
|
1412
1320
|
:param context:
|
|
1413
1321
|
"""
|
|
1414
1322
|
|
|
1415
|
-
class IMAGE_PT_sample_line(ImageScopesPanel,
|
|
1323
|
+
class IMAGE_PT_sample_line(ImageScopesPanel, _bpy_types.Panel):
|
|
1416
1324
|
bl_category: typing.Any
|
|
1417
1325
|
bl_label: typing.Any
|
|
1418
1326
|
bl_region_type: typing.Any
|
|
@@ -1424,14 +1332,12 @@ class IMAGE_PT_sample_line(ImageScopesPanel, bpy.types.Panel):
|
|
|
1424
1332
|
"""
|
|
1425
1333
|
|
|
1426
1334
|
:return: The RNA type or default when not found.
|
|
1427
|
-
:rtype: bpy.types.Struct
|
|
1428
1335
|
"""
|
|
1429
1336
|
|
|
1430
1337
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1431
1338
|
"""
|
|
1432
1339
|
|
|
1433
1340
|
:return: The class or default when not found.
|
|
1434
|
-
:rtype: typing.Any
|
|
1435
1341
|
"""
|
|
1436
1342
|
|
|
1437
1343
|
def draw(self, context) -> None:
|
|
@@ -1440,7 +1346,7 @@ class IMAGE_PT_sample_line(ImageScopesPanel, bpy.types.Panel):
|
|
|
1440
1346
|
:param context:
|
|
1441
1347
|
"""
|
|
1442
1348
|
|
|
1443
|
-
class IMAGE_PT_scope_sample(ImageScopesPanel,
|
|
1349
|
+
class IMAGE_PT_scope_sample(ImageScopesPanel, _bpy_types.Panel):
|
|
1444
1350
|
bl_category: typing.Any
|
|
1445
1351
|
bl_label: typing.Any
|
|
1446
1352
|
bl_options: typing.Any
|
|
@@ -1453,14 +1359,12 @@ class IMAGE_PT_scope_sample(ImageScopesPanel, bpy.types.Panel):
|
|
|
1453
1359
|
"""
|
|
1454
1360
|
|
|
1455
1361
|
:return: The RNA type or default when not found.
|
|
1456
|
-
:rtype: bpy.types.Struct
|
|
1457
1362
|
"""
|
|
1458
1363
|
|
|
1459
1364
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1460
1365
|
"""
|
|
1461
1366
|
|
|
1462
1367
|
:return: The class or default when not found.
|
|
1463
|
-
:rtype: typing.Any
|
|
1464
1368
|
"""
|
|
1465
1369
|
|
|
1466
1370
|
def draw(self, context) -> None:
|
|
@@ -1469,7 +1373,7 @@ class IMAGE_PT_scope_sample(ImageScopesPanel, bpy.types.Panel):
|
|
|
1469
1373
|
:param context:
|
|
1470
1374
|
"""
|
|
1471
1375
|
|
|
1472
|
-
class IMAGE_PT_snapping(
|
|
1376
|
+
class IMAGE_PT_snapping(_bpy_types.Panel):
|
|
1473
1377
|
bl_label: typing.Any
|
|
1474
1378
|
bl_region_type: typing.Any
|
|
1475
1379
|
bl_rna: typing.Any
|
|
@@ -1480,14 +1384,12 @@ class IMAGE_PT_snapping(bpy.types.Panel):
|
|
|
1480
1384
|
"""
|
|
1481
1385
|
|
|
1482
1386
|
:return: The RNA type or default when not found.
|
|
1483
|
-
:rtype: bpy.types.Struct
|
|
1484
1387
|
"""
|
|
1485
1388
|
|
|
1486
1389
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1487
1390
|
"""
|
|
1488
1391
|
|
|
1489
1392
|
:return: The class or default when not found.
|
|
1490
|
-
:rtype: typing.Any
|
|
1491
1393
|
"""
|
|
1492
1394
|
|
|
1493
1395
|
def draw(self, context) -> None:
|
|
@@ -1497,7 +1399,7 @@ class IMAGE_PT_snapping(bpy.types.Panel):
|
|
|
1497
1399
|
"""
|
|
1498
1400
|
|
|
1499
1401
|
class IMAGE_PT_tools_brush_display(
|
|
1500
|
-
BrushButtonsPanel,
|
|
1402
|
+
BrushButtonsPanel, _bpy_types.Panel, bl_ui.properties_paint_common.DisplayPanel
|
|
1501
1403
|
):
|
|
1502
1404
|
bl_category: typing.Any
|
|
1503
1405
|
bl_context: typing.Any
|
|
@@ -1514,17 +1416,15 @@ class IMAGE_PT_tools_brush_display(
|
|
|
1514
1416
|
"""
|
|
1515
1417
|
|
|
1516
1418
|
:return: The RNA type or default when not found.
|
|
1517
|
-
:rtype: bpy.types.Struct
|
|
1518
1419
|
"""
|
|
1519
1420
|
|
|
1520
1421
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1521
1422
|
"""
|
|
1522
1423
|
|
|
1523
1424
|
:return: The class or default when not found.
|
|
1524
|
-
:rtype: typing.Any
|
|
1525
1425
|
"""
|
|
1526
1426
|
|
|
1527
|
-
class IMAGE_PT_tools_brush_texture(BrushButtonsPanel,
|
|
1427
|
+
class IMAGE_PT_tools_brush_texture(BrushButtonsPanel, _bpy_types.Panel):
|
|
1528
1428
|
bl_category: typing.Any
|
|
1529
1429
|
bl_context: typing.Any
|
|
1530
1430
|
bl_label: typing.Any
|
|
@@ -1539,14 +1439,12 @@ class IMAGE_PT_tools_brush_texture(BrushButtonsPanel, bpy.types.Panel):
|
|
|
1539
1439
|
"""
|
|
1540
1440
|
|
|
1541
1441
|
:return: The RNA type or default when not found.
|
|
1542
|
-
:rtype: bpy.types.Struct
|
|
1543
1442
|
"""
|
|
1544
1443
|
|
|
1545
1444
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1546
1445
|
"""
|
|
1547
1446
|
|
|
1548
1447
|
:return: The class or default when not found.
|
|
1549
|
-
:rtype: typing.Any
|
|
1550
1448
|
"""
|
|
1551
1449
|
|
|
1552
1450
|
def draw(self, context) -> None:
|
|
@@ -1555,7 +1453,7 @@ class IMAGE_PT_tools_brush_texture(BrushButtonsPanel, bpy.types.Panel):
|
|
|
1555
1453
|
:param context:
|
|
1556
1454
|
"""
|
|
1557
1455
|
|
|
1558
|
-
class IMAGE_PT_tools_imagepaint_symmetry(BrushButtonsPanel,
|
|
1456
|
+
class IMAGE_PT_tools_imagepaint_symmetry(BrushButtonsPanel, _bpy_types.Panel):
|
|
1559
1457
|
bl_category: typing.Any
|
|
1560
1458
|
bl_context: typing.Any
|
|
1561
1459
|
bl_label: typing.Any
|
|
@@ -1569,14 +1467,12 @@ class IMAGE_PT_tools_imagepaint_symmetry(BrushButtonsPanel, bpy.types.Panel):
|
|
|
1569
1467
|
"""
|
|
1570
1468
|
|
|
1571
1469
|
:return: The RNA type or default when not found.
|
|
1572
|
-
:rtype: bpy.types.Struct
|
|
1573
1470
|
"""
|
|
1574
1471
|
|
|
1575
1472
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1576
1473
|
"""
|
|
1577
1474
|
|
|
1578
1475
|
:return: The class or default when not found.
|
|
1579
|
-
:rtype: typing.Any
|
|
1580
1476
|
"""
|
|
1581
1477
|
|
|
1582
1478
|
def draw(self, context) -> None:
|
|
@@ -1586,7 +1482,7 @@ class IMAGE_PT_tools_imagepaint_symmetry(BrushButtonsPanel, bpy.types.Panel):
|
|
|
1586
1482
|
"""
|
|
1587
1483
|
|
|
1588
1484
|
class IMAGE_PT_tools_mask_texture(
|
|
1589
|
-
BrushButtonsPanel,
|
|
1485
|
+
BrushButtonsPanel, _bpy_types.Panel, bl_ui.properties_paint_common.TextureMaskPanel
|
|
1590
1486
|
):
|
|
1591
1487
|
bl_category: typing.Any
|
|
1592
1488
|
bl_context: typing.Any
|
|
@@ -1603,17 +1499,15 @@ class IMAGE_PT_tools_mask_texture(
|
|
|
1603
1499
|
"""
|
|
1604
1500
|
|
|
1605
1501
|
:return: The RNA type or default when not found.
|
|
1606
|
-
:rtype: bpy.types.Struct
|
|
1607
1502
|
"""
|
|
1608
1503
|
|
|
1609
1504
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1610
1505
|
"""
|
|
1611
1506
|
|
|
1612
1507
|
:return: The class or default when not found.
|
|
1613
|
-
:rtype: typing.Any
|
|
1614
1508
|
"""
|
|
1615
1509
|
|
|
1616
|
-
class IMAGE_PT_udim_tiles(
|
|
1510
|
+
class IMAGE_PT_udim_tiles(_bpy_types.Panel):
|
|
1617
1511
|
bl_category: typing.Any
|
|
1618
1512
|
bl_label: typing.Any
|
|
1619
1513
|
bl_region_type: typing.Any
|
|
@@ -1625,14 +1519,12 @@ class IMAGE_PT_udim_tiles(bpy.types.Panel):
|
|
|
1625
1519
|
"""
|
|
1626
1520
|
|
|
1627
1521
|
:return: The RNA type or default when not found.
|
|
1628
|
-
:rtype: bpy.types.Struct
|
|
1629
1522
|
"""
|
|
1630
1523
|
|
|
1631
1524
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1632
1525
|
"""
|
|
1633
1526
|
|
|
1634
1527
|
:return: The class or default when not found.
|
|
1635
|
-
:rtype: typing.Any
|
|
1636
1528
|
"""
|
|
1637
1529
|
|
|
1638
1530
|
def draw(self, context) -> None:
|
|
@@ -1648,7 +1540,7 @@ class IMAGE_PT_udim_tiles(bpy.types.Panel):
|
|
|
1648
1540
|
:param context:
|
|
1649
1541
|
"""
|
|
1650
1542
|
|
|
1651
|
-
class IMAGE_PT_uv_cursor(
|
|
1543
|
+
class IMAGE_PT_uv_cursor(_bpy_types.Panel):
|
|
1652
1544
|
bl_category: typing.Any
|
|
1653
1545
|
bl_label: typing.Any
|
|
1654
1546
|
bl_region_type: typing.Any
|
|
@@ -1660,14 +1552,12 @@ class IMAGE_PT_uv_cursor(bpy.types.Panel):
|
|
|
1660
1552
|
"""
|
|
1661
1553
|
|
|
1662
1554
|
:return: The RNA type or default when not found.
|
|
1663
|
-
:rtype: bpy.types.Struct
|
|
1664
1555
|
"""
|
|
1665
1556
|
|
|
1666
1557
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1667
1558
|
"""
|
|
1668
1559
|
|
|
1669
1560
|
:return: The class or default when not found.
|
|
1670
|
-
:rtype: typing.Any
|
|
1671
1561
|
"""
|
|
1672
1562
|
|
|
1673
1563
|
def draw(self, context) -> None:
|
|
@@ -1683,7 +1573,7 @@ class IMAGE_PT_uv_cursor(bpy.types.Panel):
|
|
|
1683
1573
|
:param context:
|
|
1684
1574
|
"""
|
|
1685
1575
|
|
|
1686
|
-
class IMAGE_PT_uv_sculpt_curve(
|
|
1576
|
+
class IMAGE_PT_uv_sculpt_curve(_bpy_types.Panel):
|
|
1687
1577
|
bl_context: typing.Any
|
|
1688
1578
|
bl_label: typing.Any
|
|
1689
1579
|
bl_region_type: typing.Any
|
|
@@ -1695,14 +1585,12 @@ class IMAGE_PT_uv_sculpt_curve(bpy.types.Panel):
|
|
|
1695
1585
|
"""
|
|
1696
1586
|
|
|
1697
1587
|
:return: The RNA type or default when not found.
|
|
1698
|
-
:rtype: bpy.types.Struct
|
|
1699
1588
|
"""
|
|
1700
1589
|
|
|
1701
1590
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1702
1591
|
"""
|
|
1703
1592
|
|
|
1704
1593
|
:return: The class or default when not found.
|
|
1705
|
-
:rtype: typing.Any
|
|
1706
1594
|
"""
|
|
1707
1595
|
|
|
1708
1596
|
def draw(self, context) -> None:
|
|
@@ -1711,7 +1599,7 @@ class IMAGE_PT_uv_sculpt_curve(bpy.types.Panel):
|
|
|
1711
1599
|
:param context:
|
|
1712
1600
|
"""
|
|
1713
1601
|
|
|
1714
|
-
class IMAGE_PT_uv_sculpt_options(
|
|
1602
|
+
class IMAGE_PT_uv_sculpt_options(_bpy_types.Panel):
|
|
1715
1603
|
bl_context: typing.Any
|
|
1716
1604
|
bl_label: typing.Any
|
|
1717
1605
|
bl_region_type: typing.Any
|
|
@@ -1723,14 +1611,12 @@ class IMAGE_PT_uv_sculpt_options(bpy.types.Panel):
|
|
|
1723
1611
|
"""
|
|
1724
1612
|
|
|
1725
1613
|
:return: The RNA type or default when not found.
|
|
1726
|
-
:rtype: bpy.types.Struct
|
|
1727
1614
|
"""
|
|
1728
1615
|
|
|
1729
1616
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1730
1617
|
"""
|
|
1731
1618
|
|
|
1732
1619
|
:return: The class or default when not found.
|
|
1733
|
-
:rtype: typing.Any
|
|
1734
1620
|
"""
|
|
1735
1621
|
|
|
1736
1622
|
def draw(self, context) -> None:
|
|
@@ -1739,7 +1625,7 @@ class IMAGE_PT_uv_sculpt_options(bpy.types.Panel):
|
|
|
1739
1625
|
:param context:
|
|
1740
1626
|
"""
|
|
1741
1627
|
|
|
1742
|
-
class IMAGE_PT_view_display(
|
|
1628
|
+
class IMAGE_PT_view_display(_bpy_types.Panel):
|
|
1743
1629
|
bl_category: typing.Any
|
|
1744
1630
|
bl_label: typing.Any
|
|
1745
1631
|
bl_region_type: typing.Any
|
|
@@ -1751,14 +1637,12 @@ class IMAGE_PT_view_display(bpy.types.Panel):
|
|
|
1751
1637
|
"""
|
|
1752
1638
|
|
|
1753
1639
|
:return: The RNA type or default when not found.
|
|
1754
|
-
:rtype: bpy.types.Struct
|
|
1755
1640
|
"""
|
|
1756
1641
|
|
|
1757
1642
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1758
1643
|
"""
|
|
1759
1644
|
|
|
1760
1645
|
:return: The class or default when not found.
|
|
1761
|
-
:rtype: typing.Any
|
|
1762
1646
|
"""
|
|
1763
1647
|
|
|
1764
1648
|
def draw(self, context) -> None:
|
|
@@ -1774,7 +1658,7 @@ class IMAGE_PT_view_display(bpy.types.Panel):
|
|
|
1774
1658
|
:param context:
|
|
1775
1659
|
"""
|
|
1776
1660
|
|
|
1777
|
-
class IMAGE_PT_view_histogram(ImageScopesPanel,
|
|
1661
|
+
class IMAGE_PT_view_histogram(ImageScopesPanel, _bpy_types.Panel):
|
|
1778
1662
|
bl_category: typing.Any
|
|
1779
1663
|
bl_label: typing.Any
|
|
1780
1664
|
bl_region_type: typing.Any
|
|
@@ -1786,14 +1670,12 @@ class IMAGE_PT_view_histogram(ImageScopesPanel, bpy.types.Panel):
|
|
|
1786
1670
|
"""
|
|
1787
1671
|
|
|
1788
1672
|
:return: The RNA type or default when not found.
|
|
1789
|
-
:rtype: bpy.types.Struct
|
|
1790
1673
|
"""
|
|
1791
1674
|
|
|
1792
1675
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1793
1676
|
"""
|
|
1794
1677
|
|
|
1795
1678
|
:return: The class or default when not found.
|
|
1796
|
-
:rtype: typing.Any
|
|
1797
1679
|
"""
|
|
1798
1680
|
|
|
1799
1681
|
def draw(self, context) -> None:
|
|
@@ -1802,7 +1684,7 @@ class IMAGE_PT_view_histogram(ImageScopesPanel, bpy.types.Panel):
|
|
|
1802
1684
|
:param context:
|
|
1803
1685
|
"""
|
|
1804
1686
|
|
|
1805
|
-
class IMAGE_PT_view_vectorscope(ImageScopesPanel,
|
|
1687
|
+
class IMAGE_PT_view_vectorscope(ImageScopesPanel, _bpy_types.Panel):
|
|
1806
1688
|
bl_category: typing.Any
|
|
1807
1689
|
bl_label: typing.Any
|
|
1808
1690
|
bl_region_type: typing.Any
|
|
@@ -1814,14 +1696,12 @@ class IMAGE_PT_view_vectorscope(ImageScopesPanel, bpy.types.Panel):
|
|
|
1814
1696
|
"""
|
|
1815
1697
|
|
|
1816
1698
|
:return: The RNA type or default when not found.
|
|
1817
|
-
:rtype: bpy.types.Struct
|
|
1818
1699
|
"""
|
|
1819
1700
|
|
|
1820
1701
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1821
1702
|
"""
|
|
1822
1703
|
|
|
1823
1704
|
:return: The class or default when not found.
|
|
1824
|
-
:rtype: typing.Any
|
|
1825
1705
|
"""
|
|
1826
1706
|
|
|
1827
1707
|
def draw(self, context) -> None:
|
|
@@ -1830,7 +1710,7 @@ class IMAGE_PT_view_vectorscope(ImageScopesPanel, bpy.types.Panel):
|
|
|
1830
1710
|
:param context:
|
|
1831
1711
|
"""
|
|
1832
1712
|
|
|
1833
|
-
class IMAGE_PT_view_waveform(ImageScopesPanel,
|
|
1713
|
+
class IMAGE_PT_view_waveform(ImageScopesPanel, _bpy_types.Panel):
|
|
1834
1714
|
bl_category: typing.Any
|
|
1835
1715
|
bl_label: typing.Any
|
|
1836
1716
|
bl_region_type: typing.Any
|
|
@@ -1842,14 +1722,12 @@ class IMAGE_PT_view_waveform(ImageScopesPanel, bpy.types.Panel):
|
|
|
1842
1722
|
"""
|
|
1843
1723
|
|
|
1844
1724
|
:return: The RNA type or default when not found.
|
|
1845
|
-
:rtype: bpy.types.Struct
|
|
1846
1725
|
"""
|
|
1847
1726
|
|
|
1848
1727
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1849
1728
|
"""
|
|
1850
1729
|
|
|
1851
1730
|
:return: The class or default when not found.
|
|
1852
|
-
:rtype: typing.Any
|
|
1853
1731
|
"""
|
|
1854
1732
|
|
|
1855
1733
|
def draw(self, context) -> None:
|
|
@@ -1858,7 +1736,7 @@ class IMAGE_PT_view_waveform(ImageScopesPanel, bpy.types.Panel):
|
|
|
1858
1736
|
:param context:
|
|
1859
1737
|
"""
|
|
1860
1738
|
|
|
1861
|
-
class IMAGE_UL_render_slots(
|
|
1739
|
+
class IMAGE_UL_render_slots(_bpy_types.UIList):
|
|
1862
1740
|
bl_rna: typing.Any
|
|
1863
1741
|
id_data: typing.Any
|
|
1864
1742
|
|
|
@@ -1866,14 +1744,12 @@ class IMAGE_UL_render_slots(bpy.types.UIList):
|
|
|
1866
1744
|
"""
|
|
1867
1745
|
|
|
1868
1746
|
:return: The RNA type or default when not found.
|
|
1869
|
-
:rtype: bpy.types.Struct
|
|
1870
1747
|
"""
|
|
1871
1748
|
|
|
1872
1749
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1873
1750
|
"""
|
|
1874
1751
|
|
|
1875
1752
|
:return: The class or default when not found.
|
|
1876
|
-
:rtype: typing.Any
|
|
1877
1753
|
"""
|
|
1878
1754
|
|
|
1879
1755
|
def draw_item(
|
|
@@ -1899,7 +1775,7 @@ class IMAGE_UL_render_slots(bpy.types.UIList):
|
|
|
1899
1775
|
:param _index:
|
|
1900
1776
|
"""
|
|
1901
1777
|
|
|
1902
|
-
class IMAGE_UL_udim_tiles(
|
|
1778
|
+
class IMAGE_UL_udim_tiles(_bpy_types.UIList):
|
|
1903
1779
|
bl_rna: typing.Any
|
|
1904
1780
|
id_data: typing.Any
|
|
1905
1781
|
|
|
@@ -1907,14 +1783,12 @@ class IMAGE_UL_udim_tiles(bpy.types.UIList):
|
|
|
1907
1783
|
"""
|
|
1908
1784
|
|
|
1909
1785
|
:return: The RNA type or default when not found.
|
|
1910
|
-
:rtype: bpy.types.Struct
|
|
1911
1786
|
"""
|
|
1912
1787
|
|
|
1913
1788
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1914
1789
|
"""
|
|
1915
1790
|
|
|
1916
1791
|
:return: The class or default when not found.
|
|
1917
|
-
:rtype: typing.Any
|
|
1918
1792
|
"""
|
|
1919
1793
|
|
|
1920
1794
|
def draw_item(
|
|
@@ -1942,10 +1816,10 @@ class IMAGE_UL_udim_tiles(bpy.types.UIList):
|
|
|
1942
1816
|
|
|
1943
1817
|
class ImageAssetShelf(bl_ui.properties_paint_common.BrushAssetShelf):
|
|
1944
1818
|
bl_activate_operator: typing.Any
|
|
1945
|
-
bl_default_preview_size: typing.Any
|
|
1946
1819
|
bl_options: typing.Any
|
|
1947
1820
|
bl_space_type: typing.Any
|
|
1948
1821
|
brush_type_prop: typing.Any
|
|
1822
|
+
filter_brush: typing.Any
|
|
1949
1823
|
mode_prop: typing.Any
|
|
1950
1824
|
|
|
1951
1825
|
class ImageScopesPanel:
|
|
@@ -1975,7 +1849,7 @@ class _draw_tool_settings_context_mode:
|
|
|
1975
1849
|
:param tool:
|
|
1976
1850
|
"""
|
|
1977
1851
|
|
|
1978
|
-
class IMAGE_PT_paint_color(
|
|
1852
|
+
class IMAGE_PT_paint_color(_bpy_types.Panel, ImagePaintPanel):
|
|
1979
1853
|
bl_category: typing.Any
|
|
1980
1854
|
bl_context: typing.Any
|
|
1981
1855
|
bl_label: typing.Any
|
|
@@ -1989,14 +1863,12 @@ class IMAGE_PT_paint_color(bpy.types.Panel, ImagePaintPanel):
|
|
|
1989
1863
|
"""
|
|
1990
1864
|
|
|
1991
1865
|
:return: The RNA type or default when not found.
|
|
1992
|
-
:rtype: bpy.types.Struct
|
|
1993
1866
|
"""
|
|
1994
1867
|
|
|
1995
1868
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1996
1869
|
"""
|
|
1997
1870
|
|
|
1998
1871
|
:return: The class or default when not found.
|
|
1999
|
-
:rtype: typing.Any
|
|
2000
1872
|
"""
|
|
2001
1873
|
|
|
2002
1874
|
def draw(self, context) -> None:
|
|
@@ -2012,7 +1884,7 @@ class IMAGE_PT_paint_color(bpy.types.Panel, ImagePaintPanel):
|
|
|
2012
1884
|
:param context:
|
|
2013
1885
|
"""
|
|
2014
1886
|
|
|
2015
|
-
class IMAGE_PT_paint_settings(
|
|
1887
|
+
class IMAGE_PT_paint_settings(_bpy_types.Panel, ImagePaintPanel):
|
|
2016
1888
|
bl_category: typing.Any
|
|
2017
1889
|
bl_context: typing.Any
|
|
2018
1890
|
bl_label: typing.Any
|
|
@@ -2025,14 +1897,12 @@ class IMAGE_PT_paint_settings(bpy.types.Panel, ImagePaintPanel):
|
|
|
2025
1897
|
"""
|
|
2026
1898
|
|
|
2027
1899
|
:return: The RNA type or default when not found.
|
|
2028
|
-
:rtype: bpy.types.Struct
|
|
2029
1900
|
"""
|
|
2030
1901
|
|
|
2031
1902
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2032
1903
|
"""
|
|
2033
1904
|
|
|
2034
1905
|
:return: The class or default when not found.
|
|
2035
|
-
:rtype: typing.Any
|
|
2036
1906
|
"""
|
|
2037
1907
|
|
|
2038
1908
|
def draw(self, context) -> None:
|
|
@@ -2041,7 +1911,14 @@ class IMAGE_PT_paint_settings(bpy.types.Panel, ImagePaintPanel):
|
|
|
2041
1911
|
:param context:
|
|
2042
1912
|
"""
|
|
2043
1913
|
|
|
2044
|
-
|
|
1914
|
+
@classmethod
|
|
1915
|
+
def poll(cls, context) -> None:
|
|
1916
|
+
"""
|
|
1917
|
+
|
|
1918
|
+
:param context:
|
|
1919
|
+
"""
|
|
1920
|
+
|
|
1921
|
+
class IMAGE_PT_paint_settings_advanced(_bpy_types.Panel, ImagePaintPanel):
|
|
2045
1922
|
bl_category: typing.Any
|
|
2046
1923
|
bl_context: typing.Any
|
|
2047
1924
|
bl_label: typing.Any
|
|
@@ -2056,14 +1933,12 @@ class IMAGE_PT_paint_settings_advanced(bpy.types.Panel, ImagePaintPanel):
|
|
|
2056
1933
|
"""
|
|
2057
1934
|
|
|
2058
1935
|
:return: The RNA type or default when not found.
|
|
2059
|
-
:rtype: bpy.types.Struct
|
|
2060
1936
|
"""
|
|
2061
1937
|
|
|
2062
1938
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2063
1939
|
"""
|
|
2064
1940
|
|
|
2065
1941
|
:return: The class or default when not found.
|
|
2066
|
-
:rtype: typing.Any
|
|
2067
1942
|
"""
|
|
2068
1943
|
|
|
2069
1944
|
def draw(self, context) -> None:
|
|
@@ -2071,3 +1946,10 @@ class IMAGE_PT_paint_settings_advanced(bpy.types.Panel, ImagePaintPanel):
|
|
|
2071
1946
|
|
|
2072
1947
|
:param context:
|
|
2073
1948
|
"""
|
|
1949
|
+
|
|
1950
|
+
@classmethod
|
|
1951
|
+
def poll(cls, context) -> None:
|
|
1952
|
+
"""
|
|
1953
|
+
|
|
1954
|
+
:param context:
|
|
1955
|
+
"""
|