fake-bpy-module 20240721__py3-none-any.whl → 20240722__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.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_operators/add_mesh_torus/__init__.pyi +1 -2
- bl_operators/assets/__init__.pyi +2 -2
- bl_operators/bone_selection_sets/__init__.pyi +16 -28
- bl_operators/connect_to_output/__init__.pyi +1 -4
- bl_operators/image_as_planes/__init__.pyi +2 -12
- bl_operators/node/__init__.pyi +14 -16
- bl_operators/object_quick_effects/__init__.pyi +3 -3
- bl_operators/presets/__init__.pyi +22 -25
- bl_operators/sequencer/__init__.pyi +76 -76
- bl_ui/generic_ui_list/__init__.pyi +3 -3
- bl_ui/properties_collection/__init__.pyi +5 -19
- bl_ui/properties_constraint/__init__.pyi +79 -289
- bl_ui/properties_data_armature/__init__.pyi +9 -33
- bl_ui/properties_data_bone/__init__.pyi +10 -17
- bl_ui/properties_data_camera/__init__.pyi +14 -32
- bl_ui/properties_data_curve/__init__.pyi +69 -88
- bl_ui/properties_data_curves/__init__.pyi +4 -9
- bl_ui/properties_data_empty/__init__.pyi +2 -2
- bl_ui/properties_data_gpencil/__init__.pyi +15 -50
- bl_ui/properties_data_grease_pencil/__init__.pyi +10 -36
- bl_ui/properties_data_lattice/__init__.pyi +3 -6
- bl_ui/properties_data_light/__init__.pyi +12 -25
- bl_ui/properties_data_lightprobe/__init__.pyi +13 -35
- bl_ui/properties_data_mesh/__init__.pyi +63 -72
- bl_ui/properties_data_metaball/__init__.pyi +5 -10
- bl_ui/properties_data_modifier/__init__.pyi +9 -23
- bl_ui/properties_data_pointcloud/__init__.pyi +3 -10
- bl_ui/properties_data_shaderfx/__init__.pyi +1 -1
- bl_ui/properties_data_speaker/__init__.pyi +5 -8
- bl_ui/properties_data_volume/__init__.pyi +7 -14
- bl_ui/properties_freestyle/__init__.pyi +9 -42
- bl_ui/properties_material/__init__.pyi +14 -40
- bl_ui/properties_material_gpencil/__init__.pyi +8 -32
- bl_ui/properties_object/__init__.pyi +13 -31
- bl_ui/properties_output/__init__.pyi +16 -43
- bl_ui/properties_paint_common/__init__.pyi +17 -17
- bl_ui/properties_particle/__init__.pyi +50 -135
- bl_ui/properties_physics_cloth/__init__.pyi +14 -35
- bl_ui/properties_physics_common/__init__.pyi +1 -1
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +21 -57
- bl_ui/properties_physics_field/__init__.pyi +10 -26
- bl_ui/properties_physics_fluid/__init__.pyi +28 -51
- bl_ui/properties_physics_rigidbody/__init__.pyi +8 -18
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +13 -25
- bl_ui/properties_physics_softbody/__init__.pyi +15 -43
- bl_ui/properties_render/__init__.pyi +54 -150
- bl_ui/properties_scene/__init__.pyi +29 -42
- bl_ui/properties_texture/__init__.pyi +26 -58
- bl_ui/properties_view_layer/__init__.pyi +16 -43
- bl_ui/properties_workspace/__init__.pyi +3 -9
- bl_ui/properties_world/__init__.pyi +10 -19
- bl_ui/space_clip/__init__.pyi +31 -93
- bl_ui/space_dopesheet/__init__.pyi +13 -66
- bl_ui/space_filebrowser/__init__.pyi +17 -38
- bl_ui/space_graph/__init__.pyi +1 -6
- bl_ui/space_image/__init__.pyi +190 -235
- bl_ui/space_nla/__init__.pyi +2 -11
- bl_ui/space_node/__init__.pyi +3 -16
- bl_ui/space_sequencer/__init__.pyi +34 -104
- bl_ui/space_time/__init__.pyi +3 -7
- bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -21
- bl_ui/space_userpref/__init__.pyi +76 -215
- bl_ui/space_view3d/__init__.pyi +91 -147
- bl_ui/space_view3d_toolbar/__init__.pyi +435 -543
- bpy_extras/node_shader_utils/__init__.pyi +118 -118
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/RECORD +71 -71
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/WHEEL +1 -1
- keyingsets_builtins/__init__.pyi +2 -2
- nodeitems_builtins/__init__.pyi +3 -3
- {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/top_level.txt +0 -0
|
@@ -2,12 +2,11 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
|
-
import bpy_extras.object_utils
|
|
6
5
|
|
|
7
6
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
8
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
8
|
|
|
10
|
-
class AddTorus(bpy.types.Operator
|
|
9
|
+
class AddTorus(bpy.types.Operator):
|
|
11
10
|
"""Construct a torus mesh"""
|
|
12
11
|
|
|
13
12
|
bl_idname: typing.Any
|
bl_operators/assets/__init__.pyi
CHANGED
|
@@ -68,7 +68,7 @@ class ASSET_OT_open_containing_blend_file(bpy.types.Operator):
|
|
|
68
68
|
"""
|
|
69
69
|
...
|
|
70
70
|
|
|
71
|
-
class ASSET_OT_tag_add(
|
|
71
|
+
class ASSET_OT_tag_add(bpy.types.Operator):
|
|
72
72
|
"""Add a new keyword tag to the active asset"""
|
|
73
73
|
|
|
74
74
|
bl_idname: typing.Any
|
|
@@ -100,7 +100,7 @@ class ASSET_OT_tag_add(AssetBrowserMetadataOperator, bpy.types.Operator):
|
|
|
100
100
|
"""
|
|
101
101
|
...
|
|
102
102
|
|
|
103
|
-
class ASSET_OT_tag_remove(
|
|
103
|
+
class ASSET_OT_tag_remove(bpy.types.Operator):
|
|
104
104
|
"""Remove an existing keyword tag from the active asset"""
|
|
105
105
|
|
|
106
106
|
bl_idname: typing.Any
|
|
@@ -6,7 +6,7 @@ import bpy.types
|
|
|
6
6
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
|
-
class POSE_OT_selection_set_add(
|
|
9
|
+
class POSE_OT_selection_set_add(bpy.types.Operator):
|
|
10
10
|
"""Operator only available for objects of type armature in pose mode."""
|
|
11
11
|
|
|
12
12
|
bl_description: typing.Any
|
|
@@ -39,7 +39,7 @@ class POSE_OT_selection_set_add(_PoseModeOnlyMixin, bpy.types.Operator):
|
|
|
39
39
|
"""
|
|
40
40
|
...
|
|
41
41
|
|
|
42
|
-
class POSE_OT_selection_set_add_and_assign(
|
|
42
|
+
class POSE_OT_selection_set_add_and_assign(bpy.types.Operator):
|
|
43
43
|
"""Operator only available for objects of type armature in pose mode."""
|
|
44
44
|
|
|
45
45
|
bl_description: typing.Any
|
|
@@ -72,7 +72,7 @@ class POSE_OT_selection_set_add_and_assign(_PoseModeOnlyMixin, bpy.types.Operato
|
|
|
72
72
|
"""
|
|
73
73
|
...
|
|
74
74
|
|
|
75
|
-
class POSE_OT_selection_set_assign(
|
|
75
|
+
class POSE_OT_selection_set_assign(bpy.types.Operator):
|
|
76
76
|
"""Operator only available for objects of type armature in pose mode."""
|
|
77
77
|
|
|
78
78
|
bl_description: typing.Any
|
|
@@ -113,9 +113,7 @@ class POSE_OT_selection_set_assign(_PoseModeOnlyMixin, bpy.types.Operator):
|
|
|
113
113
|
"""
|
|
114
114
|
...
|
|
115
115
|
|
|
116
|
-
class POSE_OT_selection_set_copy(
|
|
117
|
-
_PoseModeOnlyMixin, _NeedSelSetMixin, bpy.types.Operator
|
|
118
|
-
):
|
|
116
|
+
class POSE_OT_selection_set_copy(_PoseModeOnlyMixin, bpy.types.Operator):
|
|
119
117
|
"""Operator only available if the armature has a selected selection set."""
|
|
120
118
|
|
|
121
119
|
bl_description: typing.Any
|
|
@@ -148,7 +146,7 @@ class POSE_OT_selection_set_copy(
|
|
|
148
146
|
"""
|
|
149
147
|
...
|
|
150
148
|
|
|
151
|
-
class POSE_OT_selection_set_delete_all(
|
|
149
|
+
class POSE_OT_selection_set_delete_all(bpy.types.Operator):
|
|
152
150
|
"""Operator only available for objects of type armature in pose mode."""
|
|
153
151
|
|
|
154
152
|
bl_description: typing.Any
|
|
@@ -181,9 +179,7 @@ class POSE_OT_selection_set_delete_all(_PoseModeOnlyMixin, bpy.types.Operator):
|
|
|
181
179
|
"""
|
|
182
180
|
...
|
|
183
181
|
|
|
184
|
-
class POSE_OT_selection_set_deselect(
|
|
185
|
-
_PoseModeOnlyMixin, _NeedSelSetMixin, bpy.types.Operator
|
|
186
|
-
):
|
|
182
|
+
class POSE_OT_selection_set_deselect(_PoseModeOnlyMixin, bpy.types.Operator):
|
|
187
183
|
"""Operator only available if the armature has a selected selection set."""
|
|
188
184
|
|
|
189
185
|
bl_description: typing.Any
|
|
@@ -216,9 +212,7 @@ class POSE_OT_selection_set_deselect(
|
|
|
216
212
|
"""
|
|
217
213
|
...
|
|
218
214
|
|
|
219
|
-
class POSE_OT_selection_set_move(
|
|
220
|
-
_PoseModeOnlyMixin, _NeedSelSetMixin, bpy.types.Operator
|
|
221
|
-
):
|
|
215
|
+
class POSE_OT_selection_set_move(_PoseModeOnlyMixin, bpy.types.Operator):
|
|
222
216
|
"""Operator only available if the armature has a selected selection set."""
|
|
223
217
|
|
|
224
218
|
bl_description: typing.Any
|
|
@@ -259,7 +253,7 @@ class POSE_OT_selection_set_move(
|
|
|
259
253
|
"""
|
|
260
254
|
...
|
|
261
255
|
|
|
262
|
-
class POSE_OT_selection_set_paste(
|
|
256
|
+
class POSE_OT_selection_set_paste(bpy.types.Operator):
|
|
263
257
|
"""Operator only available for objects of type armature in pose mode."""
|
|
264
258
|
|
|
265
259
|
bl_description: typing.Any
|
|
@@ -292,9 +286,7 @@ class POSE_OT_selection_set_paste(_PoseModeOnlyMixin, bpy.types.Operator):
|
|
|
292
286
|
"""
|
|
293
287
|
...
|
|
294
288
|
|
|
295
|
-
class POSE_OT_selection_set_remove(
|
|
296
|
-
_PoseModeOnlyMixin, _NeedSelSetMixin, bpy.types.Operator
|
|
297
|
-
):
|
|
289
|
+
class POSE_OT_selection_set_remove(_PoseModeOnlyMixin, bpy.types.Operator):
|
|
298
290
|
"""Operator only available if the armature has a selected selection set."""
|
|
299
291
|
|
|
300
292
|
bl_description: typing.Any
|
|
@@ -327,7 +319,7 @@ class POSE_OT_selection_set_remove(
|
|
|
327
319
|
"""
|
|
328
320
|
...
|
|
329
321
|
|
|
330
|
-
class POSE_OT_selection_set_remove_bones(
|
|
322
|
+
class POSE_OT_selection_set_remove_bones(bpy.types.Operator):
|
|
331
323
|
"""Operator only available for objects of type armature in pose mode."""
|
|
332
324
|
|
|
333
325
|
bl_description: typing.Any
|
|
@@ -360,9 +352,7 @@ class POSE_OT_selection_set_remove_bones(_PoseModeOnlyMixin, bpy.types.Operator)
|
|
|
360
352
|
"""
|
|
361
353
|
...
|
|
362
354
|
|
|
363
|
-
class POSE_OT_selection_set_select(
|
|
364
|
-
_PoseModeOnlyMixin, _NeedSelSetMixin, bpy.types.Operator
|
|
365
|
-
):
|
|
355
|
+
class POSE_OT_selection_set_select(_PoseModeOnlyMixin, bpy.types.Operator):
|
|
366
356
|
"""Operator only available if the armature has a selected selection set."""
|
|
367
357
|
|
|
368
358
|
bl_description: typing.Any
|
|
@@ -395,9 +385,7 @@ class POSE_OT_selection_set_select(
|
|
|
395
385
|
"""
|
|
396
386
|
...
|
|
397
387
|
|
|
398
|
-
class POSE_OT_selection_set_unassign(
|
|
399
|
-
_PoseModeOnlyMixin, _NeedSelSetMixin, bpy.types.Operator
|
|
400
|
-
):
|
|
388
|
+
class POSE_OT_selection_set_unassign(_PoseModeOnlyMixin, bpy.types.Operator):
|
|
401
389
|
"""Operator only available if the armature has a selected selection set."""
|
|
402
390
|
|
|
403
391
|
bl_description: typing.Any
|
|
@@ -470,8 +458,8 @@ class SelectionSet(bpy.types.PropertyGroup):
|
|
|
470
458
|
"""
|
|
471
459
|
...
|
|
472
460
|
|
|
473
|
-
class
|
|
474
|
-
"""Operator only available
|
|
461
|
+
class _NeedSelSetMixin:
|
|
462
|
+
"""Operator only available if the armature has a selected selection set."""
|
|
475
463
|
|
|
476
464
|
@classmethod
|
|
477
465
|
def poll(cls, context):
|
|
@@ -481,8 +469,8 @@ class _PoseModeOnlyMixin:
|
|
|
481
469
|
"""
|
|
482
470
|
...
|
|
483
471
|
|
|
484
|
-
class
|
|
485
|
-
"""Operator only available
|
|
472
|
+
class _PoseModeOnlyMixin:
|
|
473
|
+
"""Operator only available for objects of type armature in pose mode."""
|
|
486
474
|
|
|
487
475
|
@classmethod
|
|
488
476
|
def poll(cls, context):
|
|
@@ -1,15 +1,12 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bl_operators.node_editor.node_functions
|
|
5
4
|
import bpy.types
|
|
6
5
|
|
|
7
6
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
8
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
8
|
|
|
10
|
-
class NODE_OT_connect_to_output(
|
|
11
|
-
bpy.types.Operator, bl_operators.node_editor.node_functions.NodeEditorBase
|
|
12
|
-
):
|
|
9
|
+
class NODE_OT_connect_to_output(bpy.types.Operator):
|
|
13
10
|
bl_description: typing.Any
|
|
14
11
|
bl_idname: typing.Any
|
|
15
12
|
bl_label: typing.Any
|
|
@@ -2,15 +2,11 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import bpy.types
|
|
5
|
-
import bpy_extras.io_utils
|
|
6
|
-
import bpy_extras.object_utils
|
|
7
5
|
|
|
8
6
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
9
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
10
8
|
|
|
11
|
-
class IMAGE_OT_convert_to_mesh_plane(
|
|
12
|
-
TextureProperties_MixIn, MaterialProperties_MixIn, bpy.types.Operator
|
|
13
|
-
):
|
|
9
|
+
class IMAGE_OT_convert_to_mesh_plane(bpy.types.Operator):
|
|
14
10
|
"""Convert selected reference images to textured mesh plane"""
|
|
15
11
|
|
|
16
12
|
bl_idname: typing.Any
|
|
@@ -66,13 +62,7 @@ class IMAGE_OT_convert_to_mesh_plane(
|
|
|
66
62
|
"""
|
|
67
63
|
...
|
|
68
64
|
|
|
69
|
-
class IMAGE_OT_import_as_mesh_planes(
|
|
70
|
-
TextureProperties_MixIn,
|
|
71
|
-
bpy_extras.io_utils.ImportHelper,
|
|
72
|
-
bpy_extras.object_utils.AddObjectHelper,
|
|
73
|
-
MaterialProperties_MixIn,
|
|
74
|
-
bpy.types.Operator,
|
|
75
|
-
):
|
|
65
|
+
class IMAGE_OT_import_as_mesh_planes(bpy.types.Operator):
|
|
76
66
|
"""Create mesh plane(s) from image files with the appropriate aspect ratio"""
|
|
77
67
|
|
|
78
68
|
AXIS_MODES: typing.Any
|
bl_operators/node/__init__.pyi
CHANGED
|
@@ -38,7 +38,7 @@ class NODE_FH_image_node(bpy.types.FileHandler):
|
|
|
38
38
|
"""
|
|
39
39
|
...
|
|
40
40
|
|
|
41
|
-
class NODE_OT_add_node(
|
|
41
|
+
class NODE_OT_add_node(bpy.types.Operator):
|
|
42
42
|
"""Add a node to the active tree"""
|
|
43
43
|
|
|
44
44
|
bl_idname: typing.Any
|
|
@@ -79,7 +79,7 @@ class NODE_OT_add_node(NodeAddOperator, bpy.types.Operator):
|
|
|
79
79
|
"""
|
|
80
80
|
...
|
|
81
81
|
|
|
82
|
-
class NODE_OT_add_repeat_zone(NodeAddOperator,
|
|
82
|
+
class NODE_OT_add_repeat_zone(NodeAddOperator, bpy.types.Operator):
|
|
83
83
|
"""Add a repeat zone that allows executing nodes a dynamic number of times"""
|
|
84
84
|
|
|
85
85
|
bl_idname: typing.Any
|
|
@@ -106,9 +106,7 @@ class NODE_OT_add_repeat_zone(NodeAddOperator, NodeAddZoneOperator, bpy.types.Op
|
|
|
106
106
|
"""
|
|
107
107
|
...
|
|
108
108
|
|
|
109
|
-
class NODE_OT_add_simulation_zone(
|
|
110
|
-
NodeAddOperator, NodeAddZoneOperator, bpy.types.Operator
|
|
111
|
-
):
|
|
109
|
+
class NODE_OT_add_simulation_zone(NodeAddOperator, bpy.types.Operator):
|
|
112
110
|
"""Add simulation zone input and output nodes to the active tree"""
|
|
113
111
|
|
|
114
112
|
bl_idname: typing.Any
|
|
@@ -175,7 +173,7 @@ class NODE_OT_collapse_hide_unused_toggle(bpy.types.Operator):
|
|
|
175
173
|
"""
|
|
176
174
|
...
|
|
177
175
|
|
|
178
|
-
class NODE_OT_interface_item_duplicate(
|
|
176
|
+
class NODE_OT_interface_item_duplicate(bpy.types.Operator):
|
|
179
177
|
"""Add a copy of the active item to the interface"""
|
|
180
178
|
|
|
181
179
|
bl_idname: typing.Any
|
|
@@ -215,7 +213,7 @@ class NODE_OT_interface_item_duplicate(NodeInterfaceOperator, bpy.types.Operator
|
|
|
215
213
|
"""
|
|
216
214
|
...
|
|
217
215
|
|
|
218
|
-
class NODE_OT_interface_item_new(
|
|
216
|
+
class NODE_OT_interface_item_new(bpy.types.Operator):
|
|
219
217
|
"""Add a new item to the interface"""
|
|
220
218
|
|
|
221
219
|
bl_idname: typing.Any
|
|
@@ -255,7 +253,7 @@ class NODE_OT_interface_item_new(NodeInterfaceOperator, bpy.types.Operator):
|
|
|
255
253
|
"""
|
|
256
254
|
...
|
|
257
255
|
|
|
258
|
-
class NODE_OT_interface_item_remove(
|
|
256
|
+
class NODE_OT_interface_item_remove(bpy.types.Operator):
|
|
259
257
|
"""Remove active item from the interface"""
|
|
260
258
|
|
|
261
259
|
bl_idname: typing.Any
|
|
@@ -369,6 +367,14 @@ class NodeAddOperator:
|
|
|
369
367
|
"""
|
|
370
368
|
...
|
|
371
369
|
|
|
370
|
+
class NodeAddZoneOperator:
|
|
371
|
+
def execute(self, context):
|
|
372
|
+
"""
|
|
373
|
+
|
|
374
|
+
:param context:
|
|
375
|
+
"""
|
|
376
|
+
...
|
|
377
|
+
|
|
372
378
|
class NodeInterfaceOperator:
|
|
373
379
|
@classmethod
|
|
374
380
|
def poll(cls, context):
|
|
@@ -397,11 +403,3 @@ class NodeSetting(bpy.types.PropertyGroup):
|
|
|
397
403
|
:rtype: typing.Any
|
|
398
404
|
"""
|
|
399
405
|
...
|
|
400
|
-
|
|
401
|
-
class NodeAddZoneOperator(NodeAddOperator):
|
|
402
|
-
def execute(self, context):
|
|
403
|
-
"""
|
|
404
|
-
|
|
405
|
-
:param context:
|
|
406
|
-
"""
|
|
407
|
-
...
|
|
@@ -15,7 +15,7 @@ class ObjectModeOperator:
|
|
|
15
15
|
"""
|
|
16
16
|
...
|
|
17
17
|
|
|
18
|
-
class QuickExplode(
|
|
18
|
+
class QuickExplode(bpy.types.Operator):
|
|
19
19
|
"""Make selected objects explode"""
|
|
20
20
|
|
|
21
21
|
bl_idname: typing.Any
|
|
@@ -55,7 +55,7 @@ class QuickExplode(ObjectModeOperator, bpy.types.Operator):
|
|
|
55
55
|
"""
|
|
56
56
|
...
|
|
57
57
|
|
|
58
|
-
class QuickFur(
|
|
58
|
+
class QuickFur(bpy.types.Operator):
|
|
59
59
|
"""Add a fur setup to the selected objects"""
|
|
60
60
|
|
|
61
61
|
bl_idname: typing.Any
|
|
@@ -119,7 +119,7 @@ class QuickLiquid(bpy.types.Operator):
|
|
|
119
119
|
"""
|
|
120
120
|
...
|
|
121
121
|
|
|
122
|
-
class QuickSmoke(
|
|
122
|
+
class QuickSmoke(bpy.types.Operator):
|
|
123
123
|
"""Use selected objects as smoke emitters"""
|
|
124
124
|
|
|
125
125
|
bl_idname: typing.Any
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bl_ui.utils
|
|
5
4
|
import bpy.types
|
|
6
5
|
import bpy_types
|
|
7
6
|
|
|
@@ -41,7 +40,7 @@ class AddPresetBase:
|
|
|
41
40
|
"""
|
|
42
41
|
...
|
|
43
42
|
|
|
44
|
-
class AddPresetCamera(
|
|
43
|
+
class AddPresetCamera(bpy.types.Operator):
|
|
45
44
|
"""Add or remove a Camera Preset"""
|
|
46
45
|
|
|
47
46
|
bl_idname: typing.Any
|
|
@@ -70,7 +69,7 @@ class AddPresetCamera(AddPresetBase, bpy.types.Operator):
|
|
|
70
69
|
"""
|
|
71
70
|
...
|
|
72
71
|
|
|
73
|
-
class AddPresetCameraSafeAreas(
|
|
72
|
+
class AddPresetCameraSafeAreas(bpy.types.Operator):
|
|
74
73
|
"""Add or remove a Safe Areas Preset"""
|
|
75
74
|
|
|
76
75
|
bl_idname: typing.Any
|
|
@@ -99,7 +98,7 @@ class AddPresetCameraSafeAreas(AddPresetBase, bpy.types.Operator):
|
|
|
99
98
|
"""
|
|
100
99
|
...
|
|
101
100
|
|
|
102
|
-
class AddPresetCloth(
|
|
101
|
+
class AddPresetCloth(bpy.types.Operator):
|
|
103
102
|
"""Add or remove a Cloth Preset"""
|
|
104
103
|
|
|
105
104
|
bl_idname: typing.Any
|
|
@@ -128,7 +127,7 @@ class AddPresetCloth(AddPresetBase, bpy.types.Operator):
|
|
|
128
127
|
"""
|
|
129
128
|
...
|
|
130
129
|
|
|
131
|
-
class AddPresetColorManagementWhiteBalance(
|
|
130
|
+
class AddPresetColorManagementWhiteBalance(bpy.types.Operator):
|
|
132
131
|
"""Add or remove a white balance preset"""
|
|
133
132
|
|
|
134
133
|
bl_idname: typing.Any
|
|
@@ -157,7 +156,7 @@ class AddPresetColorManagementWhiteBalance(AddPresetBase, bpy.types.Operator):
|
|
|
157
156
|
"""
|
|
158
157
|
...
|
|
159
158
|
|
|
160
|
-
class AddPresetEEVEERaytracing(
|
|
159
|
+
class AddPresetEEVEERaytracing(bpy.types.Operator):
|
|
161
160
|
"""Add or remove an EEVEE ray-tracing preset"""
|
|
162
161
|
|
|
163
162
|
bl_idname: typing.Any
|
|
@@ -186,7 +185,7 @@ class AddPresetEEVEERaytracing(AddPresetBase, bpy.types.Operator):
|
|
|
186
185
|
"""
|
|
187
186
|
...
|
|
188
187
|
|
|
189
|
-
class AddPresetFluid(
|
|
188
|
+
class AddPresetFluid(bpy.types.Operator):
|
|
190
189
|
"""Add or remove a Fluid Preset"""
|
|
191
190
|
|
|
192
191
|
bl_idname: typing.Any
|
|
@@ -215,7 +214,7 @@ class AddPresetFluid(AddPresetBase, bpy.types.Operator):
|
|
|
215
214
|
"""
|
|
216
215
|
...
|
|
217
216
|
|
|
218
|
-
class AddPresetGpencilBrush(
|
|
217
|
+
class AddPresetGpencilBrush(bpy.types.Operator):
|
|
219
218
|
"""Add or remove grease pencil brush preset"""
|
|
220
219
|
|
|
221
220
|
bl_idname: typing.Any
|
|
@@ -244,7 +243,7 @@ class AddPresetGpencilBrush(AddPresetBase, bpy.types.Operator):
|
|
|
244
243
|
"""
|
|
245
244
|
...
|
|
246
245
|
|
|
247
|
-
class AddPresetGpencilMaterial(
|
|
246
|
+
class AddPresetGpencilMaterial(bpy.types.Operator):
|
|
248
247
|
"""Add or remove grease pencil material preset"""
|
|
249
248
|
|
|
250
249
|
bl_idname: typing.Any
|
|
@@ -273,7 +272,7 @@ class AddPresetGpencilMaterial(AddPresetBase, bpy.types.Operator):
|
|
|
273
272
|
"""
|
|
274
273
|
...
|
|
275
274
|
|
|
276
|
-
class AddPresetHairDynamics(
|
|
275
|
+
class AddPresetHairDynamics(bpy.types.Operator):
|
|
277
276
|
"""Add or remove a Hair Dynamics Preset"""
|
|
278
277
|
|
|
279
278
|
bl_idname: typing.Any
|
|
@@ -302,7 +301,7 @@ class AddPresetHairDynamics(AddPresetBase, bpy.types.Operator):
|
|
|
302
301
|
"""
|
|
303
302
|
...
|
|
304
303
|
|
|
305
|
-
class AddPresetInterfaceTheme(
|
|
304
|
+
class AddPresetInterfaceTheme(bpy.types.Operator):
|
|
306
305
|
"""Add a custom theme to the preset list"""
|
|
307
306
|
|
|
308
307
|
bl_idname: typing.Any
|
|
@@ -329,7 +328,7 @@ class AddPresetInterfaceTheme(AddPresetBase, bpy.types.Operator):
|
|
|
329
328
|
"""
|
|
330
329
|
...
|
|
331
330
|
|
|
332
|
-
class AddPresetKeyconfig(
|
|
331
|
+
class AddPresetKeyconfig(bpy.types.Operator):
|
|
333
332
|
"""Add a custom keymap configuration to the preset list"""
|
|
334
333
|
|
|
335
334
|
bl_idname: typing.Any
|
|
@@ -364,7 +363,7 @@ class AddPresetKeyconfig(AddPresetBase, bpy.types.Operator):
|
|
|
364
363
|
"""
|
|
365
364
|
...
|
|
366
365
|
|
|
367
|
-
class AddPresetNodeColor(
|
|
366
|
+
class AddPresetNodeColor(bpy.types.Operator):
|
|
368
367
|
"""Add or remove a Node Color Preset"""
|
|
369
368
|
|
|
370
369
|
bl_idname: typing.Any
|
|
@@ -393,7 +392,7 @@ class AddPresetNodeColor(AddPresetBase, bpy.types.Operator):
|
|
|
393
392
|
"""
|
|
394
393
|
...
|
|
395
394
|
|
|
396
|
-
class AddPresetOperator(
|
|
395
|
+
class AddPresetOperator(bpy.types.Operator):
|
|
397
396
|
"""Add or remove an Operator Preset"""
|
|
398
397
|
|
|
399
398
|
bl_idname: typing.Any
|
|
@@ -430,7 +429,7 @@ class AddPresetOperator(AddPresetBase, bpy.types.Operator):
|
|
|
430
429
|
"""
|
|
431
430
|
...
|
|
432
431
|
|
|
433
|
-
class AddPresetRender(
|
|
432
|
+
class AddPresetRender(bpy.types.Operator):
|
|
434
433
|
"""Add or remove a Render Preset"""
|
|
435
434
|
|
|
436
435
|
bl_idname: typing.Any
|
|
@@ -459,7 +458,7 @@ class AddPresetRender(AddPresetBase, bpy.types.Operator):
|
|
|
459
458
|
"""
|
|
460
459
|
...
|
|
461
460
|
|
|
462
|
-
class AddPresetTextEditor(
|
|
461
|
+
class AddPresetTextEditor(bpy.types.Operator):
|
|
463
462
|
"""Add or remove a Text Editor Preset"""
|
|
464
463
|
|
|
465
464
|
bl_idname: typing.Any
|
|
@@ -488,7 +487,7 @@ class AddPresetTextEditor(AddPresetBase, bpy.types.Operator):
|
|
|
488
487
|
"""
|
|
489
488
|
...
|
|
490
489
|
|
|
491
|
-
class AddPresetTrackingCamera(
|
|
490
|
+
class AddPresetTrackingCamera(bpy.types.Operator):
|
|
492
491
|
"""Add or remove a Tracking Camera Intrinsics Preset"""
|
|
493
492
|
|
|
494
493
|
bl_idname: typing.Any
|
|
@@ -517,7 +516,7 @@ class AddPresetTrackingCamera(AddPresetBase, bpy.types.Operator):
|
|
|
517
516
|
"""
|
|
518
517
|
...
|
|
519
518
|
|
|
520
|
-
class AddPresetTrackingSettings(
|
|
519
|
+
class AddPresetTrackingSettings(bpy.types.Operator):
|
|
521
520
|
"""Add or remove a motion tracking settings preset"""
|
|
522
521
|
|
|
523
522
|
bl_idname: typing.Any
|
|
@@ -546,7 +545,7 @@ class AddPresetTrackingSettings(AddPresetBase, bpy.types.Operator):
|
|
|
546
545
|
"""
|
|
547
546
|
...
|
|
548
547
|
|
|
549
|
-
class AddPresetTrackingTrackColor(
|
|
548
|
+
class AddPresetTrackingTrackColor(bpy.types.Operator):
|
|
550
549
|
"""Add or remove a Clip Track Color Preset"""
|
|
551
550
|
|
|
552
551
|
bl_idname: typing.Any
|
|
@@ -606,7 +605,7 @@ class ExecutePreset(bpy.types.Operator):
|
|
|
606
605
|
"""
|
|
607
606
|
...
|
|
608
607
|
|
|
609
|
-
class RemovePresetInterfaceTheme(
|
|
608
|
+
class RemovePresetInterfaceTheme(bpy.types.Operator):
|
|
610
609
|
"""Remove a custom theme from the preset list"""
|
|
611
610
|
|
|
612
611
|
bl_idname: typing.Any
|
|
@@ -656,7 +655,7 @@ class RemovePresetInterfaceTheme(AddPresetBase, bpy.types.Operator):
|
|
|
656
655
|
"""
|
|
657
656
|
...
|
|
658
657
|
|
|
659
|
-
class RemovePresetKeyconfig(
|
|
658
|
+
class RemovePresetKeyconfig(bpy.types.Operator):
|
|
660
659
|
"""Remove a custom keymap configuration from the preset list"""
|
|
661
660
|
|
|
662
661
|
bl_idname: typing.Any
|
|
@@ -713,7 +712,7 @@ class RemovePresetKeyconfig(AddPresetBase, bpy.types.Operator):
|
|
|
713
712
|
"""
|
|
714
713
|
...
|
|
715
714
|
|
|
716
|
-
class SavePresetInterfaceTheme(
|
|
715
|
+
class SavePresetInterfaceTheme(bpy.types.Operator):
|
|
717
716
|
"""Save a custom theme in the preset list"""
|
|
718
717
|
|
|
719
718
|
bl_idname: typing.Any
|
|
@@ -824,9 +823,7 @@ class WM_OT_operator_presets_cleanup(bpy.types.Operator):
|
|
|
824
823
|
"""
|
|
825
824
|
...
|
|
826
825
|
|
|
827
|
-
class WM_PT_operator_presets(
|
|
828
|
-
bpy.types.Panel, bl_ui.utils.PresetPanel, bpy_types._GenericUI
|
|
829
|
-
):
|
|
826
|
+
class WM_PT_operator_presets(bpy.types.Panel, bpy_types._GenericUI):
|
|
830
827
|
bl_label: typing.Any
|
|
831
828
|
bl_region_type: typing.Any
|
|
832
829
|
bl_rna: typing.Any
|