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,12 +2,13 @@ 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.space_properties
|
|
6
7
|
import bl_ui.utils
|
|
7
8
|
import bpy.types
|
|
8
9
|
import rna_prop_ui
|
|
9
10
|
|
|
10
|
-
class PARTICLE_MT_context_menu(
|
|
11
|
+
class PARTICLE_MT_context_menu(_bpy_types.Menu):
|
|
11
12
|
COMPAT_ENGINES: typing.Any
|
|
12
13
|
bl_label: typing.Any
|
|
13
14
|
bl_rna: typing.Any
|
|
@@ -17,14 +18,12 @@ class PARTICLE_MT_context_menu(bpy.types.Menu):
|
|
|
17
18
|
"""
|
|
18
19
|
|
|
19
20
|
:return: The RNA type or default when not found.
|
|
20
|
-
:rtype: bpy.types.Struct
|
|
21
21
|
"""
|
|
22
22
|
|
|
23
23
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
24
24
|
"""
|
|
25
25
|
|
|
26
26
|
:return: The class or default when not found.
|
|
27
|
-
:rtype: typing.Any
|
|
28
27
|
"""
|
|
29
28
|
|
|
30
29
|
def draw(self, context) -> None:
|
|
@@ -37,9 +36,9 @@ class PARTICLE_PT_animation(
|
|
|
37
36
|
rna_prop_ui.PropertyPanel,
|
|
38
37
|
ParticleButtonsPanel,
|
|
39
38
|
bl_ui.space_properties.PropertiesAnimationMixin,
|
|
40
|
-
|
|
39
|
+
_bpy_types.Panel,
|
|
41
40
|
):
|
|
42
|
-
"""Mix-in class for Animation panels.This class can be used to show a generic
|
|
41
|
+
"""Mix-in class for Animation panels.This class can be used to show a generic Animation panel for IDs shown in
|
|
43
42
|
the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
|
|
44
43
|
"""
|
|
45
44
|
|
|
@@ -57,17 +56,15 @@ class PARTICLE_PT_animation(
|
|
|
57
56
|
"""
|
|
58
57
|
|
|
59
58
|
:return: The RNA type or default when not found.
|
|
60
|
-
:rtype: bpy.types.Struct
|
|
61
59
|
"""
|
|
62
60
|
|
|
63
61
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
64
62
|
"""
|
|
65
63
|
|
|
66
64
|
:return: The class or default when not found.
|
|
67
|
-
:rtype: typing.Any
|
|
68
65
|
"""
|
|
69
66
|
|
|
70
|
-
class PARTICLE_PT_boidbrain(ParticleButtonsPanel,
|
|
67
|
+
class PARTICLE_PT_boidbrain(ParticleButtonsPanel, _bpy_types.Panel):
|
|
71
68
|
COMPAT_ENGINES: typing.Any
|
|
72
69
|
bl_context: typing.Any
|
|
73
70
|
bl_label: typing.Any
|
|
@@ -82,14 +79,12 @@ class PARTICLE_PT_boidbrain(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
82
79
|
"""
|
|
83
80
|
|
|
84
81
|
:return: The RNA type or default when not found.
|
|
85
|
-
:rtype: bpy.types.Struct
|
|
86
82
|
"""
|
|
87
83
|
|
|
88
84
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
89
85
|
"""
|
|
90
86
|
|
|
91
87
|
:return: The class or default when not found.
|
|
92
|
-
:rtype: typing.Any
|
|
93
88
|
"""
|
|
94
89
|
|
|
95
90
|
def draw(self, context) -> None:
|
|
@@ -105,7 +100,7 @@ class PARTICLE_PT_boidbrain(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
105
100
|
:param context:
|
|
106
101
|
"""
|
|
107
102
|
|
|
108
|
-
class PARTICLE_PT_cache(ParticleButtonsPanel,
|
|
103
|
+
class PARTICLE_PT_cache(ParticleButtonsPanel, _bpy_types.Panel):
|
|
109
104
|
COMPAT_ENGINES: typing.Any
|
|
110
105
|
bl_context: typing.Any
|
|
111
106
|
bl_label: typing.Any
|
|
@@ -119,14 +114,12 @@ class PARTICLE_PT_cache(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
119
114
|
"""
|
|
120
115
|
|
|
121
116
|
:return: The RNA type or default when not found.
|
|
122
|
-
:rtype: bpy.types.Struct
|
|
123
117
|
"""
|
|
124
118
|
|
|
125
119
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
126
120
|
"""
|
|
127
121
|
|
|
128
122
|
:return: The class or default when not found.
|
|
129
|
-
:rtype: typing.Any
|
|
130
123
|
"""
|
|
131
124
|
|
|
132
125
|
def draw(self, context) -> None:
|
|
@@ -142,7 +135,7 @@ class PARTICLE_PT_cache(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
142
135
|
:param context:
|
|
143
136
|
"""
|
|
144
137
|
|
|
145
|
-
class PARTICLE_PT_children(ParticleButtonsPanel,
|
|
138
|
+
class PARTICLE_PT_children(ParticleButtonsPanel, _bpy_types.Panel):
|
|
146
139
|
COMPAT_ENGINES: typing.Any
|
|
147
140
|
bl_context: typing.Any
|
|
148
141
|
bl_label: typing.Any
|
|
@@ -157,14 +150,12 @@ class PARTICLE_PT_children(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
157
150
|
"""
|
|
158
151
|
|
|
159
152
|
:return: The RNA type or default when not found.
|
|
160
|
-
:rtype: bpy.types.Struct
|
|
161
153
|
"""
|
|
162
154
|
|
|
163
155
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
164
156
|
"""
|
|
165
157
|
|
|
166
158
|
:return: The class or default when not found.
|
|
167
|
-
:rtype: typing.Any
|
|
168
159
|
"""
|
|
169
160
|
|
|
170
161
|
def draw(self, context) -> None:
|
|
@@ -180,7 +171,7 @@ class PARTICLE_PT_children(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
180
171
|
:param context:
|
|
181
172
|
"""
|
|
182
173
|
|
|
183
|
-
class PARTICLE_PT_children_clumping(ParticleButtonsPanel,
|
|
174
|
+
class PARTICLE_PT_children_clumping(ParticleButtonsPanel, _bpy_types.Panel):
|
|
184
175
|
COMPAT_ENGINES: typing.Any
|
|
185
176
|
bl_context: typing.Any
|
|
186
177
|
bl_label: typing.Any
|
|
@@ -195,14 +186,12 @@ class PARTICLE_PT_children_clumping(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
195
186
|
"""
|
|
196
187
|
|
|
197
188
|
:return: The RNA type or default when not found.
|
|
198
|
-
:rtype: bpy.types.Struct
|
|
199
189
|
"""
|
|
200
190
|
|
|
201
191
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
202
192
|
"""
|
|
203
193
|
|
|
204
194
|
:return: The class or default when not found.
|
|
205
|
-
:rtype: typing.Any
|
|
206
195
|
"""
|
|
207
196
|
|
|
208
197
|
def draw(self, context) -> None:
|
|
@@ -218,7 +207,7 @@ class PARTICLE_PT_children_clumping(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
218
207
|
:param context:
|
|
219
208
|
"""
|
|
220
209
|
|
|
221
|
-
class PARTICLE_PT_children_clumping_noise(ParticleButtonsPanel,
|
|
210
|
+
class PARTICLE_PT_children_clumping_noise(ParticleButtonsPanel, _bpy_types.Panel):
|
|
222
211
|
COMPAT_ENGINES: typing.Any
|
|
223
212
|
bl_context: typing.Any
|
|
224
213
|
bl_label: typing.Any
|
|
@@ -233,14 +222,12 @@ class PARTICLE_PT_children_clumping_noise(ParticleButtonsPanel, bpy.types.Panel)
|
|
|
233
222
|
"""
|
|
234
223
|
|
|
235
224
|
:return: The RNA type or default when not found.
|
|
236
|
-
:rtype: bpy.types.Struct
|
|
237
225
|
"""
|
|
238
226
|
|
|
239
227
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
240
228
|
"""
|
|
241
229
|
|
|
242
230
|
:return: The class or default when not found.
|
|
243
|
-
:rtype: typing.Any
|
|
244
231
|
"""
|
|
245
232
|
|
|
246
233
|
def draw(self, context) -> None:
|
|
@@ -255,7 +242,7 @@ class PARTICLE_PT_children_clumping_noise(ParticleButtonsPanel, bpy.types.Panel)
|
|
|
255
242
|
:param context:
|
|
256
243
|
"""
|
|
257
244
|
|
|
258
|
-
class PARTICLE_PT_children_kink(ParticleButtonsPanel,
|
|
245
|
+
class PARTICLE_PT_children_kink(ParticleButtonsPanel, _bpy_types.Panel):
|
|
259
246
|
COMPAT_ENGINES: typing.Any
|
|
260
247
|
bl_context: typing.Any
|
|
261
248
|
bl_label: typing.Any
|
|
@@ -270,14 +257,12 @@ class PARTICLE_PT_children_kink(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
270
257
|
"""
|
|
271
258
|
|
|
272
259
|
:return: The RNA type or default when not found.
|
|
273
|
-
:rtype: bpy.types.Struct
|
|
274
260
|
"""
|
|
275
261
|
|
|
276
262
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
277
263
|
"""
|
|
278
264
|
|
|
279
265
|
:return: The class or default when not found.
|
|
280
|
-
:rtype: typing.Any
|
|
281
266
|
"""
|
|
282
267
|
|
|
283
268
|
def draw(self, context) -> None:
|
|
@@ -293,7 +278,7 @@ class PARTICLE_PT_children_kink(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
293
278
|
:param context:
|
|
294
279
|
"""
|
|
295
280
|
|
|
296
|
-
class PARTICLE_PT_children_parting(ParticleButtonsPanel,
|
|
281
|
+
class PARTICLE_PT_children_parting(ParticleButtonsPanel, _bpy_types.Panel):
|
|
297
282
|
COMPAT_ENGINES: typing.Any
|
|
298
283
|
bl_context: typing.Any
|
|
299
284
|
bl_label: typing.Any
|
|
@@ -308,14 +293,12 @@ class PARTICLE_PT_children_parting(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
308
293
|
"""
|
|
309
294
|
|
|
310
295
|
:return: The RNA type or default when not found.
|
|
311
|
-
:rtype: bpy.types.Struct
|
|
312
296
|
"""
|
|
313
297
|
|
|
314
298
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
315
299
|
"""
|
|
316
300
|
|
|
317
301
|
:return: The class or default when not found.
|
|
318
|
-
:rtype: typing.Any
|
|
319
302
|
"""
|
|
320
303
|
|
|
321
304
|
def draw(self, context) -> None:
|
|
@@ -331,7 +314,7 @@ class PARTICLE_PT_children_parting(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
331
314
|
:param context:
|
|
332
315
|
"""
|
|
333
316
|
|
|
334
|
-
class PARTICLE_PT_children_roughness(ParticleButtonsPanel,
|
|
317
|
+
class PARTICLE_PT_children_roughness(ParticleButtonsPanel, _bpy_types.Panel):
|
|
335
318
|
COMPAT_ENGINES: typing.Any
|
|
336
319
|
bl_context: typing.Any
|
|
337
320
|
bl_label: typing.Any
|
|
@@ -347,14 +330,12 @@ class PARTICLE_PT_children_roughness(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
347
330
|
"""
|
|
348
331
|
|
|
349
332
|
:return: The RNA type or default when not found.
|
|
350
|
-
:rtype: bpy.types.Struct
|
|
351
333
|
"""
|
|
352
334
|
|
|
353
335
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
354
336
|
"""
|
|
355
337
|
|
|
356
338
|
:return: The class or default when not found.
|
|
357
|
-
:rtype: typing.Any
|
|
358
339
|
"""
|
|
359
340
|
|
|
360
341
|
def draw(self, context) -> None:
|
|
@@ -370,7 +351,7 @@ class PARTICLE_PT_children_roughness(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
370
351
|
:param context:
|
|
371
352
|
"""
|
|
372
353
|
|
|
373
|
-
class PARTICLE_PT_context_particles(ParticleButtonsPanel,
|
|
354
|
+
class PARTICLE_PT_context_particles(ParticleButtonsPanel, _bpy_types.Panel):
|
|
374
355
|
COMPAT_ENGINES: typing.Any
|
|
375
356
|
bl_context: typing.Any
|
|
376
357
|
bl_label: typing.Any
|
|
@@ -384,14 +365,12 @@ class PARTICLE_PT_context_particles(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
384
365
|
"""
|
|
385
366
|
|
|
386
367
|
:return: The RNA type or default when not found.
|
|
387
|
-
:rtype: bpy.types.Struct
|
|
388
368
|
"""
|
|
389
369
|
|
|
390
370
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
391
371
|
"""
|
|
392
372
|
|
|
393
373
|
:return: The class or default when not found.
|
|
394
|
-
:rtype: typing.Any
|
|
395
374
|
"""
|
|
396
375
|
|
|
397
376
|
def draw(self, context) -> None:
|
|
@@ -408,10 +387,10 @@ class PARTICLE_PT_context_particles(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
408
387
|
"""
|
|
409
388
|
|
|
410
389
|
class PARTICLE_PT_custom_props(
|
|
411
|
-
rna_prop_ui.PropertyPanel, ParticleButtonsPanel,
|
|
390
|
+
rna_prop_ui.PropertyPanel, ParticleButtonsPanel, _bpy_types.Panel
|
|
412
391
|
):
|
|
413
392
|
"""The subclass should have its own poll function
|
|
414
|
-
and the variable
|
|
393
|
+
and the variable _context_path MUST be set.
|
|
415
394
|
"""
|
|
416
395
|
|
|
417
396
|
COMPAT_ENGINES: typing.Any
|
|
@@ -428,17 +407,15 @@ class PARTICLE_PT_custom_props(
|
|
|
428
407
|
"""
|
|
429
408
|
|
|
430
409
|
:return: The RNA type or default when not found.
|
|
431
|
-
:rtype: bpy.types.Struct
|
|
432
410
|
"""
|
|
433
411
|
|
|
434
412
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
435
413
|
"""
|
|
436
414
|
|
|
437
415
|
:return: The class or default when not found.
|
|
438
|
-
:rtype: typing.Any
|
|
439
416
|
"""
|
|
440
417
|
|
|
441
|
-
class PARTICLE_PT_draw(ParticleButtonsPanel,
|
|
418
|
+
class PARTICLE_PT_draw(ParticleButtonsPanel, _bpy_types.Panel):
|
|
442
419
|
COMPAT_ENGINES: typing.Any
|
|
443
420
|
bl_context: typing.Any
|
|
444
421
|
bl_label: typing.Any
|
|
@@ -452,14 +429,12 @@ class PARTICLE_PT_draw(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
452
429
|
"""
|
|
453
430
|
|
|
454
431
|
:return: The RNA type or default when not found.
|
|
455
|
-
:rtype: bpy.types.Struct
|
|
456
432
|
"""
|
|
457
433
|
|
|
458
434
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
459
435
|
"""
|
|
460
436
|
|
|
461
437
|
:return: The class or default when not found.
|
|
462
|
-
:rtype: typing.Any
|
|
463
438
|
"""
|
|
464
439
|
|
|
465
440
|
def draw(self, context) -> None:
|
|
@@ -475,7 +450,7 @@ class PARTICLE_PT_draw(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
475
450
|
:param context:
|
|
476
451
|
"""
|
|
477
452
|
|
|
478
|
-
class PARTICLE_PT_emission(ParticleButtonsPanel,
|
|
453
|
+
class PARTICLE_PT_emission(ParticleButtonsPanel, _bpy_types.Panel):
|
|
479
454
|
COMPAT_ENGINES: typing.Any
|
|
480
455
|
bl_context: typing.Any
|
|
481
456
|
bl_label: typing.Any
|
|
@@ -489,14 +464,12 @@ class PARTICLE_PT_emission(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
489
464
|
"""
|
|
490
465
|
|
|
491
466
|
:return: The RNA type or default when not found.
|
|
492
|
-
:rtype: bpy.types.Struct
|
|
493
467
|
"""
|
|
494
468
|
|
|
495
469
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
496
470
|
"""
|
|
497
471
|
|
|
498
472
|
:return: The class or default when not found.
|
|
499
|
-
:rtype: typing.Any
|
|
500
473
|
"""
|
|
501
474
|
|
|
502
475
|
def draw(self, context) -> None:
|
|
@@ -512,7 +485,7 @@ class PARTICLE_PT_emission(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
512
485
|
:param context:
|
|
513
486
|
"""
|
|
514
487
|
|
|
515
|
-
class PARTICLE_PT_emission_source(ParticleButtonsPanel,
|
|
488
|
+
class PARTICLE_PT_emission_source(ParticleButtonsPanel, _bpy_types.Panel):
|
|
516
489
|
COMPAT_ENGINES: typing.Any
|
|
517
490
|
bl_context: typing.Any
|
|
518
491
|
bl_label: typing.Any
|
|
@@ -527,14 +500,12 @@ class PARTICLE_PT_emission_source(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
527
500
|
"""
|
|
528
501
|
|
|
529
502
|
:return: The RNA type or default when not found.
|
|
530
|
-
:rtype: bpy.types.Struct
|
|
531
503
|
"""
|
|
532
504
|
|
|
533
505
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
534
506
|
"""
|
|
535
507
|
|
|
536
508
|
:return: The class or default when not found.
|
|
537
|
-
:rtype: typing.Any
|
|
538
509
|
"""
|
|
539
510
|
|
|
540
511
|
def draw(self, context) -> None:
|
|
@@ -543,7 +514,7 @@ class PARTICLE_PT_emission_source(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
543
514
|
:param context:
|
|
544
515
|
"""
|
|
545
516
|
|
|
546
|
-
class PARTICLE_PT_field_weights(ParticleButtonsPanel,
|
|
517
|
+
class PARTICLE_PT_field_weights(ParticleButtonsPanel, _bpy_types.Panel):
|
|
547
518
|
COMPAT_ENGINES: typing.Any
|
|
548
519
|
bl_context: typing.Any
|
|
549
520
|
bl_label: typing.Any
|
|
@@ -557,14 +528,12 @@ class PARTICLE_PT_field_weights(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
557
528
|
"""
|
|
558
529
|
|
|
559
530
|
:return: The RNA type or default when not found.
|
|
560
|
-
:rtype: bpy.types.Struct
|
|
561
531
|
"""
|
|
562
532
|
|
|
563
533
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
564
534
|
"""
|
|
565
535
|
|
|
566
536
|
:return: The class or default when not found.
|
|
567
|
-
:rtype: typing.Any
|
|
568
537
|
"""
|
|
569
538
|
|
|
570
539
|
def draw(self, context) -> None:
|
|
@@ -580,7 +549,7 @@ class PARTICLE_PT_field_weights(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
580
549
|
:param context:
|
|
581
550
|
"""
|
|
582
551
|
|
|
583
|
-
class PARTICLE_PT_force_fields(ParticleButtonsPanel,
|
|
552
|
+
class PARTICLE_PT_force_fields(ParticleButtonsPanel, _bpy_types.Panel):
|
|
584
553
|
COMPAT_ENGINES: typing.Any
|
|
585
554
|
bl_context: typing.Any
|
|
586
555
|
bl_label: typing.Any
|
|
@@ -594,14 +563,12 @@ class PARTICLE_PT_force_fields(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
594
563
|
"""
|
|
595
564
|
|
|
596
565
|
:return: The RNA type or default when not found.
|
|
597
|
-
:rtype: bpy.types.Struct
|
|
598
566
|
"""
|
|
599
567
|
|
|
600
568
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
601
569
|
"""
|
|
602
570
|
|
|
603
571
|
:return: The class or default when not found.
|
|
604
|
-
:rtype: typing.Any
|
|
605
572
|
"""
|
|
606
573
|
|
|
607
574
|
def draw(self, context) -> None:
|
|
@@ -610,7 +577,7 @@ class PARTICLE_PT_force_fields(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
610
577
|
:param context:
|
|
611
578
|
"""
|
|
612
579
|
|
|
613
|
-
class PARTICLE_PT_force_fields_type1(ParticleButtonsPanel,
|
|
580
|
+
class PARTICLE_PT_force_fields_type1(ParticleButtonsPanel, _bpy_types.Panel):
|
|
614
581
|
COMPAT_ENGINES: typing.Any
|
|
615
582
|
bl_context: typing.Any
|
|
616
583
|
bl_label: typing.Any
|
|
@@ -624,14 +591,12 @@ class PARTICLE_PT_force_fields_type1(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
624
591
|
"""
|
|
625
592
|
|
|
626
593
|
:return: The RNA type or default when not found.
|
|
627
|
-
:rtype: bpy.types.Struct
|
|
628
594
|
"""
|
|
629
595
|
|
|
630
596
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
631
597
|
"""
|
|
632
598
|
|
|
633
599
|
:return: The class or default when not found.
|
|
634
|
-
:rtype: typing.Any
|
|
635
600
|
"""
|
|
636
601
|
|
|
637
602
|
def draw(self, context) -> None:
|
|
@@ -640,7 +605,7 @@ class PARTICLE_PT_force_fields_type1(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
640
605
|
:param context:
|
|
641
606
|
"""
|
|
642
607
|
|
|
643
|
-
class PARTICLE_PT_force_fields_type1_falloff(ParticleButtonsPanel,
|
|
608
|
+
class PARTICLE_PT_force_fields_type1_falloff(ParticleButtonsPanel, _bpy_types.Panel):
|
|
644
609
|
COMPAT_ENGINES: typing.Any
|
|
645
610
|
bl_context: typing.Any
|
|
646
611
|
bl_label: typing.Any
|
|
@@ -655,14 +620,12 @@ class PARTICLE_PT_force_fields_type1_falloff(ParticleButtonsPanel, bpy.types.Pan
|
|
|
655
620
|
"""
|
|
656
621
|
|
|
657
622
|
:return: The RNA type or default when not found.
|
|
658
|
-
:rtype: bpy.types.Struct
|
|
659
623
|
"""
|
|
660
624
|
|
|
661
625
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
662
626
|
"""
|
|
663
627
|
|
|
664
628
|
:return: The class or default when not found.
|
|
665
|
-
:rtype: typing.Any
|
|
666
629
|
"""
|
|
667
630
|
|
|
668
631
|
def draw(self, context) -> None:
|
|
@@ -671,7 +634,7 @@ class PARTICLE_PT_force_fields_type1_falloff(ParticleButtonsPanel, bpy.types.Pan
|
|
|
671
634
|
:param context:
|
|
672
635
|
"""
|
|
673
636
|
|
|
674
|
-
class PARTICLE_PT_force_fields_type2(ParticleButtonsPanel,
|
|
637
|
+
class PARTICLE_PT_force_fields_type2(ParticleButtonsPanel, _bpy_types.Panel):
|
|
675
638
|
COMPAT_ENGINES: typing.Any
|
|
676
639
|
bl_context: typing.Any
|
|
677
640
|
bl_label: typing.Any
|
|
@@ -685,14 +648,12 @@ class PARTICLE_PT_force_fields_type2(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
685
648
|
"""
|
|
686
649
|
|
|
687
650
|
:return: The RNA type or default when not found.
|
|
688
|
-
:rtype: bpy.types.Struct
|
|
689
651
|
"""
|
|
690
652
|
|
|
691
653
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
692
654
|
"""
|
|
693
655
|
|
|
694
656
|
:return: The class or default when not found.
|
|
695
|
-
:rtype: typing.Any
|
|
696
657
|
"""
|
|
697
658
|
|
|
698
659
|
def draw(self, context) -> None:
|
|
@@ -701,7 +662,7 @@ class PARTICLE_PT_force_fields_type2(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
701
662
|
:param context:
|
|
702
663
|
"""
|
|
703
664
|
|
|
704
|
-
class PARTICLE_PT_force_fields_type2_falloff(ParticleButtonsPanel,
|
|
665
|
+
class PARTICLE_PT_force_fields_type2_falloff(ParticleButtonsPanel, _bpy_types.Panel):
|
|
705
666
|
COMPAT_ENGINES: typing.Any
|
|
706
667
|
bl_context: typing.Any
|
|
707
668
|
bl_label: typing.Any
|
|
@@ -716,14 +677,12 @@ class PARTICLE_PT_force_fields_type2_falloff(ParticleButtonsPanel, bpy.types.Pan
|
|
|
716
677
|
"""
|
|
717
678
|
|
|
718
679
|
:return: The RNA type or default when not found.
|
|
719
|
-
:rtype: bpy.types.Struct
|
|
720
680
|
"""
|
|
721
681
|
|
|
722
682
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
723
683
|
"""
|
|
724
684
|
|
|
725
685
|
:return: The class or default when not found.
|
|
726
|
-
:rtype: typing.Any
|
|
727
686
|
"""
|
|
728
687
|
|
|
729
688
|
def draw(self, context) -> None:
|
|
@@ -732,7 +691,7 @@ class PARTICLE_PT_force_fields_type2_falloff(ParticleButtonsPanel, bpy.types.Pan
|
|
|
732
691
|
:param context:
|
|
733
692
|
"""
|
|
734
693
|
|
|
735
|
-
class PARTICLE_PT_hair_dynamics(ParticleButtonsPanel,
|
|
694
|
+
class PARTICLE_PT_hair_dynamics(ParticleButtonsPanel, _bpy_types.Panel):
|
|
736
695
|
COMPAT_ENGINES: typing.Any
|
|
737
696
|
bl_context: typing.Any
|
|
738
697
|
bl_label: typing.Any
|
|
@@ -746,14 +705,12 @@ class PARTICLE_PT_hair_dynamics(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
746
705
|
"""
|
|
747
706
|
|
|
748
707
|
:return: The RNA type or default when not found.
|
|
749
|
-
:rtype: bpy.types.Struct
|
|
750
708
|
"""
|
|
751
709
|
|
|
752
710
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
753
711
|
"""
|
|
754
712
|
|
|
755
713
|
:return: The class or default when not found.
|
|
756
|
-
:rtype: typing.Any
|
|
757
714
|
"""
|
|
758
715
|
|
|
759
716
|
def draw(self, context) -> None:
|
|
@@ -781,7 +738,7 @@ class PARTICLE_PT_hair_dynamics(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
781
738
|
:param context:
|
|
782
739
|
"""
|
|
783
740
|
|
|
784
|
-
class PARTICLE_PT_hair_dynamics_collision(ParticleButtonsPanel,
|
|
741
|
+
class PARTICLE_PT_hair_dynamics_collision(ParticleButtonsPanel, _bpy_types.Panel):
|
|
785
742
|
COMPAT_ENGINES: typing.Any
|
|
786
743
|
bl_context: typing.Any
|
|
787
744
|
bl_label: typing.Any
|
|
@@ -796,14 +753,12 @@ class PARTICLE_PT_hair_dynamics_collision(ParticleButtonsPanel, bpy.types.Panel)
|
|
|
796
753
|
"""
|
|
797
754
|
|
|
798
755
|
:return: The RNA type or default when not found.
|
|
799
|
-
:rtype: bpy.types.Struct
|
|
800
756
|
"""
|
|
801
757
|
|
|
802
758
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
803
759
|
"""
|
|
804
760
|
|
|
805
761
|
:return: The class or default when not found.
|
|
806
|
-
:rtype: typing.Any
|
|
807
762
|
"""
|
|
808
763
|
|
|
809
764
|
def draw(self, context) -> None:
|
|
@@ -819,7 +774,7 @@ class PARTICLE_PT_hair_dynamics_collision(ParticleButtonsPanel, bpy.types.Panel)
|
|
|
819
774
|
:param context:
|
|
820
775
|
"""
|
|
821
776
|
|
|
822
|
-
class PARTICLE_PT_hair_dynamics_presets(bl_ui.utils.PresetPanel,
|
|
777
|
+
class PARTICLE_PT_hair_dynamics_presets(bl_ui.utils.PresetPanel, _bpy_types.Panel):
|
|
823
778
|
COMPAT_ENGINES: typing.Any
|
|
824
779
|
bl_label: typing.Any
|
|
825
780
|
bl_region_type: typing.Any
|
|
@@ -834,17 +789,15 @@ class PARTICLE_PT_hair_dynamics_presets(bl_ui.utils.PresetPanel, bpy.types.Panel
|
|
|
834
789
|
"""
|
|
835
790
|
|
|
836
791
|
:return: The RNA type or default when not found.
|
|
837
|
-
:rtype: bpy.types.Struct
|
|
838
792
|
"""
|
|
839
793
|
|
|
840
794
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
841
795
|
"""
|
|
842
796
|
|
|
843
797
|
:return: The class or default when not found.
|
|
844
|
-
:rtype: typing.Any
|
|
845
798
|
"""
|
|
846
799
|
|
|
847
|
-
class PARTICLE_PT_hair_dynamics_structure(ParticleButtonsPanel,
|
|
800
|
+
class PARTICLE_PT_hair_dynamics_structure(ParticleButtonsPanel, _bpy_types.Panel):
|
|
848
801
|
COMPAT_ENGINES: typing.Any
|
|
849
802
|
bl_context: typing.Any
|
|
850
803
|
bl_label: typing.Any
|
|
@@ -859,14 +812,12 @@ class PARTICLE_PT_hair_dynamics_structure(ParticleButtonsPanel, bpy.types.Panel)
|
|
|
859
812
|
"""
|
|
860
813
|
|
|
861
814
|
:return: The RNA type or default when not found.
|
|
862
|
-
:rtype: bpy.types.Struct
|
|
863
815
|
"""
|
|
864
816
|
|
|
865
817
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
866
818
|
"""
|
|
867
819
|
|
|
868
820
|
:return: The class or default when not found.
|
|
869
|
-
:rtype: typing.Any
|
|
870
821
|
"""
|
|
871
822
|
|
|
872
823
|
def draw(self, context) -> None:
|
|
@@ -882,7 +833,7 @@ class PARTICLE_PT_hair_dynamics_structure(ParticleButtonsPanel, bpy.types.Panel)
|
|
|
882
833
|
:param context:
|
|
883
834
|
"""
|
|
884
835
|
|
|
885
|
-
class PARTICLE_PT_hair_dynamics_volume(ParticleButtonsPanel,
|
|
836
|
+
class PARTICLE_PT_hair_dynamics_volume(ParticleButtonsPanel, _bpy_types.Panel):
|
|
886
837
|
COMPAT_ENGINES: typing.Any
|
|
887
838
|
bl_context: typing.Any
|
|
888
839
|
bl_label: typing.Any
|
|
@@ -897,14 +848,12 @@ class PARTICLE_PT_hair_dynamics_volume(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
897
848
|
"""
|
|
898
849
|
|
|
899
850
|
:return: The RNA type or default when not found.
|
|
900
|
-
:rtype: bpy.types.Struct
|
|
901
851
|
"""
|
|
902
852
|
|
|
903
853
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
904
854
|
"""
|
|
905
855
|
|
|
906
856
|
:return: The class or default when not found.
|
|
907
|
-
:rtype: typing.Any
|
|
908
857
|
"""
|
|
909
858
|
|
|
910
859
|
def draw(self, context) -> None:
|
|
@@ -920,7 +869,7 @@ class PARTICLE_PT_hair_dynamics_volume(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
920
869
|
:param context:
|
|
921
870
|
"""
|
|
922
871
|
|
|
923
|
-
class PARTICLE_PT_hair_shape(ParticleButtonsPanel,
|
|
872
|
+
class PARTICLE_PT_hair_shape(ParticleButtonsPanel, _bpy_types.Panel):
|
|
924
873
|
COMPAT_ENGINES: typing.Any
|
|
925
874
|
bl_context: typing.Any
|
|
926
875
|
bl_label: typing.Any
|
|
@@ -934,14 +883,12 @@ class PARTICLE_PT_hair_shape(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
934
883
|
"""
|
|
935
884
|
|
|
936
885
|
:return: The RNA type or default when not found.
|
|
937
|
-
:rtype: bpy.types.Struct
|
|
938
886
|
"""
|
|
939
887
|
|
|
940
888
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
941
889
|
"""
|
|
942
890
|
|
|
943
891
|
:return: The class or default when not found.
|
|
944
|
-
:rtype: typing.Any
|
|
945
892
|
"""
|
|
946
893
|
|
|
947
894
|
def draw(self, context) -> None:
|
|
@@ -957,7 +904,7 @@ class PARTICLE_PT_hair_shape(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
957
904
|
:param context:
|
|
958
905
|
"""
|
|
959
906
|
|
|
960
|
-
class PARTICLE_PT_physics(ParticleButtonsPanel,
|
|
907
|
+
class PARTICLE_PT_physics(ParticleButtonsPanel, _bpy_types.Panel):
|
|
961
908
|
COMPAT_ENGINES: typing.Any
|
|
962
909
|
bl_context: typing.Any
|
|
963
910
|
bl_label: typing.Any
|
|
@@ -971,14 +918,12 @@ class PARTICLE_PT_physics(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
971
918
|
"""
|
|
972
919
|
|
|
973
920
|
:return: The RNA type or default when not found.
|
|
974
|
-
:rtype: bpy.types.Struct
|
|
975
921
|
"""
|
|
976
922
|
|
|
977
923
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
978
924
|
"""
|
|
979
925
|
|
|
980
926
|
:return: The class or default when not found.
|
|
981
|
-
:rtype: typing.Any
|
|
982
927
|
"""
|
|
983
928
|
|
|
984
929
|
def draw(self, context) -> None:
|
|
@@ -994,7 +939,7 @@ class PARTICLE_PT_physics(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
994
939
|
:param context:
|
|
995
940
|
"""
|
|
996
941
|
|
|
997
|
-
class PARTICLE_PT_physics_boids_battle(ParticleButtonsPanel,
|
|
942
|
+
class PARTICLE_PT_physics_boids_battle(ParticleButtonsPanel, _bpy_types.Panel):
|
|
998
943
|
COMPAT_ENGINES: typing.Any
|
|
999
944
|
bl_context: typing.Any
|
|
1000
945
|
bl_label: typing.Any
|
|
@@ -1009,14 +954,12 @@ class PARTICLE_PT_physics_boids_battle(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1009
954
|
"""
|
|
1010
955
|
|
|
1011
956
|
:return: The RNA type or default when not found.
|
|
1012
|
-
:rtype: bpy.types.Struct
|
|
1013
957
|
"""
|
|
1014
958
|
|
|
1015
959
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1016
960
|
"""
|
|
1017
961
|
|
|
1018
962
|
:return: The class or default when not found.
|
|
1019
|
-
:rtype: typing.Any
|
|
1020
963
|
"""
|
|
1021
964
|
|
|
1022
965
|
def draw(self, context) -> None:
|
|
@@ -1032,7 +975,7 @@ class PARTICLE_PT_physics_boids_battle(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1032
975
|
:param context:
|
|
1033
976
|
"""
|
|
1034
977
|
|
|
1035
|
-
class PARTICLE_PT_physics_boids_misc(ParticleButtonsPanel,
|
|
978
|
+
class PARTICLE_PT_physics_boids_misc(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1036
979
|
COMPAT_ENGINES: typing.Any
|
|
1037
980
|
bl_context: typing.Any
|
|
1038
981
|
bl_label: typing.Any
|
|
@@ -1047,14 +990,12 @@ class PARTICLE_PT_physics_boids_misc(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1047
990
|
"""
|
|
1048
991
|
|
|
1049
992
|
:return: The RNA type or default when not found.
|
|
1050
|
-
:rtype: bpy.types.Struct
|
|
1051
993
|
"""
|
|
1052
994
|
|
|
1053
995
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1054
996
|
"""
|
|
1055
997
|
|
|
1056
998
|
:return: The class or default when not found.
|
|
1057
|
-
:rtype: typing.Any
|
|
1058
999
|
"""
|
|
1059
1000
|
|
|
1060
1001
|
def draw(self, context) -> None:
|
|
@@ -1070,7 +1011,7 @@ class PARTICLE_PT_physics_boids_misc(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1070
1011
|
:param context:
|
|
1071
1012
|
"""
|
|
1072
1013
|
|
|
1073
|
-
class PARTICLE_PT_physics_boids_movement(ParticleButtonsPanel,
|
|
1014
|
+
class PARTICLE_PT_physics_boids_movement(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1074
1015
|
COMPAT_ENGINES: typing.Any
|
|
1075
1016
|
bl_context: typing.Any
|
|
1076
1017
|
bl_label: typing.Any
|
|
@@ -1085,14 +1026,12 @@ class PARTICLE_PT_physics_boids_movement(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1085
1026
|
"""
|
|
1086
1027
|
|
|
1087
1028
|
:return: The RNA type or default when not found.
|
|
1088
|
-
:rtype: bpy.types.Struct
|
|
1089
1029
|
"""
|
|
1090
1030
|
|
|
1091
1031
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1092
1032
|
"""
|
|
1093
1033
|
|
|
1094
1034
|
:return: The class or default when not found.
|
|
1095
|
-
:rtype: typing.Any
|
|
1096
1035
|
"""
|
|
1097
1036
|
|
|
1098
1037
|
def draw(self, context) -> None:
|
|
@@ -1108,7 +1047,7 @@ class PARTICLE_PT_physics_boids_movement(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1108
1047
|
:param context:
|
|
1109
1048
|
"""
|
|
1110
1049
|
|
|
1111
|
-
class PARTICLE_PT_physics_deflection(ParticleButtonsPanel,
|
|
1050
|
+
class PARTICLE_PT_physics_deflection(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1112
1051
|
COMPAT_ENGINES: typing.Any
|
|
1113
1052
|
bl_context: typing.Any
|
|
1114
1053
|
bl_label: typing.Any
|
|
@@ -1123,14 +1062,12 @@ class PARTICLE_PT_physics_deflection(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1123
1062
|
"""
|
|
1124
1063
|
|
|
1125
1064
|
:return: The RNA type or default when not found.
|
|
1126
|
-
:rtype: bpy.types.Struct
|
|
1127
1065
|
"""
|
|
1128
1066
|
|
|
1129
1067
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1130
1068
|
"""
|
|
1131
1069
|
|
|
1132
1070
|
:return: The class or default when not found.
|
|
1133
|
-
:rtype: typing.Any
|
|
1134
1071
|
"""
|
|
1135
1072
|
|
|
1136
1073
|
def draw(self, context) -> None:
|
|
@@ -1146,7 +1083,7 @@ class PARTICLE_PT_physics_deflection(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1146
1083
|
:param context:
|
|
1147
1084
|
"""
|
|
1148
1085
|
|
|
1149
|
-
class PARTICLE_PT_physics_fluid_advanced(ParticleButtonsPanel,
|
|
1086
|
+
class PARTICLE_PT_physics_fluid_advanced(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1150
1087
|
COMPAT_ENGINES: typing.Any
|
|
1151
1088
|
bl_context: typing.Any
|
|
1152
1089
|
bl_label: typing.Any
|
|
@@ -1161,14 +1098,12 @@ class PARTICLE_PT_physics_fluid_advanced(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1161
1098
|
"""
|
|
1162
1099
|
|
|
1163
1100
|
:return: The RNA type or default when not found.
|
|
1164
|
-
:rtype: bpy.types.Struct
|
|
1165
1101
|
"""
|
|
1166
1102
|
|
|
1167
1103
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1168
1104
|
"""
|
|
1169
1105
|
|
|
1170
1106
|
:return: The class or default when not found.
|
|
1171
|
-
:rtype: typing.Any
|
|
1172
1107
|
"""
|
|
1173
1108
|
|
|
1174
1109
|
def draw(self, context) -> None:
|
|
@@ -1184,7 +1119,7 @@ class PARTICLE_PT_physics_fluid_advanced(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1184
1119
|
:param context:
|
|
1185
1120
|
"""
|
|
1186
1121
|
|
|
1187
|
-
class PARTICLE_PT_physics_fluid_interaction(ParticleButtonsPanel,
|
|
1122
|
+
class PARTICLE_PT_physics_fluid_interaction(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1188
1123
|
COMPAT_ENGINES: typing.Any
|
|
1189
1124
|
bl_context: typing.Any
|
|
1190
1125
|
bl_label: typing.Any
|
|
@@ -1199,14 +1134,12 @@ class PARTICLE_PT_physics_fluid_interaction(ParticleButtonsPanel, bpy.types.Pane
|
|
|
1199
1134
|
"""
|
|
1200
1135
|
|
|
1201
1136
|
:return: The RNA type or default when not found.
|
|
1202
|
-
:rtype: bpy.types.Struct
|
|
1203
1137
|
"""
|
|
1204
1138
|
|
|
1205
1139
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1206
1140
|
"""
|
|
1207
1141
|
|
|
1208
1142
|
:return: The class or default when not found.
|
|
1209
|
-
:rtype: typing.Any
|
|
1210
1143
|
"""
|
|
1211
1144
|
|
|
1212
1145
|
def draw(self, context) -> None:
|
|
@@ -1222,7 +1155,7 @@ class PARTICLE_PT_physics_fluid_interaction(ParticleButtonsPanel, bpy.types.Pane
|
|
|
1222
1155
|
:param context:
|
|
1223
1156
|
"""
|
|
1224
1157
|
|
|
1225
|
-
class PARTICLE_PT_physics_fluid_springs(ParticleButtonsPanel,
|
|
1158
|
+
class PARTICLE_PT_physics_fluid_springs(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1226
1159
|
COMPAT_ENGINES: typing.Any
|
|
1227
1160
|
bl_context: typing.Any
|
|
1228
1161
|
bl_label: typing.Any
|
|
@@ -1237,14 +1170,12 @@ class PARTICLE_PT_physics_fluid_springs(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1237
1170
|
"""
|
|
1238
1171
|
|
|
1239
1172
|
:return: The RNA type or default when not found.
|
|
1240
|
-
:rtype: bpy.types.Struct
|
|
1241
1173
|
"""
|
|
1242
1174
|
|
|
1243
1175
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1244
1176
|
"""
|
|
1245
1177
|
|
|
1246
1178
|
:return: The class or default when not found.
|
|
1247
|
-
:rtype: typing.Any
|
|
1248
1179
|
"""
|
|
1249
1180
|
|
|
1250
1181
|
def draw(self, context) -> None:
|
|
@@ -1260,7 +1191,9 @@ class PARTICLE_PT_physics_fluid_springs(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1260
1191
|
:param context:
|
|
1261
1192
|
"""
|
|
1262
1193
|
|
|
1263
|
-
class PARTICLE_PT_physics_fluid_springs_advanced(
|
|
1194
|
+
class PARTICLE_PT_physics_fluid_springs_advanced(
|
|
1195
|
+
ParticleButtonsPanel, _bpy_types.Panel
|
|
1196
|
+
):
|
|
1264
1197
|
COMPAT_ENGINES: typing.Any
|
|
1265
1198
|
bl_context: typing.Any
|
|
1266
1199
|
bl_label: typing.Any
|
|
@@ -1275,14 +1208,12 @@ class PARTICLE_PT_physics_fluid_springs_advanced(ParticleButtonsPanel, bpy.types
|
|
|
1275
1208
|
"""
|
|
1276
1209
|
|
|
1277
1210
|
:return: The RNA type or default when not found.
|
|
1278
|
-
:rtype: bpy.types.Struct
|
|
1279
1211
|
"""
|
|
1280
1212
|
|
|
1281
1213
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1282
1214
|
"""
|
|
1283
1215
|
|
|
1284
1216
|
:return: The class or default when not found.
|
|
1285
|
-
:rtype: typing.Any
|
|
1286
1217
|
"""
|
|
1287
1218
|
|
|
1288
1219
|
def draw(self, context) -> None:
|
|
@@ -1299,7 +1230,7 @@ class PARTICLE_PT_physics_fluid_springs_advanced(ParticleButtonsPanel, bpy.types
|
|
|
1299
1230
|
"""
|
|
1300
1231
|
|
|
1301
1232
|
class PARTICLE_PT_physics_fluid_springs_viscoelastic(
|
|
1302
|
-
ParticleButtonsPanel,
|
|
1233
|
+
ParticleButtonsPanel, _bpy_types.Panel
|
|
1303
1234
|
):
|
|
1304
1235
|
COMPAT_ENGINES: typing.Any
|
|
1305
1236
|
bl_context: typing.Any
|
|
@@ -1315,14 +1246,12 @@ class PARTICLE_PT_physics_fluid_springs_viscoelastic(
|
|
|
1315
1246
|
"""
|
|
1316
1247
|
|
|
1317
1248
|
:return: The RNA type or default when not found.
|
|
1318
|
-
:rtype: bpy.types.Struct
|
|
1319
1249
|
"""
|
|
1320
1250
|
|
|
1321
1251
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1322
1252
|
"""
|
|
1323
1253
|
|
|
1324
1254
|
:return: The class or default when not found.
|
|
1325
|
-
:rtype: typing.Any
|
|
1326
1255
|
"""
|
|
1327
1256
|
|
|
1328
1257
|
def draw(self, context) -> None:
|
|
@@ -1344,7 +1273,7 @@ class PARTICLE_PT_physics_fluid_springs_viscoelastic(
|
|
|
1344
1273
|
:param context:
|
|
1345
1274
|
"""
|
|
1346
1275
|
|
|
1347
|
-
class PARTICLE_PT_physics_forces(ParticleButtonsPanel,
|
|
1276
|
+
class PARTICLE_PT_physics_forces(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1348
1277
|
COMPAT_ENGINES: typing.Any
|
|
1349
1278
|
bl_context: typing.Any
|
|
1350
1279
|
bl_label: typing.Any
|
|
@@ -1358,14 +1287,12 @@ class PARTICLE_PT_physics_forces(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1358
1287
|
"""
|
|
1359
1288
|
|
|
1360
1289
|
:return: The RNA type or default when not found.
|
|
1361
|
-
:rtype: bpy.types.Struct
|
|
1362
1290
|
"""
|
|
1363
1291
|
|
|
1364
1292
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1365
1293
|
"""
|
|
1366
1294
|
|
|
1367
1295
|
:return: The class or default when not found.
|
|
1368
|
-
:rtype: typing.Any
|
|
1369
1296
|
"""
|
|
1370
1297
|
|
|
1371
1298
|
def draw(self, context) -> None:
|
|
@@ -1381,7 +1308,7 @@ class PARTICLE_PT_physics_forces(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1381
1308
|
:param context:
|
|
1382
1309
|
"""
|
|
1383
1310
|
|
|
1384
|
-
class PARTICLE_PT_physics_integration(ParticleButtonsPanel,
|
|
1311
|
+
class PARTICLE_PT_physics_integration(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1385
1312
|
COMPAT_ENGINES: typing.Any
|
|
1386
1313
|
bl_context: typing.Any
|
|
1387
1314
|
bl_label: typing.Any
|
|
@@ -1396,14 +1323,12 @@ class PARTICLE_PT_physics_integration(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1396
1323
|
"""
|
|
1397
1324
|
|
|
1398
1325
|
:return: The RNA type or default when not found.
|
|
1399
|
-
:rtype: bpy.types.Struct
|
|
1400
1326
|
"""
|
|
1401
1327
|
|
|
1402
1328
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1403
1329
|
"""
|
|
1404
1330
|
|
|
1405
1331
|
:return: The class or default when not found.
|
|
1406
|
-
:rtype: typing.Any
|
|
1407
1332
|
"""
|
|
1408
1333
|
|
|
1409
1334
|
def draw(self, context) -> None:
|
|
@@ -1419,7 +1344,7 @@ class PARTICLE_PT_physics_integration(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1419
1344
|
:param context:
|
|
1420
1345
|
"""
|
|
1421
1346
|
|
|
1422
|
-
class PARTICLE_PT_physics_relations(ParticleButtonsPanel,
|
|
1347
|
+
class PARTICLE_PT_physics_relations(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1423
1348
|
COMPAT_ENGINES: typing.Any
|
|
1424
1349
|
bl_context: typing.Any
|
|
1425
1350
|
bl_label: typing.Any
|
|
@@ -1434,14 +1359,12 @@ class PARTICLE_PT_physics_relations(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1434
1359
|
"""
|
|
1435
1360
|
|
|
1436
1361
|
:return: The RNA type or default when not found.
|
|
1437
|
-
:rtype: bpy.types.Struct
|
|
1438
1362
|
"""
|
|
1439
1363
|
|
|
1440
1364
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1441
1365
|
"""
|
|
1442
1366
|
|
|
1443
1367
|
:return: The class or default when not found.
|
|
1444
|
-
:rtype: typing.Any
|
|
1445
1368
|
"""
|
|
1446
1369
|
|
|
1447
1370
|
def draw(self, context) -> None:
|
|
@@ -1457,7 +1380,7 @@ class PARTICLE_PT_physics_relations(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1457
1380
|
:param context:
|
|
1458
1381
|
"""
|
|
1459
1382
|
|
|
1460
|
-
class PARTICLE_PT_render(ParticleButtonsPanel,
|
|
1383
|
+
class PARTICLE_PT_render(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1461
1384
|
COMPAT_ENGINES: typing.Any
|
|
1462
1385
|
bl_context: typing.Any
|
|
1463
1386
|
bl_label: typing.Any
|
|
@@ -1471,14 +1394,12 @@ class PARTICLE_PT_render(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1471
1394
|
"""
|
|
1472
1395
|
|
|
1473
1396
|
:return: The RNA type or default when not found.
|
|
1474
|
-
:rtype: bpy.types.Struct
|
|
1475
1397
|
"""
|
|
1476
1398
|
|
|
1477
1399
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1478
1400
|
"""
|
|
1479
1401
|
|
|
1480
1402
|
:return: The class or default when not found.
|
|
1481
|
-
:rtype: typing.Any
|
|
1482
1403
|
"""
|
|
1483
1404
|
|
|
1484
1405
|
def draw(self, context) -> None:
|
|
@@ -1494,7 +1415,7 @@ class PARTICLE_PT_render(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1494
1415
|
:param context:
|
|
1495
1416
|
"""
|
|
1496
1417
|
|
|
1497
|
-
class PARTICLE_PT_render_collection(ParticleButtonsPanel,
|
|
1418
|
+
class PARTICLE_PT_render_collection(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1498
1419
|
COMPAT_ENGINES: typing.Any
|
|
1499
1420
|
bl_context: typing.Any
|
|
1500
1421
|
bl_label: typing.Any
|
|
@@ -1508,14 +1429,12 @@ class PARTICLE_PT_render_collection(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1508
1429
|
"""
|
|
1509
1430
|
|
|
1510
1431
|
:return: The RNA type or default when not found.
|
|
1511
|
-
:rtype: bpy.types.Struct
|
|
1512
1432
|
"""
|
|
1513
1433
|
|
|
1514
1434
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1515
1435
|
"""
|
|
1516
1436
|
|
|
1517
1437
|
:return: The class or default when not found.
|
|
1518
|
-
:rtype: typing.Any
|
|
1519
1438
|
"""
|
|
1520
1439
|
|
|
1521
1440
|
def draw(self, context) -> None:
|
|
@@ -1531,7 +1450,7 @@ class PARTICLE_PT_render_collection(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1531
1450
|
:param context:
|
|
1532
1451
|
"""
|
|
1533
1452
|
|
|
1534
|
-
class PARTICLE_PT_render_collection_use_count(ParticleButtonsPanel,
|
|
1453
|
+
class PARTICLE_PT_render_collection_use_count(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1535
1454
|
COMPAT_ENGINES: typing.Any
|
|
1536
1455
|
bl_context: typing.Any
|
|
1537
1456
|
bl_label: typing.Any
|
|
@@ -1546,14 +1465,12 @@ class PARTICLE_PT_render_collection_use_count(ParticleButtonsPanel, bpy.types.Pa
|
|
|
1546
1465
|
"""
|
|
1547
1466
|
|
|
1548
1467
|
:return: The RNA type or default when not found.
|
|
1549
|
-
:rtype: bpy.types.Struct
|
|
1550
1468
|
"""
|
|
1551
1469
|
|
|
1552
1470
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1553
1471
|
"""
|
|
1554
1472
|
|
|
1555
1473
|
:return: The class or default when not found.
|
|
1556
|
-
:rtype: typing.Any
|
|
1557
1474
|
"""
|
|
1558
1475
|
|
|
1559
1476
|
def draw(self, context) -> None:
|
|
@@ -1575,7 +1492,7 @@ class PARTICLE_PT_render_collection_use_count(ParticleButtonsPanel, bpy.types.Pa
|
|
|
1575
1492
|
:param context:
|
|
1576
1493
|
"""
|
|
1577
1494
|
|
|
1578
|
-
class PARTICLE_PT_render_extra(ParticleButtonsPanel,
|
|
1495
|
+
class PARTICLE_PT_render_extra(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1579
1496
|
COMPAT_ENGINES: typing.Any
|
|
1580
1497
|
bl_context: typing.Any
|
|
1581
1498
|
bl_label: typing.Any
|
|
@@ -1590,14 +1507,12 @@ class PARTICLE_PT_render_extra(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1590
1507
|
"""
|
|
1591
1508
|
|
|
1592
1509
|
:return: The RNA type or default when not found.
|
|
1593
|
-
:rtype: bpy.types.Struct
|
|
1594
1510
|
"""
|
|
1595
1511
|
|
|
1596
1512
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1597
1513
|
"""
|
|
1598
1514
|
|
|
1599
1515
|
:return: The class or default when not found.
|
|
1600
|
-
:rtype: typing.Any
|
|
1601
1516
|
"""
|
|
1602
1517
|
|
|
1603
1518
|
def draw(self, context) -> None:
|
|
@@ -1613,7 +1528,7 @@ class PARTICLE_PT_render_extra(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1613
1528
|
:param context:
|
|
1614
1529
|
"""
|
|
1615
1530
|
|
|
1616
|
-
class PARTICLE_PT_render_object(ParticleButtonsPanel,
|
|
1531
|
+
class PARTICLE_PT_render_object(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1617
1532
|
COMPAT_ENGINES: typing.Any
|
|
1618
1533
|
bl_context: typing.Any
|
|
1619
1534
|
bl_label: typing.Any
|
|
@@ -1627,14 +1542,12 @@ class PARTICLE_PT_render_object(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1627
1542
|
"""
|
|
1628
1543
|
|
|
1629
1544
|
:return: The RNA type or default when not found.
|
|
1630
|
-
:rtype: bpy.types.Struct
|
|
1631
1545
|
"""
|
|
1632
1546
|
|
|
1633
1547
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1634
1548
|
"""
|
|
1635
1549
|
|
|
1636
1550
|
:return: The class or default when not found.
|
|
1637
|
-
:rtype: typing.Any
|
|
1638
1551
|
"""
|
|
1639
1552
|
|
|
1640
1553
|
def draw(self, context) -> None:
|
|
@@ -1650,7 +1563,7 @@ class PARTICLE_PT_render_object(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1650
1563
|
:param context:
|
|
1651
1564
|
"""
|
|
1652
1565
|
|
|
1653
|
-
class PARTICLE_PT_render_path(ParticleButtonsPanel,
|
|
1566
|
+
class PARTICLE_PT_render_path(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1654
1567
|
COMPAT_ENGINES: typing.Any
|
|
1655
1568
|
bl_context: typing.Any
|
|
1656
1569
|
bl_label: typing.Any
|
|
@@ -1664,14 +1577,12 @@ class PARTICLE_PT_render_path(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1664
1577
|
"""
|
|
1665
1578
|
|
|
1666
1579
|
:return: The RNA type or default when not found.
|
|
1667
|
-
:rtype: bpy.types.Struct
|
|
1668
1580
|
"""
|
|
1669
1581
|
|
|
1670
1582
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1671
1583
|
"""
|
|
1672
1584
|
|
|
1673
1585
|
:return: The class or default when not found.
|
|
1674
|
-
:rtype: typing.Any
|
|
1675
1586
|
"""
|
|
1676
1587
|
|
|
1677
1588
|
def draw(self, context) -> None:
|
|
@@ -1687,7 +1598,7 @@ class PARTICLE_PT_render_path(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1687
1598
|
:param context:
|
|
1688
1599
|
"""
|
|
1689
1600
|
|
|
1690
|
-
class PARTICLE_PT_render_path_timing(ParticleButtonsPanel,
|
|
1601
|
+
class PARTICLE_PT_render_path_timing(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1691
1602
|
COMPAT_ENGINES: typing.Any
|
|
1692
1603
|
bl_context: typing.Any
|
|
1693
1604
|
bl_label: typing.Any
|
|
@@ -1702,14 +1613,12 @@ class PARTICLE_PT_render_path_timing(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1702
1613
|
"""
|
|
1703
1614
|
|
|
1704
1615
|
:return: The RNA type or default when not found.
|
|
1705
|
-
:rtype: bpy.types.Struct
|
|
1706
1616
|
"""
|
|
1707
1617
|
|
|
1708
1618
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1709
1619
|
"""
|
|
1710
1620
|
|
|
1711
1621
|
:return: The class or default when not found.
|
|
1712
|
-
:rtype: typing.Any
|
|
1713
1622
|
"""
|
|
1714
1623
|
|
|
1715
1624
|
def draw(self, context) -> None:
|
|
@@ -1725,7 +1634,7 @@ class PARTICLE_PT_render_path_timing(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1725
1634
|
:param context:
|
|
1726
1635
|
"""
|
|
1727
1636
|
|
|
1728
|
-
class PARTICLE_PT_rotation(ParticleButtonsPanel,
|
|
1637
|
+
class PARTICLE_PT_rotation(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1729
1638
|
COMPAT_ENGINES: typing.Any
|
|
1730
1639
|
bl_context: typing.Any
|
|
1731
1640
|
bl_label: typing.Any
|
|
@@ -1739,14 +1648,12 @@ class PARTICLE_PT_rotation(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1739
1648
|
"""
|
|
1740
1649
|
|
|
1741
1650
|
:return: The RNA type or default when not found.
|
|
1742
|
-
:rtype: bpy.types.Struct
|
|
1743
1651
|
"""
|
|
1744
1652
|
|
|
1745
1653
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1746
1654
|
"""
|
|
1747
1655
|
|
|
1748
1656
|
:return: The class or default when not found.
|
|
1749
|
-
:rtype: typing.Any
|
|
1750
1657
|
"""
|
|
1751
1658
|
|
|
1752
1659
|
def draw(self, context) -> None:
|
|
@@ -1768,7 +1675,7 @@ class PARTICLE_PT_rotation(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1768
1675
|
:param context:
|
|
1769
1676
|
"""
|
|
1770
1677
|
|
|
1771
|
-
class PARTICLE_PT_rotation_angular_velocity(ParticleButtonsPanel,
|
|
1678
|
+
class PARTICLE_PT_rotation_angular_velocity(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1772
1679
|
COMPAT_ENGINES: typing.Any
|
|
1773
1680
|
bl_context: typing.Any
|
|
1774
1681
|
bl_label: typing.Any
|
|
@@ -1783,14 +1690,12 @@ class PARTICLE_PT_rotation_angular_velocity(ParticleButtonsPanel, bpy.types.Pane
|
|
|
1783
1690
|
"""
|
|
1784
1691
|
|
|
1785
1692
|
:return: The RNA type or default when not found.
|
|
1786
|
-
:rtype: bpy.types.Struct
|
|
1787
1693
|
"""
|
|
1788
1694
|
|
|
1789
1695
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1790
1696
|
"""
|
|
1791
1697
|
|
|
1792
1698
|
:return: The class or default when not found.
|
|
1793
|
-
:rtype: typing.Any
|
|
1794
1699
|
"""
|
|
1795
1700
|
|
|
1796
1701
|
def draw(self, context) -> None:
|
|
@@ -1799,7 +1704,7 @@ class PARTICLE_PT_rotation_angular_velocity(ParticleButtonsPanel, bpy.types.Pane
|
|
|
1799
1704
|
:param context:
|
|
1800
1705
|
"""
|
|
1801
1706
|
|
|
1802
|
-
class PARTICLE_PT_textures(ParticleButtonsPanel,
|
|
1707
|
+
class PARTICLE_PT_textures(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1803
1708
|
COMPAT_ENGINES: typing.Any
|
|
1804
1709
|
bl_context: typing.Any
|
|
1805
1710
|
bl_label: typing.Any
|
|
@@ -1813,14 +1718,12 @@ class PARTICLE_PT_textures(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1813
1718
|
"""
|
|
1814
1719
|
|
|
1815
1720
|
:return: The RNA type or default when not found.
|
|
1816
|
-
:rtype: bpy.types.Struct
|
|
1817
1721
|
"""
|
|
1818
1722
|
|
|
1819
1723
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1820
1724
|
"""
|
|
1821
1725
|
|
|
1822
1726
|
:return: The class or default when not found.
|
|
1823
|
-
:rtype: typing.Any
|
|
1824
1727
|
"""
|
|
1825
1728
|
|
|
1826
1729
|
def draw(self, context) -> None:
|
|
@@ -1836,7 +1739,7 @@ class PARTICLE_PT_textures(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1836
1739
|
:param context:
|
|
1837
1740
|
"""
|
|
1838
1741
|
|
|
1839
|
-
class PARTICLE_PT_velocity(ParticleButtonsPanel,
|
|
1742
|
+
class PARTICLE_PT_velocity(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1840
1743
|
COMPAT_ENGINES: typing.Any
|
|
1841
1744
|
bl_context: typing.Any
|
|
1842
1745
|
bl_label: typing.Any
|
|
@@ -1850,14 +1753,12 @@ class PARTICLE_PT_velocity(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1850
1753
|
"""
|
|
1851
1754
|
|
|
1852
1755
|
:return: The RNA type or default when not found.
|
|
1853
|
-
:rtype: bpy.types.Struct
|
|
1854
1756
|
"""
|
|
1855
1757
|
|
|
1856
1758
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1857
1759
|
"""
|
|
1858
1760
|
|
|
1859
1761
|
:return: The class or default when not found.
|
|
1860
|
-
:rtype: typing.Any
|
|
1861
1762
|
"""
|
|
1862
1763
|
|
|
1863
1764
|
def draw(self, context) -> None:
|
|
@@ -1873,7 +1774,7 @@ class PARTICLE_PT_velocity(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1873
1774
|
:param context:
|
|
1874
1775
|
"""
|
|
1875
1776
|
|
|
1876
|
-
class PARTICLE_PT_vertexgroups(ParticleButtonsPanel,
|
|
1777
|
+
class PARTICLE_PT_vertexgroups(ParticleButtonsPanel, _bpy_types.Panel):
|
|
1877
1778
|
COMPAT_ENGINES: typing.Any
|
|
1878
1779
|
bl_context: typing.Any
|
|
1879
1780
|
bl_label: typing.Any
|
|
@@ -1887,14 +1788,12 @@ class PARTICLE_PT_vertexgroups(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1887
1788
|
"""
|
|
1888
1789
|
|
|
1889
1790
|
:return: The RNA type or default when not found.
|
|
1890
|
-
:rtype: bpy.types.Struct
|
|
1891
1791
|
"""
|
|
1892
1792
|
|
|
1893
1793
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1894
1794
|
"""
|
|
1895
1795
|
|
|
1896
1796
|
:return: The class or default when not found.
|
|
1897
|
-
:rtype: typing.Any
|
|
1898
1797
|
"""
|
|
1899
1798
|
|
|
1900
1799
|
def draw(self, context) -> None:
|
|
@@ -1910,7 +1809,7 @@ class PARTICLE_PT_vertexgroups(ParticleButtonsPanel, bpy.types.Panel):
|
|
|
1910
1809
|
:param context:
|
|
1911
1810
|
"""
|
|
1912
1811
|
|
|
1913
|
-
class PARTICLE_UL_particle_systems(
|
|
1812
|
+
class PARTICLE_UL_particle_systems(_bpy_types.UIList):
|
|
1914
1813
|
bl_rna: typing.Any
|
|
1915
1814
|
id_data: typing.Any
|
|
1916
1815
|
|
|
@@ -1918,14 +1817,12 @@ class PARTICLE_UL_particle_systems(bpy.types.UIList):
|
|
|
1918
1817
|
"""
|
|
1919
1818
|
|
|
1920
1819
|
:return: The RNA type or default when not found.
|
|
1921
|
-
:rtype: bpy.types.Struct
|
|
1922
1820
|
"""
|
|
1923
1821
|
|
|
1924
1822
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1925
1823
|
"""
|
|
1926
1824
|
|
|
1927
1825
|
:return: The class or default when not found.
|
|
1928
|
-
:rtype: typing.Any
|
|
1929
1826
|
"""
|
|
1930
1827
|
|
|
1931
1828
|
def draw_item(
|