fake-bpy-module 20240208__py3-none-any.whl → 20240209__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 +3 -3
- bl_operators/__init__.pyi +21 -21
- bl_ui/__init__.pyi +61 -61
- bl_ui_utils/__init__.pyi +1 -1
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +4 -4
- bpy/ops/__init__.pyi +63 -63
- bpy/ops/object/__init__.pyi +67 -1
- bpy/types/__init__.pyi +494 -209
- bpy/utils/__init__.pyi +1 -1
- bpy_extras/__init__.pyi +2 -2
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20240208.dist-info → fake_bpy_module-20240209.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240208.dist-info → fake_bpy_module-20240209.dist-info}/RECORD +18 -18
- {fake_bpy_module-20240208.dist-info → fake_bpy_module-20240209.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240208.dist-info → fake_bpy_module-20240209.dist-info}/top_level.txt +0 -0
bpy/types/__init__.pyi
CHANGED
|
@@ -2,97 +2,209 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import mathutils
|
|
4
4
|
import bpy
|
|
5
|
+
import bl_ui.space_statusbar
|
|
6
|
+
import bl_ui.space_console
|
|
7
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
5
8
|
import bl_ui.space_view3d_toolbar
|
|
6
|
-
import bl_ui.
|
|
7
|
-
import bl_ui
|
|
8
|
-
import
|
|
9
|
-
import bl_operators.anim
|
|
10
|
-
import bl_ui.space_view3d
|
|
11
|
-
import bl_ui.generic_ui_list
|
|
12
|
-
import bl_ui.space_toolsystem_common
|
|
13
|
-
import bl_ui.properties_object
|
|
14
|
-
import bl_ui.properties_data_curves
|
|
15
|
-
import bl_ui.properties_physics_field
|
|
16
|
-
import bl_ui.properties_data_mesh
|
|
17
|
-
import bl_ui.properties_data_lattice
|
|
9
|
+
import bl_ui.space_spreadsheet
|
|
10
|
+
import bl_ui.space_sequencer
|
|
11
|
+
import bl_operators.file
|
|
18
12
|
import bl_ui.space_toolsystem_toolbar
|
|
19
|
-
import bl_ui.
|
|
20
|
-
import
|
|
21
|
-
import bl_ui.properties_world
|
|
22
|
-
import bl_ui.node_add_menu
|
|
13
|
+
import bl_ui.space_image
|
|
14
|
+
import bl_ui.space_outliner
|
|
23
15
|
import bl_ui.properties_freestyle
|
|
24
|
-
import bl_ui.
|
|
25
|
-
import bl_ui.
|
|
26
|
-
import bl_ui.
|
|
27
|
-
import bl_ui.properties_data_bone
|
|
28
|
-
import bl_ui.properties_physics_rigidbody
|
|
16
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
17
|
+
import bl_ui.properties_data_modifier
|
|
18
|
+
import bl_ui.properties_physics_cloth
|
|
29
19
|
import bl_ui.space_graph
|
|
30
|
-
import bl_ui.
|
|
31
|
-
import bl_ui.space_properties
|
|
20
|
+
import bl_ui.anim
|
|
32
21
|
import bl_ui.properties_data_metaball
|
|
33
|
-
import bl_ui.
|
|
34
|
-
import
|
|
35
|
-
import bl_operators.presets
|
|
36
|
-
import bl_ui.space_statusbar
|
|
37
|
-
import bl_ui.properties_workspace
|
|
22
|
+
import bl_ui.properties_constraint
|
|
23
|
+
import bl_ui.properties_data_lattice
|
|
38
24
|
import bl_ui.properties_collection
|
|
39
|
-
import bl_ui.
|
|
40
|
-
import bl_ui.
|
|
41
|
-
import bl_ui.
|
|
42
|
-
import bl_ui.
|
|
43
|
-
import bl_ui.
|
|
44
|
-
import
|
|
45
|
-
import bl_ui.
|
|
46
|
-
import bl_ui.
|
|
47
|
-
import
|
|
48
|
-
import
|
|
25
|
+
import bl_ui.space_text
|
|
26
|
+
import bl_ui.properties_data_bone
|
|
27
|
+
import bl_ui.space_toolsystem_common
|
|
28
|
+
import bl_ui.properties_physics_field
|
|
29
|
+
import bl_ui.properties_render
|
|
30
|
+
import bl_ui.properties_world
|
|
31
|
+
import bl_ui.properties_data_camera
|
|
32
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
33
|
+
import bl_ui.properties_physics_rigidbody
|
|
34
|
+
import bl_operators.node
|
|
35
|
+
import bl_ui.properties_material_gpencil
|
|
49
36
|
import bl_ui.properties_grease_pencil_common
|
|
37
|
+
import bl_ui.space_time
|
|
38
|
+
import bl_ui.properties_data_lightprobe
|
|
39
|
+
import bl_ui.generic_ui_list
|
|
40
|
+
import bl_ui.space_filebrowser
|
|
41
|
+
import bl_operators.presets
|
|
50
42
|
import bl_ui.properties_particle
|
|
51
|
-
import bl_operators.freestyle
|
|
52
|
-
import bl_ui.properties_data_curve
|
|
53
|
-
import bl_ui.node_add_menu_texture
|
|
54
|
-
import bl_operators.spreadsheet
|
|
55
|
-
import bl_ui.properties_data_gpencil
|
|
56
|
-
import bl_operators.file
|
|
57
|
-
import bl_ui.properties_physics_cloth
|
|
58
|
-
import bl_ui.properties_data_volume
|
|
59
|
-
import bl_ui.space_info
|
|
60
43
|
import bl_ui.properties_view_layer
|
|
61
|
-
import
|
|
62
|
-
import bl_ui.
|
|
44
|
+
import bl_ui.properties_data_volume
|
|
45
|
+
import bl_ui.properties_output
|
|
63
46
|
import bl_ui.node_add_menu_shader
|
|
64
|
-
import bl_ui.node_add_menu_geometry
|
|
65
|
-
import bl_ui.properties_data_lightprobe
|
|
66
|
-
import bl_ui.space_clip
|
|
67
|
-
import bl_ui.properties_physics_softbody
|
|
68
|
-
import bl_operators.clip
|
|
69
|
-
import bl_ui.properties_constraint
|
|
70
|
-
import bl_ui.space_outliner
|
|
71
|
-
import bl_ui.properties_physics_rigidbody_constraint
|
|
72
|
-
import bl_ui.properties_data_grease_pencil
|
|
73
47
|
import bl_ui.properties_data_empty
|
|
74
|
-
import
|
|
75
|
-
import bl_ui.
|
|
76
|
-
import bl_operators.assets
|
|
77
|
-
import bl_ui.space_console
|
|
48
|
+
import bl_ui
|
|
49
|
+
import bl_ui.space_dopesheet
|
|
78
50
|
import bl_ui.space_userpref
|
|
79
|
-
import bl_ui.
|
|
80
|
-
import
|
|
51
|
+
import bl_ui.properties_object
|
|
52
|
+
import bl_operators.freestyle
|
|
53
|
+
import bl_ui.properties_data_speaker
|
|
54
|
+
import bl_ui.properties_physics_fluid
|
|
55
|
+
import bl_ui.space_clip
|
|
81
56
|
import bl_ui.properties_data_light
|
|
82
|
-
import bl_ui.
|
|
57
|
+
import bl_ui.properties_data_armature
|
|
58
|
+
import bl_ui.space_node
|
|
59
|
+
import bl_operators.spreadsheet
|
|
60
|
+
import bl_ui.properties_data_mesh
|
|
61
|
+
import bl_ui.node_add_menu_texture
|
|
62
|
+
import bl_ui.properties_data_curves
|
|
63
|
+
import bl_ui.properties_data_shaderfx
|
|
64
|
+
import bl_ui.node_add_menu
|
|
65
|
+
import bl_ui.node_add_menu_geometry
|
|
66
|
+
import bl_ui.properties_data_gpencil
|
|
67
|
+
import bl_ui.node_add_menu_compositor
|
|
68
|
+
import bl_operators.constraint
|
|
69
|
+
import bl_ui.properties_scene
|
|
70
|
+
import bl_operators.wm
|
|
71
|
+
import bl_ui.space_properties
|
|
72
|
+
import bl_operators.view3d
|
|
83
73
|
import bl_ui.properties_data_pointcloud
|
|
84
|
-
import
|
|
85
|
-
import bl_ui.space_image
|
|
86
|
-
import bl_ui.properties_physics_dynamicpaint
|
|
87
|
-
import bl_ui.properties_physics_fluid
|
|
88
|
-
import bl_ui.space_sequencer
|
|
89
|
-
import bl_ui.properties_data_modifier
|
|
90
|
-
import bl_ui.space_spreadsheet
|
|
91
|
-
import bl_ui.space_nla
|
|
74
|
+
import bl_operators.object
|
|
92
75
|
import bl_ui.properties_mask_common
|
|
76
|
+
import bl_ui.properties_texture
|
|
77
|
+
import bl_ui.space_nla
|
|
78
|
+
import bl_ui.space_topbar
|
|
79
|
+
import bl_ui.properties_paint_common
|
|
80
|
+
import bl_operators.clip
|
|
81
|
+
import bl_ui.properties_material
|
|
82
|
+
import bl_ui.space_view3d
|
|
83
|
+
import bl_operators.anim
|
|
84
|
+
import bl_ui.properties_data_grease_pencil
|
|
85
|
+
import bl_ui.properties_data_curve
|
|
86
|
+
import bl_ui.properties_physics_softbody
|
|
87
|
+
import bl_ui.space_info
|
|
88
|
+
import bl_ui.asset_shelf
|
|
89
|
+
import bl_operators.userpref
|
|
90
|
+
import bl_ui.properties_physics_common
|
|
91
|
+
import bl_ui.properties_workspace
|
|
92
|
+
import bl_operators.assets
|
|
93
93
|
|
|
94
94
|
GenericType = typing.TypeVar("GenericType")
|
|
95
95
|
|
|
96
|
+
class bpy_prop_collection(typing.Generic[GenericType]):
|
|
97
|
+
"""built-in class used for all collections."""
|
|
98
|
+
|
|
99
|
+
def find(self, key: typing.Optional[str]) -> int:
|
|
100
|
+
"""Returns the index of a key in a collection or -1 when not found (matches Python's string find function of the same name).
|
|
101
|
+
|
|
102
|
+
:param key: The identifier for the collection member.
|
|
103
|
+
:type key: typing.Optional[str]
|
|
104
|
+
:rtype: int
|
|
105
|
+
:return: index of the key.
|
|
106
|
+
"""
|
|
107
|
+
...
|
|
108
|
+
|
|
109
|
+
def foreach_get(self, attr, seq):
|
|
110
|
+
"""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."""
|
|
111
|
+
...
|
|
112
|
+
|
|
113
|
+
def foreach_set(self, attr, seq):
|
|
114
|
+
"""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."""
|
|
115
|
+
...
|
|
116
|
+
|
|
117
|
+
def get(
|
|
118
|
+
self, key: typing.Optional[str], default: typing.Optional[typing.Any] = None
|
|
119
|
+
):
|
|
120
|
+
"""Returns the value of the item assigned to key or default when not found (matches Python's dictionary function of the same name).
|
|
121
|
+
|
|
122
|
+
:param key: The identifier for the collection member.
|
|
123
|
+
:type key: typing.Optional[str]
|
|
124
|
+
:param default: Optional argument for the value to return if *key* is not found.
|
|
125
|
+
:type default: typing.Optional[typing.Any]
|
|
126
|
+
"""
|
|
127
|
+
...
|
|
128
|
+
|
|
129
|
+
def items(self) -> typing.List:
|
|
130
|
+
"""Return the identifiers of collection members (matching Python's dict.items() functionality).
|
|
131
|
+
|
|
132
|
+
:rtype: typing.List
|
|
133
|
+
:return: (key, value) pairs for each member of this collection.
|
|
134
|
+
"""
|
|
135
|
+
...
|
|
136
|
+
|
|
137
|
+
def keys(self) -> typing.List[str]:
|
|
138
|
+
"""Return the identifiers of collection members (matching Python's dict.keys() functionality).
|
|
139
|
+
|
|
140
|
+
:rtype: typing.List[str]
|
|
141
|
+
:return: the identifiers for each member of this collection.
|
|
142
|
+
"""
|
|
143
|
+
...
|
|
144
|
+
|
|
145
|
+
def values(self) -> typing.List:
|
|
146
|
+
"""Return the values of collection (matching Python's dict.values() functionality).
|
|
147
|
+
|
|
148
|
+
:rtype: typing.List
|
|
149
|
+
:return: the members of this collection.
|
|
150
|
+
"""
|
|
151
|
+
...
|
|
152
|
+
|
|
153
|
+
def __getitem__(
|
|
154
|
+
self, key: typing.Optional[typing.Union[int, str]]
|
|
155
|
+
) -> "GenericType":
|
|
156
|
+
"""
|
|
157
|
+
|
|
158
|
+
:param key:
|
|
159
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
160
|
+
:rtype: 'GenericType'
|
|
161
|
+
"""
|
|
162
|
+
...
|
|
163
|
+
|
|
164
|
+
def __setitem__(
|
|
165
|
+
self, key: typing.Optional[typing.Union[int, str]], value: "GenericType"
|
|
166
|
+
):
|
|
167
|
+
"""
|
|
168
|
+
|
|
169
|
+
:param key:
|
|
170
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
171
|
+
:param value:
|
|
172
|
+
:type value: 'GenericType'
|
|
173
|
+
"""
|
|
174
|
+
...
|
|
175
|
+
|
|
176
|
+
def __delitem__(
|
|
177
|
+
self, key: typing.Optional[typing.Union[int, str]]
|
|
178
|
+
) -> "GenericType":
|
|
179
|
+
"""
|
|
180
|
+
|
|
181
|
+
:param key:
|
|
182
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
183
|
+
:rtype: 'GenericType'
|
|
184
|
+
"""
|
|
185
|
+
...
|
|
186
|
+
|
|
187
|
+
def __iter__(self) -> typing.Iterator["GenericType"]:
|
|
188
|
+
"""
|
|
189
|
+
|
|
190
|
+
:rtype: typing.Iterator['GenericType']
|
|
191
|
+
"""
|
|
192
|
+
...
|
|
193
|
+
|
|
194
|
+
def __next__(self) -> "GenericType":
|
|
195
|
+
"""
|
|
196
|
+
|
|
197
|
+
:rtype: 'GenericType'
|
|
198
|
+
"""
|
|
199
|
+
...
|
|
200
|
+
|
|
201
|
+
def __len__(self) -> int:
|
|
202
|
+
"""
|
|
203
|
+
|
|
204
|
+
:rtype: int
|
|
205
|
+
"""
|
|
206
|
+
...
|
|
207
|
+
|
|
96
208
|
class bpy_struct:
|
|
97
209
|
"""built-in base class for all classes in bpy.types."""
|
|
98
210
|
|
|
@@ -357,118 +469,6 @@ class bpy_struct:
|
|
|
357
469
|
"""
|
|
358
470
|
...
|
|
359
471
|
|
|
360
|
-
class bpy_prop_collection(typing.Generic[GenericType]):
|
|
361
|
-
"""built-in class used for all collections."""
|
|
362
|
-
|
|
363
|
-
def find(self, key: typing.Optional[str]) -> int:
|
|
364
|
-
"""Returns the index of a key in a collection or -1 when not found (matches Python's string find function of the same name).
|
|
365
|
-
|
|
366
|
-
:param key: The identifier for the collection member.
|
|
367
|
-
:type key: typing.Optional[str]
|
|
368
|
-
:rtype: int
|
|
369
|
-
:return: index of the key.
|
|
370
|
-
"""
|
|
371
|
-
...
|
|
372
|
-
|
|
373
|
-
def foreach_get(self, attr, seq):
|
|
374
|
-
"""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."""
|
|
375
|
-
...
|
|
376
|
-
|
|
377
|
-
def foreach_set(self, attr, seq):
|
|
378
|
-
"""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."""
|
|
379
|
-
...
|
|
380
|
-
|
|
381
|
-
def get(
|
|
382
|
-
self, key: typing.Optional[str], default: typing.Optional[typing.Any] = None
|
|
383
|
-
):
|
|
384
|
-
"""Returns the value of the item assigned to key or default when not found (matches Python's dictionary function of the same name).
|
|
385
|
-
|
|
386
|
-
:param key: The identifier for the collection member.
|
|
387
|
-
:type key: typing.Optional[str]
|
|
388
|
-
:param default: Optional argument for the value to return if *key* is not found.
|
|
389
|
-
:type default: typing.Optional[typing.Any]
|
|
390
|
-
"""
|
|
391
|
-
...
|
|
392
|
-
|
|
393
|
-
def items(self) -> typing.List:
|
|
394
|
-
"""Return the identifiers of collection members (matching Python's dict.items() functionality).
|
|
395
|
-
|
|
396
|
-
:rtype: typing.List
|
|
397
|
-
:return: (key, value) pairs for each member of this collection.
|
|
398
|
-
"""
|
|
399
|
-
...
|
|
400
|
-
|
|
401
|
-
def keys(self) -> typing.List[str]:
|
|
402
|
-
"""Return the identifiers of collection members (matching Python's dict.keys() functionality).
|
|
403
|
-
|
|
404
|
-
:rtype: typing.List[str]
|
|
405
|
-
:return: the identifiers for each member of this collection.
|
|
406
|
-
"""
|
|
407
|
-
...
|
|
408
|
-
|
|
409
|
-
def values(self) -> typing.List:
|
|
410
|
-
"""Return the values of collection (matching Python's dict.values() functionality).
|
|
411
|
-
|
|
412
|
-
:rtype: typing.List
|
|
413
|
-
:return: the members of this collection.
|
|
414
|
-
"""
|
|
415
|
-
...
|
|
416
|
-
|
|
417
|
-
def __getitem__(
|
|
418
|
-
self, key: typing.Optional[typing.Union[int, str]]
|
|
419
|
-
) -> "GenericType":
|
|
420
|
-
"""
|
|
421
|
-
|
|
422
|
-
:param key:
|
|
423
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
424
|
-
:rtype: 'GenericType'
|
|
425
|
-
"""
|
|
426
|
-
...
|
|
427
|
-
|
|
428
|
-
def __setitem__(
|
|
429
|
-
self, key: typing.Optional[typing.Union[int, str]], value: "GenericType"
|
|
430
|
-
):
|
|
431
|
-
"""
|
|
432
|
-
|
|
433
|
-
:param key:
|
|
434
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
435
|
-
:param value:
|
|
436
|
-
:type value: 'GenericType'
|
|
437
|
-
"""
|
|
438
|
-
...
|
|
439
|
-
|
|
440
|
-
def __delitem__(
|
|
441
|
-
self, key: typing.Optional[typing.Union[int, str]]
|
|
442
|
-
) -> "GenericType":
|
|
443
|
-
"""
|
|
444
|
-
|
|
445
|
-
:param key:
|
|
446
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
447
|
-
:rtype: 'GenericType'
|
|
448
|
-
"""
|
|
449
|
-
...
|
|
450
|
-
|
|
451
|
-
def __iter__(self) -> typing.Iterator["GenericType"]:
|
|
452
|
-
"""
|
|
453
|
-
|
|
454
|
-
:rtype: typing.Iterator['GenericType']
|
|
455
|
-
"""
|
|
456
|
-
...
|
|
457
|
-
|
|
458
|
-
def __next__(self) -> "GenericType":
|
|
459
|
-
"""
|
|
460
|
-
|
|
461
|
-
:rtype: 'GenericType'
|
|
462
|
-
"""
|
|
463
|
-
...
|
|
464
|
-
|
|
465
|
-
def __len__(self) -> int:
|
|
466
|
-
"""
|
|
467
|
-
|
|
468
|
-
:rtype: int
|
|
469
|
-
"""
|
|
470
|
-
...
|
|
471
|
-
|
|
472
472
|
class bpy_prop_array(typing.Generic[GenericType]):
|
|
473
473
|
def foreach_get(self, attr, seq): ...
|
|
474
474
|
def foreach_set(self, attr, seq): ...
|
|
@@ -15385,21 +15385,90 @@ class GpencilModifier(bpy_struct):
|
|
|
15385
15385
|
"""
|
|
15386
15386
|
...
|
|
15387
15387
|
|
|
15388
|
-
class GpencilVertexGroupElement(bpy_struct):
|
|
15389
|
-
"""Weight value of a vertex in a vertex group"""
|
|
15388
|
+
class GpencilVertexGroupElement(bpy_struct):
|
|
15389
|
+
"""Weight value of a vertex in a vertex group"""
|
|
15390
|
+
|
|
15391
|
+
group: int
|
|
15392
|
+
"""
|
|
15393
|
+
|
|
15394
|
+
:type: int
|
|
15395
|
+
"""
|
|
15396
|
+
|
|
15397
|
+
weight: float
|
|
15398
|
+
""" Vertex Weight
|
|
15399
|
+
|
|
15400
|
+
:type: float
|
|
15401
|
+
"""
|
|
15402
|
+
|
|
15403
|
+
@classmethod
|
|
15404
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
15405
|
+
"""
|
|
15406
|
+
|
|
15407
|
+
:param id: The RNA type identifier.
|
|
15408
|
+
:type id: typing.Optional[str]
|
|
15409
|
+
:rtype: 'Struct'
|
|
15410
|
+
:return: The RNA type or default when not found.
|
|
15411
|
+
"""
|
|
15412
|
+
...
|
|
15413
|
+
|
|
15414
|
+
@classmethod
|
|
15415
|
+
def bl_rna_get_subclass_py(
|
|
15416
|
+
cls, id: typing.Optional[str], default=None
|
|
15417
|
+
) -> typing.Any:
|
|
15418
|
+
"""
|
|
15419
|
+
|
|
15420
|
+
:param id: The RNA type identifier.
|
|
15421
|
+
:type id: typing.Optional[str]
|
|
15422
|
+
:rtype: typing.Any
|
|
15423
|
+
:return: The class or default when not found.
|
|
15424
|
+
"""
|
|
15425
|
+
...
|
|
15426
|
+
|
|
15427
|
+
class GreasePencilDashModifierSegment(bpy_struct):
|
|
15428
|
+
"""Configuration for a single dash segment"""
|
|
15390
15429
|
|
|
15391
|
-
|
|
15392
|
-
"""
|
|
15430
|
+
dash: int
|
|
15431
|
+
""" The number of consecutive points from the original stroke to include in this segment
|
|
15393
15432
|
|
|
15394
15433
|
:type: int
|
|
15395
15434
|
"""
|
|
15396
15435
|
|
|
15397
|
-
|
|
15398
|
-
"""
|
|
15436
|
+
gap: int
|
|
15437
|
+
""" The number of points skipped after this segment
|
|
15438
|
+
|
|
15439
|
+
:type: int
|
|
15440
|
+
"""
|
|
15441
|
+
|
|
15442
|
+
material_index: int
|
|
15443
|
+
""" Use this index on generated segment. -1 means using the existing material
|
|
15444
|
+
|
|
15445
|
+
:type: int
|
|
15446
|
+
"""
|
|
15447
|
+
|
|
15448
|
+
name: typing.Union[str, typing.Any]
|
|
15449
|
+
""" Name of the dash segment
|
|
15450
|
+
|
|
15451
|
+
:type: typing.Union[str, typing.Any]
|
|
15452
|
+
"""
|
|
15453
|
+
|
|
15454
|
+
opacity: float
|
|
15455
|
+
""" The factor to apply to the original point's opacity for the new points
|
|
15399
15456
|
|
|
15400
15457
|
:type: float
|
|
15401
15458
|
"""
|
|
15402
15459
|
|
|
15460
|
+
radius: float
|
|
15461
|
+
""" The factor to apply to the original point's radius for the new points
|
|
15462
|
+
|
|
15463
|
+
:type: float
|
|
15464
|
+
"""
|
|
15465
|
+
|
|
15466
|
+
use_cyclic: bool
|
|
15467
|
+
""" Enable cyclic on individual stroke dashes
|
|
15468
|
+
|
|
15469
|
+
:type: bool
|
|
15470
|
+
"""
|
|
15471
|
+
|
|
15403
15472
|
@classmethod
|
|
15404
15473
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
15405
15474
|
"""
|
|
@@ -29769,6 +29838,12 @@ class RenderSettings(bpy_struct):
|
|
|
29769
29838
|
:type: typing.Union[str, int]
|
|
29770
29839
|
"""
|
|
29771
29840
|
|
|
29841
|
+
motion_blur_position: typing.Union[str, int]
|
|
29842
|
+
""" Offset for the shutter's time interval, allows to change the motion blur trails * ``START`` Start on Frame -- The shutter opens at the current frame. * ``CENTER`` Center on Frame -- The shutter is open during the current frame. * ``END`` End on Frame -- The shutter closes at the current frame.
|
|
29843
|
+
|
|
29844
|
+
:type: typing.Union[str, int]
|
|
29845
|
+
"""
|
|
29846
|
+
|
|
29772
29847
|
motion_blur_shutter: float
|
|
29773
29848
|
""" Time taken in frames between shutter open and close
|
|
29774
29849
|
|
|
@@ -31413,18 +31488,6 @@ class SceneEEVEE(bpy_struct):
|
|
|
31413
31488
|
:type: int
|
|
31414
31489
|
"""
|
|
31415
31490
|
|
|
31416
|
-
motion_blur_position: typing.Union[str, int]
|
|
31417
|
-
""" Offset for the shutter's time interval, allows to change the motion blur trails * ``START`` Start on Frame -- The shutter opens at the current frame. * ``CENTER`` Center on Frame -- The shutter is open during the current frame. * ``END`` End on Frame -- The shutter closes at the current frame.
|
|
31418
|
-
|
|
31419
|
-
:type: typing.Union[str, int]
|
|
31420
|
-
"""
|
|
31421
|
-
|
|
31422
|
-
motion_blur_shutter: float
|
|
31423
|
-
""" Time taken in frames between shutter open and close
|
|
31424
|
-
|
|
31425
|
-
:type: float
|
|
31426
|
-
"""
|
|
31427
|
-
|
|
31428
31491
|
motion_blur_steps: int
|
|
31429
31492
|
""" Controls accuracy of motion blur, more steps means longer render time
|
|
31430
31493
|
|
|
@@ -31575,12 +31638,6 @@ class SceneEEVEE(bpy_struct):
|
|
|
31575
31638
|
:type: bool
|
|
31576
31639
|
"""
|
|
31577
31640
|
|
|
31578
|
-
use_motion_blur: bool
|
|
31579
|
-
""" Enable motion blur effect (only in camera view)
|
|
31580
|
-
|
|
31581
|
-
:type: bool
|
|
31582
|
-
"""
|
|
31583
|
-
|
|
31584
31641
|
use_overscan: bool
|
|
31585
31642
|
""" Internally render past the image border to avoid screen-space effects disappearing
|
|
31586
31643
|
|
|
@@ -69018,6 +69075,234 @@ class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
|
69018
69075
|
"""
|
|
69019
69076
|
...
|
|
69020
69077
|
|
|
69078
|
+
class GreasePencilDashModifierData(Modifier, bpy_struct):
|
|
69079
|
+
"""Create dot-dash effect for strokes"""
|
|
69080
|
+
|
|
69081
|
+
dash_offset: int
|
|
69082
|
+
""" Offset into each stroke before the beginning of the dashed segment generation
|
|
69083
|
+
|
|
69084
|
+
:type: int
|
|
69085
|
+
"""
|
|
69086
|
+
|
|
69087
|
+
invert_layer_filter: bool
|
|
69088
|
+
""" Invert layer filter
|
|
69089
|
+
|
|
69090
|
+
:type: bool
|
|
69091
|
+
"""
|
|
69092
|
+
|
|
69093
|
+
invert_layer_pass_filter: bool
|
|
69094
|
+
""" Invert layer pass filter
|
|
69095
|
+
|
|
69096
|
+
:type: bool
|
|
69097
|
+
"""
|
|
69098
|
+
|
|
69099
|
+
invert_material_filter: bool
|
|
69100
|
+
""" Invert material filter
|
|
69101
|
+
|
|
69102
|
+
:type: bool
|
|
69103
|
+
"""
|
|
69104
|
+
|
|
69105
|
+
invert_material_pass_filter: bool
|
|
69106
|
+
""" Invert material pass filter
|
|
69107
|
+
|
|
69108
|
+
:type: bool
|
|
69109
|
+
"""
|
|
69110
|
+
|
|
69111
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
69112
|
+
""" Layer name
|
|
69113
|
+
|
|
69114
|
+
:type: typing.Union[str, typing.Any]
|
|
69115
|
+
"""
|
|
69116
|
+
|
|
69117
|
+
layer_pass_filter: int
|
|
69118
|
+
""" Layer pass filter
|
|
69119
|
+
|
|
69120
|
+
:type: int
|
|
69121
|
+
"""
|
|
69122
|
+
|
|
69123
|
+
material_filter: "Material"
|
|
69124
|
+
""" Material used for filtering
|
|
69125
|
+
|
|
69126
|
+
:type: 'Material'
|
|
69127
|
+
"""
|
|
69128
|
+
|
|
69129
|
+
material_pass_filter: int
|
|
69130
|
+
""" Material pass
|
|
69131
|
+
|
|
69132
|
+
:type: int
|
|
69133
|
+
"""
|
|
69134
|
+
|
|
69135
|
+
open_influence_panel: bool
|
|
69136
|
+
"""
|
|
69137
|
+
|
|
69138
|
+
:type: bool
|
|
69139
|
+
"""
|
|
69140
|
+
|
|
69141
|
+
segment_active_index: int
|
|
69142
|
+
""" Active index in the segment list
|
|
69143
|
+
|
|
69144
|
+
:type: int
|
|
69145
|
+
"""
|
|
69146
|
+
|
|
69147
|
+
segments: bpy_prop_collection["GreasePencilDashModifierSegment"]
|
|
69148
|
+
"""
|
|
69149
|
+
|
|
69150
|
+
:type: bpy_prop_collection['GreasePencilDashModifierSegment']
|
|
69151
|
+
"""
|
|
69152
|
+
|
|
69153
|
+
use_layer_pass_filter: bool
|
|
69154
|
+
""" Use layer pass filter
|
|
69155
|
+
|
|
69156
|
+
:type: bool
|
|
69157
|
+
"""
|
|
69158
|
+
|
|
69159
|
+
use_material_pass_filter: bool
|
|
69160
|
+
""" Use material pass filter
|
|
69161
|
+
|
|
69162
|
+
:type: bool
|
|
69163
|
+
"""
|
|
69164
|
+
|
|
69165
|
+
@classmethod
|
|
69166
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
69167
|
+
"""
|
|
69168
|
+
|
|
69169
|
+
:param id: The RNA type identifier.
|
|
69170
|
+
:type id: typing.Optional[str]
|
|
69171
|
+
:rtype: 'Struct'
|
|
69172
|
+
:return: The RNA type or default when not found.
|
|
69173
|
+
"""
|
|
69174
|
+
...
|
|
69175
|
+
|
|
69176
|
+
@classmethod
|
|
69177
|
+
def bl_rna_get_subclass_py(
|
|
69178
|
+
cls, id: typing.Optional[str], default=None
|
|
69179
|
+
) -> typing.Any:
|
|
69180
|
+
"""
|
|
69181
|
+
|
|
69182
|
+
:param id: The RNA type identifier.
|
|
69183
|
+
:type id: typing.Optional[str]
|
|
69184
|
+
:rtype: typing.Any
|
|
69185
|
+
:return: The class or default when not found.
|
|
69186
|
+
"""
|
|
69187
|
+
...
|
|
69188
|
+
|
|
69189
|
+
class GreasePencilLatticeModifier(Modifier, bpy_struct):
|
|
69190
|
+
"""Deform strokes using a lattice object"""
|
|
69191
|
+
|
|
69192
|
+
invert_layer_filter: bool
|
|
69193
|
+
""" Invert layer filter
|
|
69194
|
+
|
|
69195
|
+
:type: bool
|
|
69196
|
+
"""
|
|
69197
|
+
|
|
69198
|
+
invert_layer_pass_filter: bool
|
|
69199
|
+
""" Invert layer pass filter
|
|
69200
|
+
|
|
69201
|
+
:type: bool
|
|
69202
|
+
"""
|
|
69203
|
+
|
|
69204
|
+
invert_material_filter: bool
|
|
69205
|
+
""" Invert material filter
|
|
69206
|
+
|
|
69207
|
+
:type: bool
|
|
69208
|
+
"""
|
|
69209
|
+
|
|
69210
|
+
invert_material_pass_filter: bool
|
|
69211
|
+
""" Invert material pass filter
|
|
69212
|
+
|
|
69213
|
+
:type: bool
|
|
69214
|
+
"""
|
|
69215
|
+
|
|
69216
|
+
invert_vertex_group: bool
|
|
69217
|
+
""" Invert vertex group weights
|
|
69218
|
+
|
|
69219
|
+
:type: bool
|
|
69220
|
+
"""
|
|
69221
|
+
|
|
69222
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
69223
|
+
""" Layer name
|
|
69224
|
+
|
|
69225
|
+
:type: typing.Union[str, typing.Any]
|
|
69226
|
+
"""
|
|
69227
|
+
|
|
69228
|
+
layer_pass_filter: int
|
|
69229
|
+
""" Layer pass filter
|
|
69230
|
+
|
|
69231
|
+
:type: int
|
|
69232
|
+
"""
|
|
69233
|
+
|
|
69234
|
+
material_filter: "Material"
|
|
69235
|
+
""" Material used for filtering
|
|
69236
|
+
|
|
69237
|
+
:type: 'Material'
|
|
69238
|
+
"""
|
|
69239
|
+
|
|
69240
|
+
material_pass_filter: int
|
|
69241
|
+
""" Material pass
|
|
69242
|
+
|
|
69243
|
+
:type: int
|
|
69244
|
+
"""
|
|
69245
|
+
|
|
69246
|
+
object: "Object"
|
|
69247
|
+
""" Lattice object to deform with
|
|
69248
|
+
|
|
69249
|
+
:type: 'Object'
|
|
69250
|
+
"""
|
|
69251
|
+
|
|
69252
|
+
open_influence_panel: bool
|
|
69253
|
+
"""
|
|
69254
|
+
|
|
69255
|
+
:type: bool
|
|
69256
|
+
"""
|
|
69257
|
+
|
|
69258
|
+
strength: float
|
|
69259
|
+
""" Strength of modifier effect
|
|
69260
|
+
|
|
69261
|
+
:type: float
|
|
69262
|
+
"""
|
|
69263
|
+
|
|
69264
|
+
use_layer_pass_filter: bool
|
|
69265
|
+
""" Use layer pass filter
|
|
69266
|
+
|
|
69267
|
+
:type: bool
|
|
69268
|
+
"""
|
|
69269
|
+
|
|
69270
|
+
use_material_pass_filter: bool
|
|
69271
|
+
""" Use material pass filter
|
|
69272
|
+
|
|
69273
|
+
:type: bool
|
|
69274
|
+
"""
|
|
69275
|
+
|
|
69276
|
+
vertex_group_name: typing.Union[str, typing.Any]
|
|
69277
|
+
""" Vertex group name for modulating the deform
|
|
69278
|
+
|
|
69279
|
+
:type: typing.Union[str, typing.Any]
|
|
69280
|
+
"""
|
|
69281
|
+
|
|
69282
|
+
@classmethod
|
|
69283
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
69284
|
+
"""
|
|
69285
|
+
|
|
69286
|
+
:param id: The RNA type identifier.
|
|
69287
|
+
:type id: typing.Optional[str]
|
|
69288
|
+
:rtype: 'Struct'
|
|
69289
|
+
:return: The RNA type or default when not found.
|
|
69290
|
+
"""
|
|
69291
|
+
...
|
|
69292
|
+
|
|
69293
|
+
@classmethod
|
|
69294
|
+
def bl_rna_get_subclass_py(
|
|
69295
|
+
cls, id: typing.Optional[str], default=None
|
|
69296
|
+
) -> typing.Any:
|
|
69297
|
+
"""
|
|
69298
|
+
|
|
69299
|
+
:param id: The RNA type identifier.
|
|
69300
|
+
:type id: typing.Optional[str]
|
|
69301
|
+
:rtype: typing.Any
|
|
69302
|
+
:return: The class or default when not found.
|
|
69303
|
+
"""
|
|
69304
|
+
...
|
|
69305
|
+
|
|
69021
69306
|
class GreasePencilMirrorModifier(Modifier, bpy_struct):
|
|
69022
69307
|
invert_layer_filter: bool
|
|
69023
69308
|
""" Invert layer filter
|