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,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.utils
|
|
7
8
|
import bpy.types
|
|
@@ -24,7 +25,7 @@ class CompositorPerformanceButtonsPanel:
|
|
|
24
25
|
:param context:
|
|
25
26
|
"""
|
|
26
27
|
|
|
27
|
-
class RENDER_PT_color_management(RenderButtonsPanel,
|
|
28
|
+
class RENDER_PT_color_management(RenderButtonsPanel, _bpy_types.Panel):
|
|
28
29
|
COMPAT_ENGINES: typing.Any
|
|
29
30
|
bl_context: typing.Any
|
|
30
31
|
bl_label: typing.Any
|
|
@@ -39,14 +40,12 @@ class RENDER_PT_color_management(RenderButtonsPanel, bpy.types.Panel):
|
|
|
39
40
|
"""
|
|
40
41
|
|
|
41
42
|
:return: The RNA type or default when not found.
|
|
42
|
-
:rtype: bpy.types.Struct
|
|
43
43
|
"""
|
|
44
44
|
|
|
45
45
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
46
46
|
"""
|
|
47
47
|
|
|
48
48
|
:return: The class or default when not found.
|
|
49
|
-
:rtype: typing.Any
|
|
50
49
|
"""
|
|
51
50
|
|
|
52
51
|
def draw(self, context) -> None:
|
|
@@ -55,7 +54,7 @@ class RENDER_PT_color_management(RenderButtonsPanel, bpy.types.Panel):
|
|
|
55
54
|
:param context:
|
|
56
55
|
"""
|
|
57
56
|
|
|
58
|
-
class
|
|
57
|
+
class RENDER_PT_color_management_advanced(RenderButtonsPanel, _bpy_types.Panel):
|
|
59
58
|
COMPAT_ENGINES: typing.Any
|
|
60
59
|
bl_context: typing.Any
|
|
61
60
|
bl_label: typing.Any
|
|
@@ -70,14 +69,12 @@ class RENDER_PT_color_management_curves(RenderButtonsPanel, bpy.types.Panel):
|
|
|
70
69
|
"""
|
|
71
70
|
|
|
72
71
|
:return: The RNA type or default when not found.
|
|
73
|
-
:rtype: bpy.types.Struct
|
|
74
72
|
"""
|
|
75
73
|
|
|
76
74
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
77
75
|
"""
|
|
78
76
|
|
|
79
77
|
:return: The class or default when not found.
|
|
80
|
-
:rtype: typing.Any
|
|
81
78
|
"""
|
|
82
79
|
|
|
83
80
|
def draw(self, context) -> None:
|
|
@@ -86,13 +83,7 @@ class RENDER_PT_color_management_curves(RenderButtonsPanel, bpy.types.Panel):
|
|
|
86
83
|
:param context:
|
|
87
84
|
"""
|
|
88
85
|
|
|
89
|
-
|
|
90
|
-
"""
|
|
91
|
-
|
|
92
|
-
:param context:
|
|
93
|
-
"""
|
|
94
|
-
|
|
95
|
-
class RENDER_PT_color_management_display_settings(RenderButtonsPanel, bpy.types.Panel):
|
|
86
|
+
class RENDER_PT_color_management_curves(RenderButtonsPanel, _bpy_types.Panel):
|
|
96
87
|
COMPAT_ENGINES: typing.Any
|
|
97
88
|
bl_context: typing.Any
|
|
98
89
|
bl_label: typing.Any
|
|
@@ -107,14 +98,12 @@ class RENDER_PT_color_management_display_settings(RenderButtonsPanel, bpy.types.
|
|
|
107
98
|
"""
|
|
108
99
|
|
|
109
100
|
:return: The RNA type or default when not found.
|
|
110
|
-
:rtype: bpy.types.Struct
|
|
111
101
|
"""
|
|
112
102
|
|
|
113
103
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
114
104
|
"""
|
|
115
105
|
|
|
116
106
|
:return: The class or default when not found.
|
|
117
|
-
:rtype: typing.Any
|
|
118
107
|
"""
|
|
119
108
|
|
|
120
109
|
def draw(self, context) -> None:
|
|
@@ -123,7 +112,13 @@ class RENDER_PT_color_management_display_settings(RenderButtonsPanel, bpy.types.
|
|
|
123
112
|
:param context:
|
|
124
113
|
"""
|
|
125
114
|
|
|
126
|
-
|
|
115
|
+
def draw_header(self, context) -> None:
|
|
116
|
+
"""
|
|
117
|
+
|
|
118
|
+
:param context:
|
|
119
|
+
"""
|
|
120
|
+
|
|
121
|
+
class RENDER_PT_color_management_white_balance(RenderButtonsPanel, _bpy_types.Panel):
|
|
127
122
|
COMPAT_ENGINES: typing.Any
|
|
128
123
|
bl_context: typing.Any
|
|
129
124
|
bl_label: typing.Any
|
|
@@ -138,14 +133,12 @@ class RENDER_PT_color_management_white_balance(RenderButtonsPanel, bpy.types.Pan
|
|
|
138
133
|
"""
|
|
139
134
|
|
|
140
135
|
:return: The RNA type or default when not found.
|
|
141
|
-
:rtype: bpy.types.Struct
|
|
142
136
|
"""
|
|
143
137
|
|
|
144
138
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
145
139
|
"""
|
|
146
140
|
|
|
147
141
|
:return: The class or default when not found.
|
|
148
|
-
:rtype: typing.Any
|
|
149
142
|
"""
|
|
150
143
|
|
|
151
144
|
def draw(self, context) -> None:
|
|
@@ -167,7 +160,7 @@ class RENDER_PT_color_management_white_balance(RenderButtonsPanel, bpy.types.Pan
|
|
|
167
160
|
"""
|
|
168
161
|
|
|
169
162
|
class RENDER_PT_color_management_white_balance_presets(
|
|
170
|
-
bl_ui.utils.PresetPanel,
|
|
163
|
+
bl_ui.utils.PresetPanel, _bpy_types.Panel
|
|
171
164
|
):
|
|
172
165
|
bl_label: typing.Any
|
|
173
166
|
bl_region_type: typing.Any
|
|
@@ -182,20 +175,20 @@ class RENDER_PT_color_management_white_balance_presets(
|
|
|
182
175
|
"""
|
|
183
176
|
|
|
184
177
|
:return: The RNA type or default when not found.
|
|
185
|
-
:rtype: bpy.types.Struct
|
|
186
178
|
"""
|
|
187
179
|
|
|
188
180
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
189
181
|
"""
|
|
190
182
|
|
|
191
183
|
:return: The class or default when not found.
|
|
192
|
-
:rtype: typing.Any
|
|
193
184
|
"""
|
|
194
185
|
|
|
195
|
-
class
|
|
186
|
+
class RENDER_PT_color_management_working_space(RenderButtonsPanel, _bpy_types.Panel):
|
|
187
|
+
COMPAT_ENGINES: typing.Any
|
|
196
188
|
bl_context: typing.Any
|
|
197
189
|
bl_label: typing.Any
|
|
198
190
|
bl_options: typing.Any
|
|
191
|
+
bl_parent_id: typing.Any
|
|
199
192
|
bl_region_type: typing.Any
|
|
200
193
|
bl_rna: typing.Any
|
|
201
194
|
bl_space_type: typing.Any
|
|
@@ -205,25 +198,21 @@ class RENDER_PT_context(bpy.types.Panel):
|
|
|
205
198
|
"""
|
|
206
199
|
|
|
207
200
|
:return: The RNA type or default when not found.
|
|
208
|
-
:rtype: bpy.types.Struct
|
|
209
201
|
"""
|
|
210
202
|
|
|
211
203
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
212
204
|
"""
|
|
213
205
|
|
|
214
206
|
:return: The class or default when not found.
|
|
215
|
-
:rtype: typing.Any
|
|
216
207
|
"""
|
|
217
208
|
|
|
218
|
-
|
|
219
|
-
def poll(cls, context) -> None:
|
|
209
|
+
def draw(self, context) -> None:
|
|
220
210
|
"""
|
|
221
211
|
|
|
222
212
|
:param context:
|
|
223
213
|
"""
|
|
224
214
|
|
|
225
|
-
class
|
|
226
|
-
COMPAT_ENGINES: typing.Any
|
|
215
|
+
class RENDER_PT_context(_bpy_types.Panel):
|
|
227
216
|
bl_context: typing.Any
|
|
228
217
|
bl_label: typing.Any
|
|
229
218
|
bl_options: typing.Any
|
|
@@ -236,20 +225,12 @@ class RENDER_PT_eevee_hair(RenderButtonsPanel, bpy.types.Panel):
|
|
|
236
225
|
"""
|
|
237
226
|
|
|
238
227
|
:return: The RNA type or default when not found.
|
|
239
|
-
:rtype: bpy.types.Struct
|
|
240
228
|
"""
|
|
241
229
|
|
|
242
230
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
243
231
|
"""
|
|
244
232
|
|
|
245
233
|
:return: The class or default when not found.
|
|
246
|
-
:rtype: typing.Any
|
|
247
|
-
"""
|
|
248
|
-
|
|
249
|
-
def draw(self, context) -> None:
|
|
250
|
-
"""
|
|
251
|
-
|
|
252
|
-
:param context:
|
|
253
234
|
"""
|
|
254
235
|
|
|
255
236
|
@classmethod
|
|
@@ -259,7 +240,7 @@ class RENDER_PT_eevee_hair(RenderButtonsPanel, bpy.types.Panel):
|
|
|
259
240
|
:param context:
|
|
260
241
|
"""
|
|
261
242
|
|
|
262
|
-
class
|
|
243
|
+
class RENDER_PT_eevee_clamping(RenderButtonsPanel, _bpy_types.Panel):
|
|
263
244
|
COMPAT_ENGINES: typing.Any
|
|
264
245
|
bl_context: typing.Any
|
|
265
246
|
bl_label: typing.Any
|
|
@@ -273,14 +254,12 @@ class RENDER_PT_eevee_next_clamping(RenderButtonsPanel, bpy.types.Panel):
|
|
|
273
254
|
"""
|
|
274
255
|
|
|
275
256
|
:return: The RNA type or default when not found.
|
|
276
|
-
:rtype: bpy.types.Struct
|
|
277
257
|
"""
|
|
278
258
|
|
|
279
259
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
280
260
|
"""
|
|
281
261
|
|
|
282
262
|
:return: The class or default when not found.
|
|
283
|
-
:rtype: typing.Any
|
|
284
263
|
"""
|
|
285
264
|
|
|
286
265
|
def draw(self, context) -> None:
|
|
@@ -296,7 +275,7 @@ class RENDER_PT_eevee_next_clamping(RenderButtonsPanel, bpy.types.Panel):
|
|
|
296
275
|
:param context:
|
|
297
276
|
"""
|
|
298
277
|
|
|
299
|
-
class
|
|
278
|
+
class RENDER_PT_eevee_clamping_surface(RenderButtonsPanel, _bpy_types.Panel):
|
|
300
279
|
COMPAT_ENGINES: typing.Any
|
|
301
280
|
bl_context: typing.Any
|
|
302
281
|
bl_label: typing.Any
|
|
@@ -310,14 +289,12 @@ class RENDER_PT_eevee_next_clamping_surface(RenderButtonsPanel, bpy.types.Panel)
|
|
|
310
289
|
"""
|
|
311
290
|
|
|
312
291
|
:return: The RNA type or default when not found.
|
|
313
|
-
:rtype: bpy.types.Struct
|
|
314
292
|
"""
|
|
315
293
|
|
|
316
294
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
317
295
|
"""
|
|
318
296
|
|
|
319
297
|
:return: The class or default when not found.
|
|
320
|
-
:rtype: typing.Any
|
|
321
298
|
"""
|
|
322
299
|
|
|
323
300
|
def draw(self, context) -> None:
|
|
@@ -333,7 +310,7 @@ class RENDER_PT_eevee_next_clamping_surface(RenderButtonsPanel, bpy.types.Panel)
|
|
|
333
310
|
:param context:
|
|
334
311
|
"""
|
|
335
312
|
|
|
336
|
-
class
|
|
313
|
+
class RENDER_PT_eevee_clamping_volume(RenderButtonsPanel, _bpy_types.Panel):
|
|
337
314
|
COMPAT_ENGINES: typing.Any
|
|
338
315
|
bl_context: typing.Any
|
|
339
316
|
bl_label: typing.Any
|
|
@@ -347,14 +324,12 @@ class RENDER_PT_eevee_next_clamping_volume(RenderButtonsPanel, bpy.types.Panel):
|
|
|
347
324
|
"""
|
|
348
325
|
|
|
349
326
|
:return: The RNA type or default when not found.
|
|
350
|
-
:rtype: bpy.types.Struct
|
|
351
327
|
"""
|
|
352
328
|
|
|
353
329
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
354
330
|
"""
|
|
355
331
|
|
|
356
332
|
:return: The class or default when not found.
|
|
357
|
-
:rtype: typing.Any
|
|
358
333
|
"""
|
|
359
334
|
|
|
360
335
|
def draw(self, context) -> None:
|
|
@@ -370,7 +345,7 @@ class RENDER_PT_eevee_next_clamping_volume(RenderButtonsPanel, bpy.types.Panel):
|
|
|
370
345
|
:param context:
|
|
371
346
|
"""
|
|
372
347
|
|
|
373
|
-
class
|
|
348
|
+
class RENDER_PT_eevee_denoise(RenderButtonsPanel, _bpy_types.Panel):
|
|
374
349
|
COMPAT_ENGINES: typing.Any
|
|
375
350
|
bl_context: typing.Any
|
|
376
351
|
bl_label: typing.Any
|
|
@@ -385,14 +360,12 @@ class RENDER_PT_eevee_next_denoise(RenderButtonsPanel, bpy.types.Panel):
|
|
|
385
360
|
"""
|
|
386
361
|
|
|
387
362
|
:return: The RNA type or default when not found.
|
|
388
|
-
:rtype: bpy.types.Struct
|
|
389
363
|
"""
|
|
390
364
|
|
|
391
365
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
392
366
|
"""
|
|
393
367
|
|
|
394
368
|
:return: The class or default when not found.
|
|
395
|
-
:rtype: typing.Any
|
|
396
369
|
"""
|
|
397
370
|
|
|
398
371
|
def draw(self, context) -> None:
|
|
@@ -414,7 +387,7 @@ class RENDER_PT_eevee_next_denoise(RenderButtonsPanel, bpy.types.Panel):
|
|
|
414
387
|
:param context:
|
|
415
388
|
"""
|
|
416
389
|
|
|
417
|
-
class
|
|
390
|
+
class RENDER_PT_eevee_depth_of_field(RenderButtonsPanel, _bpy_types.Panel):
|
|
418
391
|
COMPAT_ENGINES: typing.Any
|
|
419
392
|
bl_context: typing.Any
|
|
420
393
|
bl_label: typing.Any
|
|
@@ -428,14 +401,12 @@ class RENDER_PT_eevee_next_depth_of_field(RenderButtonsPanel, bpy.types.Panel):
|
|
|
428
401
|
"""
|
|
429
402
|
|
|
430
403
|
:return: The RNA type or default when not found.
|
|
431
|
-
:rtype: bpy.types.Struct
|
|
432
404
|
"""
|
|
433
405
|
|
|
434
406
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
435
407
|
"""
|
|
436
408
|
|
|
437
409
|
:return: The class or default when not found.
|
|
438
|
-
:rtype: typing.Any
|
|
439
410
|
"""
|
|
440
411
|
|
|
441
412
|
def draw(self, context) -> None:
|
|
@@ -451,7 +422,7 @@ class RENDER_PT_eevee_next_depth_of_field(RenderButtonsPanel, bpy.types.Panel):
|
|
|
451
422
|
:param context:
|
|
452
423
|
"""
|
|
453
424
|
|
|
454
|
-
class
|
|
425
|
+
class RENDER_PT_eevee_film(RenderButtonsPanel, _bpy_types.Panel):
|
|
455
426
|
COMPAT_ENGINES: typing.Any
|
|
456
427
|
bl_context: typing.Any
|
|
457
428
|
bl_label: typing.Any
|
|
@@ -465,14 +436,12 @@ class RENDER_PT_eevee_next_film(RenderButtonsPanel, bpy.types.Panel):
|
|
|
465
436
|
"""
|
|
466
437
|
|
|
467
438
|
:return: The RNA type or default when not found.
|
|
468
|
-
:rtype: bpy.types.Struct
|
|
469
439
|
"""
|
|
470
440
|
|
|
471
441
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
472
442
|
"""
|
|
473
443
|
|
|
474
444
|
:return: The class or default when not found.
|
|
475
|
-
:rtype: typing.Any
|
|
476
445
|
"""
|
|
477
446
|
|
|
478
447
|
def draw(self, context) -> None:
|
|
@@ -488,7 +457,7 @@ class RENDER_PT_eevee_next_film(RenderButtonsPanel, bpy.types.Panel):
|
|
|
488
457
|
:param context:
|
|
489
458
|
"""
|
|
490
459
|
|
|
491
|
-
class
|
|
460
|
+
class RENDER_PT_eevee_gi_approximation(RenderButtonsPanel, _bpy_types.Panel):
|
|
492
461
|
COMPAT_ENGINES: typing.Any
|
|
493
462
|
bl_context: typing.Any
|
|
494
463
|
bl_label: typing.Any
|
|
@@ -503,14 +472,12 @@ class RENDER_PT_eevee_next_gi_approximation(RenderButtonsPanel, bpy.types.Panel)
|
|
|
503
472
|
"""
|
|
504
473
|
|
|
505
474
|
:return: The RNA type or default when not found.
|
|
506
|
-
:rtype: bpy.types.Struct
|
|
507
475
|
"""
|
|
508
476
|
|
|
509
477
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
510
478
|
"""
|
|
511
479
|
|
|
512
480
|
:return: The class or default when not found.
|
|
513
|
-
:rtype: typing.Any
|
|
514
481
|
"""
|
|
515
482
|
|
|
516
483
|
def draw(self, context) -> None:
|
|
@@ -532,7 +499,7 @@ class RENDER_PT_eevee_next_gi_approximation(RenderButtonsPanel, bpy.types.Panel)
|
|
|
532
499
|
:param context:
|
|
533
500
|
"""
|
|
534
501
|
|
|
535
|
-
class
|
|
502
|
+
class RENDER_PT_eevee_hair(RenderButtonsPanel, _bpy_types.Panel):
|
|
536
503
|
COMPAT_ENGINES: typing.Any
|
|
537
504
|
bl_context: typing.Any
|
|
538
505
|
bl_label: typing.Any
|
|
@@ -546,14 +513,12 @@ class RENDER_PT_eevee_next_motion_blur(RenderButtonsPanel, bpy.types.Panel):
|
|
|
546
513
|
"""
|
|
547
514
|
|
|
548
515
|
:return: The RNA type or default when not found.
|
|
549
|
-
:rtype: bpy.types.Struct
|
|
550
516
|
"""
|
|
551
517
|
|
|
552
518
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
553
519
|
"""
|
|
554
520
|
|
|
555
521
|
:return: The class or default when not found.
|
|
556
|
-
:rtype: typing.Any
|
|
557
522
|
"""
|
|
558
523
|
|
|
559
524
|
def draw(self, context) -> None:
|
|
@@ -562,12 +527,6 @@ class RENDER_PT_eevee_next_motion_blur(RenderButtonsPanel, bpy.types.Panel):
|
|
|
562
527
|
:param context:
|
|
563
528
|
"""
|
|
564
529
|
|
|
565
|
-
def draw_header(self, context) -> None:
|
|
566
|
-
"""
|
|
567
|
-
|
|
568
|
-
:param context:
|
|
569
|
-
"""
|
|
570
|
-
|
|
571
530
|
@classmethod
|
|
572
531
|
def poll(cls, context) -> None:
|
|
573
532
|
"""
|
|
@@ -575,12 +534,11 @@ class RENDER_PT_eevee_next_motion_blur(RenderButtonsPanel, bpy.types.Panel):
|
|
|
575
534
|
:param context:
|
|
576
535
|
"""
|
|
577
536
|
|
|
578
|
-
class
|
|
537
|
+
class RENDER_PT_eevee_motion_blur(RenderButtonsPanel, _bpy_types.Panel):
|
|
579
538
|
COMPAT_ENGINES: typing.Any
|
|
580
539
|
bl_context: typing.Any
|
|
581
540
|
bl_label: typing.Any
|
|
582
541
|
bl_options: typing.Any
|
|
583
|
-
bl_parent_id: typing.Any
|
|
584
542
|
bl_region_type: typing.Any
|
|
585
543
|
bl_rna: typing.Any
|
|
586
544
|
bl_space_type: typing.Any
|
|
@@ -590,14 +548,12 @@ class RENDER_PT_eevee_next_motion_blur_curve(RenderButtonsPanel, bpy.types.Panel
|
|
|
590
548
|
"""
|
|
591
549
|
|
|
592
550
|
:return: The RNA type or default when not found.
|
|
593
|
-
:rtype: bpy.types.Struct
|
|
594
551
|
"""
|
|
595
552
|
|
|
596
553
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
597
554
|
"""
|
|
598
555
|
|
|
599
556
|
:return: The class or default when not found.
|
|
600
|
-
:rtype: typing.Any
|
|
601
557
|
"""
|
|
602
558
|
|
|
603
559
|
def draw(self, context) -> None:
|
|
@@ -606,11 +562,25 @@ class RENDER_PT_eevee_next_motion_blur_curve(RenderButtonsPanel, bpy.types.Panel
|
|
|
606
562
|
:param context:
|
|
607
563
|
"""
|
|
608
564
|
|
|
609
|
-
|
|
565
|
+
def draw_header(self, context) -> None:
|
|
566
|
+
"""
|
|
567
|
+
|
|
568
|
+
:param context:
|
|
569
|
+
"""
|
|
570
|
+
|
|
571
|
+
@classmethod
|
|
572
|
+
def poll(cls, context) -> None:
|
|
573
|
+
"""
|
|
574
|
+
|
|
575
|
+
:param context:
|
|
576
|
+
"""
|
|
577
|
+
|
|
578
|
+
class RENDER_PT_eevee_motion_blur_curve(RenderButtonsPanel, _bpy_types.Panel):
|
|
610
579
|
COMPAT_ENGINES: typing.Any
|
|
611
580
|
bl_context: typing.Any
|
|
612
581
|
bl_label: typing.Any
|
|
613
582
|
bl_options: typing.Any
|
|
583
|
+
bl_parent_id: typing.Any
|
|
614
584
|
bl_region_type: typing.Any
|
|
615
585
|
bl_rna: typing.Any
|
|
616
586
|
bl_space_type: typing.Any
|
|
@@ -620,14 +590,12 @@ class RENDER_PT_eevee_next_raytracing(RenderButtonsPanel, bpy.types.Panel):
|
|
|
620
590
|
"""
|
|
621
591
|
|
|
622
592
|
:return: The RNA type or default when not found.
|
|
623
|
-
:rtype: bpy.types.Struct
|
|
624
593
|
"""
|
|
625
594
|
|
|
626
595
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
627
596
|
"""
|
|
628
597
|
|
|
629
598
|
:return: The class or default when not found.
|
|
630
|
-
:rtype: typing.Any
|
|
631
599
|
"""
|
|
632
600
|
|
|
633
601
|
def draw(self, context) -> None:
|
|
@@ -636,16 +604,32 @@ class RENDER_PT_eevee_next_raytracing(RenderButtonsPanel, bpy.types.Panel):
|
|
|
636
604
|
:param context:
|
|
637
605
|
"""
|
|
638
606
|
|
|
639
|
-
|
|
607
|
+
class RENDER_PT_eevee_performance(RenderButtonsPanel, _bpy_types.Panel):
|
|
608
|
+
COMPAT_ENGINES: typing.Any
|
|
609
|
+
bl_context: typing.Any
|
|
610
|
+
bl_label: typing.Any
|
|
611
|
+
bl_options: typing.Any
|
|
612
|
+
bl_region_type: typing.Any
|
|
613
|
+
bl_rna: typing.Any
|
|
614
|
+
bl_space_type: typing.Any
|
|
615
|
+
id_data: typing.Any
|
|
616
|
+
|
|
617
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
640
618
|
"""
|
|
641
619
|
|
|
642
|
-
:
|
|
620
|
+
:return: The RNA type or default when not found.
|
|
643
621
|
"""
|
|
644
622
|
|
|
645
|
-
def
|
|
623
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
646
624
|
"""
|
|
647
625
|
|
|
648
|
-
:
|
|
626
|
+
:return: The class or default when not found.
|
|
627
|
+
"""
|
|
628
|
+
|
|
629
|
+
def draw(self, context) -> None:
|
|
630
|
+
"""
|
|
631
|
+
|
|
632
|
+
:param context:
|
|
649
633
|
"""
|
|
650
634
|
|
|
651
635
|
@classmethod
|
|
@@ -655,34 +639,39 @@ class RENDER_PT_eevee_next_raytracing(RenderButtonsPanel, bpy.types.Panel):
|
|
|
655
639
|
:param context:
|
|
656
640
|
"""
|
|
657
641
|
|
|
658
|
-
class
|
|
642
|
+
class RENDER_PT_eevee_performance_compositor(
|
|
643
|
+
CompositorPerformanceButtonsPanel, RenderButtonsPanel, _bpy_types.Panel
|
|
644
|
+
):
|
|
645
|
+
COMPAT_ENGINES: typing.Any
|
|
646
|
+
bl_context: typing.Any
|
|
659
647
|
bl_label: typing.Any
|
|
648
|
+
bl_options: typing.Any
|
|
649
|
+
bl_parent_id: typing.Any
|
|
660
650
|
bl_region_type: typing.Any
|
|
661
651
|
bl_rna: typing.Any
|
|
662
652
|
bl_space_type: typing.Any
|
|
663
653
|
id_data: typing.Any
|
|
664
|
-
preset_add_operator: typing.Any
|
|
665
|
-
preset_operator: typing.Any
|
|
666
|
-
preset_subdir: typing.Any
|
|
667
654
|
|
|
668
655
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
669
656
|
"""
|
|
670
657
|
|
|
671
658
|
:return: The RNA type or default when not found.
|
|
672
|
-
:rtype: bpy.types.Struct
|
|
673
659
|
"""
|
|
674
660
|
|
|
675
661
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
676
662
|
"""
|
|
677
663
|
|
|
678
664
|
:return: The class or default when not found.
|
|
679
|
-
:rtype: typing.Any
|
|
680
665
|
"""
|
|
681
666
|
|
|
682
|
-
class
|
|
667
|
+
class RENDER_PT_eevee_performance_compositor_denoise_settings(
|
|
668
|
+
CompositorDenoisePerformanceButtonsPanel, RenderButtonsPanel, _bpy_types.Panel
|
|
669
|
+
):
|
|
683
670
|
COMPAT_ENGINES: typing.Any
|
|
684
671
|
bl_context: typing.Any
|
|
685
672
|
bl_label: typing.Any
|
|
673
|
+
bl_options: typing.Any
|
|
674
|
+
bl_parent_id: typing.Any
|
|
686
675
|
bl_region_type: typing.Any
|
|
687
676
|
bl_rna: typing.Any
|
|
688
677
|
bl_space_type: typing.Any
|
|
@@ -692,30 +681,15 @@ class RENDER_PT_eevee_next_sampling(RenderButtonsPanel, bpy.types.Panel):
|
|
|
692
681
|
"""
|
|
693
682
|
|
|
694
683
|
:return: The RNA type or default when not found.
|
|
695
|
-
:rtype: bpy.types.Struct
|
|
696
684
|
"""
|
|
697
685
|
|
|
698
686
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
699
687
|
"""
|
|
700
688
|
|
|
701
689
|
:return: The class or default when not found.
|
|
702
|
-
:rtype: typing.Any
|
|
703
|
-
"""
|
|
704
|
-
|
|
705
|
-
def draw(self, context) -> None:
|
|
706
|
-
"""
|
|
707
|
-
|
|
708
|
-
:param context:
|
|
709
|
-
"""
|
|
710
|
-
|
|
711
|
-
@classmethod
|
|
712
|
-
def poll(cls, context) -> None:
|
|
713
|
-
"""
|
|
714
|
-
|
|
715
|
-
:param context:
|
|
716
690
|
"""
|
|
717
691
|
|
|
718
|
-
class
|
|
692
|
+
class RENDER_PT_eevee_performance_memory(RenderButtonsPanel, _bpy_types.Panel):
|
|
719
693
|
COMPAT_ENGINES: typing.Any
|
|
720
694
|
bl_context: typing.Any
|
|
721
695
|
bl_label: typing.Any
|
|
@@ -730,14 +704,12 @@ class RENDER_PT_eevee_next_sampling_advanced(RenderButtonsPanel, bpy.types.Panel
|
|
|
730
704
|
"""
|
|
731
705
|
|
|
732
706
|
:return: The RNA type or default when not found.
|
|
733
|
-
:rtype: bpy.types.Struct
|
|
734
707
|
"""
|
|
735
708
|
|
|
736
709
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
737
710
|
"""
|
|
738
711
|
|
|
739
712
|
:return: The class or default when not found.
|
|
740
|
-
:rtype: typing.Any
|
|
741
713
|
"""
|
|
742
714
|
|
|
743
715
|
def draw(self, context) -> None:
|
|
@@ -753,10 +725,11 @@ class RENDER_PT_eevee_next_sampling_advanced(RenderButtonsPanel, bpy.types.Panel
|
|
|
753
725
|
:param context:
|
|
754
726
|
"""
|
|
755
727
|
|
|
756
|
-
class
|
|
728
|
+
class RENDER_PT_eevee_performance_viewport(RenderButtonsPanel, _bpy_types.Panel):
|
|
757
729
|
COMPAT_ENGINES: typing.Any
|
|
758
730
|
bl_context: typing.Any
|
|
759
731
|
bl_label: typing.Any
|
|
732
|
+
bl_options: typing.Any
|
|
760
733
|
bl_parent_id: typing.Any
|
|
761
734
|
bl_region_type: typing.Any
|
|
762
735
|
bl_rna: typing.Any
|
|
@@ -767,14 +740,12 @@ class RENDER_PT_eevee_next_sampling_render(RenderButtonsPanel, bpy.types.Panel):
|
|
|
767
740
|
"""
|
|
768
741
|
|
|
769
742
|
:return: The RNA type or default when not found.
|
|
770
|
-
:rtype: bpy.types.Struct
|
|
771
743
|
"""
|
|
772
744
|
|
|
773
745
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
774
746
|
"""
|
|
775
747
|
|
|
776
748
|
:return: The class or default when not found.
|
|
777
|
-
:rtype: typing.Any
|
|
778
749
|
"""
|
|
779
750
|
|
|
780
751
|
def draw(self, context) -> None:
|
|
@@ -790,12 +761,11 @@ class RENDER_PT_eevee_next_sampling_render(RenderButtonsPanel, bpy.types.Panel):
|
|
|
790
761
|
:param context:
|
|
791
762
|
"""
|
|
792
763
|
|
|
793
|
-
class
|
|
764
|
+
class RENDER_PT_eevee_raytracing(RenderButtonsPanel, _bpy_types.Panel):
|
|
794
765
|
COMPAT_ENGINES: typing.Any
|
|
795
766
|
bl_context: typing.Any
|
|
796
767
|
bl_label: typing.Any
|
|
797
768
|
bl_options: typing.Any
|
|
798
|
-
bl_parent_id: typing.Any
|
|
799
769
|
bl_region_type: typing.Any
|
|
800
770
|
bl_rna: typing.Any
|
|
801
771
|
bl_space_type: typing.Any
|
|
@@ -805,14 +775,12 @@ class RENDER_PT_eevee_next_sampling_shadows(RenderButtonsPanel, bpy.types.Panel)
|
|
|
805
775
|
"""
|
|
806
776
|
|
|
807
777
|
:return: The RNA type or default when not found.
|
|
808
|
-
:rtype: bpy.types.Struct
|
|
809
778
|
"""
|
|
810
779
|
|
|
811
780
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
812
781
|
"""
|
|
813
782
|
|
|
814
783
|
:return: The class or default when not found.
|
|
815
|
-
:rtype: typing.Any
|
|
816
784
|
"""
|
|
817
785
|
|
|
818
786
|
def draw(self, context) -> None:
|
|
@@ -827,6 +795,12 @@ class RENDER_PT_eevee_next_sampling_shadows(RenderButtonsPanel, bpy.types.Panel)
|
|
|
827
795
|
:param context:
|
|
828
796
|
"""
|
|
829
797
|
|
|
798
|
+
def draw_header_preset(self, _context) -> None:
|
|
799
|
+
"""
|
|
800
|
+
|
|
801
|
+
:param _context:
|
|
802
|
+
"""
|
|
803
|
+
|
|
830
804
|
@classmethod
|
|
831
805
|
def poll(cls, context) -> None:
|
|
832
806
|
"""
|
|
@@ -834,11 +808,32 @@ class RENDER_PT_eevee_next_sampling_shadows(RenderButtonsPanel, bpy.types.Panel)
|
|
|
834
808
|
:param context:
|
|
835
809
|
"""
|
|
836
810
|
|
|
837
|
-
class
|
|
811
|
+
class RENDER_PT_eevee_raytracing_presets(bl_ui.utils.PresetPanel, _bpy_types.Panel):
|
|
812
|
+
bl_label: typing.Any
|
|
813
|
+
bl_region_type: typing.Any
|
|
814
|
+
bl_rna: typing.Any
|
|
815
|
+
bl_space_type: typing.Any
|
|
816
|
+
id_data: typing.Any
|
|
817
|
+
preset_add_operator: typing.Any
|
|
818
|
+
preset_operator: typing.Any
|
|
819
|
+
preset_subdir: typing.Any
|
|
820
|
+
|
|
821
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
822
|
+
"""
|
|
823
|
+
|
|
824
|
+
:return: The RNA type or default when not found.
|
|
825
|
+
"""
|
|
826
|
+
|
|
827
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
828
|
+
"""
|
|
829
|
+
|
|
830
|
+
:return: The class or default when not found.
|
|
831
|
+
"""
|
|
832
|
+
|
|
833
|
+
class RENDER_PT_eevee_sampling(RenderButtonsPanel, _bpy_types.Panel):
|
|
838
834
|
COMPAT_ENGINES: typing.Any
|
|
839
835
|
bl_context: typing.Any
|
|
840
836
|
bl_label: typing.Any
|
|
841
|
-
bl_parent_id: typing.Any
|
|
842
837
|
bl_region_type: typing.Any
|
|
843
838
|
bl_rna: typing.Any
|
|
844
839
|
bl_space_type: typing.Any
|
|
@@ -848,14 +843,12 @@ class RENDER_PT_eevee_next_sampling_viewport(RenderButtonsPanel, bpy.types.Panel
|
|
|
848
843
|
"""
|
|
849
844
|
|
|
850
845
|
:return: The RNA type or default when not found.
|
|
851
|
-
:rtype: bpy.types.Struct
|
|
852
846
|
"""
|
|
853
847
|
|
|
854
848
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
855
849
|
"""
|
|
856
850
|
|
|
857
851
|
:return: The class or default when not found.
|
|
858
|
-
:rtype: typing.Any
|
|
859
852
|
"""
|
|
860
853
|
|
|
861
854
|
def draw(self, context) -> None:
|
|
@@ -871,7 +864,7 @@ class RENDER_PT_eevee_next_sampling_viewport(RenderButtonsPanel, bpy.types.Panel
|
|
|
871
864
|
:param context:
|
|
872
865
|
"""
|
|
873
866
|
|
|
874
|
-
class
|
|
867
|
+
class RENDER_PT_eevee_sampling_advanced(RenderButtonsPanel, _bpy_types.Panel):
|
|
875
868
|
COMPAT_ENGINES: typing.Any
|
|
876
869
|
bl_context: typing.Any
|
|
877
870
|
bl_label: typing.Any
|
|
@@ -886,14 +879,12 @@ class RENDER_PT_eevee_next_screen_trace(RenderButtonsPanel, bpy.types.Panel):
|
|
|
886
879
|
"""
|
|
887
880
|
|
|
888
881
|
:return: The RNA type or default when not found.
|
|
889
|
-
:rtype: bpy.types.Struct
|
|
890
882
|
"""
|
|
891
883
|
|
|
892
884
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
893
885
|
"""
|
|
894
886
|
|
|
895
887
|
:return: The class or default when not found.
|
|
896
|
-
:rtype: typing.Any
|
|
897
888
|
"""
|
|
898
889
|
|
|
899
890
|
def draw(self, context) -> None:
|
|
@@ -909,11 +900,11 @@ class RENDER_PT_eevee_next_screen_trace(RenderButtonsPanel, bpy.types.Panel):
|
|
|
909
900
|
:param context:
|
|
910
901
|
"""
|
|
911
902
|
|
|
912
|
-
class
|
|
903
|
+
class RENDER_PT_eevee_sampling_render(RenderButtonsPanel, _bpy_types.Panel):
|
|
913
904
|
COMPAT_ENGINES: typing.Any
|
|
914
905
|
bl_context: typing.Any
|
|
915
906
|
bl_label: typing.Any
|
|
916
|
-
|
|
907
|
+
bl_parent_id: typing.Any
|
|
917
908
|
bl_region_type: typing.Any
|
|
918
909
|
bl_rna: typing.Any
|
|
919
910
|
bl_space_type: typing.Any
|
|
@@ -923,14 +914,12 @@ class RENDER_PT_eevee_next_volumes(RenderButtonsPanel, bpy.types.Panel):
|
|
|
923
914
|
"""
|
|
924
915
|
|
|
925
916
|
:return: The RNA type or default when not found.
|
|
926
|
-
:rtype: bpy.types.Struct
|
|
927
917
|
"""
|
|
928
918
|
|
|
929
919
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
930
920
|
"""
|
|
931
921
|
|
|
932
922
|
:return: The class or default when not found.
|
|
933
|
-
:rtype: typing.Any
|
|
934
923
|
"""
|
|
935
924
|
|
|
936
925
|
def draw(self, context) -> None:
|
|
@@ -946,7 +935,7 @@ class RENDER_PT_eevee_next_volumes(RenderButtonsPanel, bpy.types.Panel):
|
|
|
946
935
|
:param context:
|
|
947
936
|
"""
|
|
948
937
|
|
|
949
|
-
class
|
|
938
|
+
class RENDER_PT_eevee_sampling_shadows(RenderButtonsPanel, _bpy_types.Panel):
|
|
950
939
|
COMPAT_ENGINES: typing.Any
|
|
951
940
|
bl_context: typing.Any
|
|
952
941
|
bl_label: typing.Any
|
|
@@ -961,14 +950,12 @@ class RENDER_PT_eevee_next_volumes_range(RenderButtonsPanel, bpy.types.Panel):
|
|
|
961
950
|
"""
|
|
962
951
|
|
|
963
952
|
:return: The RNA type or default when not found.
|
|
964
|
-
:rtype: bpy.types.Struct
|
|
965
953
|
"""
|
|
966
954
|
|
|
967
955
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
968
956
|
"""
|
|
969
957
|
|
|
970
958
|
:return: The class or default when not found.
|
|
971
|
-
:rtype: typing.Any
|
|
972
959
|
"""
|
|
973
960
|
|
|
974
961
|
def draw(self, context) -> None:
|
|
@@ -990,11 +977,11 @@ class RENDER_PT_eevee_next_volumes_range(RenderButtonsPanel, bpy.types.Panel):
|
|
|
990
977
|
:param context:
|
|
991
978
|
"""
|
|
992
979
|
|
|
993
|
-
class
|
|
980
|
+
class RENDER_PT_eevee_sampling_viewport(RenderButtonsPanel, _bpy_types.Panel):
|
|
994
981
|
COMPAT_ENGINES: typing.Any
|
|
995
982
|
bl_context: typing.Any
|
|
996
983
|
bl_label: typing.Any
|
|
997
|
-
|
|
984
|
+
bl_parent_id: typing.Any
|
|
998
985
|
bl_region_type: typing.Any
|
|
999
986
|
bl_rna: typing.Any
|
|
1000
987
|
bl_space_type: typing.Any
|
|
@@ -1004,14 +991,12 @@ class RENDER_PT_eevee_performance(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1004
991
|
"""
|
|
1005
992
|
|
|
1006
993
|
:return: The RNA type or default when not found.
|
|
1007
|
-
:rtype: bpy.types.Struct
|
|
1008
994
|
"""
|
|
1009
995
|
|
|
1010
996
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1011
997
|
"""
|
|
1012
998
|
|
|
1013
999
|
:return: The class or default when not found.
|
|
1014
|
-
:rtype: typing.Any
|
|
1015
1000
|
"""
|
|
1016
1001
|
|
|
1017
1002
|
def draw(self, context) -> None:
|
|
@@ -1027,9 +1012,7 @@ class RENDER_PT_eevee_performance(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1027
1012
|
:param context:
|
|
1028
1013
|
"""
|
|
1029
1014
|
|
|
1030
|
-
class
|
|
1031
|
-
CompositorPerformanceButtonsPanel, RenderButtonsPanel, bpy.types.Panel
|
|
1032
|
-
):
|
|
1015
|
+
class RENDER_PT_eevee_screen_trace(RenderButtonsPanel, _bpy_types.Panel):
|
|
1033
1016
|
COMPAT_ENGINES: typing.Any
|
|
1034
1017
|
bl_context: typing.Any
|
|
1035
1018
|
bl_label: typing.Any
|
|
@@ -1044,49 +1027,32 @@ class RENDER_PT_eevee_performance_compositor(
|
|
|
1044
1027
|
"""
|
|
1045
1028
|
|
|
1046
1029
|
:return: The RNA type or default when not found.
|
|
1047
|
-
:rtype: bpy.types.Struct
|
|
1048
1030
|
"""
|
|
1049
1031
|
|
|
1050
1032
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1051
1033
|
"""
|
|
1052
1034
|
|
|
1053
1035
|
:return: The class or default when not found.
|
|
1054
|
-
:rtype: typing.Any
|
|
1055
1036
|
"""
|
|
1056
1037
|
|
|
1057
|
-
|
|
1058
|
-
CompositorDenoisePerformanceButtonsPanel, RenderButtonsPanel, bpy.types.Panel
|
|
1059
|
-
):
|
|
1060
|
-
COMPAT_ENGINES: typing.Any
|
|
1061
|
-
bl_context: typing.Any
|
|
1062
|
-
bl_label: typing.Any
|
|
1063
|
-
bl_options: typing.Any
|
|
1064
|
-
bl_parent_id: typing.Any
|
|
1065
|
-
bl_region_type: typing.Any
|
|
1066
|
-
bl_rna: typing.Any
|
|
1067
|
-
bl_space_type: typing.Any
|
|
1068
|
-
id_data: typing.Any
|
|
1069
|
-
|
|
1070
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1038
|
+
def draw(self, context) -> None:
|
|
1071
1039
|
"""
|
|
1072
1040
|
|
|
1073
|
-
:
|
|
1074
|
-
:rtype: bpy.types.Struct
|
|
1041
|
+
:param context:
|
|
1075
1042
|
"""
|
|
1076
1043
|
|
|
1077
|
-
|
|
1044
|
+
@classmethod
|
|
1045
|
+
def poll(cls, context) -> None:
|
|
1078
1046
|
"""
|
|
1079
1047
|
|
|
1080
|
-
:
|
|
1081
|
-
:rtype: typing.Any
|
|
1048
|
+
:param context:
|
|
1082
1049
|
"""
|
|
1083
1050
|
|
|
1084
|
-
class
|
|
1051
|
+
class RENDER_PT_eevee_volumes(RenderButtonsPanel, _bpy_types.Panel):
|
|
1085
1052
|
COMPAT_ENGINES: typing.Any
|
|
1086
1053
|
bl_context: typing.Any
|
|
1087
1054
|
bl_label: typing.Any
|
|
1088
1055
|
bl_options: typing.Any
|
|
1089
|
-
bl_parent_id: typing.Any
|
|
1090
1056
|
bl_region_type: typing.Any
|
|
1091
1057
|
bl_rna: typing.Any
|
|
1092
1058
|
bl_space_type: typing.Any
|
|
@@ -1096,14 +1062,12 @@ class RENDER_PT_eevee_performance_memory(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1096
1062
|
"""
|
|
1097
1063
|
|
|
1098
1064
|
:return: The RNA type or default when not found.
|
|
1099
|
-
:rtype: bpy.types.Struct
|
|
1100
1065
|
"""
|
|
1101
1066
|
|
|
1102
1067
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1103
1068
|
"""
|
|
1104
1069
|
|
|
1105
1070
|
:return: The class or default when not found.
|
|
1106
|
-
:rtype: typing.Any
|
|
1107
1071
|
"""
|
|
1108
1072
|
|
|
1109
1073
|
def draw(self, context) -> None:
|
|
@@ -1119,7 +1083,7 @@ class RENDER_PT_eevee_performance_memory(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1119
1083
|
:param context:
|
|
1120
1084
|
"""
|
|
1121
1085
|
|
|
1122
|
-
class
|
|
1086
|
+
class RENDER_PT_eevee_volumes_range(RenderButtonsPanel, _bpy_types.Panel):
|
|
1123
1087
|
COMPAT_ENGINES: typing.Any
|
|
1124
1088
|
bl_context: typing.Any
|
|
1125
1089
|
bl_label: typing.Any
|
|
@@ -1134,14 +1098,12 @@ class RENDER_PT_eevee_performance_viewport(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1134
1098
|
"""
|
|
1135
1099
|
|
|
1136
1100
|
:return: The RNA type or default when not found.
|
|
1137
|
-
:rtype: bpy.types.Struct
|
|
1138
1101
|
"""
|
|
1139
1102
|
|
|
1140
1103
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1141
1104
|
"""
|
|
1142
1105
|
|
|
1143
1106
|
:return: The class or default when not found.
|
|
1144
|
-
:rtype: typing.Any
|
|
1145
1107
|
"""
|
|
1146
1108
|
|
|
1147
1109
|
def draw(self, context) -> None:
|
|
@@ -1150,6 +1112,12 @@ class RENDER_PT_eevee_performance_viewport(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1150
1112
|
:param context:
|
|
1151
1113
|
"""
|
|
1152
1114
|
|
|
1115
|
+
def draw_header(self, context) -> None:
|
|
1116
|
+
"""
|
|
1117
|
+
|
|
1118
|
+
:param context:
|
|
1119
|
+
"""
|
|
1120
|
+
|
|
1153
1121
|
@classmethod
|
|
1154
1122
|
def poll(cls, context) -> None:
|
|
1155
1123
|
"""
|
|
@@ -1157,7 +1125,7 @@ class RENDER_PT_eevee_performance_viewport(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1157
1125
|
:param context:
|
|
1158
1126
|
"""
|
|
1159
1127
|
|
|
1160
|
-
class RENDER_PT_gpencil(RenderButtonsPanel,
|
|
1128
|
+
class RENDER_PT_gpencil(RenderButtonsPanel, _bpy_types.Panel):
|
|
1161
1129
|
COMPAT_ENGINES: typing.Any
|
|
1162
1130
|
bl_context: typing.Any
|
|
1163
1131
|
bl_label: typing.Any
|
|
@@ -1172,14 +1140,12 @@ class RENDER_PT_gpencil(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1172
1140
|
"""
|
|
1173
1141
|
|
|
1174
1142
|
:return: The RNA type or default when not found.
|
|
1175
|
-
:rtype: bpy.types.Struct
|
|
1176
1143
|
"""
|
|
1177
1144
|
|
|
1178
1145
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1179
1146
|
"""
|
|
1180
1147
|
|
|
1181
1148
|
:return: The class or default when not found.
|
|
1182
|
-
:rtype: typing.Any
|
|
1183
1149
|
"""
|
|
1184
1150
|
|
|
1185
1151
|
def draw(self, context) -> None:
|
|
@@ -1195,7 +1161,7 @@ class RENDER_PT_gpencil(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1195
1161
|
:param context:
|
|
1196
1162
|
"""
|
|
1197
1163
|
|
|
1198
|
-
class RENDER_PT_grease_pencil_render(RenderButtonsPanel,
|
|
1164
|
+
class RENDER_PT_grease_pencil_render(RenderButtonsPanel, _bpy_types.Panel):
|
|
1199
1165
|
COMPAT_ENGINES: typing.Any
|
|
1200
1166
|
bl_context: typing.Any
|
|
1201
1167
|
bl_label: typing.Any
|
|
@@ -1210,14 +1176,12 @@ class RENDER_PT_grease_pencil_render(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1210
1176
|
"""
|
|
1211
1177
|
|
|
1212
1178
|
:return: The RNA type or default when not found.
|
|
1213
|
-
:rtype: bpy.types.Struct
|
|
1214
1179
|
"""
|
|
1215
1180
|
|
|
1216
1181
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1217
1182
|
"""
|
|
1218
1183
|
|
|
1219
1184
|
:return: The class or default when not found.
|
|
1220
|
-
:rtype: typing.Any
|
|
1221
1185
|
"""
|
|
1222
1186
|
|
|
1223
1187
|
def draw(self, context) -> None:
|
|
@@ -1226,7 +1190,7 @@ class RENDER_PT_grease_pencil_render(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1226
1190
|
:param context:
|
|
1227
1191
|
"""
|
|
1228
1192
|
|
|
1229
|
-
class RENDER_PT_grease_pencil_viewport(RenderButtonsPanel,
|
|
1193
|
+
class RENDER_PT_grease_pencil_viewport(RenderButtonsPanel, _bpy_types.Panel):
|
|
1230
1194
|
COMPAT_ENGINES: typing.Any
|
|
1231
1195
|
bl_context: typing.Any
|
|
1232
1196
|
bl_label: typing.Any
|
|
@@ -1241,14 +1205,12 @@ class RENDER_PT_grease_pencil_viewport(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1241
1205
|
"""
|
|
1242
1206
|
|
|
1243
1207
|
:return: The RNA type or default when not found.
|
|
1244
|
-
:rtype: bpy.types.Struct
|
|
1245
1208
|
"""
|
|
1246
1209
|
|
|
1247
1210
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1248
1211
|
"""
|
|
1249
1212
|
|
|
1250
1213
|
:return: The class or default when not found.
|
|
1251
|
-
:rtype: typing.Any
|
|
1252
1214
|
"""
|
|
1253
1215
|
|
|
1254
1216
|
def draw(self, context) -> None:
|
|
@@ -1257,7 +1219,7 @@ class RENDER_PT_grease_pencil_viewport(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1257
1219
|
:param context:
|
|
1258
1220
|
"""
|
|
1259
1221
|
|
|
1260
|
-
class RENDER_PT_hydra_debug(RenderButtonsPanel,
|
|
1222
|
+
class RENDER_PT_hydra_debug(RenderButtonsPanel, _bpy_types.Panel):
|
|
1261
1223
|
COMPAT_ENGINES: typing.Any
|
|
1262
1224
|
bl_context: typing.Any
|
|
1263
1225
|
bl_label: typing.Any
|
|
@@ -1272,14 +1234,12 @@ class RENDER_PT_hydra_debug(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1272
1234
|
"""
|
|
1273
1235
|
|
|
1274
1236
|
:return: The RNA type or default when not found.
|
|
1275
|
-
:rtype: bpy.types.Struct
|
|
1276
1237
|
"""
|
|
1277
1238
|
|
|
1278
1239
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1279
1240
|
"""
|
|
1280
1241
|
|
|
1281
1242
|
:return: The class or default when not found.
|
|
1282
|
-
:rtype: typing.Any
|
|
1283
1243
|
"""
|
|
1284
1244
|
|
|
1285
1245
|
def draw(self, context) -> None:
|
|
@@ -1295,7 +1255,7 @@ class RENDER_PT_hydra_debug(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1295
1255
|
:param context:
|
|
1296
1256
|
"""
|
|
1297
1257
|
|
|
1298
|
-
class RENDER_PT_opengl_color(RenderButtonsPanel,
|
|
1258
|
+
class RENDER_PT_opengl_color(RenderButtonsPanel, _bpy_types.Panel):
|
|
1299
1259
|
COMPAT_ENGINES: typing.Any
|
|
1300
1260
|
bl_context: typing.Any
|
|
1301
1261
|
bl_label: typing.Any
|
|
@@ -1308,14 +1268,12 @@ class RENDER_PT_opengl_color(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1308
1268
|
"""
|
|
1309
1269
|
|
|
1310
1270
|
:return: The RNA type or default when not found.
|
|
1311
|
-
:rtype: bpy.types.Struct
|
|
1312
1271
|
"""
|
|
1313
1272
|
|
|
1314
1273
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1315
1274
|
"""
|
|
1316
1275
|
|
|
1317
1276
|
:return: The class or default when not found.
|
|
1318
|
-
:rtype: typing.Any
|
|
1319
1277
|
"""
|
|
1320
1278
|
|
|
1321
1279
|
def draw(self, context) -> None:
|
|
@@ -1331,7 +1289,7 @@ class RENDER_PT_opengl_color(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1331
1289
|
:param context:
|
|
1332
1290
|
"""
|
|
1333
1291
|
|
|
1334
|
-
class RENDER_PT_opengl_film(RenderButtonsPanel,
|
|
1292
|
+
class RENDER_PT_opengl_film(RenderButtonsPanel, _bpy_types.Panel):
|
|
1335
1293
|
COMPAT_ENGINES: typing.Any
|
|
1336
1294
|
bl_context: typing.Any
|
|
1337
1295
|
bl_label: typing.Any
|
|
@@ -1345,14 +1303,12 @@ class RENDER_PT_opengl_film(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1345
1303
|
"""
|
|
1346
1304
|
|
|
1347
1305
|
:return: The RNA type or default when not found.
|
|
1348
|
-
:rtype: bpy.types.Struct
|
|
1349
1306
|
"""
|
|
1350
1307
|
|
|
1351
1308
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1352
1309
|
"""
|
|
1353
1310
|
|
|
1354
1311
|
:return: The class or default when not found.
|
|
1355
|
-
:rtype: typing.Any
|
|
1356
1312
|
"""
|
|
1357
1313
|
|
|
1358
1314
|
def draw(self, context) -> None:
|
|
@@ -1361,7 +1317,7 @@ class RENDER_PT_opengl_film(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1361
1317
|
:param context:
|
|
1362
1318
|
"""
|
|
1363
1319
|
|
|
1364
|
-
class RENDER_PT_opengl_lighting(RenderButtonsPanel,
|
|
1320
|
+
class RENDER_PT_opengl_lighting(RenderButtonsPanel, _bpy_types.Panel):
|
|
1365
1321
|
COMPAT_ENGINES: typing.Any
|
|
1366
1322
|
bl_context: typing.Any
|
|
1367
1323
|
bl_label: typing.Any
|
|
@@ -1374,14 +1330,12 @@ class RENDER_PT_opengl_lighting(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1374
1330
|
"""
|
|
1375
1331
|
|
|
1376
1332
|
:return: The RNA type or default when not found.
|
|
1377
|
-
:rtype: bpy.types.Struct
|
|
1378
1333
|
"""
|
|
1379
1334
|
|
|
1380
1335
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1381
1336
|
"""
|
|
1382
1337
|
|
|
1383
1338
|
:return: The class or default when not found.
|
|
1384
|
-
:rtype: typing.Any
|
|
1385
1339
|
"""
|
|
1386
1340
|
|
|
1387
1341
|
def draw(self, context) -> None:
|
|
@@ -1397,7 +1351,7 @@ class RENDER_PT_opengl_lighting(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1397
1351
|
:param context:
|
|
1398
1352
|
"""
|
|
1399
1353
|
|
|
1400
|
-
class RENDER_PT_opengl_options(RenderButtonsPanel,
|
|
1354
|
+
class RENDER_PT_opengl_options(RenderButtonsPanel, _bpy_types.Panel):
|
|
1401
1355
|
COMPAT_ENGINES: typing.Any
|
|
1402
1356
|
bl_context: typing.Any
|
|
1403
1357
|
bl_label: typing.Any
|
|
@@ -1410,14 +1364,12 @@ class RENDER_PT_opengl_options(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1410
1364
|
"""
|
|
1411
1365
|
|
|
1412
1366
|
:return: The RNA type or default when not found.
|
|
1413
|
-
:rtype: bpy.types.Struct
|
|
1414
1367
|
"""
|
|
1415
1368
|
|
|
1416
1369
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1417
1370
|
"""
|
|
1418
1371
|
|
|
1419
1372
|
:return: The class or default when not found.
|
|
1420
|
-
:rtype: typing.Any
|
|
1421
1373
|
"""
|
|
1422
1374
|
|
|
1423
1375
|
def draw(self, context) -> None:
|
|
@@ -1433,7 +1385,7 @@ class RENDER_PT_opengl_options(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1433
1385
|
:param context:
|
|
1434
1386
|
"""
|
|
1435
1387
|
|
|
1436
|
-
class RENDER_PT_opengl_sampling(RenderButtonsPanel,
|
|
1388
|
+
class RENDER_PT_opengl_sampling(RenderButtonsPanel, _bpy_types.Panel):
|
|
1437
1389
|
COMPAT_ENGINES: typing.Any
|
|
1438
1390
|
bl_context: typing.Any
|
|
1439
1391
|
bl_label: typing.Any
|
|
@@ -1446,14 +1398,12 @@ class RENDER_PT_opengl_sampling(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1446
1398
|
"""
|
|
1447
1399
|
|
|
1448
1400
|
:return: The RNA type or default when not found.
|
|
1449
|
-
:rtype: bpy.types.Struct
|
|
1450
1401
|
"""
|
|
1451
1402
|
|
|
1452
1403
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1453
1404
|
"""
|
|
1454
1405
|
|
|
1455
1406
|
:return: The class or default when not found.
|
|
1456
|
-
:rtype: typing.Any
|
|
1457
1407
|
"""
|
|
1458
1408
|
|
|
1459
1409
|
def draw(self, context) -> None:
|
|
@@ -1469,7 +1419,7 @@ class RENDER_PT_opengl_sampling(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1469
1419
|
:param context:
|
|
1470
1420
|
"""
|
|
1471
1421
|
|
|
1472
|
-
class RENDER_PT_simplify(RenderButtonsPanel,
|
|
1422
|
+
class RENDER_PT_simplify(RenderButtonsPanel, _bpy_types.Panel):
|
|
1473
1423
|
COMPAT_ENGINES: typing.Any
|
|
1474
1424
|
bl_context: typing.Any
|
|
1475
1425
|
bl_label: typing.Any
|
|
@@ -1483,14 +1433,12 @@ class RENDER_PT_simplify(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1483
1433
|
"""
|
|
1484
1434
|
|
|
1485
1435
|
:return: The RNA type or default when not found.
|
|
1486
|
-
:rtype: bpy.types.Struct
|
|
1487
1436
|
"""
|
|
1488
1437
|
|
|
1489
1438
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1490
1439
|
"""
|
|
1491
1440
|
|
|
1492
1441
|
:return: The class or default when not found.
|
|
1493
|
-
:rtype: typing.Any
|
|
1494
1442
|
"""
|
|
1495
1443
|
|
|
1496
1444
|
def draw(self, context) -> None:
|
|
@@ -1506,7 +1454,7 @@ class RENDER_PT_simplify(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1506
1454
|
"""
|
|
1507
1455
|
|
|
1508
1456
|
class RENDER_PT_simplify_greasepencil(
|
|
1509
|
-
|
|
1457
|
+
_bpy_types.Panel,
|
|
1510
1458
|
RenderButtonsPanel,
|
|
1511
1459
|
bl_ui.properties_grease_pencil_common.GreasePencilSimplifyPanel,
|
|
1512
1460
|
):
|
|
@@ -1524,17 +1472,15 @@ class RENDER_PT_simplify_greasepencil(
|
|
|
1524
1472
|
"""
|
|
1525
1473
|
|
|
1526
1474
|
:return: The RNA type or default when not found.
|
|
1527
|
-
:rtype: bpy.types.Struct
|
|
1528
1475
|
"""
|
|
1529
1476
|
|
|
1530
1477
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1531
1478
|
"""
|
|
1532
1479
|
|
|
1533
1480
|
:return: The class or default when not found.
|
|
1534
|
-
:rtype: typing.Any
|
|
1535
1481
|
"""
|
|
1536
1482
|
|
|
1537
|
-
class RENDER_PT_simplify_render(RenderButtonsPanel,
|
|
1483
|
+
class RENDER_PT_simplify_render(RenderButtonsPanel, _bpy_types.Panel):
|
|
1538
1484
|
COMPAT_ENGINES: typing.Any
|
|
1539
1485
|
bl_context: typing.Any
|
|
1540
1486
|
bl_label: typing.Any
|
|
@@ -1548,14 +1494,12 @@ class RENDER_PT_simplify_render(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1548
1494
|
"""
|
|
1549
1495
|
|
|
1550
1496
|
:return: The RNA type or default when not found.
|
|
1551
|
-
:rtype: bpy.types.Struct
|
|
1552
1497
|
"""
|
|
1553
1498
|
|
|
1554
1499
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1555
1500
|
"""
|
|
1556
1501
|
|
|
1557
1502
|
:return: The class or default when not found.
|
|
1558
|
-
:rtype: typing.Any
|
|
1559
1503
|
"""
|
|
1560
1504
|
|
|
1561
1505
|
def draw(self, context) -> None:
|
|
@@ -1564,7 +1508,7 @@ class RENDER_PT_simplify_render(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1564
1508
|
:param context:
|
|
1565
1509
|
"""
|
|
1566
1510
|
|
|
1567
|
-
class RENDER_PT_simplify_viewport(RenderButtonsPanel,
|
|
1511
|
+
class RENDER_PT_simplify_viewport(RenderButtonsPanel, _bpy_types.Panel):
|
|
1568
1512
|
COMPAT_ENGINES: typing.Any
|
|
1569
1513
|
bl_context: typing.Any
|
|
1570
1514
|
bl_label: typing.Any
|
|
@@ -1578,14 +1522,12 @@ class RENDER_PT_simplify_viewport(RenderButtonsPanel, bpy.types.Panel):
|
|
|
1578
1522
|
"""
|
|
1579
1523
|
|
|
1580
1524
|
:return: The RNA type or default when not found.
|
|
1581
|
-
:rtype: bpy.types.Struct
|
|
1582
1525
|
"""
|
|
1583
1526
|
|
|
1584
1527
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1585
1528
|
"""
|
|
1586
1529
|
|
|
1587
1530
|
:return: The class or default when not found.
|
|
1588
|
-
:rtype: typing.Any
|
|
1589
1531
|
"""
|
|
1590
1532
|
|
|
1591
1533
|
def draw(self, context) -> None:
|