fake-bpy-module 20240121__py3-none-any.whl → 20240125__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/autocomplete/__init__.pyi +2 -2
- bl_i18n_utils/__init__.pyi +3 -3
- bl_keymap_utils/__init__.pyi +2 -2
- bl_operators/__init__.pyi +21 -21
- bl_operators/anim/__init__.pyi +39 -1
- bl_operators/wm/__init__.pyi +0 -1
- bl_ui/__init__.pyi +62 -62
- bl_ui/properties_grease_pencil_common/__init__.pyi +0 -1
- bl_ui/properties_workspace/__init__.pyi +47 -0
- bl_ui/space_topbar/__init__.pyi +1 -0
- bl_ui/space_userpref/__init__.pyi +39 -0
- bl_ui_utils/__init__.pyi +1 -1
- bpy/__init__.pyi +3 -3
- bpy/app/__init__.pyi +1 -1
- bpy/ops/__init__.pyi +62 -62
- bpy/ops/armature/__init__.pyi +18 -6
- bpy/ops/geometry/__init__.pyi +3 -3
- bpy/ops/graph/__init__.pyi +7 -3
- bpy/ops/node/__init__.pyi +18 -18
- bpy/ops/object/__init__.pyi +36 -36
- bpy/ops/outliner/__init__.pyi +1 -1
- bpy/ops/ui/__init__.pyi +3 -3
- bpy/ops/view3d/__init__.pyi +6 -6
- bpy/ops/wm/__init__.pyi +2 -2
- bpy/types/__init__.pyi +1032 -622
- bpy_extras/__init__.pyi +2 -2
- bpy_types/__init__.pyi +29 -0
- {fake_bpy_module-20240121.dist-info → fake_bpy_module-20240125.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240121.dist-info → fake_bpy_module-20240125.dist-info}/RECORD +31 -31
- {fake_bpy_module-20240121.dist-info → fake_bpy_module-20240125.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240121.dist-info → fake_bpy_module-20240125.dist-info}/top_level.txt +0 -0
bpy/types/__init__.pyi
CHANGED
|
@@ -2,96 +2,208 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import mathutils
|
|
4
4
|
import bpy
|
|
5
|
+
import bl_ui.space_view3d_toolbar
|
|
6
|
+
import bl_operators.userpref
|
|
7
|
+
import bl_ui.properties_particle
|
|
8
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
9
|
+
import bl_ui.properties_paint_common
|
|
10
|
+
import bl_ui.space_nla
|
|
5
11
|
import bl_ui.node_add_menu
|
|
6
|
-
import bl_ui.
|
|
7
|
-
import bl_ui.
|
|
12
|
+
import bl_ui.properties_physics_rigidbody
|
|
13
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
14
|
+
import bl_ui.properties_data_modifier
|
|
15
|
+
import bl_ui.properties_scene
|
|
16
|
+
import bl_ui.space_view3d
|
|
17
|
+
import bl_ui.space_image
|
|
18
|
+
import bl_ui.node_add_menu_compositor
|
|
19
|
+
import bl_operators.node
|
|
20
|
+
import bl_ui.space_console
|
|
8
21
|
import bl_ui.properties_data_curves
|
|
9
|
-
import
|
|
10
|
-
import bl_ui.
|
|
11
|
-
import
|
|
22
|
+
import bl_ui.properties_data_camera
|
|
23
|
+
import bl_ui.properties_data_armature
|
|
24
|
+
import bl_operators.constraint
|
|
12
25
|
import bl_ui.space_node
|
|
13
|
-
import bl_ui.
|
|
26
|
+
import bl_ui.generic_ui_list
|
|
27
|
+
import bl_ui.properties_freestyle
|
|
28
|
+
import bl_operators.freestyle
|
|
29
|
+
import bl_ui.properties_mask_common
|
|
30
|
+
import bl_ui.properties_world
|
|
31
|
+
import bl_ui.space_topbar
|
|
32
|
+
import bl_ui.space_toolsystem_toolbar
|
|
33
|
+
import bl_ui.properties_data_empty
|
|
34
|
+
import bl_operators.clip
|
|
35
|
+
import bl_ui.properties_grease_pencil_common
|
|
14
36
|
import bl_ui.properties_material
|
|
15
|
-
import bl_ui.properties_data_lightprobe
|
|
16
|
-
import bl_ui.properties_paint_common
|
|
17
|
-
import bl_ui.properties_data_curve
|
|
18
|
-
import bl_operators.view3d
|
|
19
|
-
import bl_ui.space_userpref
|
|
20
37
|
import bl_ui.properties_texture
|
|
21
|
-
import bl_ui
|
|
22
|
-
import bl_ui.
|
|
23
|
-
import bl_ui.
|
|
24
|
-
import bl_ui.
|
|
25
|
-
import bl_ui.
|
|
26
|
-
import bl_ui.
|
|
27
|
-
import bl_ui.properties_data_camera
|
|
28
|
-
import bl_operators.spreadsheet
|
|
29
|
-
import bl_operators.assets
|
|
30
|
-
import bl_ui.properties_physics_common
|
|
38
|
+
import bl_ui
|
|
39
|
+
import bl_ui.properties_collection
|
|
40
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
41
|
+
import bl_ui.properties_data_shaderfx
|
|
42
|
+
import bl_ui.properties_physics_field
|
|
43
|
+
import bl_ui.space_clip
|
|
31
44
|
import bl_ui.space_time
|
|
32
|
-
import bl_ui.
|
|
33
|
-
import bl_ui.
|
|
45
|
+
import bl_ui.space_filebrowser
|
|
46
|
+
import bl_ui.properties_physics_cloth
|
|
34
47
|
import bl_ui.space_info
|
|
35
|
-
import bl_ui.
|
|
36
|
-
import bl_ui.
|
|
37
|
-
import
|
|
48
|
+
import bl_ui.properties_object
|
|
49
|
+
import bl_ui.space_outliner
|
|
50
|
+
import bl_ui.properties_physics_common
|
|
51
|
+
import bl_ui.space_graph
|
|
52
|
+
import bl_operators.anim
|
|
53
|
+
import bl_ui.properties_physics_fluid
|
|
54
|
+
import bl_ui.properties_render
|
|
55
|
+
import bl_ui.properties_constraint
|
|
56
|
+
import bl_ui.space_properties
|
|
57
|
+
import bl_operators.assets
|
|
58
|
+
import bl_ui.properties_view_layer
|
|
38
59
|
import bl_operators.object
|
|
60
|
+
import bl_ui.properties_material_gpencil
|
|
61
|
+
import bl_ui.properties_data_metaball
|
|
62
|
+
import bl_ui.space_text
|
|
63
|
+
import bl_ui.space_userpref
|
|
39
64
|
import bl_operators.wm
|
|
40
|
-
import bl_ui.
|
|
41
|
-
import bl_ui.
|
|
65
|
+
import bl_ui.properties_data_lattice
|
|
66
|
+
import bl_ui.node_add_menu_shader
|
|
42
67
|
import bl_ui.properties_data_gpencil
|
|
43
|
-
import bl_ui.
|
|
44
|
-
import
|
|
68
|
+
import bl_ui.space_dopesheet
|
|
69
|
+
import bl_ui.space_statusbar
|
|
70
|
+
import bl_ui.properties_data_bone
|
|
71
|
+
import bl_ui.properties_output
|
|
72
|
+
import bl_operators.presets
|
|
73
|
+
import bl_ui.properties_workspace
|
|
45
74
|
import bl_ui.node_add_menu_geometry
|
|
46
|
-
import bl_ui.space_properties
|
|
47
|
-
import bl_ui.space_text
|
|
48
|
-
import bl_ui.properties_data_modifier
|
|
49
|
-
import bl_ui.space_clip
|
|
50
75
|
import bl_ui.properties_data_light
|
|
51
|
-
import
|
|
52
|
-
import bl_ui.space_image
|
|
53
|
-
import bl_ui.properties_mask_common
|
|
54
|
-
import bl_ui.properties_physics_softbody
|
|
55
|
-
import bl_ui.space_topbar
|
|
56
|
-
import bl_ui.properties_physics_field
|
|
57
|
-
import bl_operators.constraint
|
|
58
|
-
import bl_ui.properties_data_bone
|
|
59
|
-
import bl_ui.properties_physics_rigidbody
|
|
76
|
+
import bl_operators.view3d
|
|
60
77
|
import bl_ui.properties_data_pointcloud
|
|
61
|
-
import bl_ui.
|
|
62
|
-
import bl_ui.
|
|
63
|
-
import
|
|
64
|
-
import bl_ui.
|
|
78
|
+
import bl_ui.properties_physics_softbody
|
|
79
|
+
import bl_ui.space_toolsystem_common
|
|
80
|
+
import bl_ui.properties_data_curve
|
|
81
|
+
import bl_ui.properties_data_grease_pencil
|
|
82
|
+
import bl_ui.properties_data_mesh
|
|
83
|
+
import bl_ui.asset_shelf
|
|
84
|
+
import bl_ui.properties_data_volume
|
|
85
|
+
import bl_operators.file
|
|
86
|
+
import bl_ui.properties_data_speaker
|
|
65
87
|
import bl_ui.space_spreadsheet
|
|
66
|
-
import bl_ui.
|
|
67
|
-
import bl_ui.space_filebrowser
|
|
68
|
-
import bl_operators.anim
|
|
69
|
-
import bl_ui.space_nla
|
|
70
|
-
import bl_ui.space_graph
|
|
88
|
+
import bl_ui.space_sequencer
|
|
71
89
|
import bl_ui.node_add_menu_texture
|
|
72
|
-
import
|
|
73
|
-
import bl_ui.
|
|
74
|
-
import bl_ui.generic_ui_list
|
|
75
|
-
import bl_ui.properties_physics_rigidbody_constraint
|
|
76
|
-
import bl_ui.space_view3d_toolbar
|
|
77
|
-
import bl_operators.freestyle
|
|
78
|
-
import bl_operators.file
|
|
79
|
-
import bl_ui.node_add_menu_compositor
|
|
80
|
-
import bl_ui.properties_physics_cloth
|
|
81
|
-
import bl_ui.properties_scene
|
|
82
|
-
import bl_ui.properties_data_grease_pencil
|
|
83
|
-
import bl_ui.properties_constraint
|
|
84
|
-
import bl_ui.properties_workspace
|
|
85
|
-
import bl_ui.properties_data_metaball
|
|
86
|
-
import bl_ui.properties_data_empty
|
|
87
|
-
import bl_ui.properties_output
|
|
88
|
-
import bl_ui.properties_physics_fluid
|
|
89
|
-
import bl_ui.properties_physics_geometry_nodes
|
|
90
|
-
import bl_ui.properties_collection
|
|
91
|
-
import bl_ui
|
|
90
|
+
import bl_operators.spreadsheet
|
|
91
|
+
import bl_ui.properties_data_lightprobe
|
|
92
92
|
|
|
93
93
|
GenericType = typing.TypeVar("GenericType")
|
|
94
94
|
|
|
95
|
+
class bpy_prop_collection(typing.Generic[GenericType]):
|
|
96
|
+
"""built-in class used for all collections."""
|
|
97
|
+
|
|
98
|
+
def find(self, key: typing.Optional[str]) -> int:
|
|
99
|
+
"""Returns the index of a key in a collection or -1 when not found (matches Python's string find function of the same name).
|
|
100
|
+
|
|
101
|
+
:param key: The identifier for the collection member.
|
|
102
|
+
:type key: typing.Optional[str]
|
|
103
|
+
:rtype: int
|
|
104
|
+
:return: index of the key.
|
|
105
|
+
"""
|
|
106
|
+
...
|
|
107
|
+
|
|
108
|
+
def foreach_get(self, attr, seq):
|
|
109
|
+
"""This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! Multi-dimensional arrays (like array of vectors) will be flattened into seq."""
|
|
110
|
+
...
|
|
111
|
+
|
|
112
|
+
def foreach_set(self, attr, seq):
|
|
113
|
+
"""This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it."""
|
|
114
|
+
...
|
|
115
|
+
|
|
116
|
+
def get(
|
|
117
|
+
self, key: typing.Optional[str], default: typing.Optional[typing.Any] = None
|
|
118
|
+
):
|
|
119
|
+
"""Returns the value of the item assigned to key or default when not found (matches Python's dictionary function of the same name).
|
|
120
|
+
|
|
121
|
+
:param key: The identifier for the collection member.
|
|
122
|
+
:type key: typing.Optional[str]
|
|
123
|
+
:param default: Optional argument for the value to return if *key* is not found.
|
|
124
|
+
:type default: typing.Optional[typing.Any]
|
|
125
|
+
"""
|
|
126
|
+
...
|
|
127
|
+
|
|
128
|
+
def items(self) -> typing.List:
|
|
129
|
+
"""Return the identifiers of collection members (matching Python's dict.items() functionality).
|
|
130
|
+
|
|
131
|
+
:rtype: typing.List
|
|
132
|
+
:return: (key, value) pairs for each member of this collection.
|
|
133
|
+
"""
|
|
134
|
+
...
|
|
135
|
+
|
|
136
|
+
def keys(self) -> typing.List[str]:
|
|
137
|
+
"""Return the identifiers of collection members (matching Python's dict.keys() functionality).
|
|
138
|
+
|
|
139
|
+
:rtype: typing.List[str]
|
|
140
|
+
:return: the identifiers for each member of this collection.
|
|
141
|
+
"""
|
|
142
|
+
...
|
|
143
|
+
|
|
144
|
+
def values(self) -> typing.List:
|
|
145
|
+
"""Return the values of collection (matching Python's dict.values() functionality).
|
|
146
|
+
|
|
147
|
+
:rtype: typing.List
|
|
148
|
+
:return: the members of this collection.
|
|
149
|
+
"""
|
|
150
|
+
...
|
|
151
|
+
|
|
152
|
+
def __getitem__(
|
|
153
|
+
self, key: typing.Optional[typing.Union[int, str]]
|
|
154
|
+
) -> "GenericType":
|
|
155
|
+
"""
|
|
156
|
+
|
|
157
|
+
:param key:
|
|
158
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
159
|
+
:rtype: 'GenericType'
|
|
160
|
+
"""
|
|
161
|
+
...
|
|
162
|
+
|
|
163
|
+
def __setitem__(
|
|
164
|
+
self, key: typing.Optional[typing.Union[int, str]], value: "GenericType"
|
|
165
|
+
):
|
|
166
|
+
"""
|
|
167
|
+
|
|
168
|
+
:param key:
|
|
169
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
170
|
+
:param value:
|
|
171
|
+
:type value: 'GenericType'
|
|
172
|
+
"""
|
|
173
|
+
...
|
|
174
|
+
|
|
175
|
+
def __delitem__(
|
|
176
|
+
self, key: typing.Optional[typing.Union[int, str]]
|
|
177
|
+
) -> "GenericType":
|
|
178
|
+
"""
|
|
179
|
+
|
|
180
|
+
:param key:
|
|
181
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
182
|
+
:rtype: 'GenericType'
|
|
183
|
+
"""
|
|
184
|
+
...
|
|
185
|
+
|
|
186
|
+
def __iter__(self) -> typing.Iterator["GenericType"]:
|
|
187
|
+
"""
|
|
188
|
+
|
|
189
|
+
:rtype: typing.Iterator['GenericType']
|
|
190
|
+
"""
|
|
191
|
+
...
|
|
192
|
+
|
|
193
|
+
def __next__(self) -> "GenericType":
|
|
194
|
+
"""
|
|
195
|
+
|
|
196
|
+
:rtype: 'GenericType'
|
|
197
|
+
"""
|
|
198
|
+
...
|
|
199
|
+
|
|
200
|
+
def __len__(self) -> int:
|
|
201
|
+
"""
|
|
202
|
+
|
|
203
|
+
:rtype: int
|
|
204
|
+
"""
|
|
205
|
+
...
|
|
206
|
+
|
|
95
207
|
class bpy_struct:
|
|
96
208
|
"""built-in base class for all classes in bpy.types."""
|
|
97
209
|
|
|
@@ -356,118 +468,6 @@ class bpy_struct:
|
|
|
356
468
|
"""
|
|
357
469
|
...
|
|
358
470
|
|
|
359
|
-
class bpy_prop_collection(typing.Generic[GenericType]):
|
|
360
|
-
"""built-in class used for all collections."""
|
|
361
|
-
|
|
362
|
-
def find(self, key: typing.Optional[str]) -> int:
|
|
363
|
-
"""Returns the index of a key in a collection or -1 when not found (matches Python's string find function of the same name).
|
|
364
|
-
|
|
365
|
-
:param key: The identifier for the collection member.
|
|
366
|
-
:type key: typing.Optional[str]
|
|
367
|
-
:rtype: int
|
|
368
|
-
:return: index of the key.
|
|
369
|
-
"""
|
|
370
|
-
...
|
|
371
|
-
|
|
372
|
-
def foreach_get(self, attr, seq):
|
|
373
|
-
"""This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! Multi-dimensional arrays (like array of vectors) will be flattened into seq."""
|
|
374
|
-
...
|
|
375
|
-
|
|
376
|
-
def foreach_set(self, attr, seq):
|
|
377
|
-
"""This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it."""
|
|
378
|
-
...
|
|
379
|
-
|
|
380
|
-
def get(
|
|
381
|
-
self, key: typing.Optional[str], default: typing.Optional[typing.Any] = None
|
|
382
|
-
):
|
|
383
|
-
"""Returns the value of the item assigned to key or default when not found (matches Python's dictionary function of the same name).
|
|
384
|
-
|
|
385
|
-
:param key: The identifier for the collection member.
|
|
386
|
-
:type key: typing.Optional[str]
|
|
387
|
-
:param default: Optional argument for the value to return if *key* is not found.
|
|
388
|
-
:type default: typing.Optional[typing.Any]
|
|
389
|
-
"""
|
|
390
|
-
...
|
|
391
|
-
|
|
392
|
-
def items(self) -> typing.List:
|
|
393
|
-
"""Return the identifiers of collection members (matching Python's dict.items() functionality).
|
|
394
|
-
|
|
395
|
-
:rtype: typing.List
|
|
396
|
-
:return: (key, value) pairs for each member of this collection.
|
|
397
|
-
"""
|
|
398
|
-
...
|
|
399
|
-
|
|
400
|
-
def keys(self) -> typing.List[str]:
|
|
401
|
-
"""Return the identifiers of collection members (matching Python's dict.keys() functionality).
|
|
402
|
-
|
|
403
|
-
:rtype: typing.List[str]
|
|
404
|
-
:return: the identifiers for each member of this collection.
|
|
405
|
-
"""
|
|
406
|
-
...
|
|
407
|
-
|
|
408
|
-
def values(self) -> typing.List:
|
|
409
|
-
"""Return the values of collection (matching Python's dict.values() functionality).
|
|
410
|
-
|
|
411
|
-
:rtype: typing.List
|
|
412
|
-
:return: the members of this collection.
|
|
413
|
-
"""
|
|
414
|
-
...
|
|
415
|
-
|
|
416
|
-
def __getitem__(
|
|
417
|
-
self, key: typing.Optional[typing.Union[int, str]]
|
|
418
|
-
) -> "GenericType":
|
|
419
|
-
"""
|
|
420
|
-
|
|
421
|
-
:param key:
|
|
422
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
423
|
-
:rtype: 'GenericType'
|
|
424
|
-
"""
|
|
425
|
-
...
|
|
426
|
-
|
|
427
|
-
def __setitem__(
|
|
428
|
-
self, key: typing.Optional[typing.Union[int, str]], value: "GenericType"
|
|
429
|
-
):
|
|
430
|
-
"""
|
|
431
|
-
|
|
432
|
-
:param key:
|
|
433
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
434
|
-
:param value:
|
|
435
|
-
:type value: 'GenericType'
|
|
436
|
-
"""
|
|
437
|
-
...
|
|
438
|
-
|
|
439
|
-
def __delitem__(
|
|
440
|
-
self, key: typing.Optional[typing.Union[int, str]]
|
|
441
|
-
) -> "GenericType":
|
|
442
|
-
"""
|
|
443
|
-
|
|
444
|
-
:param key:
|
|
445
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
446
|
-
:rtype: 'GenericType'
|
|
447
|
-
"""
|
|
448
|
-
...
|
|
449
|
-
|
|
450
|
-
def __iter__(self) -> typing.Iterator["GenericType"]:
|
|
451
|
-
"""
|
|
452
|
-
|
|
453
|
-
:rtype: typing.Iterator['GenericType']
|
|
454
|
-
"""
|
|
455
|
-
...
|
|
456
|
-
|
|
457
|
-
def __next__(self) -> "GenericType":
|
|
458
|
-
"""
|
|
459
|
-
|
|
460
|
-
:rtype: 'GenericType'
|
|
461
|
-
"""
|
|
462
|
-
...
|
|
463
|
-
|
|
464
|
-
def __len__(self) -> int:
|
|
465
|
-
"""
|
|
466
|
-
|
|
467
|
-
:rtype: int
|
|
468
|
-
"""
|
|
469
|
-
...
|
|
470
|
-
|
|
471
471
|
class bpy_prop_array(typing.Generic[GenericType]):
|
|
472
472
|
def foreach_get(self, attr, seq): ...
|
|
473
473
|
def foreach_set(self, attr, seq): ...
|
|
@@ -43182,7 +43182,7 @@ class UserExtensionRepo(bpy_struct):
|
|
|
43182
43182
|
"""Settings to define an extension repository"""
|
|
43183
43183
|
|
|
43184
43184
|
directory: typing.Union[str, typing.Any]
|
|
43185
|
-
""" The local directory containing extensions
|
|
43185
|
+
""" The local directory containing extensions. When unset, a path is used based on the user scripts path
|
|
43186
43186
|
|
|
43187
43187
|
:type: typing.Union[str, typing.Any]
|
|
43188
43188
|
"""
|
|
@@ -43217,6 +43217,9 @@ class UserExtensionRepo(bpy_struct):
|
|
|
43217
43217
|
:type: bool
|
|
43218
43218
|
"""
|
|
43219
43219
|
|
|
43220
|
+
directory_or_default: typing.Any
|
|
43221
|
+
""" Return ``directory`` or a default path derived from the users scripts path. (readonly)"""
|
|
43222
|
+
|
|
43220
43223
|
@classmethod
|
|
43221
43224
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
43222
43225
|
"""
|
|
@@ -56107,6 +56110,30 @@ class Brush(ID, bpy_struct):
|
|
|
56107
56110
|
:type: float
|
|
56108
56111
|
"""
|
|
56109
56112
|
|
|
56113
|
+
automasking_start_normal_falloff: float
|
|
56114
|
+
""" Extend the angular range with a falloff gradient
|
|
56115
|
+
|
|
56116
|
+
:type: float
|
|
56117
|
+
"""
|
|
56118
|
+
|
|
56119
|
+
automasking_start_normal_limit: float
|
|
56120
|
+
""" The range of angles that will be affected
|
|
56121
|
+
|
|
56122
|
+
:type: float
|
|
56123
|
+
"""
|
|
56124
|
+
|
|
56125
|
+
automasking_view_normal_falloff: float
|
|
56126
|
+
""" Extend the angular range with a falloff gradient
|
|
56127
|
+
|
|
56128
|
+
:type: float
|
|
56129
|
+
"""
|
|
56130
|
+
|
|
56131
|
+
automasking_view_normal_limit: float
|
|
56132
|
+
""" The range of angles that will be affected
|
|
56133
|
+
|
|
56134
|
+
:type: float
|
|
56135
|
+
"""
|
|
56136
|
+
|
|
56110
56137
|
blend: typing.Union[str, int]
|
|
56111
56138
|
""" Brush blending mode * ``MIX`` Mix -- Use Mix blending mode while painting. * ``DARKEN`` Darken -- Use Darken blending mode while painting. * ``MUL`` Multiply -- Use Multiply blending mode while painting. * ``COLORBURN`` Color Burn -- Use Color Burn blending mode while painting. * ``LINEARBURN`` Linear Burn -- Use Linear Burn blending mode while painting. * ``LIGHTEN`` Lighten -- Use Lighten blending mode while painting. * ``SCREEN`` Screen -- Use Screen blending mode while painting. * ``COLORDODGE`` Color Dodge -- Use Color Dodge blending mode while painting. * ``ADD`` Add -- Use Add blending mode while painting. * ``OVERLAY`` Overlay -- Use Overlay blending mode while painting. * ``SOFTLIGHT`` Soft Light -- Use Soft Light blending mode while painting. * ``HARDLIGHT`` Hard Light -- Use Hard Light blending mode while painting. * ``VIVIDLIGHT`` Vivid Light -- Use Vivid Light blending mode while painting. * ``LINEARLIGHT`` Linear Light -- Use Linear Light blending mode while painting. * ``PINLIGHT`` Pin Light -- Use Pin Light blending mode while painting. * ``DIFFERENCE`` Difference -- Use Difference blending mode while painting. * ``EXCLUSION`` Exclusion -- Use Exclusion blending mode while painting. * ``SUB`` Subtract -- Use Subtract blending mode while painting. * ``HUE`` Hue -- Use Hue blending mode while painting. * ``SATURATION`` Saturation -- Use Saturation blending mode while painting. * ``COLOR`` Color -- Use Color blending mode while painting. * ``LUMINOSITY`` Value -- Use Value blending mode while painting. * ``ERASE_ALPHA`` Erase Alpha -- Erase alpha while painting. * ``ADD_ALPHA`` Add Alpha -- Add alpha while painting.
|
|
56112
56139
|
|
|
@@ -65343,6 +65370,12 @@ class WindowManager(ID, bpy_struct):
|
|
|
65343
65370
|
class WorkSpace(ID, bpy_struct):
|
|
65344
65371
|
"""Workspace data-block, defining the working environment for the user"""
|
|
65345
65372
|
|
|
65373
|
+
active_addon: int
|
|
65374
|
+
""" Active Add-on in the Workspace Add-ons filter
|
|
65375
|
+
|
|
65376
|
+
:type: int
|
|
65377
|
+
"""
|
|
65378
|
+
|
|
65346
65379
|
active_pose_asset_index: int
|
|
65347
65380
|
""" Per workspace index of the active pose asset
|
|
65348
65381
|
|
|
@@ -68470,141 +68503,443 @@ class EdgeSplitModifier(Modifier, bpy_struct):
|
|
|
68470
68503
|
"""
|
|
68471
68504
|
...
|
|
68472
68505
|
|
|
68473
|
-
class ExplodeModifier(Modifier, bpy_struct):
|
|
68474
|
-
"""Explosion effect modifier based on a particle system"""
|
|
68475
|
-
|
|
68476
|
-
invert_vertex_group: bool
|
|
68477
|
-
""" Invert vertex group influence
|
|
68478
|
-
|
|
68479
|
-
:type: bool
|
|
68480
|
-
"""
|
|
68481
|
-
|
|
68482
|
-
particle_uv: typing.Union[str, typing.Any]
|
|
68483
|
-
""" UV map to change with particle age
|
|
68484
|
-
|
|
68485
|
-
:type: typing.Union[str, typing.Any]
|
|
68486
|
-
"""
|
|
68487
|
-
|
|
68488
|
-
protect: float
|
|
68489
|
-
""" Clean vertex group edges
|
|
68506
|
+
class ExplodeModifier(Modifier, bpy_struct):
|
|
68507
|
+
"""Explosion effect modifier based on a particle system"""
|
|
68508
|
+
|
|
68509
|
+
invert_vertex_group: bool
|
|
68510
|
+
""" Invert vertex group influence
|
|
68511
|
+
|
|
68512
|
+
:type: bool
|
|
68513
|
+
"""
|
|
68514
|
+
|
|
68515
|
+
particle_uv: typing.Union[str, typing.Any]
|
|
68516
|
+
""" UV map to change with particle age
|
|
68517
|
+
|
|
68518
|
+
:type: typing.Union[str, typing.Any]
|
|
68519
|
+
"""
|
|
68520
|
+
|
|
68521
|
+
protect: float
|
|
68522
|
+
""" Clean vertex group edges
|
|
68523
|
+
|
|
68524
|
+
:type: float
|
|
68525
|
+
"""
|
|
68526
|
+
|
|
68527
|
+
show_alive: bool
|
|
68528
|
+
""" Show mesh when particles are alive
|
|
68529
|
+
|
|
68530
|
+
:type: bool
|
|
68531
|
+
"""
|
|
68532
|
+
|
|
68533
|
+
show_dead: bool
|
|
68534
|
+
""" Show mesh when particles are dead
|
|
68535
|
+
|
|
68536
|
+
:type: bool
|
|
68537
|
+
"""
|
|
68538
|
+
|
|
68539
|
+
show_unborn: bool
|
|
68540
|
+
""" Show mesh when particles are unborn
|
|
68541
|
+
|
|
68542
|
+
:type: bool
|
|
68543
|
+
"""
|
|
68544
|
+
|
|
68545
|
+
use_edge_cut: bool
|
|
68546
|
+
""" Cut face edges for nicer shrapnel
|
|
68547
|
+
|
|
68548
|
+
:type: bool
|
|
68549
|
+
"""
|
|
68550
|
+
|
|
68551
|
+
use_size: bool
|
|
68552
|
+
""" Use particle size for the shrapnel
|
|
68553
|
+
|
|
68554
|
+
:type: bool
|
|
68555
|
+
"""
|
|
68556
|
+
|
|
68557
|
+
vertex_group: typing.Union[str, typing.Any]
|
|
68558
|
+
"""
|
|
68559
|
+
|
|
68560
|
+
:type: typing.Union[str, typing.Any]
|
|
68561
|
+
"""
|
|
68562
|
+
|
|
68563
|
+
@classmethod
|
|
68564
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
68565
|
+
"""
|
|
68566
|
+
|
|
68567
|
+
:param id: The RNA type identifier.
|
|
68568
|
+
:type id: typing.Optional[str]
|
|
68569
|
+
:rtype: 'Struct'
|
|
68570
|
+
:return: The RNA type or default when not found.
|
|
68571
|
+
"""
|
|
68572
|
+
...
|
|
68573
|
+
|
|
68574
|
+
@classmethod
|
|
68575
|
+
def bl_rna_get_subclass_py(
|
|
68576
|
+
cls, id: typing.Optional[str], default=None
|
|
68577
|
+
) -> typing.Any:
|
|
68578
|
+
"""
|
|
68579
|
+
|
|
68580
|
+
:param id: The RNA type identifier.
|
|
68581
|
+
:type id: typing.Optional[str]
|
|
68582
|
+
:rtype: typing.Any
|
|
68583
|
+
:return: The class or default when not found.
|
|
68584
|
+
"""
|
|
68585
|
+
...
|
|
68586
|
+
|
|
68587
|
+
class FluidModifier(Modifier, bpy_struct):
|
|
68588
|
+
"""Fluid simulation modifier"""
|
|
68589
|
+
|
|
68590
|
+
domain_settings: "FluidDomainSettings"
|
|
68591
|
+
"""
|
|
68592
|
+
|
|
68593
|
+
:type: 'FluidDomainSettings'
|
|
68594
|
+
"""
|
|
68595
|
+
|
|
68596
|
+
effector_settings: "FluidEffectorSettings"
|
|
68597
|
+
"""
|
|
68598
|
+
|
|
68599
|
+
:type: 'FluidEffectorSettings'
|
|
68600
|
+
"""
|
|
68601
|
+
|
|
68602
|
+
flow_settings: "FluidFlowSettings"
|
|
68603
|
+
"""
|
|
68604
|
+
|
|
68605
|
+
:type: 'FluidFlowSettings'
|
|
68606
|
+
"""
|
|
68607
|
+
|
|
68608
|
+
fluid_type: typing.Union[str, int]
|
|
68609
|
+
""" * ``NONE`` None. * ``DOMAIN`` Domain. * ``FLOW`` Flow -- Inflow/Outflow. * ``EFFECTOR`` Effector.
|
|
68610
|
+
|
|
68611
|
+
:type: typing.Union[str, int]
|
|
68612
|
+
"""
|
|
68613
|
+
|
|
68614
|
+
@classmethod
|
|
68615
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
68616
|
+
"""
|
|
68617
|
+
|
|
68618
|
+
:param id: The RNA type identifier.
|
|
68619
|
+
:type id: typing.Optional[str]
|
|
68620
|
+
:rtype: 'Struct'
|
|
68621
|
+
:return: The RNA type or default when not found.
|
|
68622
|
+
"""
|
|
68623
|
+
...
|
|
68624
|
+
|
|
68625
|
+
@classmethod
|
|
68626
|
+
def bl_rna_get_subclass_py(
|
|
68627
|
+
cls, id: typing.Optional[str], default=None
|
|
68628
|
+
) -> typing.Any:
|
|
68629
|
+
"""
|
|
68630
|
+
|
|
68631
|
+
:param id: The RNA type identifier.
|
|
68632
|
+
:type id: typing.Optional[str]
|
|
68633
|
+
:rtype: typing.Any
|
|
68634
|
+
:return: The class or default when not found.
|
|
68635
|
+
"""
|
|
68636
|
+
...
|
|
68637
|
+
|
|
68638
|
+
class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
68639
|
+
color_mode: typing.Union[str, int]
|
|
68640
|
+
""" Attributes to modify * ``BOTH`` Stroke & Fill -- Modify fill and stroke colors. * ``STROKE`` Stroke -- Modify stroke color only. * ``FILL`` Fill -- Modify fill color only.
|
|
68641
|
+
|
|
68642
|
+
:type: typing.Union[str, int]
|
|
68643
|
+
"""
|
|
68644
|
+
|
|
68645
|
+
custom_curve: "CurveMapping"
|
|
68646
|
+
""" Custom curve to apply effect
|
|
68647
|
+
|
|
68648
|
+
:type: 'CurveMapping'
|
|
68649
|
+
"""
|
|
68650
|
+
|
|
68651
|
+
hue: float
|
|
68652
|
+
""" Color hue offset
|
|
68653
|
+
|
|
68654
|
+
:type: float
|
|
68655
|
+
"""
|
|
68656
|
+
|
|
68657
|
+
invert_layer_filter: bool
|
|
68658
|
+
""" Invert layer filter
|
|
68659
|
+
|
|
68660
|
+
:type: bool
|
|
68661
|
+
"""
|
|
68662
|
+
|
|
68663
|
+
invert_layer_pass_filter: bool
|
|
68664
|
+
""" Invert layer pass filter
|
|
68665
|
+
|
|
68666
|
+
:type: bool
|
|
68667
|
+
"""
|
|
68668
|
+
|
|
68669
|
+
invert_material_filter: bool
|
|
68670
|
+
""" Invert material filter
|
|
68671
|
+
|
|
68672
|
+
:type: bool
|
|
68673
|
+
"""
|
|
68674
|
+
|
|
68675
|
+
invert_material_pass_filter: bool
|
|
68676
|
+
""" Invert material pass filter
|
|
68677
|
+
|
|
68678
|
+
:type: bool
|
|
68679
|
+
"""
|
|
68680
|
+
|
|
68681
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
68682
|
+
""" Layer name
|
|
68683
|
+
|
|
68684
|
+
:type: typing.Union[str, typing.Any]
|
|
68685
|
+
"""
|
|
68686
|
+
|
|
68687
|
+
layer_pass_filter: int
|
|
68688
|
+
""" Layer pass filter
|
|
68689
|
+
|
|
68690
|
+
:type: int
|
|
68691
|
+
"""
|
|
68692
|
+
|
|
68693
|
+
material_filter: "Material"
|
|
68694
|
+
""" Material used for filtering
|
|
68695
|
+
|
|
68696
|
+
:type: 'Material'
|
|
68697
|
+
"""
|
|
68698
|
+
|
|
68699
|
+
material_pass_filter: int
|
|
68700
|
+
""" Material pass
|
|
68701
|
+
|
|
68702
|
+
:type: int
|
|
68703
|
+
"""
|
|
68704
|
+
|
|
68705
|
+
saturation: float
|
|
68706
|
+
""" Color saturation factor
|
|
68707
|
+
|
|
68708
|
+
:type: float
|
|
68709
|
+
"""
|
|
68710
|
+
|
|
68711
|
+
use_custom_curve: bool
|
|
68712
|
+
""" Use a custom curve to define a factor along the strokes
|
|
68713
|
+
|
|
68714
|
+
:type: bool
|
|
68715
|
+
"""
|
|
68716
|
+
|
|
68717
|
+
use_layer_pass_filter: bool
|
|
68718
|
+
""" Use layer pass filter
|
|
68719
|
+
|
|
68720
|
+
:type: bool
|
|
68721
|
+
"""
|
|
68722
|
+
|
|
68723
|
+
use_material_pass_filter: bool
|
|
68724
|
+
""" Use material pass filter
|
|
68725
|
+
|
|
68726
|
+
:type: bool
|
|
68727
|
+
"""
|
|
68728
|
+
|
|
68729
|
+
value: float
|
|
68730
|
+
""" Color value factor
|
|
68731
|
+
|
|
68732
|
+
:type: float
|
|
68733
|
+
"""
|
|
68734
|
+
|
|
68735
|
+
@classmethod
|
|
68736
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
68737
|
+
"""
|
|
68738
|
+
|
|
68739
|
+
:param id: The RNA type identifier.
|
|
68740
|
+
:type id: typing.Optional[str]
|
|
68741
|
+
:rtype: 'Struct'
|
|
68742
|
+
:return: The RNA type or default when not found.
|
|
68743
|
+
"""
|
|
68744
|
+
...
|
|
68745
|
+
|
|
68746
|
+
@classmethod
|
|
68747
|
+
def bl_rna_get_subclass_py(
|
|
68748
|
+
cls, id: typing.Optional[str], default=None
|
|
68749
|
+
) -> typing.Any:
|
|
68750
|
+
"""
|
|
68751
|
+
|
|
68752
|
+
:param id: The RNA type identifier.
|
|
68753
|
+
:type id: typing.Optional[str]
|
|
68754
|
+
:rtype: typing.Any
|
|
68755
|
+
:return: The class or default when not found.
|
|
68756
|
+
"""
|
|
68757
|
+
...
|
|
68758
|
+
|
|
68759
|
+
class GreasePencilOffsetModifier(Modifier, bpy_struct):
|
|
68760
|
+
invert_layer_filter: bool
|
|
68761
|
+
""" Invert layer filter
|
|
68762
|
+
|
|
68763
|
+
:type: bool
|
|
68764
|
+
"""
|
|
68765
|
+
|
|
68766
|
+
invert_layer_pass_filter: bool
|
|
68767
|
+
""" Invert layer pass filter
|
|
68768
|
+
|
|
68769
|
+
:type: bool
|
|
68770
|
+
"""
|
|
68771
|
+
|
|
68772
|
+
invert_material_filter: bool
|
|
68773
|
+
""" Invert material filter
|
|
68774
|
+
|
|
68775
|
+
:type: bool
|
|
68776
|
+
"""
|
|
68777
|
+
|
|
68778
|
+
invert_material_pass_filter: bool
|
|
68779
|
+
""" Invert material pass filter
|
|
68780
|
+
|
|
68781
|
+
:type: bool
|
|
68782
|
+
"""
|
|
68783
|
+
|
|
68784
|
+
invert_vertex_group: bool
|
|
68785
|
+
""" Invert vertex group weights
|
|
68786
|
+
|
|
68787
|
+
:type: bool
|
|
68788
|
+
"""
|
|
68789
|
+
|
|
68790
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
68791
|
+
""" Layer name
|
|
68792
|
+
|
|
68793
|
+
:type: typing.Union[str, typing.Any]
|
|
68794
|
+
"""
|
|
68795
|
+
|
|
68796
|
+
layer_pass_filter: int
|
|
68797
|
+
""" Layer pass filter
|
|
68798
|
+
|
|
68799
|
+
:type: int
|
|
68800
|
+
"""
|
|
68801
|
+
|
|
68802
|
+
location: typing.Union[
|
|
68803
|
+
typing.List[float], typing.Tuple[float, float, float], "mathutils.Vector"
|
|
68804
|
+
]
|
|
68805
|
+
""" Values for change location
|
|
68806
|
+
|
|
68807
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], 'mathutils.Vector']
|
|
68808
|
+
"""
|
|
68809
|
+
|
|
68810
|
+
material_filter: "Material"
|
|
68811
|
+
""" Material used for filtering
|
|
68812
|
+
|
|
68813
|
+
:type: 'Material'
|
|
68814
|
+
"""
|
|
68815
|
+
|
|
68816
|
+
material_pass_filter: int
|
|
68817
|
+
""" Material pass
|
|
68818
|
+
|
|
68819
|
+
:type: int
|
|
68820
|
+
"""
|
|
68821
|
+
|
|
68822
|
+
offset_mode: typing.Union[str, int]
|
|
68823
|
+
""" * ``RANDOM`` Random -- Randomize stroke offset. * ``LAYER`` Layer -- Offset layers by the same factor. * ``STROKE`` Stroke -- Offset strokes by the same factor based on stroke draw order. * ``MATERIAL`` Material -- Offset materials by the same factor.
|
|
68824
|
+
|
|
68825
|
+
:type: typing.Union[str, int]
|
|
68826
|
+
"""
|
|
68827
|
+
|
|
68828
|
+
rotation: typing.Union[
|
|
68829
|
+
typing.List[float], typing.Tuple[float, float, float], "mathutils.Euler"
|
|
68830
|
+
]
|
|
68831
|
+
""" Values for changes in rotation
|
|
68832
|
+
|
|
68833
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], 'mathutils.Euler']
|
|
68834
|
+
"""
|
|
68835
|
+
|
|
68836
|
+
scale: typing.Union[
|
|
68837
|
+
typing.List[float], typing.Tuple[float, float, float], "mathutils.Vector"
|
|
68838
|
+
]
|
|
68839
|
+
""" Values for changes in scale
|
|
68840
|
+
|
|
68841
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], 'mathutils.Vector']
|
|
68842
|
+
"""
|
|
68843
|
+
|
|
68844
|
+
seed: int
|
|
68845
|
+
""" Random seed
|
|
68846
|
+
|
|
68847
|
+
:type: int
|
|
68848
|
+
"""
|
|
68849
|
+
|
|
68850
|
+
stroke_location: typing.Union[
|
|
68851
|
+
typing.List[float], typing.Tuple[float, float, float], "mathutils.Vector"
|
|
68852
|
+
]
|
|
68853
|
+
""" Value for changes in location
|
|
68854
|
+
|
|
68855
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], 'mathutils.Vector']
|
|
68856
|
+
"""
|
|
68857
|
+
|
|
68858
|
+
stroke_rotation: typing.Union[
|
|
68859
|
+
typing.List[float], typing.Tuple[float, float, float], "mathutils.Euler"
|
|
68860
|
+
]
|
|
68861
|
+
""" Value for changes in rotation
|
|
68862
|
+
|
|
68863
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], 'mathutils.Euler']
|
|
68864
|
+
"""
|
|
68865
|
+
|
|
68866
|
+
stroke_scale: typing.Union[
|
|
68867
|
+
typing.List[float], typing.Tuple[float, float, float], "mathutils.Vector"
|
|
68868
|
+
]
|
|
68869
|
+
""" Value for changes in scale
|
|
68870
|
+
|
|
68871
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], 'mathutils.Vector']
|
|
68872
|
+
"""
|
|
68873
|
+
|
|
68874
|
+
stroke_start_offset: int
|
|
68875
|
+
""" Offset starting point
|
|
68876
|
+
|
|
68877
|
+
:type: int
|
|
68878
|
+
"""
|
|
68879
|
+
|
|
68880
|
+
stroke_step: int
|
|
68881
|
+
""" Number of elements that will be grouped
|
|
68882
|
+
|
|
68883
|
+
:type: int
|
|
68884
|
+
"""
|
|
68885
|
+
|
|
68886
|
+
use_layer_pass_filter: bool
|
|
68887
|
+
""" Use layer pass filter
|
|
68888
|
+
|
|
68889
|
+
:type: bool
|
|
68890
|
+
"""
|
|
68891
|
+
|
|
68892
|
+
use_material_pass_filter: bool
|
|
68893
|
+
""" Use material pass filter
|
|
68894
|
+
|
|
68895
|
+
:type: bool
|
|
68896
|
+
"""
|
|
68897
|
+
|
|
68898
|
+
use_uniform_random_scale: bool
|
|
68899
|
+
""" Use the same random seed for each scale axis for a uniform scale
|
|
68900
|
+
|
|
68901
|
+
:type: bool
|
|
68902
|
+
"""
|
|
68903
|
+
|
|
68904
|
+
vertex_group_name: typing.Union[str, typing.Any]
|
|
68905
|
+
""" Vertex group name for modulating the deform
|
|
68906
|
+
|
|
68907
|
+
:type: typing.Union[str, typing.Any]
|
|
68908
|
+
"""
|
|
68909
|
+
|
|
68910
|
+
@classmethod
|
|
68911
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
68912
|
+
"""
|
|
68913
|
+
|
|
68914
|
+
:param id: The RNA type identifier.
|
|
68915
|
+
:type id: typing.Optional[str]
|
|
68916
|
+
:rtype: 'Struct'
|
|
68917
|
+
:return: The RNA type or default when not found.
|
|
68918
|
+
"""
|
|
68919
|
+
...
|
|
68920
|
+
|
|
68921
|
+
@classmethod
|
|
68922
|
+
def bl_rna_get_subclass_py(
|
|
68923
|
+
cls, id: typing.Optional[str], default=None
|
|
68924
|
+
) -> typing.Any:
|
|
68925
|
+
"""
|
|
68926
|
+
|
|
68927
|
+
:param id: The RNA type identifier.
|
|
68928
|
+
:type id: typing.Optional[str]
|
|
68929
|
+
:rtype: typing.Any
|
|
68930
|
+
:return: The class or default when not found.
|
|
68931
|
+
"""
|
|
68932
|
+
...
|
|
68933
|
+
|
|
68934
|
+
class GreasePencilOpacityModifier(Modifier, bpy_struct):
|
|
68935
|
+
color_factor: float
|
|
68936
|
+
""" Factor of opacity
|
|
68490
68937
|
|
|
68491
68938
|
:type: float
|
|
68492
68939
|
"""
|
|
68493
68940
|
|
|
68494
|
-
show_alive: bool
|
|
68495
|
-
""" Show mesh when particles are alive
|
|
68496
|
-
|
|
68497
|
-
:type: bool
|
|
68498
|
-
"""
|
|
68499
|
-
|
|
68500
|
-
show_dead: bool
|
|
68501
|
-
""" Show mesh when particles are dead
|
|
68502
|
-
|
|
68503
|
-
:type: bool
|
|
68504
|
-
"""
|
|
68505
|
-
|
|
68506
|
-
show_unborn: bool
|
|
68507
|
-
""" Show mesh when particles are unborn
|
|
68508
|
-
|
|
68509
|
-
:type: bool
|
|
68510
|
-
"""
|
|
68511
|
-
|
|
68512
|
-
use_edge_cut: bool
|
|
68513
|
-
""" Cut face edges for nicer shrapnel
|
|
68514
|
-
|
|
68515
|
-
:type: bool
|
|
68516
|
-
"""
|
|
68517
|
-
|
|
68518
|
-
use_size: bool
|
|
68519
|
-
""" Use particle size for the shrapnel
|
|
68520
|
-
|
|
68521
|
-
:type: bool
|
|
68522
|
-
"""
|
|
68523
|
-
|
|
68524
|
-
vertex_group: typing.Union[str, typing.Any]
|
|
68525
|
-
"""
|
|
68526
|
-
|
|
68527
|
-
:type: typing.Union[str, typing.Any]
|
|
68528
|
-
"""
|
|
68529
|
-
|
|
68530
|
-
@classmethod
|
|
68531
|
-
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
68532
|
-
"""
|
|
68533
|
-
|
|
68534
|
-
:param id: The RNA type identifier.
|
|
68535
|
-
:type id: typing.Optional[str]
|
|
68536
|
-
:rtype: 'Struct'
|
|
68537
|
-
:return: The RNA type or default when not found.
|
|
68538
|
-
"""
|
|
68539
|
-
...
|
|
68540
|
-
|
|
68541
|
-
@classmethod
|
|
68542
|
-
def bl_rna_get_subclass_py(
|
|
68543
|
-
cls, id: typing.Optional[str], default=None
|
|
68544
|
-
) -> typing.Any:
|
|
68545
|
-
"""
|
|
68546
|
-
|
|
68547
|
-
:param id: The RNA type identifier.
|
|
68548
|
-
:type id: typing.Optional[str]
|
|
68549
|
-
:rtype: typing.Any
|
|
68550
|
-
:return: The class or default when not found.
|
|
68551
|
-
"""
|
|
68552
|
-
...
|
|
68553
|
-
|
|
68554
|
-
class FluidModifier(Modifier, bpy_struct):
|
|
68555
|
-
"""Fluid simulation modifier"""
|
|
68556
|
-
|
|
68557
|
-
domain_settings: "FluidDomainSettings"
|
|
68558
|
-
"""
|
|
68559
|
-
|
|
68560
|
-
:type: 'FluidDomainSettings'
|
|
68561
|
-
"""
|
|
68562
|
-
|
|
68563
|
-
effector_settings: "FluidEffectorSettings"
|
|
68564
|
-
"""
|
|
68565
|
-
|
|
68566
|
-
:type: 'FluidEffectorSettings'
|
|
68567
|
-
"""
|
|
68568
|
-
|
|
68569
|
-
flow_settings: "FluidFlowSettings"
|
|
68570
|
-
"""
|
|
68571
|
-
|
|
68572
|
-
:type: 'FluidFlowSettings'
|
|
68573
|
-
"""
|
|
68574
|
-
|
|
68575
|
-
fluid_type: typing.Union[str, int]
|
|
68576
|
-
""" * ``NONE`` None. * ``DOMAIN`` Domain. * ``FLOW`` Flow -- Inflow/Outflow. * ``EFFECTOR`` Effector.
|
|
68577
|
-
|
|
68578
|
-
:type: typing.Union[str, int]
|
|
68579
|
-
"""
|
|
68580
|
-
|
|
68581
|
-
@classmethod
|
|
68582
|
-
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
68583
|
-
"""
|
|
68584
|
-
|
|
68585
|
-
:param id: The RNA type identifier.
|
|
68586
|
-
:type id: typing.Optional[str]
|
|
68587
|
-
:rtype: 'Struct'
|
|
68588
|
-
:return: The RNA type or default when not found.
|
|
68589
|
-
"""
|
|
68590
|
-
...
|
|
68591
|
-
|
|
68592
|
-
@classmethod
|
|
68593
|
-
def bl_rna_get_subclass_py(
|
|
68594
|
-
cls, id: typing.Optional[str], default=None
|
|
68595
|
-
) -> typing.Any:
|
|
68596
|
-
"""
|
|
68597
|
-
|
|
68598
|
-
:param id: The RNA type identifier.
|
|
68599
|
-
:type id: typing.Optional[str]
|
|
68600
|
-
:rtype: typing.Any
|
|
68601
|
-
:return: The class or default when not found.
|
|
68602
|
-
"""
|
|
68603
|
-
...
|
|
68604
|
-
|
|
68605
|
-
class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
68606
68941
|
color_mode: typing.Union[str, int]
|
|
68607
|
-
""" Attributes to modify * ``BOTH`` Stroke & Fill -- Modify fill and stroke colors. * ``STROKE`` Stroke -- Modify stroke color only. * ``FILL`` Fill -- Modify fill color only.
|
|
68942
|
+
""" Attributes to modify * ``BOTH`` Stroke & Fill -- Modify fill and stroke colors. * ``STROKE`` Stroke -- Modify stroke color only. * ``FILL`` Fill -- Modify fill color only. * ``HARDNESS`` Hardness -- Modify stroke hardness.
|
|
68608
68943
|
|
|
68609
68944
|
:type: typing.Union[str, int]
|
|
68610
68945
|
"""
|
|
@@ -68615,8 +68950,8 @@ class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
|
68615
68950
|
:type: 'CurveMapping'
|
|
68616
68951
|
"""
|
|
68617
68952
|
|
|
68618
|
-
|
|
68619
|
-
"""
|
|
68953
|
+
hardness_factor: float
|
|
68954
|
+
""" Factor of stroke hardness
|
|
68620
68955
|
|
|
68621
68956
|
:type: float
|
|
68622
68957
|
"""
|
|
@@ -68645,6 +68980,12 @@ class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
|
68645
68980
|
:type: bool
|
|
68646
68981
|
"""
|
|
68647
68982
|
|
|
68983
|
+
invert_vertex_group: bool
|
|
68984
|
+
""" Invert vertex group weights
|
|
68985
|
+
|
|
68986
|
+
:type: bool
|
|
68987
|
+
"""
|
|
68988
|
+
|
|
68648
68989
|
layer_filter: typing.Union[str, typing.Any]
|
|
68649
68990
|
""" Layer name
|
|
68650
68991
|
|
|
@@ -68669,12 +69010,6 @@ class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
|
68669
69010
|
:type: int
|
|
68670
69011
|
"""
|
|
68671
69012
|
|
|
68672
|
-
saturation: float
|
|
68673
|
-
""" Color saturation factor
|
|
68674
|
-
|
|
68675
|
-
:type: float
|
|
68676
|
-
"""
|
|
68677
|
-
|
|
68678
69013
|
use_custom_curve: bool
|
|
68679
69014
|
""" Use a custom curve to define a factor along the strokes
|
|
68680
69015
|
|
|
@@ -68693,10 +69028,22 @@ class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
|
68693
69028
|
:type: bool
|
|
68694
69029
|
"""
|
|
68695
69030
|
|
|
68696
|
-
|
|
68697
|
-
"""
|
|
69031
|
+
use_uniform_opacity: bool
|
|
69032
|
+
""" Replace the stroke opacity instead of modulating each point
|
|
68698
69033
|
|
|
68699
|
-
:type:
|
|
69034
|
+
:type: bool
|
|
69035
|
+
"""
|
|
69036
|
+
|
|
69037
|
+
use_weight_as_factor: bool
|
|
69038
|
+
""" Use vertex group weight as factor instead of influence
|
|
69039
|
+
|
|
69040
|
+
:type: bool
|
|
69041
|
+
"""
|
|
69042
|
+
|
|
69043
|
+
vertex_group_name: typing.Union[str, typing.Any]
|
|
69044
|
+
""" Vertex group name for modulating the deform
|
|
69045
|
+
|
|
69046
|
+
:type: typing.Union[str, typing.Any]
|
|
68700
69047
|
"""
|
|
68701
69048
|
|
|
68702
69049
|
@classmethod
|
|
@@ -68723,18 +69070,8 @@ class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
|
68723
69070
|
"""
|
|
68724
69071
|
...
|
|
68725
69072
|
|
|
68726
|
-
class
|
|
68727
|
-
|
|
68728
|
-
""" Factor of opacity
|
|
68729
|
-
|
|
68730
|
-
:type: float
|
|
68731
|
-
"""
|
|
68732
|
-
|
|
68733
|
-
color_mode: typing.Union[str, int]
|
|
68734
|
-
""" Attributes to modify * ``BOTH`` Stroke & Fill -- Modify fill and stroke colors. * ``STROKE`` Stroke -- Modify stroke color only. * ``FILL`` Fill -- Modify fill color only. * ``HARDNESS`` Hardness -- Modify stroke hardness.
|
|
68735
|
-
|
|
68736
|
-
:type: typing.Union[str, int]
|
|
68737
|
-
"""
|
|
69073
|
+
class GreasePencilSmoothModifier(Modifier, bpy_struct):
|
|
69074
|
+
"""Smooth effect modifier"""
|
|
68738
69075
|
|
|
68739
69076
|
custom_curve: "CurveMapping"
|
|
68740
69077
|
""" Custom curve to apply effect
|
|
@@ -68742,8 +69079,8 @@ class GreasePencilOpacityModifier(Modifier, bpy_struct):
|
|
|
68742
69079
|
:type: 'CurveMapping'
|
|
68743
69080
|
"""
|
|
68744
69081
|
|
|
68745
|
-
|
|
68746
|
-
"""
|
|
69082
|
+
factor: float
|
|
69083
|
+
""" Amount of smooth to apply
|
|
68747
69084
|
|
|
68748
69085
|
:type: float
|
|
68749
69086
|
"""
|
|
@@ -68802,32 +69139,68 @@ class GreasePencilOpacityModifier(Modifier, bpy_struct):
|
|
|
68802
69139
|
:type: int
|
|
68803
69140
|
"""
|
|
68804
69141
|
|
|
69142
|
+
open_influence_panel: bool
|
|
69143
|
+
"""
|
|
69144
|
+
|
|
69145
|
+
:type: bool
|
|
69146
|
+
"""
|
|
69147
|
+
|
|
69148
|
+
step: int
|
|
69149
|
+
""" Number of times to apply smooth (high numbers can reduce fps)
|
|
69150
|
+
|
|
69151
|
+
:type: int
|
|
69152
|
+
"""
|
|
69153
|
+
|
|
68805
69154
|
use_custom_curve: bool
|
|
68806
69155
|
""" Use a custom curve to define a factor along the strokes
|
|
68807
69156
|
|
|
68808
69157
|
:type: bool
|
|
68809
69158
|
"""
|
|
68810
69159
|
|
|
68811
|
-
|
|
68812
|
-
"""
|
|
69160
|
+
use_edit_position: bool
|
|
69161
|
+
""" The modifier affects the position of the point
|
|
68813
69162
|
|
|
68814
69163
|
:type: bool
|
|
68815
69164
|
"""
|
|
68816
69165
|
|
|
68817
|
-
|
|
68818
|
-
"""
|
|
69166
|
+
use_edit_strength: bool
|
|
69167
|
+
""" The modifier affects the color strength of the point
|
|
68819
69168
|
|
|
68820
69169
|
:type: bool
|
|
68821
69170
|
"""
|
|
68822
69171
|
|
|
68823
|
-
|
|
68824
|
-
"""
|
|
69172
|
+
use_edit_thickness: bool
|
|
69173
|
+
""" The modifier affects the thickness of the point
|
|
68825
69174
|
|
|
68826
69175
|
:type: bool
|
|
68827
69176
|
"""
|
|
68828
69177
|
|
|
68829
|
-
|
|
68830
|
-
"""
|
|
69178
|
+
use_edit_uv: bool
|
|
69179
|
+
""" The modifier affects the UV rotation factor of the point
|
|
69180
|
+
|
|
69181
|
+
:type: bool
|
|
69182
|
+
"""
|
|
69183
|
+
|
|
69184
|
+
use_keep_shape: bool
|
|
69185
|
+
""" Smooth the details, but keep the overall shape
|
|
69186
|
+
|
|
69187
|
+
:type: bool
|
|
69188
|
+
"""
|
|
69189
|
+
|
|
69190
|
+
use_layer_pass_filter: bool
|
|
69191
|
+
""" Use layer pass filter
|
|
69192
|
+
|
|
69193
|
+
:type: bool
|
|
69194
|
+
"""
|
|
69195
|
+
|
|
69196
|
+
use_material_pass_filter: bool
|
|
69197
|
+
""" Use material pass filter
|
|
69198
|
+
|
|
69199
|
+
:type: bool
|
|
69200
|
+
"""
|
|
69201
|
+
|
|
69202
|
+
use_smooth_ends: bool
|
|
69203
|
+
""" Smooth ends of strokes
|
|
68831
69204
|
|
|
68832
69205
|
:type: bool
|
|
68833
69206
|
"""
|
|
@@ -68865,12 +69238,6 @@ class GreasePencilOpacityModifier(Modifier, bpy_struct):
|
|
|
68865
69238
|
class GreasePencilSubdivModifier(Modifier, bpy_struct):
|
|
68866
69239
|
"""Subdivide Stroke modifier"""
|
|
68867
69240
|
|
|
68868
|
-
custom_curve: "CurveMapping"
|
|
68869
|
-
""" Custom curve to apply effect
|
|
68870
|
-
|
|
68871
|
-
:type: 'CurveMapping'
|
|
68872
|
-
"""
|
|
68873
|
-
|
|
68874
69241
|
invert_layer_filter: bool
|
|
68875
69242
|
""" Invert layer filter
|
|
68876
69243
|
|
|
@@ -68914,7 +69281,7 @@ class GreasePencilSubdivModifier(Modifier, bpy_struct):
|
|
|
68914
69281
|
"""
|
|
68915
69282
|
|
|
68916
69283
|
level: int
|
|
68917
|
-
"""
|
|
69284
|
+
""" Level of subdivision
|
|
68918
69285
|
|
|
68919
69286
|
:type: int
|
|
68920
69287
|
"""
|
|
@@ -68937,10 +69304,10 @@ class GreasePencilSubdivModifier(Modifier, bpy_struct):
|
|
|
68937
69304
|
:type: bool
|
|
68938
69305
|
"""
|
|
68939
69306
|
|
|
68940
|
-
|
|
68941
|
-
"""
|
|
69307
|
+
subdivision_type: typing.Union[str, int]
|
|
69308
|
+
""" Select type of subdivision algorithm
|
|
68942
69309
|
|
|
68943
|
-
:type:
|
|
69310
|
+
:type: typing.Union[str, int]
|
|
68944
69311
|
"""
|
|
68945
69312
|
|
|
68946
69313
|
use_layer_pass_filter: bool
|
|
@@ -71823,7 +72190,7 @@ class UVWarpModifier(Modifier, bpy_struct):
|
|
|
71823
72190
|
"""
|
|
71824
72191
|
|
|
71825
72192
|
uv_layer: typing.Union[str, typing.Any]
|
|
71826
|
-
""" UV
|
|
72193
|
+
""" UV map name
|
|
71827
72194
|
|
|
71828
72195
|
:type: typing.Union[str, typing.Any]
|
|
71829
72196
|
"""
|
|
@@ -82910,14 +83277,50 @@ class CURVES_UL_attributes(UIList, bpy_struct):
|
|
|
82910
83277
|
"""
|
|
82911
83278
|
...
|
|
82912
83279
|
|
|
82913
|
-
class DATA_UL_bone_collections(UIList, bpy_struct):
|
|
83280
|
+
class DATA_UL_bone_collections(UIList, bpy_struct):
|
|
83281
|
+
def draw_item(
|
|
83282
|
+
self,
|
|
83283
|
+
_context,
|
|
83284
|
+
layout,
|
|
83285
|
+
armature,
|
|
83286
|
+
bcoll,
|
|
83287
|
+
_icon,
|
|
83288
|
+
_active_data,
|
|
83289
|
+
_active_propname,
|
|
83290
|
+
_index,
|
|
83291
|
+
): ...
|
|
83292
|
+
@classmethod
|
|
83293
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
83294
|
+
"""
|
|
83295
|
+
|
|
83296
|
+
:param id: The RNA type identifier.
|
|
83297
|
+
:type id: typing.Optional[str]
|
|
83298
|
+
:rtype: 'Struct'
|
|
83299
|
+
:return: The RNA type or default when not found.
|
|
83300
|
+
"""
|
|
83301
|
+
...
|
|
83302
|
+
|
|
83303
|
+
@classmethod
|
|
83304
|
+
def bl_rna_get_subclass_py(
|
|
83305
|
+
cls, id: typing.Optional[str], default=None
|
|
83306
|
+
) -> typing.Any:
|
|
83307
|
+
"""
|
|
83308
|
+
|
|
83309
|
+
:param id: The RNA type identifier.
|
|
83310
|
+
:type id: typing.Optional[str]
|
|
83311
|
+
:rtype: typing.Any
|
|
83312
|
+
:return: The class or default when not found.
|
|
83313
|
+
"""
|
|
83314
|
+
...
|
|
83315
|
+
|
|
83316
|
+
class FILEBROWSER_UL_dir(UIList, bpy_struct):
|
|
82914
83317
|
def draw_item(
|
|
82915
83318
|
self,
|
|
82916
83319
|
_context,
|
|
82917
83320
|
layout,
|
|
82918
|
-
|
|
82919
|
-
|
|
82920
|
-
|
|
83321
|
+
_data,
|
|
83322
|
+
item,
|
|
83323
|
+
icon,
|
|
82921
83324
|
_active_data,
|
|
82922
83325
|
_active_propname,
|
|
82923
83326
|
_index,
|
|
@@ -82946,7 +83349,7 @@ class DATA_UL_bone_collections(UIList, bpy_struct):
|
|
|
82946
83349
|
"""
|
|
82947
83350
|
...
|
|
82948
83351
|
|
|
82949
|
-
class
|
|
83352
|
+
class GPENCIL_UL_annotation_layer(UIList, bpy_struct):
|
|
82950
83353
|
def draw_item(
|
|
82951
83354
|
self,
|
|
82952
83355
|
_context,
|
|
@@ -82982,7 +83385,7 @@ class FILEBROWSER_UL_dir(UIList, bpy_struct):
|
|
|
82982
83385
|
"""
|
|
82983
83386
|
...
|
|
82984
83387
|
|
|
82985
|
-
class
|
|
83388
|
+
class GPENCIL_UL_layer(UIList, bpy_struct):
|
|
82986
83389
|
def draw_item(
|
|
82987
83390
|
self,
|
|
82988
83391
|
_context,
|
|
@@ -83018,7 +83421,7 @@ class GPENCIL_UL_annotation_layer(UIList, bpy_struct):
|
|
|
83018
83421
|
"""
|
|
83019
83422
|
...
|
|
83020
83423
|
|
|
83021
|
-
class
|
|
83424
|
+
class GPENCIL_UL_masks(UIList, bpy_struct):
|
|
83022
83425
|
def draw_item(
|
|
83023
83426
|
self,
|
|
83024
83427
|
_context,
|
|
@@ -83054,7 +83457,7 @@ class GPENCIL_UL_layer(UIList, bpy_struct):
|
|
|
83054
83457
|
"""
|
|
83055
83458
|
...
|
|
83056
83459
|
|
|
83057
|
-
class
|
|
83460
|
+
class GPENCIL_UL_matslots(UIList, bpy_struct):
|
|
83058
83461
|
def draw_item(
|
|
83059
83462
|
self,
|
|
83060
83463
|
_context,
|
|
@@ -83090,7 +83493,7 @@ class GPENCIL_UL_masks(UIList, bpy_struct):
|
|
|
83090
83493
|
"""
|
|
83091
83494
|
...
|
|
83092
83495
|
|
|
83093
|
-
class
|
|
83496
|
+
class GPENCIL_UL_vgroups(UIList, bpy_struct):
|
|
83094
83497
|
def draw_item(
|
|
83095
83498
|
self,
|
|
83096
83499
|
_context,
|
|
@@ -83126,14 +83529,14 @@ class GPENCIL_UL_matslots(UIList, bpy_struct):
|
|
|
83126
83529
|
"""
|
|
83127
83530
|
...
|
|
83128
83531
|
|
|
83129
|
-
class
|
|
83532
|
+
class IMAGE_UL_render_slots(UIList, bpy_struct):
|
|
83130
83533
|
def draw_item(
|
|
83131
83534
|
self,
|
|
83132
83535
|
_context,
|
|
83133
83536
|
layout,
|
|
83134
83537
|
_data,
|
|
83135
83538
|
item,
|
|
83136
|
-
|
|
83539
|
+
_icon,
|
|
83137
83540
|
_active_data,
|
|
83138
83541
|
_active_propname,
|
|
83139
83542
|
_index,
|
|
@@ -83162,7 +83565,7 @@ class GPENCIL_UL_vgroups(UIList, bpy_struct):
|
|
|
83162
83565
|
"""
|
|
83163
83566
|
...
|
|
83164
83567
|
|
|
83165
|
-
class
|
|
83568
|
+
class IMAGE_UL_udim_tiles(UIList, bpy_struct):
|
|
83166
83569
|
def draw_item(
|
|
83167
83570
|
self,
|
|
83168
83571
|
_context,
|
|
@@ -83198,14 +83601,14 @@ class IMAGE_UL_render_slots(UIList, bpy_struct):
|
|
|
83198
83601
|
"""
|
|
83199
83602
|
...
|
|
83200
83603
|
|
|
83201
|
-
class
|
|
83604
|
+
class MASK_UL_layers(UIList, bpy_struct):
|
|
83202
83605
|
def draw_item(
|
|
83203
83606
|
self,
|
|
83204
83607
|
_context,
|
|
83205
83608
|
layout,
|
|
83206
83609
|
_data,
|
|
83207
83610
|
item,
|
|
83208
|
-
|
|
83611
|
+
icon,
|
|
83209
83612
|
_active_data,
|
|
83210
83613
|
_active_propname,
|
|
83211
83614
|
_index,
|
|
@@ -83234,7 +83637,7 @@ class IMAGE_UL_udim_tiles(UIList, bpy_struct):
|
|
|
83234
83637
|
"""
|
|
83235
83638
|
...
|
|
83236
83639
|
|
|
83237
|
-
class
|
|
83640
|
+
class MATERIAL_UL_matslots(UIList, bpy_struct):
|
|
83238
83641
|
def draw_item(
|
|
83239
83642
|
self,
|
|
83240
83643
|
_context,
|
|
@@ -83270,18 +83673,19 @@ class MASK_UL_layers(UIList, bpy_struct):
|
|
|
83270
83673
|
"""
|
|
83271
83674
|
...
|
|
83272
83675
|
|
|
83273
|
-
class
|
|
83676
|
+
class MESH_UL_attributes(UIList, bpy_struct):
|
|
83274
83677
|
def draw_item(
|
|
83275
83678
|
self,
|
|
83276
83679
|
_context,
|
|
83277
83680
|
layout,
|
|
83278
83681
|
_data,
|
|
83279
|
-
|
|
83280
|
-
|
|
83682
|
+
attribute,
|
|
83683
|
+
_icon,
|
|
83281
83684
|
_active_data,
|
|
83282
83685
|
_active_propname,
|
|
83283
83686
|
_index,
|
|
83284
83687
|
): ...
|
|
83688
|
+
def filter_items(self, _context, data, property): ...
|
|
83285
83689
|
@classmethod
|
|
83286
83690
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
83287
83691
|
"""
|
|
@@ -83306,12 +83710,12 @@ class MATERIAL_UL_matslots(UIList, bpy_struct):
|
|
|
83306
83710
|
"""
|
|
83307
83711
|
...
|
|
83308
83712
|
|
|
83309
|
-
class
|
|
83713
|
+
class MESH_UL_color_attributes(UIList, bpy_struct):
|
|
83310
83714
|
def draw_item(
|
|
83311
83715
|
self,
|
|
83312
83716
|
_context,
|
|
83313
83717
|
layout,
|
|
83314
|
-
|
|
83718
|
+
data,
|
|
83315
83719
|
attribute,
|
|
83316
83720
|
_icon,
|
|
83317
83721
|
_active_data,
|
|
@@ -83343,12 +83747,12 @@ class MESH_UL_attributes(UIList, bpy_struct):
|
|
|
83343
83747
|
"""
|
|
83344
83748
|
...
|
|
83345
83749
|
|
|
83346
|
-
class
|
|
83750
|
+
class MESH_UL_color_attributes_selector(UIList, bpy_struct):
|
|
83347
83751
|
def draw_item(
|
|
83348
83752
|
self,
|
|
83349
83753
|
_context,
|
|
83350
83754
|
layout,
|
|
83351
|
-
|
|
83755
|
+
_data,
|
|
83352
83756
|
attribute,
|
|
83353
83757
|
_icon,
|
|
83354
83758
|
_active_data,
|
|
@@ -83380,19 +83784,46 @@ class MESH_UL_color_attributes(UIList, bpy_struct):
|
|
|
83380
83784
|
"""
|
|
83381
83785
|
...
|
|
83382
83786
|
|
|
83383
|
-
class
|
|
83787
|
+
class MESH_UL_shape_keys(UIList, bpy_struct):
|
|
83788
|
+
def draw_item(
|
|
83789
|
+
self, _context, layout, _data, item, icon, active_data, _active_propname, index
|
|
83790
|
+
): ...
|
|
83791
|
+
@classmethod
|
|
83792
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
83793
|
+
"""
|
|
83794
|
+
|
|
83795
|
+
:param id: The RNA type identifier.
|
|
83796
|
+
:type id: typing.Optional[str]
|
|
83797
|
+
:rtype: 'Struct'
|
|
83798
|
+
:return: The RNA type or default when not found.
|
|
83799
|
+
"""
|
|
83800
|
+
...
|
|
83801
|
+
|
|
83802
|
+
@classmethod
|
|
83803
|
+
def bl_rna_get_subclass_py(
|
|
83804
|
+
cls, id: typing.Optional[str], default=None
|
|
83805
|
+
) -> typing.Any:
|
|
83806
|
+
"""
|
|
83807
|
+
|
|
83808
|
+
:param id: The RNA type identifier.
|
|
83809
|
+
:type id: typing.Optional[str]
|
|
83810
|
+
:rtype: typing.Any
|
|
83811
|
+
:return: The class or default when not found.
|
|
83812
|
+
"""
|
|
83813
|
+
...
|
|
83814
|
+
|
|
83815
|
+
class MESH_UL_uvmaps(UIList, bpy_struct):
|
|
83384
83816
|
def draw_item(
|
|
83385
83817
|
self,
|
|
83386
83818
|
_context,
|
|
83387
83819
|
layout,
|
|
83388
83820
|
_data,
|
|
83389
|
-
|
|
83390
|
-
|
|
83821
|
+
item,
|
|
83822
|
+
icon,
|
|
83391
83823
|
_active_data,
|
|
83392
83824
|
_active_propname,
|
|
83393
83825
|
_index,
|
|
83394
83826
|
): ...
|
|
83395
|
-
def filter_items(self, _context, data, property): ...
|
|
83396
83827
|
@classmethod
|
|
83397
83828
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
83398
83829
|
"""
|
|
@@ -83417,9 +83848,17 @@ class MESH_UL_color_attributes_selector(UIList, bpy_struct):
|
|
|
83417
83848
|
"""
|
|
83418
83849
|
...
|
|
83419
83850
|
|
|
83420
|
-
class
|
|
83851
|
+
class MESH_UL_vgroups(UIList, bpy_struct):
|
|
83421
83852
|
def draw_item(
|
|
83422
|
-
self,
|
|
83853
|
+
self,
|
|
83854
|
+
_context,
|
|
83855
|
+
layout,
|
|
83856
|
+
_data,
|
|
83857
|
+
item,
|
|
83858
|
+
icon,
|
|
83859
|
+
_active_data_,
|
|
83860
|
+
_active_propname,
|
|
83861
|
+
_index,
|
|
83423
83862
|
): ...
|
|
83424
83863
|
@classmethod
|
|
83425
83864
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
@@ -83445,7 +83884,7 @@ class MESH_UL_shape_keys(UIList, bpy_struct):
|
|
|
83445
83884
|
"""
|
|
83446
83885
|
...
|
|
83447
83886
|
|
|
83448
|
-
class
|
|
83887
|
+
class NODE_UL_bake_node_items(UIList, bpy_struct):
|
|
83449
83888
|
def draw_item(
|
|
83450
83889
|
self,
|
|
83451
83890
|
_context,
|
|
@@ -83481,7 +83920,7 @@ class MESH_UL_uvmaps(UIList, bpy_struct):
|
|
|
83481
83920
|
"""
|
|
83482
83921
|
...
|
|
83483
83922
|
|
|
83484
|
-
class
|
|
83923
|
+
class NODE_UL_repeat_zone_items(UIList, bpy_struct):
|
|
83485
83924
|
def draw_item(
|
|
83486
83925
|
self,
|
|
83487
83926
|
_context,
|
|
@@ -83489,10 +83928,176 @@ class MESH_UL_vgroups(UIList, bpy_struct):
|
|
|
83489
83928
|
_data,
|
|
83490
83929
|
item,
|
|
83491
83930
|
icon,
|
|
83492
|
-
|
|
83931
|
+
_active_data,
|
|
83932
|
+
_active_propname,
|
|
83933
|
+
_index,
|
|
83934
|
+
): ...
|
|
83935
|
+
@classmethod
|
|
83936
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
83937
|
+
"""
|
|
83938
|
+
|
|
83939
|
+
:param id: The RNA type identifier.
|
|
83940
|
+
:type id: typing.Optional[str]
|
|
83941
|
+
:rtype: 'Struct'
|
|
83942
|
+
:return: The RNA type or default when not found.
|
|
83943
|
+
"""
|
|
83944
|
+
...
|
|
83945
|
+
|
|
83946
|
+
@classmethod
|
|
83947
|
+
def bl_rna_get_subclass_py(
|
|
83948
|
+
cls, id: typing.Optional[str], default=None
|
|
83949
|
+
) -> typing.Any:
|
|
83950
|
+
"""
|
|
83951
|
+
|
|
83952
|
+
:param id: The RNA type identifier.
|
|
83953
|
+
:type id: typing.Optional[str]
|
|
83954
|
+
:rtype: typing.Any
|
|
83955
|
+
:return: The class or default when not found.
|
|
83956
|
+
"""
|
|
83957
|
+
...
|
|
83958
|
+
|
|
83959
|
+
class NODE_UL_simulation_zone_items(UIList, bpy_struct):
|
|
83960
|
+
def draw_item(
|
|
83961
|
+
self, context, layout, _data, item, icon, _active_data, _active_propname, _index
|
|
83962
|
+
): ...
|
|
83963
|
+
@classmethod
|
|
83964
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
83965
|
+
"""
|
|
83966
|
+
|
|
83967
|
+
:param id: The RNA type identifier.
|
|
83968
|
+
:type id: typing.Optional[str]
|
|
83969
|
+
:rtype: 'Struct'
|
|
83970
|
+
:return: The RNA type or default when not found.
|
|
83971
|
+
"""
|
|
83972
|
+
...
|
|
83973
|
+
|
|
83974
|
+
@classmethod
|
|
83975
|
+
def bl_rna_get_subclass_py(
|
|
83976
|
+
cls, id: typing.Optional[str], default=None
|
|
83977
|
+
) -> typing.Any:
|
|
83978
|
+
"""
|
|
83979
|
+
|
|
83980
|
+
:param id: The RNA type identifier.
|
|
83981
|
+
:type id: typing.Optional[str]
|
|
83982
|
+
:rtype: typing.Any
|
|
83983
|
+
:return: The class or default when not found.
|
|
83984
|
+
"""
|
|
83985
|
+
...
|
|
83986
|
+
|
|
83987
|
+
class PARTICLE_UL_particle_systems(UIList, bpy_struct):
|
|
83988
|
+
def draw_item(
|
|
83989
|
+
self,
|
|
83990
|
+
_context,
|
|
83991
|
+
layout,
|
|
83992
|
+
data,
|
|
83993
|
+
item,
|
|
83994
|
+
icon,
|
|
83995
|
+
_active_data,
|
|
83996
|
+
_active_propname,
|
|
83997
|
+
_index,
|
|
83998
|
+
_flt_flag,
|
|
83999
|
+
): ...
|
|
84000
|
+
@classmethod
|
|
84001
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
84002
|
+
"""
|
|
84003
|
+
|
|
84004
|
+
:param id: The RNA type identifier.
|
|
84005
|
+
:type id: typing.Optional[str]
|
|
84006
|
+
:rtype: 'Struct'
|
|
84007
|
+
:return: The RNA type or default when not found.
|
|
84008
|
+
"""
|
|
84009
|
+
...
|
|
84010
|
+
|
|
84011
|
+
@classmethod
|
|
84012
|
+
def bl_rna_get_subclass_py(
|
|
84013
|
+
cls, id: typing.Optional[str], default=None
|
|
84014
|
+
) -> typing.Any:
|
|
84015
|
+
"""
|
|
84016
|
+
|
|
84017
|
+
:param id: The RNA type identifier.
|
|
84018
|
+
:type id: typing.Optional[str]
|
|
84019
|
+
:rtype: typing.Any
|
|
84020
|
+
:return: The class or default when not found.
|
|
84021
|
+
"""
|
|
84022
|
+
...
|
|
84023
|
+
|
|
84024
|
+
class PHYSICS_UL_dynapaint_surfaces(UIList, bpy_struct):
|
|
84025
|
+
def draw_item(
|
|
84026
|
+
self,
|
|
84027
|
+
_context,
|
|
84028
|
+
layout,
|
|
84029
|
+
_data,
|
|
84030
|
+
item,
|
|
84031
|
+
icon,
|
|
84032
|
+
_active_data,
|
|
84033
|
+
_active_propname,
|
|
84034
|
+
_index,
|
|
84035
|
+
): ...
|
|
84036
|
+
@classmethod
|
|
84037
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
84038
|
+
"""
|
|
84039
|
+
|
|
84040
|
+
:param id: The RNA type identifier.
|
|
84041
|
+
:type id: typing.Optional[str]
|
|
84042
|
+
:rtype: 'Struct'
|
|
84043
|
+
:return: The RNA type or default when not found.
|
|
84044
|
+
"""
|
|
84045
|
+
...
|
|
84046
|
+
|
|
84047
|
+
@classmethod
|
|
84048
|
+
def bl_rna_get_subclass_py(
|
|
84049
|
+
cls, id: typing.Optional[str], default=None
|
|
84050
|
+
) -> typing.Any:
|
|
84051
|
+
"""
|
|
84052
|
+
|
|
84053
|
+
:param id: The RNA type identifier.
|
|
84054
|
+
:type id: typing.Optional[str]
|
|
84055
|
+
:rtype: typing.Any
|
|
84056
|
+
:return: The class or default when not found.
|
|
84057
|
+
"""
|
|
84058
|
+
...
|
|
84059
|
+
|
|
84060
|
+
class POINTCLOUD_UL_attributes(UIList, bpy_struct):
|
|
84061
|
+
def draw_item(
|
|
84062
|
+
self,
|
|
84063
|
+
_context,
|
|
84064
|
+
layout,
|
|
84065
|
+
_data,
|
|
84066
|
+
attribute,
|
|
84067
|
+
_icon,
|
|
84068
|
+
_active_data,
|
|
83493
84069
|
_active_propname,
|
|
83494
84070
|
_index,
|
|
83495
84071
|
): ...
|
|
84072
|
+
def filter_items(self, _context, data, property): ...
|
|
84073
|
+
@classmethod
|
|
84074
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
84075
|
+
"""
|
|
84076
|
+
|
|
84077
|
+
:param id: The RNA type identifier.
|
|
84078
|
+
:type id: typing.Optional[str]
|
|
84079
|
+
:rtype: 'Struct'
|
|
84080
|
+
:return: The RNA type or default when not found.
|
|
84081
|
+
"""
|
|
84082
|
+
...
|
|
84083
|
+
|
|
84084
|
+
@classmethod
|
|
84085
|
+
def bl_rna_get_subclass_py(
|
|
84086
|
+
cls, id: typing.Optional[str], default=None
|
|
84087
|
+
) -> typing.Any:
|
|
84088
|
+
"""
|
|
84089
|
+
|
|
84090
|
+
:param id: The RNA type identifier.
|
|
84091
|
+
:type id: typing.Optional[str]
|
|
84092
|
+
:rtype: typing.Any
|
|
84093
|
+
:return: The class or default when not found.
|
|
84094
|
+
"""
|
|
84095
|
+
...
|
|
84096
|
+
|
|
84097
|
+
class RENDER_UL_renderviews(UIList, bpy_struct):
|
|
84098
|
+
def draw_item(
|
|
84099
|
+
self, _context, layout, _data, item, icon, _active_data, _active_propname, index
|
|
84100
|
+
): ...
|
|
83496
84101
|
@classmethod
|
|
83497
84102
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
83498
84103
|
"""
|
|
@@ -83517,17 +84122,9 @@ class MESH_UL_vgroups(UIList, bpy_struct):
|
|
|
83517
84122
|
"""
|
|
83518
84123
|
...
|
|
83519
84124
|
|
|
83520
|
-
class
|
|
84125
|
+
class SCENE_UL_gltf2_filter_action(UIList, bpy_struct):
|
|
83521
84126
|
def draw_item(
|
|
83522
|
-
self,
|
|
83523
|
-
_context,
|
|
83524
|
-
layout,
|
|
83525
|
-
_data,
|
|
83526
|
-
item,
|
|
83527
|
-
icon,
|
|
83528
|
-
_active_data,
|
|
83529
|
-
_active_propname,
|
|
83530
|
-
_index,
|
|
84127
|
+
self, context, layout, data, item, icon, active_data, active_propname, index
|
|
83531
84128
|
): ...
|
|
83532
84129
|
@classmethod
|
|
83533
84130
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
@@ -83553,7 +84150,7 @@ class NODE_UL_bake_node_items(UIList, bpy_struct):
|
|
|
83553
84150
|
"""
|
|
83554
84151
|
...
|
|
83555
84152
|
|
|
83556
|
-
class
|
|
84153
|
+
class SCENE_UL_keying_set_paths(UIList, bpy_struct):
|
|
83557
84154
|
def draw_item(
|
|
83558
84155
|
self,
|
|
83559
84156
|
_context,
|
|
@@ -83589,46 +84186,17 @@ class NODE_UL_repeat_zone_items(UIList, bpy_struct):
|
|
|
83589
84186
|
"""
|
|
83590
84187
|
...
|
|
83591
84188
|
|
|
83592
|
-
class
|
|
83593
|
-
def draw_item(
|
|
83594
|
-
self, context, layout, _data, item, icon, _active_data, _active_propname, _index
|
|
83595
|
-
): ...
|
|
83596
|
-
@classmethod
|
|
83597
|
-
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
83598
|
-
"""
|
|
83599
|
-
|
|
83600
|
-
:param id: The RNA type identifier.
|
|
83601
|
-
:type id: typing.Optional[str]
|
|
83602
|
-
:rtype: 'Struct'
|
|
83603
|
-
:return: The RNA type or default when not found.
|
|
83604
|
-
"""
|
|
83605
|
-
...
|
|
83606
|
-
|
|
83607
|
-
@classmethod
|
|
83608
|
-
def bl_rna_get_subclass_py(
|
|
83609
|
-
cls, id: typing.Optional[str], default=None
|
|
83610
|
-
) -> typing.Any:
|
|
83611
|
-
"""
|
|
83612
|
-
|
|
83613
|
-
:param id: The RNA type identifier.
|
|
83614
|
-
:type id: typing.Optional[str]
|
|
83615
|
-
:rtype: typing.Any
|
|
83616
|
-
:return: The class or default when not found.
|
|
83617
|
-
"""
|
|
83618
|
-
...
|
|
83619
|
-
|
|
83620
|
-
class PARTICLE_UL_particle_systems(UIList, bpy_struct):
|
|
84189
|
+
class TEXTURE_UL_texpaintslots(UIList, bpy_struct):
|
|
83621
84190
|
def draw_item(
|
|
83622
84191
|
self,
|
|
83623
84192
|
_context,
|
|
83624
84193
|
layout,
|
|
83625
|
-
|
|
84194
|
+
_data,
|
|
83626
84195
|
item,
|
|
83627
|
-
|
|
84196
|
+
_icon,
|
|
83628
84197
|
_active_data,
|
|
83629
84198
|
_active_propname,
|
|
83630
84199
|
_index,
|
|
83631
|
-
_flt_flag,
|
|
83632
84200
|
): ...
|
|
83633
84201
|
@classmethod
|
|
83634
84202
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
@@ -83654,7 +84222,7 @@ class PARTICLE_UL_particle_systems(UIList, bpy_struct):
|
|
|
83654
84222
|
"""
|
|
83655
84223
|
...
|
|
83656
84224
|
|
|
83657
|
-
class
|
|
84225
|
+
class TEXTURE_UL_texslots(UIList, bpy_struct):
|
|
83658
84226
|
def draw_item(
|
|
83659
84227
|
self,
|
|
83660
84228
|
_context,
|
|
@@ -83690,75 +84258,19 @@ class PHYSICS_UL_dynapaint_surfaces(UIList, bpy_struct):
|
|
|
83690
84258
|
"""
|
|
83691
84259
|
...
|
|
83692
84260
|
|
|
83693
|
-
class
|
|
83694
|
-
|
|
83695
|
-
|
|
83696
|
-
|
|
83697
|
-
|
|
83698
|
-
|
|
83699
|
-
attribute,
|
|
83700
|
-
_icon,
|
|
83701
|
-
_active_data,
|
|
83702
|
-
_active_propname,
|
|
83703
|
-
_index,
|
|
83704
|
-
): ...
|
|
83705
|
-
def filter_items(self, _context, data, property): ...
|
|
83706
|
-
@classmethod
|
|
83707
|
-
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
83708
|
-
"""
|
|
83709
|
-
|
|
83710
|
-
:param id: The RNA type identifier.
|
|
83711
|
-
:type id: typing.Optional[str]
|
|
83712
|
-
:rtype: 'Struct'
|
|
83713
|
-
:return: The RNA type or default when not found.
|
|
83714
|
-
"""
|
|
83715
|
-
...
|
|
83716
|
-
|
|
83717
|
-
@classmethod
|
|
83718
|
-
def bl_rna_get_subclass_py(
|
|
83719
|
-
cls, id: typing.Optional[str], default=None
|
|
83720
|
-
) -> typing.Any:
|
|
83721
|
-
"""
|
|
83722
|
-
|
|
83723
|
-
:param id: The RNA type identifier.
|
|
83724
|
-
:type id: typing.Optional[str]
|
|
83725
|
-
:rtype: typing.Any
|
|
83726
|
-
:return: The class or default when not found.
|
|
83727
|
-
"""
|
|
83728
|
-
...
|
|
83729
|
-
|
|
83730
|
-
class RENDER_UL_renderviews(UIList, bpy_struct):
|
|
83731
|
-
def draw_item(
|
|
83732
|
-
self, _context, layout, _data, item, icon, _active_data, _active_propname, index
|
|
83733
|
-
): ...
|
|
83734
|
-
@classmethod
|
|
83735
|
-
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
83736
|
-
"""
|
|
83737
|
-
|
|
83738
|
-
:param id: The RNA type identifier.
|
|
83739
|
-
:type id: typing.Optional[str]
|
|
83740
|
-
:rtype: 'Struct'
|
|
83741
|
-
:return: The RNA type or default when not found.
|
|
83742
|
-
"""
|
|
84261
|
+
class UI_UL_list(UIList, bpy_struct):
|
|
84262
|
+
@staticmethod
|
|
84263
|
+
def filter_items_by_name(
|
|
84264
|
+
pattern, bitflag, items, propname="name", flags=None, reverse=False
|
|
84265
|
+
):
|
|
84266
|
+
"""Set FILTER_ITEM for items which name matches filter_name one (case-insensitive). pattern is the filtering pattern. propname is the name of the string property to use for filtering. flags must be a list of integers the same length as items, or None! return a list of flags (based on given flags if not None), or an empty list if no flags were given and no filtering has been done."""
|
|
83743
84267
|
...
|
|
83744
84268
|
|
|
83745
|
-
@
|
|
83746
|
-
def
|
|
83747
|
-
|
|
83748
|
-
) -> typing.Any:
|
|
83749
|
-
"""
|
|
83750
|
-
|
|
83751
|
-
:param id: The RNA type identifier.
|
|
83752
|
-
:type id: typing.Optional[str]
|
|
83753
|
-
:rtype: typing.Any
|
|
83754
|
-
:return: The class or default when not found.
|
|
83755
|
-
"""
|
|
84269
|
+
@staticmethod
|
|
84270
|
+
def sort_items_helper(sort_data, key, reverse=False):
|
|
84271
|
+
"""Common sorting utility. Returns a neworder list mapping org_idx -> new_idx. sort_data must be an (unordered) list of tuples [(org_idx, ...), (org_idx, ...), ...]. key must be the same kind of callable you would use for sorted() builtin function. reverse will reverse the sorting!"""
|
|
83756
84272
|
...
|
|
83757
84273
|
|
|
83758
|
-
class SCENE_UL_gltf2_filter_action(UIList, bpy_struct):
|
|
83759
|
-
def draw_item(
|
|
83760
|
-
self, context, layout, data, item, icon, active_data, active_propname, index
|
|
83761
|
-
): ...
|
|
83762
84274
|
@classmethod
|
|
83763
84275
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
83764
84276
|
"""
|
|
@@ -83783,7 +84295,7 @@ class SCENE_UL_gltf2_filter_action(UIList, bpy_struct):
|
|
|
83783
84295
|
"""
|
|
83784
84296
|
...
|
|
83785
84297
|
|
|
83786
|
-
class
|
|
84298
|
+
class USERPREF_UL_asset_libraries(UIList, bpy_struct):
|
|
83787
84299
|
def draw_item(
|
|
83788
84300
|
self,
|
|
83789
84301
|
_context,
|
|
@@ -83819,14 +84331,14 @@ class SCENE_UL_keying_set_paths(UIList, bpy_struct):
|
|
|
83819
84331
|
"""
|
|
83820
84332
|
...
|
|
83821
84333
|
|
|
83822
|
-
class
|
|
84334
|
+
class USERPREF_UL_extension_repos(UIList, bpy_struct):
|
|
83823
84335
|
def draw_item(
|
|
83824
84336
|
self,
|
|
83825
84337
|
_context,
|
|
83826
84338
|
layout,
|
|
83827
84339
|
_data,
|
|
83828
84340
|
item,
|
|
83829
|
-
|
|
84341
|
+
icon,
|
|
83830
84342
|
_active_data,
|
|
83831
84343
|
_active_propname,
|
|
83832
84344
|
_index,
|
|
@@ -83855,17 +84367,9 @@ class TEXTURE_UL_texpaintslots(UIList, bpy_struct):
|
|
|
83855
84367
|
"""
|
|
83856
84368
|
...
|
|
83857
84369
|
|
|
83858
|
-
class
|
|
84370
|
+
class VIEWLAYER_UL_aov(UIList, bpy_struct):
|
|
83859
84371
|
def draw_item(
|
|
83860
|
-
self,
|
|
83861
|
-
_context,
|
|
83862
|
-
layout,
|
|
83863
|
-
_data,
|
|
83864
|
-
item,
|
|
83865
|
-
icon,
|
|
83866
|
-
_active_data,
|
|
83867
|
-
_active_propname,
|
|
83868
|
-
_index,
|
|
84372
|
+
self, _context, layout, _data, item, icon, _active_data, _active_propname
|
|
83869
84373
|
): ...
|
|
83870
84374
|
@classmethod
|
|
83871
84375
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
@@ -83891,54 +84395,9 @@ class TEXTURE_UL_texslots(UIList, bpy_struct):
|
|
|
83891
84395
|
"""
|
|
83892
84396
|
...
|
|
83893
84397
|
|
|
83894
|
-
class
|
|
83895
|
-
@staticmethod
|
|
83896
|
-
def filter_items_by_name(
|
|
83897
|
-
pattern, bitflag, items, propname="name", flags=None, reverse=False
|
|
83898
|
-
):
|
|
83899
|
-
"""Set FILTER_ITEM for items which name matches filter_name one (case-insensitive). pattern is the filtering pattern. propname is the name of the string property to use for filtering. flags must be a list of integers the same length as items, or None! return a list of flags (based on given flags if not None), or an empty list if no flags were given and no filtering has been done."""
|
|
83900
|
-
...
|
|
83901
|
-
|
|
83902
|
-
@staticmethod
|
|
83903
|
-
def sort_items_helper(sort_data, key, reverse=False):
|
|
83904
|
-
"""Common sorting utility. Returns a neworder list mapping org_idx -> new_idx. sort_data must be an (unordered) list of tuples [(org_idx, ...), (org_idx, ...), ...]. key must be the same kind of callable you would use for sorted() builtin function. reverse will reverse the sorting!"""
|
|
83905
|
-
...
|
|
83906
|
-
|
|
83907
|
-
@classmethod
|
|
83908
|
-
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
83909
|
-
"""
|
|
83910
|
-
|
|
83911
|
-
:param id: The RNA type identifier.
|
|
83912
|
-
:type id: typing.Optional[str]
|
|
83913
|
-
:rtype: 'Struct'
|
|
83914
|
-
:return: The RNA type or default when not found.
|
|
83915
|
-
"""
|
|
83916
|
-
...
|
|
83917
|
-
|
|
83918
|
-
@classmethod
|
|
83919
|
-
def bl_rna_get_subclass_py(
|
|
83920
|
-
cls, id: typing.Optional[str], default=None
|
|
83921
|
-
) -> typing.Any:
|
|
83922
|
-
"""
|
|
83923
|
-
|
|
83924
|
-
:param id: The RNA type identifier.
|
|
83925
|
-
:type id: typing.Optional[str]
|
|
83926
|
-
:rtype: typing.Any
|
|
83927
|
-
:return: The class or default when not found.
|
|
83928
|
-
"""
|
|
83929
|
-
...
|
|
83930
|
-
|
|
83931
|
-
class USERPREF_UL_asset_libraries(UIList, bpy_struct):
|
|
84398
|
+
class VIEWLAYER_UL_linesets(UIList, bpy_struct):
|
|
83932
84399
|
def draw_item(
|
|
83933
|
-
self,
|
|
83934
|
-
_context,
|
|
83935
|
-
layout,
|
|
83936
|
-
_data,
|
|
83937
|
-
item,
|
|
83938
|
-
icon,
|
|
83939
|
-
_active_data,
|
|
83940
|
-
_active_propname,
|
|
83941
|
-
_index,
|
|
84400
|
+
self, _context, layout, _data, item, icon, _active_data, _active_propname, index
|
|
83942
84401
|
): ...
|
|
83943
84402
|
@classmethod
|
|
83944
84403
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
@@ -83964,14 +84423,14 @@ class USERPREF_UL_asset_libraries(UIList, bpy_struct):
|
|
|
83964
84423
|
"""
|
|
83965
84424
|
...
|
|
83966
84425
|
|
|
83967
|
-
class
|
|
84426
|
+
class VOLUME_UL_grids(UIList, bpy_struct):
|
|
83968
84427
|
def draw_item(
|
|
83969
84428
|
self,
|
|
83970
84429
|
_context,
|
|
83971
84430
|
layout,
|
|
83972
84431
|
_data,
|
|
83973
|
-
|
|
83974
|
-
|
|
84432
|
+
grid,
|
|
84433
|
+
_icon,
|
|
83975
84434
|
_active_data,
|
|
83976
84435
|
_active_propname,
|
|
83977
84436
|
_index,
|
|
@@ -84000,74 +84459,19 @@ class USERPREF_UL_extension_repos(UIList, bpy_struct):
|
|
|
84000
84459
|
"""
|
|
84001
84460
|
...
|
|
84002
84461
|
|
|
84003
|
-
class
|
|
84004
|
-
def draw_item(
|
|
84005
|
-
self, _context, layout, _data, item, icon, _active_data, _active_propname
|
|
84006
|
-
): ...
|
|
84007
|
-
@classmethod
|
|
84008
|
-
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
84009
|
-
"""
|
|
84010
|
-
|
|
84011
|
-
:param id: The RNA type identifier.
|
|
84012
|
-
:type id: typing.Optional[str]
|
|
84013
|
-
:rtype: 'Struct'
|
|
84014
|
-
:return: The RNA type or default when not found.
|
|
84015
|
-
"""
|
|
84016
|
-
...
|
|
84017
|
-
|
|
84018
|
-
@classmethod
|
|
84019
|
-
def bl_rna_get_subclass_py(
|
|
84020
|
-
cls, id: typing.Optional[str], default=None
|
|
84021
|
-
) -> typing.Any:
|
|
84022
|
-
"""
|
|
84023
|
-
|
|
84024
|
-
:param id: The RNA type identifier.
|
|
84025
|
-
:type id: typing.Optional[str]
|
|
84026
|
-
:rtype: typing.Any
|
|
84027
|
-
:return: The class or default when not found.
|
|
84028
|
-
"""
|
|
84029
|
-
...
|
|
84030
|
-
|
|
84031
|
-
class VIEWLAYER_UL_linesets(UIList, bpy_struct):
|
|
84032
|
-
def draw_item(
|
|
84033
|
-
self, _context, layout, _data, item, icon, _active_data, _active_propname, index
|
|
84034
|
-
): ...
|
|
84035
|
-
@classmethod
|
|
84036
|
-
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
84037
|
-
"""
|
|
84038
|
-
|
|
84039
|
-
:param id: The RNA type identifier.
|
|
84040
|
-
:type id: typing.Optional[str]
|
|
84041
|
-
:rtype: 'Struct'
|
|
84042
|
-
:return: The RNA type or default when not found.
|
|
84043
|
-
"""
|
|
84044
|
-
...
|
|
84045
|
-
|
|
84046
|
-
@classmethod
|
|
84047
|
-
def bl_rna_get_subclass_py(
|
|
84048
|
-
cls, id: typing.Optional[str], default=None
|
|
84049
|
-
) -> typing.Any:
|
|
84050
|
-
"""
|
|
84051
|
-
|
|
84052
|
-
:param id: The RNA type identifier.
|
|
84053
|
-
:type id: typing.Optional[str]
|
|
84054
|
-
:rtype: typing.Any
|
|
84055
|
-
:return: The class or default when not found.
|
|
84056
|
-
"""
|
|
84057
|
-
...
|
|
84058
|
-
|
|
84059
|
-
class VOLUME_UL_grids(UIList, bpy_struct):
|
|
84462
|
+
class WORKSPACE_UL_addons_items(UIList, bpy_struct):
|
|
84060
84463
|
def draw_item(
|
|
84061
84464
|
self,
|
|
84062
|
-
|
|
84465
|
+
context,
|
|
84063
84466
|
layout,
|
|
84064
84467
|
_data,
|
|
84065
|
-
|
|
84066
|
-
|
|
84468
|
+
addon,
|
|
84469
|
+
icon,
|
|
84067
84470
|
_active_data,
|
|
84068
84471
|
_active_propname,
|
|
84069
84472
|
_index,
|
|
84070
84473
|
): ...
|
|
84474
|
+
def filter_items(self, _context, data, property): ...
|
|
84071
84475
|
@classmethod
|
|
84072
84476
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
84073
84477
|
"""
|
|
@@ -128446,6 +128850,8 @@ ARMATURE_MT_collection_context_menu: "bl_ui.properties_data_armature.ARMATURE_MT
|
|
|
128446
128850
|
|
|
128447
128851
|
ARMATURE_MT_collection_tree_context_menu: "bl_ui.properties_data_armature.ARMATURE_MT_collection_tree_context_menu"
|
|
128448
128852
|
|
|
128853
|
+
ARMATURE_OT_collection_remove_unused: "bl_operators.anim.ARMATURE_OT_collection_remove_unused"
|
|
128854
|
+
|
|
128449
128855
|
ARMATURE_OT_collection_show_all: "bl_operators.anim.ARMATURE_OT_collection_show_all"
|
|
128450
128856
|
|
|
128451
128857
|
ARMATURE_OT_collection_solo_visibility: "bl_operators.anim.ARMATURE_OT_collection_solo_visibility"
|
|
@@ -130756,6 +131162,8 @@ USERPREF_MT_view: "bl_ui.space_userpref.USERPREF_MT_view"
|
|
|
130756
131162
|
|
|
130757
131163
|
USERPREF_PT_addons: "bl_ui.space_userpref.USERPREF_PT_addons"
|
|
130758
131164
|
|
|
131165
|
+
USERPREF_PT_addons_filter: "bl_ui.space_userpref.USERPREF_PT_addons_filter"
|
|
131166
|
+
|
|
130759
131167
|
USERPREF_PT_animation_fcurves: "bl_ui.space_userpref.USERPREF_PT_animation_fcurves"
|
|
130760
131168
|
|
|
130761
131169
|
USERPREF_PT_animation_keyframes: "bl_ui.space_userpref.USERPREF_PT_animation_keyframes"
|
|
@@ -131774,6 +132182,8 @@ WORKSPACE_PT_custom_props: "bl_ui.properties_workspace.WORKSPACE_PT_custom_props
|
|
|
131774
132182
|
|
|
131775
132183
|
WORKSPACE_PT_main: "bl_ui.properties_workspace.WORKSPACE_PT_main"
|
|
131776
132184
|
|
|
132185
|
+
WORKSPACE_UL_addons_items: "bl_ui.properties_workspace.WORKSPACE_UL_addons_items"
|
|
132186
|
+
|
|
131777
132187
|
WORLD_PT_context_world: "bl_ui.properties_world.WORLD_PT_context_world"
|
|
131778
132188
|
|
|
131779
132189
|
WORLD_PT_custom_props: "bl_ui.properties_world.WORLD_PT_custom_props"
|