fake-bpy-module 20240122__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 +1 -1
- bl_i18n_utils/__init__.pyi +4 -4
- bl_keymap_utils/__init__.pyi +2 -2
- bl_operators/__init__.pyi +22 -22
- 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/space_topbar/__init__.pyi +1 -0
- bl_ui/space_userpref/__init__.pyi +39 -0
- bpy/__init__.pyi +3 -3
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +63 -63
- 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 +609 -244
- bpy_extras/__init__.pyi +1 -1
- bpy_types/__init__.pyi +29 -0
- {fake_bpy_module-20240122.dist-info → fake_bpy_module-20240125.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240122.dist-info → fake_bpy_module-20240125.dist-info}/RECORD +29 -29
- {fake_bpy_module-20240122.dist-info → fake_bpy_module-20240125.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240122.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.properties_material
|
|
6
|
-
import bl_ui.space_spreadsheet
|
|
7
|
-
import bl_operators.presets
|
|
8
|
-
import bl_operators.file
|
|
9
|
-
import bl_ui.properties_render
|
|
10
|
-
import bl_ui.properties_data_curves
|
|
11
|
-
import bl_ui.properties_physics_rigidbody_constraint
|
|
12
|
-
import bl_ui.properties_physics_cloth
|
|
13
|
-
import bl_ui.properties_freestyle
|
|
14
|
-
import bl_ui.node_add_menu
|
|
15
|
-
import bl_ui.space_node
|
|
16
|
-
import bl_ui.space_time
|
|
17
|
-
import bl_ui.space_dopesheet
|
|
18
|
-
import bl_ui.properties_scene
|
|
19
|
-
import bl_ui.space_toolsystem_common
|
|
20
|
-
import bl_ui.space_toolsystem_toolbar
|
|
21
|
-
import bl_ui.properties_workspace
|
|
22
|
-
import bl_operators.view3d
|
|
23
|
-
import bl_ui.properties_constraint
|
|
24
|
-
import bl_operators.wm
|
|
25
|
-
import bl_operators.spreadsheet
|
|
26
|
-
import bl_operators.object
|
|
27
|
-
import bl_ui.node_add_menu_shader
|
|
28
|
-
import bl_ui.properties_data_gpencil
|
|
29
|
-
import bl_ui.space_text
|
|
30
|
-
import bl_ui.properties_material_gpencil
|
|
31
|
-
import bl_ui.properties_paint_common
|
|
32
|
-
import bl_ui.properties_world
|
|
33
|
-
import bl_ui.properties_collection
|
|
34
|
-
import bl_ui.properties_data_pointcloud
|
|
35
|
-
import bl_ui.space_userpref
|
|
36
|
-
import bl_ui.properties_output
|
|
37
|
-
import bl_ui.node_add_menu_geometry
|
|
38
5
|
import bl_ui.space_view3d_toolbar
|
|
39
|
-
import bl_ui.properties_data_bone
|
|
40
|
-
import bl_ui.space_nla
|
|
41
|
-
import bl_ui.properties_data_curve
|
|
42
|
-
import bl_ui.space_view3d
|
|
43
|
-
import bl_ui.properties_data_modifier
|
|
44
|
-
import bl_operators.assets
|
|
45
|
-
import bl_ui.space_filebrowser
|
|
46
|
-
import bl_operators.anim
|
|
47
|
-
import bl_ui.properties_data_shaderfx
|
|
48
|
-
import bl_ui.properties_view_layer
|
|
49
|
-
import bl_ui.properties_physics_fluid
|
|
50
|
-
import bl_ui.properties_physics_softbody
|
|
51
6
|
import bl_operators.userpref
|
|
52
|
-
import bl_ui.
|
|
53
|
-
import bl_ui.properties_data_lightprobe
|
|
54
|
-
import bl_ui.properties_physics_common
|
|
55
|
-
import bl_ui.properties_physics_dynamicpaint
|
|
7
|
+
import bl_ui.properties_particle
|
|
56
8
|
import bl_ui.properties_physics_geometry_nodes
|
|
57
|
-
import bl_ui.
|
|
9
|
+
import bl_ui.properties_paint_common
|
|
10
|
+
import bl_ui.space_nla
|
|
11
|
+
import bl_ui.node_add_menu
|
|
58
12
|
import bl_ui.properties_physics_rigidbody
|
|
59
|
-
import bl_ui.
|
|
60
|
-
import bl_ui.
|
|
61
|
-
import bl_ui.
|
|
62
|
-
import
|
|
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
|
|
63
17
|
import bl_ui.space_image
|
|
64
|
-
import bl_ui.
|
|
65
|
-
import bl_operators.
|
|
66
|
-
import bl_ui.
|
|
18
|
+
import bl_ui.node_add_menu_compositor
|
|
19
|
+
import bl_operators.node
|
|
20
|
+
import bl_ui.space_console
|
|
21
|
+
import bl_ui.properties_data_curves
|
|
22
|
+
import bl_ui.properties_data_camera
|
|
67
23
|
import bl_ui.properties_data_armature
|
|
68
|
-
import bl_ui.space_sequencer
|
|
69
|
-
import bl_ui
|
|
70
24
|
import bl_operators.constraint
|
|
71
|
-
import bl_ui.
|
|
72
|
-
import bl_ui.
|
|
73
|
-
import bl_ui.
|
|
25
|
+
import bl_ui.space_node
|
|
26
|
+
import bl_ui.generic_ui_list
|
|
27
|
+
import bl_ui.properties_freestyle
|
|
28
|
+
import bl_operators.freestyle
|
|
74
29
|
import bl_ui.properties_mask_common
|
|
75
|
-
import bl_ui.
|
|
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
|
|
36
|
+
import bl_ui.properties_material
|
|
76
37
|
import bl_ui.properties_texture
|
|
77
|
-
import bl_ui
|
|
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
|
|
44
|
+
import bl_ui.space_time
|
|
45
|
+
import bl_ui.space_filebrowser
|
|
46
|
+
import bl_ui.properties_physics_cloth
|
|
47
|
+
import bl_ui.space_info
|
|
78
48
|
import bl_ui.properties_object
|
|
79
|
-
import bl_ui.properties_data_light
|
|
80
49
|
import bl_ui.space_outliner
|
|
81
|
-
import bl_ui.
|
|
82
|
-
import bl_ui.
|
|
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
|
|
83
56
|
import bl_ui.space_properties
|
|
57
|
+
import bl_operators.assets
|
|
58
|
+
import bl_ui.properties_view_layer
|
|
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
|
|
64
|
+
import bl_operators.wm
|
|
65
|
+
import bl_ui.properties_data_lattice
|
|
66
|
+
import bl_ui.node_add_menu_shader
|
|
67
|
+
import bl_ui.properties_data_gpencil
|
|
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
|
|
74
|
+
import bl_ui.node_add_menu_geometry
|
|
75
|
+
import bl_ui.properties_data_light
|
|
76
|
+
import bl_operators.view3d
|
|
77
|
+
import bl_ui.properties_data_pointcloud
|
|
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
|
|
84
86
|
import bl_ui.properties_data_speaker
|
|
87
|
+
import bl_ui.space_spreadsheet
|
|
88
|
+
import bl_ui.space_sequencer
|
|
85
89
|
import bl_ui.node_add_menu_texture
|
|
86
|
-
import
|
|
87
|
-
import bl_ui.
|
|
88
|
-
import bl_ui.space_info
|
|
89
|
-
import bl_ui.properties_data_metaball
|
|
90
|
-
import bl_operators.node
|
|
91
|
-
import bl_ui.properties_particle
|
|
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): ...
|
|
@@ -6832,10 +6832,10 @@ class Context(bpy_struct):
|
|
|
6832
6832
|
:type: 'UIList'
|
|
6833
6833
|
"""
|
|
6834
6834
|
|
|
6835
|
-
property: typing.Union[
|
|
6835
|
+
property: typing.Union[int, str, "AnyType"]
|
|
6836
6836
|
""" Get the property associated with a hovered button. Returns a tuple of the data-block, data path to the property, and array index.
|
|
6837
6837
|
|
|
6838
|
-
:type: typing.Union[
|
|
6838
|
+
:type: typing.Union[int, str, 'AnyType']
|
|
6839
6839
|
"""
|
|
6840
6840
|
|
|
6841
6841
|
edit_text: "Text"
|
|
@@ -14825,7 +14825,7 @@ class Gizmo(bpy_struct):
|
|
|
14825
14825
|
context: "Context",
|
|
14826
14826
|
event: "Event",
|
|
14827
14827
|
tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]],
|
|
14828
|
-
) -> typing.Union[typing.Set[
|
|
14828
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
14829
14829
|
"""
|
|
14830
14830
|
|
|
14831
14831
|
:param context:
|
|
@@ -14834,7 +14834,7 @@ class Gizmo(bpy_struct):
|
|
|
14834
14834
|
:type event: 'Event'
|
|
14835
14835
|
:param tweak: Tweak
|
|
14836
14836
|
:type tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
14837
|
-
:rtype: typing.Union[typing.Set[
|
|
14837
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
14838
14838
|
:return: result
|
|
14839
14839
|
"""
|
|
14840
14840
|
...
|
|
@@ -14842,14 +14842,14 @@ class Gizmo(bpy_struct):
|
|
|
14842
14842
|
def setup(self): ...
|
|
14843
14843
|
def invoke(
|
|
14844
14844
|
self, context: "Context", event: "Event"
|
|
14845
|
-
) -> typing.Union[typing.Set[
|
|
14845
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
14846
14846
|
"""
|
|
14847
14847
|
|
|
14848
14848
|
:param context:
|
|
14849
14849
|
:type context: 'Context'
|
|
14850
14850
|
:param event:
|
|
14851
14851
|
:type event: 'Event'
|
|
14852
|
-
:rtype: typing.Union[typing.Set[
|
|
14852
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
14853
14853
|
:return: result
|
|
14854
14854
|
"""
|
|
14855
14855
|
...
|
|
@@ -17314,10 +17314,10 @@ class KeyingSetInfo(bpy_struct):
|
|
|
17314
17314
|
:type: typing.Union[str, typing.Any]
|
|
17315
17315
|
"""
|
|
17316
17316
|
|
|
17317
|
-
bl_options: typing.Union[typing.Set[
|
|
17317
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17318
17318
|
""" Keying Set options to use when inserting keyframes
|
|
17319
17319
|
|
|
17320
|
-
:type: typing.Union[typing.Set[
|
|
17320
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17321
17321
|
"""
|
|
17322
17322
|
|
|
17323
17323
|
def poll(self, context: typing.Optional["Context"]) -> bool:
|
|
@@ -17789,10 +17789,10 @@ class Macro(bpy_struct):
|
|
|
17789
17789
|
:type: typing.Union[str, typing.Any]
|
|
17790
17790
|
"""
|
|
17791
17791
|
|
|
17792
|
-
bl_options: typing.Union[typing.Set[
|
|
17792
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17793
17793
|
""" Options for this operator type
|
|
17794
17794
|
|
|
17795
|
-
:type: typing.Union[typing.Set[
|
|
17795
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17796
17796
|
"""
|
|
17797
17797
|
|
|
17798
17798
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -17827,13 +17827,13 @@ class Macro(bpy_struct):
|
|
|
17827
17827
|
|
|
17828
17828
|
def report(
|
|
17829
17829
|
self,
|
|
17830
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
17830
|
+
type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]],
|
|
17831
17831
|
message: typing.Union[str, typing.Any],
|
|
17832
17832
|
):
|
|
17833
17833
|
"""report
|
|
17834
17834
|
|
|
17835
17835
|
:param type: Type
|
|
17836
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
17836
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
17837
17837
|
:param message: Report Message
|
|
17838
17838
|
:type message: typing.Union[str, typing.Any]
|
|
17839
17839
|
"""
|
|
@@ -22840,10 +22840,10 @@ class Operator(bpy_struct):
|
|
|
22840
22840
|
:type: typing.Union[str, typing.Any]
|
|
22841
22841
|
"""
|
|
22842
22842
|
|
|
22843
|
-
bl_options: typing.Union[typing.Set[
|
|
22843
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
22844
22844
|
""" Options for this operator type
|
|
22845
22845
|
|
|
22846
|
-
:type: typing.Union[typing.Set[
|
|
22846
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
22847
22847
|
"""
|
|
22848
22848
|
|
|
22849
22849
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -22902,13 +22902,13 @@ class Operator(bpy_struct):
|
|
|
22902
22902
|
|
|
22903
22903
|
def report(
|
|
22904
22904
|
self,
|
|
22905
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
22905
|
+
type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]],
|
|
22906
22906
|
message: typing.Union[str, typing.Any],
|
|
22907
22907
|
):
|
|
22908
22908
|
"""report
|
|
22909
22909
|
|
|
22910
22910
|
:param type: Type
|
|
22911
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
22911
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
22912
22912
|
:param message: Report Message
|
|
22913
22913
|
:type message: typing.Union[str, typing.Any]
|
|
22914
22914
|
"""
|
|
@@ -22934,12 +22934,12 @@ class Operator(bpy_struct):
|
|
|
22934
22934
|
|
|
22935
22935
|
def execute(
|
|
22936
22936
|
self, context: "Context"
|
|
22937
|
-
) -> typing.Union[typing.Set[
|
|
22937
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
22938
22938
|
"""Execute the operator
|
|
22939
22939
|
|
|
22940
22940
|
:param context:
|
|
22941
22941
|
:type context: 'Context'
|
|
22942
|
-
:rtype: typing.Union[typing.Set[
|
|
22942
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
22943
22943
|
:return: result
|
|
22944
22944
|
"""
|
|
22945
22945
|
...
|
|
@@ -22956,28 +22956,28 @@ class Operator(bpy_struct):
|
|
|
22956
22956
|
|
|
22957
22957
|
def invoke(
|
|
22958
22958
|
self, context: "Context", event: "Event"
|
|
22959
|
-
) -> typing.Union[typing.Set[
|
|
22959
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
22960
22960
|
"""Invoke the operator
|
|
22961
22961
|
|
|
22962
22962
|
:param context:
|
|
22963
22963
|
:type context: 'Context'
|
|
22964
22964
|
:param event:
|
|
22965
22965
|
:type event: 'Event'
|
|
22966
|
-
:rtype: typing.Union[typing.Set[
|
|
22966
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
22967
22967
|
:return: result
|
|
22968
22968
|
"""
|
|
22969
22969
|
...
|
|
22970
22970
|
|
|
22971
22971
|
def modal(
|
|
22972
22972
|
self, context: "Context", event: "Event"
|
|
22973
|
-
) -> typing.Union[typing.Set[
|
|
22973
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
22974
22974
|
"""Modal operator function
|
|
22975
22975
|
|
|
22976
22976
|
:param context:
|
|
22977
22977
|
:type context: 'Context'
|
|
22978
22978
|
:param event:
|
|
22979
22979
|
:type event: 'Event'
|
|
22980
|
-
:rtype: typing.Union[typing.Set[
|
|
22980
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
22981
22981
|
:return: result
|
|
22982
22982
|
"""
|
|
22983
22983
|
...
|
|
@@ -28877,13 +28877,13 @@ class RenderEngine(bpy_struct):
|
|
|
28877
28877
|
|
|
28878
28878
|
def report(
|
|
28879
28879
|
self,
|
|
28880
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
28880
|
+
type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]],
|
|
28881
28881
|
message: typing.Union[str, typing.Any],
|
|
28882
28882
|
):
|
|
28883
28883
|
"""Report info, warning or error messages
|
|
28884
28884
|
|
|
28885
28885
|
:param type: Type
|
|
28886
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
28886
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
28887
28887
|
:param message: Report Message
|
|
28888
28888
|
:type message: typing.Union[str, typing.Any]
|
|
28889
28889
|
"""
|
|
@@ -40050,10 +40050,10 @@ class ToolSettings(bpy_struct):
|
|
|
40050
40050
|
:type: typing.Union[str, int]
|
|
40051
40051
|
"""
|
|
40052
40052
|
|
|
40053
|
-
snap_elements: typing.Union[typing.Set[
|
|
40053
|
+
snap_elements: typing.Union[typing.Set[int], typing.Set[str]]
|
|
40054
40054
|
""" Type of element to snap to
|
|
40055
40055
|
|
|
40056
|
-
:type: typing.Union[typing.Set[
|
|
40056
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
40057
40057
|
"""
|
|
40058
40058
|
|
|
40059
40059
|
snap_elements_base: typing.Union[typing.Set[str], typing.Set[int]]
|
|
@@ -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
|
|
|
@@ -65103,14 +65130,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65103
65130
|
@classmethod
|
|
65104
65131
|
def invoke_props_popup(
|
|
65105
65132
|
cls, operator: typing.Optional["Operator"], event: typing.Optional["Event"]
|
|
65106
|
-
) -> typing.Union[typing.Set[
|
|
65133
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65107
65134
|
"""Operator popup invoke (show operator properties and execute it automatically on changes)
|
|
65108
65135
|
|
|
65109
65136
|
:param operator: Operator to call
|
|
65110
65137
|
:type operator: typing.Optional['Operator']
|
|
65111
65138
|
:param event: Event
|
|
65112
65139
|
:type event: typing.Optional['Event']
|
|
65113
|
-
:rtype: typing.Union[typing.Set[
|
|
65140
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65114
65141
|
:return: result
|
|
65115
65142
|
"""
|
|
65116
65143
|
...
|
|
@@ -65120,14 +65147,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65120
65147
|
cls,
|
|
65121
65148
|
operator: typing.Optional["Operator"],
|
|
65122
65149
|
width: typing.Optional[typing.Any] = 300,
|
|
65123
|
-
) -> typing.Union[typing.Set[
|
|
65150
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65124
65151
|
"""Operator dialog (non-autoexec popup) invoke (show operator properties and only execute it on click on OK button)
|
|
65125
65152
|
|
|
65126
65153
|
:param operator: Operator to call
|
|
65127
65154
|
:type operator: typing.Optional['Operator']
|
|
65128
65155
|
:param width: Width of the popup
|
|
65129
65156
|
:type width: typing.Optional[typing.Any]
|
|
65130
|
-
:rtype: typing.Union[typing.Set[
|
|
65157
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65131
65158
|
:return: result
|
|
65132
65159
|
"""
|
|
65133
65160
|
...
|
|
@@ -65146,14 +65173,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65146
65173
|
cls,
|
|
65147
65174
|
operator: typing.Optional["Operator"],
|
|
65148
65175
|
width: typing.Optional[typing.Any] = 300,
|
|
65149
|
-
) -> typing.Union[typing.Set[
|
|
65176
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65150
65177
|
"""Operator popup invoke (only shows operator's properties, without executing it)
|
|
65151
65178
|
|
|
65152
65179
|
:param operator: Operator to call
|
|
65153
65180
|
:type operator: typing.Optional['Operator']
|
|
65154
65181
|
:param width: Width of the popup
|
|
65155
65182
|
:type width: typing.Optional[typing.Any]
|
|
65156
|
-
:rtype: typing.Union[typing.Set[
|
|
65183
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65157
65184
|
:return: result
|
|
65158
65185
|
"""
|
|
65159
65186
|
...
|
|
@@ -65161,14 +65188,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65161
65188
|
@classmethod
|
|
65162
65189
|
def invoke_confirm(
|
|
65163
65190
|
cls, operator: typing.Optional["Operator"], event: typing.Optional["Event"]
|
|
65164
|
-
) -> typing.Union[typing.Set[
|
|
65191
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65165
65192
|
"""Operator confirmation popup (only to let user confirm the execution, no operator properties shown)
|
|
65166
65193
|
|
|
65167
65194
|
:param operator: Operator to call
|
|
65168
65195
|
:type operator: typing.Optional['Operator']
|
|
65169
65196
|
:param event: Event
|
|
65170
65197
|
:type event: typing.Optional['Event']
|
|
65171
|
-
:rtype: typing.Union[typing.Set[
|
|
65198
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65172
65199
|
:return: result
|
|
65173
65200
|
"""
|
|
65174
65201
|
...
|
|
@@ -68203,10 +68230,10 @@ class DecimateModifier(Modifier, bpy_struct):
|
|
|
68203
68230
|
:type: typing.Union[str, int]
|
|
68204
68231
|
"""
|
|
68205
68232
|
|
|
68206
|
-
delimit: typing.Union[typing.Set[
|
|
68233
|
+
delimit: typing.Union[typing.Set[int], typing.Set[str]]
|
|
68207
68234
|
""" Limit merging geometry
|
|
68208
68235
|
|
|
68209
|
-
:type: typing.Union[typing.Set[
|
|
68236
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
68210
68237
|
"""
|
|
68211
68238
|
|
|
68212
68239
|
face_count: int
|
|
@@ -68675,16 +68702,185 @@ class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
|
68675
68702
|
:type: int
|
|
68676
68703
|
"""
|
|
68677
68704
|
|
|
68678
|
-
saturation: float
|
|
68679
|
-
""" Color saturation factor
|
|
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.
|
|
68680
68824
|
|
|
68681
|
-
:type:
|
|
68825
|
+
:type: typing.Union[str, int]
|
|
68682
68826
|
"""
|
|
68683
68827
|
|
|
68684
|
-
|
|
68685
|
-
|
|
68828
|
+
rotation: typing.Union[
|
|
68829
|
+
typing.List[float], typing.Tuple[float, float, float], "mathutils.Euler"
|
|
68830
|
+
]
|
|
68831
|
+
""" Values for changes in rotation
|
|
68686
68832
|
|
|
68687
|
-
:type:
|
|
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
|
|
68688
68884
|
"""
|
|
68689
68885
|
|
|
68690
68886
|
use_layer_pass_filter: bool
|
|
@@ -68699,10 +68895,16 @@ class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
|
68699
68895
|
:type: bool
|
|
68700
68896
|
"""
|
|
68701
68897
|
|
|
68702
|
-
|
|
68703
|
-
"""
|
|
68898
|
+
use_uniform_random_scale: bool
|
|
68899
|
+
""" Use the same random seed for each scale axis for a uniform scale
|
|
68704
68900
|
|
|
68705
|
-
:type:
|
|
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]
|
|
68706
68908
|
"""
|
|
68707
68909
|
|
|
68708
68910
|
@classmethod
|
|
@@ -68868,8 +69070,8 @@ class GreasePencilOpacityModifier(Modifier, bpy_struct):
|
|
|
68868
69070
|
"""
|
|
68869
69071
|
...
|
|
68870
69072
|
|
|
68871
|
-
class
|
|
68872
|
-
"""
|
|
69073
|
+
class GreasePencilSmoothModifier(Modifier, bpy_struct):
|
|
69074
|
+
"""Smooth effect modifier"""
|
|
68873
69075
|
|
|
68874
69076
|
custom_curve: "CurveMapping"
|
|
68875
69077
|
""" Custom curve to apply effect
|
|
@@ -68877,6 +69079,165 @@ class GreasePencilSubdivModifier(Modifier, bpy_struct):
|
|
|
68877
69079
|
:type: 'CurveMapping'
|
|
68878
69080
|
"""
|
|
68879
69081
|
|
|
69082
|
+
factor: float
|
|
69083
|
+
""" Amount of smooth to apply
|
|
69084
|
+
|
|
69085
|
+
:type: float
|
|
69086
|
+
"""
|
|
69087
|
+
|
|
69088
|
+
invert_layer_filter: bool
|
|
69089
|
+
""" Invert layer filter
|
|
69090
|
+
|
|
69091
|
+
:type: bool
|
|
69092
|
+
"""
|
|
69093
|
+
|
|
69094
|
+
invert_layer_pass_filter: bool
|
|
69095
|
+
""" Invert layer pass filter
|
|
69096
|
+
|
|
69097
|
+
:type: bool
|
|
69098
|
+
"""
|
|
69099
|
+
|
|
69100
|
+
invert_material_filter: bool
|
|
69101
|
+
""" Invert material filter
|
|
69102
|
+
|
|
69103
|
+
:type: bool
|
|
69104
|
+
"""
|
|
69105
|
+
|
|
69106
|
+
invert_material_pass_filter: bool
|
|
69107
|
+
""" Invert material pass filter
|
|
69108
|
+
|
|
69109
|
+
:type: bool
|
|
69110
|
+
"""
|
|
69111
|
+
|
|
69112
|
+
invert_vertex_group: bool
|
|
69113
|
+
""" Invert vertex group weights
|
|
69114
|
+
|
|
69115
|
+
:type: bool
|
|
69116
|
+
"""
|
|
69117
|
+
|
|
69118
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
69119
|
+
""" Layer name
|
|
69120
|
+
|
|
69121
|
+
:type: typing.Union[str, typing.Any]
|
|
69122
|
+
"""
|
|
69123
|
+
|
|
69124
|
+
layer_pass_filter: int
|
|
69125
|
+
""" Layer pass filter
|
|
69126
|
+
|
|
69127
|
+
:type: int
|
|
69128
|
+
"""
|
|
69129
|
+
|
|
69130
|
+
material_filter: "Material"
|
|
69131
|
+
""" Material used for filtering
|
|
69132
|
+
|
|
69133
|
+
:type: 'Material'
|
|
69134
|
+
"""
|
|
69135
|
+
|
|
69136
|
+
material_pass_filter: int
|
|
69137
|
+
""" Material pass
|
|
69138
|
+
|
|
69139
|
+
:type: int
|
|
69140
|
+
"""
|
|
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
|
+
|
|
69154
|
+
use_custom_curve: bool
|
|
69155
|
+
""" Use a custom curve to define a factor along the strokes
|
|
69156
|
+
|
|
69157
|
+
:type: bool
|
|
69158
|
+
"""
|
|
69159
|
+
|
|
69160
|
+
use_edit_position: bool
|
|
69161
|
+
""" The modifier affects the position of the point
|
|
69162
|
+
|
|
69163
|
+
:type: bool
|
|
69164
|
+
"""
|
|
69165
|
+
|
|
69166
|
+
use_edit_strength: bool
|
|
69167
|
+
""" The modifier affects the color strength of the point
|
|
69168
|
+
|
|
69169
|
+
:type: bool
|
|
69170
|
+
"""
|
|
69171
|
+
|
|
69172
|
+
use_edit_thickness: bool
|
|
69173
|
+
""" The modifier affects the thickness of the point
|
|
69174
|
+
|
|
69175
|
+
:type: bool
|
|
69176
|
+
"""
|
|
69177
|
+
|
|
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
|
|
69204
|
+
|
|
69205
|
+
:type: bool
|
|
69206
|
+
"""
|
|
69207
|
+
|
|
69208
|
+
vertex_group_name: typing.Union[str, typing.Any]
|
|
69209
|
+
""" Vertex group name for modulating the deform
|
|
69210
|
+
|
|
69211
|
+
:type: typing.Union[str, typing.Any]
|
|
69212
|
+
"""
|
|
69213
|
+
|
|
69214
|
+
@classmethod
|
|
69215
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
69216
|
+
"""
|
|
69217
|
+
|
|
69218
|
+
:param id: The RNA type identifier.
|
|
69219
|
+
:type id: typing.Optional[str]
|
|
69220
|
+
:rtype: 'Struct'
|
|
69221
|
+
:return: The RNA type or default when not found.
|
|
69222
|
+
"""
|
|
69223
|
+
...
|
|
69224
|
+
|
|
69225
|
+
@classmethod
|
|
69226
|
+
def bl_rna_get_subclass_py(
|
|
69227
|
+
cls, id: typing.Optional[str], default=None
|
|
69228
|
+
) -> typing.Any:
|
|
69229
|
+
"""
|
|
69230
|
+
|
|
69231
|
+
:param id: The RNA type identifier.
|
|
69232
|
+
:type id: typing.Optional[str]
|
|
69233
|
+
:rtype: typing.Any
|
|
69234
|
+
:return: The class or default when not found.
|
|
69235
|
+
"""
|
|
69236
|
+
...
|
|
69237
|
+
|
|
69238
|
+
class GreasePencilSubdivModifier(Modifier, bpy_struct):
|
|
69239
|
+
"""Subdivide Stroke modifier"""
|
|
69240
|
+
|
|
68880
69241
|
invert_layer_filter: bool
|
|
68881
69242
|
""" Invert layer filter
|
|
68882
69243
|
|
|
@@ -68920,7 +69281,7 @@ class GreasePencilSubdivModifier(Modifier, bpy_struct):
|
|
|
68920
69281
|
"""
|
|
68921
69282
|
|
|
68922
69283
|
level: int
|
|
68923
|
-
"""
|
|
69284
|
+
""" Level of subdivision
|
|
68924
69285
|
|
|
68925
69286
|
:type: int
|
|
68926
69287
|
"""
|
|
@@ -68943,10 +69304,10 @@ class GreasePencilSubdivModifier(Modifier, bpy_struct):
|
|
|
68943
69304
|
:type: bool
|
|
68944
69305
|
"""
|
|
68945
69306
|
|
|
68946
|
-
|
|
68947
|
-
"""
|
|
69307
|
+
subdivision_type: typing.Union[str, int]
|
|
69308
|
+
""" Select type of subdivision algorithm
|
|
68948
69309
|
|
|
68949
|
-
:type:
|
|
69310
|
+
:type: typing.Union[str, int]
|
|
68950
69311
|
"""
|
|
68951
69312
|
|
|
68952
69313
|
use_layer_pass_filter: bool
|
|
@@ -69565,10 +69926,10 @@ class MeshCacheModifier(Modifier, bpy_struct):
|
|
|
69565
69926
|
:type: typing.Union[str, typing.Any]
|
|
69566
69927
|
"""
|
|
69567
69928
|
|
|
69568
|
-
flip_axis: typing.Union[typing.Set[
|
|
69929
|
+
flip_axis: typing.Union[typing.Set[int], typing.Set[str]]
|
|
69569
69930
|
"""
|
|
69570
69931
|
|
|
69571
|
-
:type: typing.Union[typing.Set[
|
|
69932
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
69572
69933
|
"""
|
|
69573
69934
|
|
|
69574
69935
|
forward_axis: typing.Union[str, int]
|
|
@@ -71829,7 +72190,7 @@ class UVWarpModifier(Modifier, bpy_struct):
|
|
|
71829
72190
|
"""
|
|
71830
72191
|
|
|
71831
72192
|
uv_layer: typing.Union[str, typing.Any]
|
|
71832
|
-
""" UV
|
|
72193
|
+
""" UV map name
|
|
71833
72194
|
|
|
71834
72195
|
:type: typing.Union[str, typing.Any]
|
|
71835
72196
|
"""
|
|
@@ -108688,10 +109049,10 @@ class GeometryNodeCurveHandleTypeSelection(
|
|
|
108688
109049
|
:type: typing.Union[str, int]
|
|
108689
109050
|
"""
|
|
108690
109051
|
|
|
108691
|
-
mode: typing.Union[typing.Set[
|
|
109052
|
+
mode: typing.Union[typing.Set[int], typing.Set[str]]
|
|
108692
109053
|
""" Whether to check the type of left and right handles
|
|
108693
109054
|
|
|
108694
|
-
:type: typing.Union[typing.Set[
|
|
109055
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
108695
109056
|
"""
|
|
108696
109057
|
|
|
108697
109058
|
@classmethod
|
|
@@ -109224,10 +109585,10 @@ class GeometryNodeCurveSetHandles(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
109224
109585
|
:type: typing.Union[str, int]
|
|
109225
109586
|
"""
|
|
109226
109587
|
|
|
109227
|
-
mode: typing.Union[typing.Set[
|
|
109588
|
+
mode: typing.Union[typing.Set[int], typing.Set[str]]
|
|
109228
109589
|
""" Whether to update left and right handles
|
|
109229
109590
|
|
|
109230
|
-
:type: typing.Union[typing.Set[
|
|
109591
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
109231
109592
|
"""
|
|
109232
109593
|
|
|
109233
109594
|
@classmethod
|
|
@@ -128489,6 +128850,8 @@ ARMATURE_MT_collection_context_menu: "bl_ui.properties_data_armature.ARMATURE_MT
|
|
|
128489
128850
|
|
|
128490
128851
|
ARMATURE_MT_collection_tree_context_menu: "bl_ui.properties_data_armature.ARMATURE_MT_collection_tree_context_menu"
|
|
128491
128852
|
|
|
128853
|
+
ARMATURE_OT_collection_remove_unused: "bl_operators.anim.ARMATURE_OT_collection_remove_unused"
|
|
128854
|
+
|
|
128492
128855
|
ARMATURE_OT_collection_show_all: "bl_operators.anim.ARMATURE_OT_collection_show_all"
|
|
128493
128856
|
|
|
128494
128857
|
ARMATURE_OT_collection_solo_visibility: "bl_operators.anim.ARMATURE_OT_collection_solo_visibility"
|
|
@@ -130799,6 +131162,8 @@ USERPREF_MT_view: "bl_ui.space_userpref.USERPREF_MT_view"
|
|
|
130799
131162
|
|
|
130800
131163
|
USERPREF_PT_addons: "bl_ui.space_userpref.USERPREF_PT_addons"
|
|
130801
131164
|
|
|
131165
|
+
USERPREF_PT_addons_filter: "bl_ui.space_userpref.USERPREF_PT_addons_filter"
|
|
131166
|
+
|
|
130802
131167
|
USERPREF_PT_animation_fcurves: "bl_ui.space_userpref.USERPREF_PT_animation_fcurves"
|
|
130803
131168
|
|
|
130804
131169
|
USERPREF_PT_animation_keyframes: "bl_ui.space_userpref.USERPREF_PT_animation_keyframes"
|