fake-bpy-module 20240118__py3-none-any.whl → 20240120__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.
- addon_utils/__init__.pyi +1 -1
- bl_console_utils/autocomplete/__init__.pyi +2 -2
- bl_i18n_utils/__init__.pyi +2 -2
- bl_i18n_utils/utils/__init__.pyi +1 -1
- bl_keymap_utils/__init__.pyi +3 -3
- bl_operators/__init__.pyi +20 -20
- bl_operators/view3d/__init__.pyi +4 -2
- bl_ui/__init__.pyi +61 -61
- bl_ui/properties_data_modifier/__init__.pyi +55 -0
- bpy/__init__.pyi +2 -2
- bpy/app/__init__.pyi +1 -1
- bpy/ops/__init__.pyi +61 -61
- bpy/ops/font/__init__.pyi +16 -0
- bpy/ops/object/__init__.pyi +21 -1
- bpy/ops/view3d/__init__.pyi +4 -4
- bpy/types/__init__.pyi +692 -263
- bpy/utils/__init__.pyi +1 -1
- bpy_extras/anim_utils/__init__.pyi +2 -2
- bpy_extras/object_utils/__init__.pyi +13 -0
- {fake_bpy_module-20240118.dist-info → fake_bpy_module-20240120.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240118.dist-info → fake_bpy_module-20240120.dist-info}/RECORD +23 -23
- {fake_bpy_module-20240118.dist-info → fake_bpy_module-20240120.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240118.dist-info → fake_bpy_module-20240120.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_operators.spreadsheet
|
|
6
|
-
import bl_ui.properties_physics_geometry_nodes
|
|
7
|
-
import bl_ui.properties_data_empty
|
|
8
|
-
import bl_ui.properties_data_camera
|
|
9
|
-
import bl_ui.properties_data_speaker
|
|
10
|
-
import bl_ui.space_dopesheet
|
|
11
|
-
import bl_ui.properties_grease_pencil_common
|
|
12
|
-
import bl_ui.properties_texture
|
|
13
|
-
import bl_ui.properties_data_armature
|
|
14
|
-
import bl_ui.properties_material
|
|
15
|
-
import bl_ui.node_add_menu_texture
|
|
16
|
-
import bl_ui.properties_render
|
|
17
|
-
import bl_operators.constraint
|
|
18
|
-
import bl_ui.space_filebrowser
|
|
19
|
-
import bl_operators.wm
|
|
20
|
-
import bl_ui.space_graph
|
|
21
5
|
import bl_ui.node_add_menu_compositor
|
|
22
|
-
import bl_operators.
|
|
23
|
-
import bl_ui.
|
|
24
|
-
import bl_ui.
|
|
25
|
-
import bl_ui.properties_constraint
|
|
6
|
+
import bl_operators.wm
|
|
7
|
+
import bl_ui.space_time
|
|
8
|
+
import bl_ui.properties_output
|
|
26
9
|
import bl_operators.freestyle
|
|
10
|
+
import bl_ui.properties_render
|
|
11
|
+
import bl_ui.node_add_menu_geometry
|
|
12
|
+
import bl_ui.space_clip
|
|
13
|
+
import bl_ui.properties_world
|
|
14
|
+
import bl_ui.properties_data_lightprobe
|
|
15
|
+
import bl_ui.properties_data_curves
|
|
27
16
|
import bl_ui.space_nla
|
|
28
|
-
import bl_ui.
|
|
29
|
-
import bl_ui.properties_data_shaderfx
|
|
30
|
-
import bl_ui.properties_physics_rigidbody_constraint
|
|
17
|
+
import bl_ui.space_dopesheet
|
|
31
18
|
import bl_ui.space_node
|
|
32
|
-
import bl_ui.space_toolsystem_toolbar
|
|
33
|
-
import bl_ui.properties_collection
|
|
34
|
-
import bl_ui.space_outliner
|
|
35
|
-
import bl_ui.properties_physics_dynamicpaint
|
|
36
|
-
import bl_ui.properties_object
|
|
37
|
-
import bl_ui.properties_paint_common
|
|
38
|
-
import bl_operators.anim
|
|
39
|
-
import bl_ui.node_add_menu_geometry
|
|
40
|
-
import bl_ui.properties_output
|
|
41
19
|
import bl_operators.node
|
|
42
|
-
import
|
|
43
|
-
import bl_ui.
|
|
44
|
-
import bl_ui.
|
|
45
|
-
import bl_ui.
|
|
46
|
-
import bl_ui.
|
|
47
|
-
import
|
|
48
|
-
import bl_ui.
|
|
49
|
-
import
|
|
50
|
-
import bl_ui.
|
|
20
|
+
import bl_ui.space_filebrowser
|
|
21
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
22
|
+
import bl_ui.asset_shelf
|
|
23
|
+
import bl_ui.properties_view_layer
|
|
24
|
+
import bl_ui.node_add_menu_texture
|
|
25
|
+
import bl_operators.spreadsheet
|
|
26
|
+
import bl_ui.properties_data_grease_pencil
|
|
27
|
+
import bl_ui.properties_grease_pencil_common
|
|
28
|
+
import bl_ui.space_info
|
|
51
29
|
import bl_ui.node_add_menu_shader
|
|
52
|
-
import bl_ui.
|
|
53
|
-
import bl_ui.properties_mask_common
|
|
54
|
-
import bl_ui
|
|
55
|
-
import bl_ui.properties_data_curve
|
|
56
|
-
import bl_ui.properties_data_modifier
|
|
57
|
-
import bl_ui.generic_ui_list
|
|
30
|
+
import bl_ui.space_properties
|
|
58
31
|
import bl_ui.properties_scene
|
|
59
|
-
import bl_ui.space_statusbar
|
|
60
|
-
import bl_ui.properties_data_mesh
|
|
61
|
-
import bl_ui.properties_workspace
|
|
62
|
-
import bl_ui.space_view3d_toolbar
|
|
63
|
-
import bl_ui.properties_data_bone
|
|
64
|
-
import bl_ui.properties_view_layer
|
|
65
32
|
import bl_ui.properties_data_pointcloud
|
|
66
|
-
import bl_ui.space_spreadsheet
|
|
67
|
-
import bl_ui.space_time
|
|
68
|
-
import bl_ui.space_text
|
|
69
|
-
import bl_ui.properties_physics_cloth
|
|
70
|
-
import bl_ui.properties_data_volume
|
|
71
|
-
import bl_ui.space_toolsystem_common
|
|
72
|
-
import bl_operators.file
|
|
73
|
-
import bl_ui.properties_data_metaball
|
|
74
|
-
import bl_ui.node_add_menu
|
|
75
33
|
import bl_ui.properties_physics_fluid
|
|
34
|
+
import bl_ui.properties_material
|
|
35
|
+
import bl_ui.properties_data_mesh
|
|
36
|
+
import bl_operators.presets
|
|
37
|
+
import bl_ui.space_topbar
|
|
38
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
39
|
+
import bl_ui.properties_freestyle
|
|
40
|
+
import bl_ui.properties_data_shaderfx
|
|
41
|
+
import bl_ui.space_userpref
|
|
42
|
+
import bl_operators.object
|
|
43
|
+
import bl_ui.node_add_menu
|
|
44
|
+
import bl_ui.properties_data_armature
|
|
45
|
+
import bl_ui.properties_paint_common
|
|
46
|
+
import bl_ui.properties_physics_common
|
|
47
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
48
|
+
import bl_ui.properties_workspace
|
|
76
49
|
import bl_ui.properties_data_lattice
|
|
77
|
-
import bl_ui.
|
|
78
|
-
import bl_ui.properties_physics_field
|
|
79
|
-
import bl_ui.properties_data_lightprobe
|
|
80
|
-
import bl_ui.asset_shelf
|
|
50
|
+
import bl_ui.space_statusbar
|
|
81
51
|
import bl_ui.properties_particle
|
|
82
|
-
import
|
|
83
|
-
import
|
|
52
|
+
import bl_ui.space_spreadsheet
|
|
53
|
+
import bl_ui.properties_physics_rigidbody
|
|
54
|
+
import bl_operators.view3d
|
|
55
|
+
import bl_ui.properties_data_speaker
|
|
56
|
+
import bl_ui.properties_data_bone
|
|
57
|
+
import bl_ui.generic_ui_list
|
|
84
58
|
import bl_ui.properties_data_gpencil
|
|
85
|
-
import
|
|
86
|
-
import bl_ui.
|
|
87
|
-
import bl_ui.
|
|
88
|
-
import bl_ui.space_userpref
|
|
89
|
-
import bl_ui.space_properties
|
|
59
|
+
import bl_operators.constraint
|
|
60
|
+
import bl_ui.properties_physics_cloth
|
|
61
|
+
import bl_ui.space_graph
|
|
90
62
|
import bl_ui.properties_material_gpencil
|
|
63
|
+
import bl_ui.properties_data_curve
|
|
64
|
+
import bl_ui.properties_data_empty
|
|
65
|
+
import bl_operators.userpref
|
|
66
|
+
import bl_ui.properties_physics_field
|
|
67
|
+
import bl_ui.properties_constraint
|
|
68
|
+
import bl_ui.properties_data_camera
|
|
69
|
+
import bl_ui.properties_data_volume
|
|
70
|
+
import bl_ui.space_toolsystem_common
|
|
71
|
+
import bl_ui.space_sequencer
|
|
72
|
+
import bl_operators.anim
|
|
73
|
+
import bl_ui.properties_object
|
|
74
|
+
import bl_ui.space_text
|
|
91
75
|
import bl_operators.assets
|
|
76
|
+
import bl_operators.clip
|
|
77
|
+
import bl_ui.space_image
|
|
78
|
+
import bl_ui.space_console
|
|
79
|
+
import bl_ui.properties_data_modifier
|
|
80
|
+
import bl_ui.properties_data_light
|
|
81
|
+
import bl_ui.properties_texture
|
|
82
|
+
import bl_ui.properties_data_metaball
|
|
83
|
+
import bl_ui.space_toolsystem_toolbar
|
|
84
|
+
import bl_ui.properties_physics_softbody
|
|
85
|
+
import bl_ui.properties_mask_common
|
|
86
|
+
import bl_ui
|
|
87
|
+
import bl_ui.space_outliner
|
|
88
|
+
import bl_operators.file
|
|
89
|
+
import bl_ui.properties_collection
|
|
90
|
+
import bl_ui.space_view3d
|
|
91
|
+
import bl_ui.space_view3d_toolbar
|
|
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): ...
|
|
@@ -25994,6 +25994,12 @@ class PreferencesEdit(bpy_struct):
|
|
|
25994
25994
|
:type: bool
|
|
25995
25995
|
"""
|
|
25996
25996
|
|
|
25997
|
+
use_auto_keyframe_insert_needed: bool
|
|
25998
|
+
""" Auto-Keyframe insertion only when keyframe needed
|
|
25999
|
+
|
|
26000
|
+
:type: bool
|
|
26001
|
+
"""
|
|
26002
|
+
|
|
25997
26003
|
use_auto_keying: bool
|
|
25998
26004
|
""" Automatic keyframe insertion for Objects and Bones (default setting used for new Scenes)
|
|
25999
26005
|
|
|
@@ -32964,6 +32970,12 @@ class ShapeKey(bpy_struct):
|
|
|
32964
32970
|
:type: typing.Union[str, int]
|
|
32965
32971
|
"""
|
|
32966
32972
|
|
|
32973
|
+
lock_shape: bool
|
|
32974
|
+
""" Protect the shape key from accidental sculpting and editing
|
|
32975
|
+
|
|
32976
|
+
:type: bool
|
|
32977
|
+
"""
|
|
32978
|
+
|
|
32967
32979
|
mute: bool
|
|
32968
32980
|
""" Toggle this shape key
|
|
32969
32981
|
|
|
@@ -32976,6 +32988,12 @@ class ShapeKey(bpy_struct):
|
|
|
32976
32988
|
:type: typing.Union[str, typing.Any]
|
|
32977
32989
|
"""
|
|
32978
32990
|
|
|
32991
|
+
points: bpy_prop_collection["ShapeKeyPoint"]
|
|
32992
|
+
""" Optimized access to shape keys point data, when using foreach_get/foreach_set accessors. (Warning: Does not support legacy Curve shape keys)
|
|
32993
|
+
|
|
32994
|
+
:type: bpy_prop_collection['ShapeKeyPoint']
|
|
32995
|
+
"""
|
|
32996
|
+
|
|
32979
32997
|
relative_key: "ShapeKey"
|
|
32980
32998
|
""" Shape used as a relative key
|
|
32981
32999
|
|
|
@@ -68407,104 +68425,415 @@ class DynamicPaintModifier(Modifier, bpy_struct):
|
|
|
68407
68425
|
"""
|
|
68408
68426
|
...
|
|
68409
68427
|
|
|
68410
|
-
class EdgeSplitModifier(Modifier, bpy_struct):
|
|
68411
|
-
"""Edge splitting modifier to create sharp edges"""
|
|
68428
|
+
class EdgeSplitModifier(Modifier, bpy_struct):
|
|
68429
|
+
"""Edge splitting modifier to create sharp edges"""
|
|
68430
|
+
|
|
68431
|
+
split_angle: float
|
|
68432
|
+
""" Angle above which to split edges
|
|
68433
|
+
|
|
68434
|
+
:type: float
|
|
68435
|
+
"""
|
|
68436
|
+
|
|
68437
|
+
use_edge_angle: bool
|
|
68438
|
+
""" Split edges with high angle between faces
|
|
68439
|
+
|
|
68440
|
+
:type: bool
|
|
68441
|
+
"""
|
|
68442
|
+
|
|
68443
|
+
use_edge_sharp: bool
|
|
68444
|
+
""" Split edges that are marked as sharp
|
|
68445
|
+
|
|
68446
|
+
:type: bool
|
|
68447
|
+
"""
|
|
68448
|
+
|
|
68449
|
+
@classmethod
|
|
68450
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
68451
|
+
"""
|
|
68452
|
+
|
|
68453
|
+
:param id: The RNA type identifier.
|
|
68454
|
+
:type id: typing.Optional[str]
|
|
68455
|
+
:rtype: 'Struct'
|
|
68456
|
+
:return: The RNA type or default when not found.
|
|
68457
|
+
"""
|
|
68458
|
+
...
|
|
68459
|
+
|
|
68460
|
+
@classmethod
|
|
68461
|
+
def bl_rna_get_subclass_py(
|
|
68462
|
+
cls, id: typing.Optional[str], default=None
|
|
68463
|
+
) -> typing.Any:
|
|
68464
|
+
"""
|
|
68465
|
+
|
|
68466
|
+
:param id: The RNA type identifier.
|
|
68467
|
+
:type id: typing.Optional[str]
|
|
68468
|
+
:rtype: typing.Any
|
|
68469
|
+
:return: The class or default when not found.
|
|
68470
|
+
"""
|
|
68471
|
+
...
|
|
68472
|
+
|
|
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
|
|
68490
|
+
|
|
68491
|
+
:type: float
|
|
68492
|
+
"""
|
|
68493
|
+
|
|
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
|
+
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.
|
|
68608
|
+
|
|
68609
|
+
:type: typing.Union[str, int]
|
|
68610
|
+
"""
|
|
68611
|
+
|
|
68612
|
+
custom_curve: "CurveMapping"
|
|
68613
|
+
""" Custom curve to apply effect
|
|
68614
|
+
|
|
68615
|
+
:type: 'CurveMapping'
|
|
68616
|
+
"""
|
|
68617
|
+
|
|
68618
|
+
hue: float
|
|
68619
|
+
""" Color hue offset
|
|
68620
|
+
|
|
68621
|
+
:type: float
|
|
68622
|
+
"""
|
|
68623
|
+
|
|
68624
|
+
invert_layer_filter: bool
|
|
68625
|
+
""" Invert layer filter
|
|
68626
|
+
|
|
68627
|
+
:type: bool
|
|
68628
|
+
"""
|
|
68629
|
+
|
|
68630
|
+
invert_layer_pass_filter: bool
|
|
68631
|
+
""" Invert layer pass filter
|
|
68632
|
+
|
|
68633
|
+
:type: bool
|
|
68634
|
+
"""
|
|
68635
|
+
|
|
68636
|
+
invert_material_filter: bool
|
|
68637
|
+
""" Invert material filter
|
|
68638
|
+
|
|
68639
|
+
:type: bool
|
|
68640
|
+
"""
|
|
68641
|
+
|
|
68642
|
+
invert_material_pass_filter: bool
|
|
68643
|
+
""" Invert material pass filter
|
|
68644
|
+
|
|
68645
|
+
:type: bool
|
|
68646
|
+
"""
|
|
68647
|
+
|
|
68648
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
68649
|
+
""" Layer name
|
|
68650
|
+
|
|
68651
|
+
:type: typing.Union[str, typing.Any]
|
|
68652
|
+
"""
|
|
68653
|
+
|
|
68654
|
+
layer_pass_filter: int
|
|
68655
|
+
""" Layer pass filter
|
|
68656
|
+
|
|
68657
|
+
:type: int
|
|
68658
|
+
"""
|
|
68659
|
+
|
|
68660
|
+
material_filter: "Material"
|
|
68661
|
+
""" Material used for filtering
|
|
68662
|
+
|
|
68663
|
+
:type: 'Material'
|
|
68664
|
+
"""
|
|
68665
|
+
|
|
68666
|
+
material_pass_filter: int
|
|
68667
|
+
""" Material pass
|
|
68668
|
+
|
|
68669
|
+
:type: int
|
|
68670
|
+
"""
|
|
68671
|
+
|
|
68672
|
+
saturation: float
|
|
68673
|
+
""" Color saturation factor
|
|
68674
|
+
|
|
68675
|
+
:type: float
|
|
68676
|
+
"""
|
|
68677
|
+
|
|
68678
|
+
use_custom_curve: bool
|
|
68679
|
+
""" Use a custom curve to define a factor along the strokes
|
|
68680
|
+
|
|
68681
|
+
:type: bool
|
|
68682
|
+
"""
|
|
68683
|
+
|
|
68684
|
+
use_layer_pass_filter: bool
|
|
68685
|
+
""" Use layer pass filter
|
|
68686
|
+
|
|
68687
|
+
:type: bool
|
|
68688
|
+
"""
|
|
68689
|
+
|
|
68690
|
+
use_material_pass_filter: bool
|
|
68691
|
+
""" Use material pass filter
|
|
68692
|
+
|
|
68693
|
+
:type: bool
|
|
68694
|
+
"""
|
|
68695
|
+
|
|
68696
|
+
value: float
|
|
68697
|
+
""" Color value factor
|
|
68698
|
+
|
|
68699
|
+
:type: float
|
|
68700
|
+
"""
|
|
68701
|
+
|
|
68702
|
+
@classmethod
|
|
68703
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
68704
|
+
"""
|
|
68705
|
+
|
|
68706
|
+
:param id: The RNA type identifier.
|
|
68707
|
+
:type id: typing.Optional[str]
|
|
68708
|
+
:rtype: 'Struct'
|
|
68709
|
+
:return: The RNA type or default when not found.
|
|
68710
|
+
"""
|
|
68711
|
+
...
|
|
68712
|
+
|
|
68713
|
+
@classmethod
|
|
68714
|
+
def bl_rna_get_subclass_py(
|
|
68715
|
+
cls, id: typing.Optional[str], default=None
|
|
68716
|
+
) -> typing.Any:
|
|
68717
|
+
"""
|
|
68718
|
+
|
|
68719
|
+
:param id: The RNA type identifier.
|
|
68720
|
+
:type id: typing.Optional[str]
|
|
68721
|
+
:rtype: typing.Any
|
|
68722
|
+
:return: The class or default when not found.
|
|
68723
|
+
"""
|
|
68724
|
+
...
|
|
68725
|
+
|
|
68726
|
+
class GreasePencilOpacityModifier(Modifier, bpy_struct):
|
|
68727
|
+
color_factor: float
|
|
68728
|
+
""" Factor of opacity
|
|
68412
68729
|
|
|
68413
|
-
|
|
68414
|
-
"""
|
|
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
|
+
"""
|
|
68738
|
+
|
|
68739
|
+
custom_curve: "CurveMapping"
|
|
68740
|
+
""" Custom curve to apply effect
|
|
68741
|
+
|
|
68742
|
+
:type: 'CurveMapping'
|
|
68743
|
+
"""
|
|
68744
|
+
|
|
68745
|
+
hardness_factor: float
|
|
68746
|
+
""" Factor of stroke hardness
|
|
68415
68747
|
|
|
68416
68748
|
:type: float
|
|
68417
68749
|
"""
|
|
68418
68750
|
|
|
68419
|
-
|
|
68420
|
-
"""
|
|
68751
|
+
invert_layer_filter: bool
|
|
68752
|
+
""" Invert layer filter
|
|
68421
68753
|
|
|
68422
68754
|
:type: bool
|
|
68423
68755
|
"""
|
|
68424
68756
|
|
|
68425
|
-
|
|
68426
|
-
"""
|
|
68757
|
+
invert_layer_pass_filter: bool
|
|
68758
|
+
""" Invert layer pass filter
|
|
68427
68759
|
|
|
68428
68760
|
:type: bool
|
|
68429
68761
|
"""
|
|
68430
68762
|
|
|
68431
|
-
|
|
68432
|
-
|
|
68433
|
-
"""
|
|
68434
|
-
|
|
68435
|
-
:param id: The RNA type identifier.
|
|
68436
|
-
:type id: typing.Optional[str]
|
|
68437
|
-
:rtype: 'Struct'
|
|
68438
|
-
:return: The RNA type or default when not found.
|
|
68439
|
-
"""
|
|
68440
|
-
...
|
|
68763
|
+
invert_material_filter: bool
|
|
68764
|
+
""" Invert material filter
|
|
68441
68765
|
|
|
68442
|
-
|
|
68443
|
-
|
|
68444
|
-
cls, id: typing.Optional[str], default=None
|
|
68445
|
-
) -> typing.Any:
|
|
68446
|
-
"""
|
|
68766
|
+
:type: bool
|
|
68767
|
+
"""
|
|
68447
68768
|
|
|
68448
|
-
|
|
68449
|
-
|
|
68450
|
-
:rtype: typing.Any
|
|
68451
|
-
:return: The class or default when not found.
|
|
68452
|
-
"""
|
|
68453
|
-
...
|
|
68769
|
+
invert_material_pass_filter: bool
|
|
68770
|
+
""" Invert material pass filter
|
|
68454
68771
|
|
|
68455
|
-
|
|
68456
|
-
"""
|
|
68772
|
+
:type: bool
|
|
68773
|
+
"""
|
|
68457
68774
|
|
|
68458
68775
|
invert_vertex_group: bool
|
|
68459
|
-
""" Invert vertex group
|
|
68776
|
+
""" Invert vertex group weights
|
|
68460
68777
|
|
|
68461
68778
|
:type: bool
|
|
68462
68779
|
"""
|
|
68463
68780
|
|
|
68464
|
-
|
|
68465
|
-
"""
|
|
68781
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
68782
|
+
""" Layer name
|
|
68466
68783
|
|
|
68467
68784
|
:type: typing.Union[str, typing.Any]
|
|
68468
68785
|
"""
|
|
68469
68786
|
|
|
68470
|
-
|
|
68471
|
-
"""
|
|
68787
|
+
layer_pass_filter: int
|
|
68788
|
+
""" Layer pass filter
|
|
68472
68789
|
|
|
68473
|
-
:type:
|
|
68790
|
+
:type: int
|
|
68474
68791
|
"""
|
|
68475
68792
|
|
|
68476
|
-
|
|
68477
|
-
"""
|
|
68793
|
+
material_filter: "Material"
|
|
68794
|
+
""" Material used for filtering
|
|
68795
|
+
|
|
68796
|
+
:type: 'Material'
|
|
68797
|
+
"""
|
|
68798
|
+
|
|
68799
|
+
material_pass_filter: int
|
|
68800
|
+
""" Material pass
|
|
68801
|
+
|
|
68802
|
+
:type: int
|
|
68803
|
+
"""
|
|
68804
|
+
|
|
68805
|
+
use_custom_curve: bool
|
|
68806
|
+
""" Use a custom curve to define a factor along the strokes
|
|
68478
68807
|
|
|
68479
68808
|
:type: bool
|
|
68480
68809
|
"""
|
|
68481
68810
|
|
|
68482
|
-
|
|
68483
|
-
"""
|
|
68811
|
+
use_layer_pass_filter: bool
|
|
68812
|
+
""" Use layer pass filter
|
|
68484
68813
|
|
|
68485
68814
|
:type: bool
|
|
68486
68815
|
"""
|
|
68487
68816
|
|
|
68488
|
-
|
|
68489
|
-
"""
|
|
68817
|
+
use_material_pass_filter: bool
|
|
68818
|
+
""" Use material pass filter
|
|
68490
68819
|
|
|
68491
68820
|
:type: bool
|
|
68492
68821
|
"""
|
|
68493
68822
|
|
|
68494
|
-
|
|
68495
|
-
"""
|
|
68823
|
+
use_uniform_opacity: bool
|
|
68824
|
+
""" Replace the stroke opacity instead of modulating each point
|
|
68496
68825
|
|
|
68497
68826
|
:type: bool
|
|
68498
68827
|
"""
|
|
68499
68828
|
|
|
68500
|
-
|
|
68501
|
-
""" Use
|
|
68829
|
+
use_weight_as_factor: bool
|
|
68830
|
+
""" Use vertex group weight as factor instead of influence
|
|
68502
68831
|
|
|
68503
68832
|
:type: bool
|
|
68504
68833
|
"""
|
|
68505
68834
|
|
|
68506
|
-
|
|
68507
|
-
"""
|
|
68835
|
+
vertex_group_name: typing.Union[str, typing.Any]
|
|
68836
|
+
""" Vertex group name for modulating the deform
|
|
68508
68837
|
|
|
68509
68838
|
:type: typing.Union[str, typing.Any]
|
|
68510
68839
|
"""
|
|
@@ -68533,31 +68862,103 @@ class ExplodeModifier(Modifier, bpy_struct):
|
|
|
68533
68862
|
"""
|
|
68534
68863
|
...
|
|
68535
68864
|
|
|
68536
|
-
class
|
|
68537
|
-
"""
|
|
68865
|
+
class GreasePencilSubdivModifier(Modifier, bpy_struct):
|
|
68866
|
+
"""Subdivide Stroke modifier"""
|
|
68538
68867
|
|
|
68539
|
-
|
|
68540
|
-
"""
|
|
68868
|
+
custom_curve: "CurveMapping"
|
|
68869
|
+
""" Custom curve to apply effect
|
|
68541
68870
|
|
|
68542
|
-
:type: '
|
|
68871
|
+
:type: 'CurveMapping'
|
|
68543
68872
|
"""
|
|
68544
68873
|
|
|
68545
|
-
|
|
68546
|
-
"""
|
|
68874
|
+
invert_layer_filter: bool
|
|
68875
|
+
""" Invert layer filter
|
|
68547
68876
|
|
|
68548
|
-
:type:
|
|
68877
|
+
:type: bool
|
|
68549
68878
|
"""
|
|
68550
68879
|
|
|
68551
|
-
|
|
68880
|
+
invert_layer_pass_filter: bool
|
|
68881
|
+
""" Invert layer pass filter
|
|
68882
|
+
|
|
68883
|
+
:type: bool
|
|
68884
|
+
"""
|
|
68885
|
+
|
|
68886
|
+
invert_material_filter: bool
|
|
68887
|
+
""" Invert material filter
|
|
68888
|
+
|
|
68889
|
+
:type: bool
|
|
68890
|
+
"""
|
|
68891
|
+
|
|
68892
|
+
invert_material_pass_filter: bool
|
|
68893
|
+
""" Invert material pass filter
|
|
68894
|
+
|
|
68895
|
+
:type: bool
|
|
68896
|
+
"""
|
|
68897
|
+
|
|
68898
|
+
invert_vertex_group: bool
|
|
68899
|
+
""" Invert vertex group weights
|
|
68900
|
+
|
|
68901
|
+
:type: bool
|
|
68902
|
+
"""
|
|
68903
|
+
|
|
68904
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
68905
|
+
""" Layer name
|
|
68906
|
+
|
|
68907
|
+
:type: typing.Union[str, typing.Any]
|
|
68908
|
+
"""
|
|
68909
|
+
|
|
68910
|
+
layer_pass_filter: int
|
|
68911
|
+
""" Layer pass filter
|
|
68912
|
+
|
|
68913
|
+
:type: int
|
|
68914
|
+
"""
|
|
68915
|
+
|
|
68916
|
+
level: int
|
|
68917
|
+
""" Number of subdivisions
|
|
68918
|
+
|
|
68919
|
+
:type: int
|
|
68920
|
+
"""
|
|
68921
|
+
|
|
68922
|
+
material_filter: "Material"
|
|
68923
|
+
""" Material used for filtering
|
|
68924
|
+
|
|
68925
|
+
:type: 'Material'
|
|
68926
|
+
"""
|
|
68927
|
+
|
|
68928
|
+
material_pass_filter: int
|
|
68929
|
+
""" Material pass
|
|
68930
|
+
|
|
68931
|
+
:type: int
|
|
68932
|
+
"""
|
|
68933
|
+
|
|
68934
|
+
open_influence_panel: bool
|
|
68552
68935
|
"""
|
|
68553
68936
|
|
|
68554
|
-
:type:
|
|
68937
|
+
:type: bool
|
|
68555
68938
|
"""
|
|
68556
68939
|
|
|
68557
|
-
|
|
68558
|
-
"""
|
|
68940
|
+
use_custom_curve: bool
|
|
68941
|
+
""" Use a custom curve to define a factor along the strokes
|
|
68559
68942
|
|
|
68560
|
-
:type:
|
|
68943
|
+
:type: bool
|
|
68944
|
+
"""
|
|
68945
|
+
|
|
68946
|
+
use_layer_pass_filter: bool
|
|
68947
|
+
""" Use layer pass filter
|
|
68948
|
+
|
|
68949
|
+
:type: bool
|
|
68950
|
+
"""
|
|
68951
|
+
|
|
68952
|
+
use_material_pass_filter: bool
|
|
68953
|
+
""" Use material pass filter
|
|
68954
|
+
|
|
68955
|
+
:type: bool
|
|
68956
|
+
"""
|
|
68957
|
+
|
|
68958
|
+
vertex_group_name: typing.Union[str, typing.Any]
|
|
68959
|
+
""" Vertex group name for modulating the deform
|
|
68960
|
+
|
|
68961
|
+
:type: typing.Union[str, typing.Any]
|
|
68561
68962
|
"""
|
|
68562
68963
|
|
|
68563
68964
|
@classmethod
|
|
@@ -68584,27 +68985,35 @@ class FluidModifier(Modifier, bpy_struct):
|
|
|
68584
68985
|
"""
|
|
68585
68986
|
...
|
|
68586
68987
|
|
|
68587
|
-
class
|
|
68588
|
-
|
|
68589
|
-
|
|
68988
|
+
class GreasePencilTintModifier(Modifier, bpy_struct):
|
|
68989
|
+
color: typing.Union[
|
|
68990
|
+
typing.List[float], typing.Tuple[float, float, float], "mathutils.Color"
|
|
68991
|
+
]
|
|
68992
|
+
""" Color used for tinting
|
|
68590
68993
|
|
|
68591
|
-
:type: float
|
|
68994
|
+
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], 'mathutils.Color']
|
|
68592
68995
|
"""
|
|
68593
68996
|
|
|
68594
68997
|
color_mode: typing.Union[str, int]
|
|
68595
|
-
""" Attributes to modify * ``BOTH`` Stroke & Fill -- Modify fill and stroke colors. * ``STROKE`` Stroke -- Modify stroke color only. * ``FILL`` Fill -- Modify fill color only.
|
|
68998
|
+
""" Attributes to modify * ``BOTH`` Stroke & Fill -- Modify fill and stroke colors. * ``STROKE`` Stroke -- Modify stroke color only. * ``FILL`` Fill -- Modify fill color only.
|
|
68596
68999
|
|
|
68597
69000
|
:type: typing.Union[str, int]
|
|
68598
69001
|
"""
|
|
68599
69002
|
|
|
69003
|
+
color_ramp: "ColorRamp"
|
|
69004
|
+
""" Gradient tinting colors
|
|
69005
|
+
|
|
69006
|
+
:type: 'ColorRamp'
|
|
69007
|
+
"""
|
|
69008
|
+
|
|
68600
69009
|
custom_curve: "CurveMapping"
|
|
68601
69010
|
""" Custom curve to apply effect
|
|
68602
69011
|
|
|
68603
69012
|
:type: 'CurveMapping'
|
|
68604
69013
|
"""
|
|
68605
69014
|
|
|
68606
|
-
|
|
68607
|
-
""" Factor
|
|
69015
|
+
factor: float
|
|
69016
|
+
""" Factor for tinting
|
|
68608
69017
|
|
|
68609
69018
|
:type: float
|
|
68610
69019
|
"""
|
|
@@ -68663,10 +69072,22 @@ class GreasePencilOpacityModifier(Modifier, bpy_struct):
|
|
|
68663
69072
|
:type: int
|
|
68664
69073
|
"""
|
|
68665
69074
|
|
|
68666
|
-
|
|
68667
|
-
"""
|
|
69075
|
+
object: "Object"
|
|
69076
|
+
""" Object used for the gradient direction
|
|
68668
69077
|
|
|
68669
|
-
:type:
|
|
69078
|
+
:type: 'Object'
|
|
69079
|
+
"""
|
|
69080
|
+
|
|
69081
|
+
radius: float
|
|
69082
|
+
""" Influence distance from the object
|
|
69083
|
+
|
|
69084
|
+
:type: float
|
|
69085
|
+
"""
|
|
69086
|
+
|
|
69087
|
+
tint_mode: typing.Union[str, int]
|
|
69088
|
+
"""
|
|
69089
|
+
|
|
69090
|
+
:type: typing.Union[str, int]
|
|
68670
69091
|
"""
|
|
68671
69092
|
|
|
68672
69093
|
use_custom_curve: bool
|
|
@@ -68687,12 +69108,6 @@ class GreasePencilOpacityModifier(Modifier, bpy_struct):
|
|
|
68687
69108
|
:type: bool
|
|
68688
69109
|
"""
|
|
68689
69110
|
|
|
68690
|
-
use_uniform_opacity: bool
|
|
68691
|
-
""" Replace the stroke opacity instead of modulating each point
|
|
68692
|
-
|
|
68693
|
-
:type: bool
|
|
68694
|
-
"""
|
|
68695
|
-
|
|
68696
69111
|
use_weight_as_factor: bool
|
|
68697
69112
|
""" Use vertex group weight as factor instead of influence
|
|
68698
69113
|
|
|
@@ -102459,6 +102874,12 @@ class CompositorNodeMapUV(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
102459
102874
|
:type: int
|
|
102460
102875
|
"""
|
|
102461
102876
|
|
|
102877
|
+
filter_type: typing.Union[str, int]
|
|
102878
|
+
"""
|
|
102879
|
+
|
|
102880
|
+
:type: typing.Union[str, int]
|
|
102881
|
+
"""
|
|
102882
|
+
|
|
102462
102883
|
@classmethod
|
|
102463
102884
|
def is_registered_node_type(cls) -> bool:
|
|
102464
102885
|
"""True if a registered node type
|
|
@@ -103231,6 +103652,12 @@ class CompositorNodeOutputFile(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
103231
103652
|
...
|
|
103232
103653
|
|
|
103233
103654
|
class CompositorNodePixelate(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
103655
|
+
pixel_size: int
|
|
103656
|
+
""" Pixel size of the output image
|
|
103657
|
+
|
|
103658
|
+
:type: int
|
|
103659
|
+
"""
|
|
103660
|
+
|
|
103234
103661
|
@classmethod
|
|
103235
103662
|
def is_registered_node_type(cls) -> bool:
|
|
103236
103663
|
"""True if a registered node type
|
|
@@ -129281,6 +129708,8 @@ NODE_UL_simulation_zone_items: "bl_ui.space_node.NODE_UL_simulation_zone_items"
|
|
|
129281
129708
|
|
|
129282
129709
|
OBJECT_MT_modifier_add: "bl_ui.properties_data_modifier.OBJECT_MT_modifier_add"
|
|
129283
129710
|
|
|
129711
|
+
OBJECT_MT_modifier_add_color: "bl_ui.properties_data_modifier.OBJECT_MT_modifier_add_color"
|
|
129712
|
+
|
|
129284
129713
|
OBJECT_MT_modifier_add_deform: "bl_ui.properties_data_modifier.OBJECT_MT_modifier_add_deform"
|
|
129285
129714
|
|
|
129286
129715
|
OBJECT_MT_modifier_add_edit: "bl_ui.properties_data_modifier.OBJECT_MT_modifier_add_edit"
|