fake-bpy-module 20240130__py3-none-any.whl → 20240201__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bl_console_utils/autocomplete/__init__.pyi +2 -2
- bl_i18n_utils/__init__.pyi +4 -4
- bl_keymap_utils/__init__.pyi +3 -3
- bl_operators/__init__.pyi +22 -22
- bl_ui/__init__.pyi +61 -61
- bl_ui/space_image/__init__.pyi +2 -2
- bl_ui/space_userpref/__init__.pyi +40 -88
- bmesh/__init__.pyi +1 -1
- bpy/__init__.pyi +3 -3
- bpy/app/__init__.pyi +1 -1
- bpy/ops/__init__.pyi +61 -61
- bpy/ops/image/__init__.pyi +20 -0
- bpy/ops/object/__init__.pyi +1 -1
- bpy/ops/preferences/__init__.pyi +11 -11
- bpy/types/__init__.pyi +483 -193
- bpy/utils/__init__.pyi +1 -1
- bpy_extras/__init__.pyi +6 -6
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20240130.dist-info → fake_bpy_module-20240201.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240130.dist-info → fake_bpy_module-20240201.dist-info}/RECORD +26 -26
- freestyle/__init__.pyi +2 -2
- gpu/__init__.pyi +4 -4
- mathutils/__init__.pyi +1 -1
- rna_prop_ui/__init__.pyi +1 -0
- {fake_bpy_module-20240130.dist-info → fake_bpy_module-20240201.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240130.dist-info → fake_bpy_module-20240201.dist-info}/top_level.txt +0 -0
bpy/types/__init__.pyi
CHANGED
|
@@ -2,209 +2,97 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import mathutils
|
|
4
4
|
import bpy
|
|
5
|
-
import bl_operators.constraint
|
|
6
|
-
import bl_ui.anim
|
|
7
|
-
import bl_operators.wm
|
|
8
|
-
import bl_ui.properties_data_camera
|
|
9
|
-
import bl_ui.properties_data_pointcloud
|
|
10
|
-
import bl_ui.properties_data_bone
|
|
11
|
-
import bl_ui.space_spreadsheet
|
|
12
|
-
import bl_ui.space_clip
|
|
13
|
-
import bl_ui
|
|
14
|
-
import bl_operators.assets
|
|
15
|
-
import bl_ui.properties_physics_softbody
|
|
16
|
-
import bl_operators.node
|
|
17
|
-
import bl_operators.view3d
|
|
18
|
-
import bl_ui.space_topbar
|
|
19
|
-
import bl_ui.properties_collection
|
|
20
|
-
import bl_operators.file
|
|
21
5
|
import bl_ui.node_add_menu_shader
|
|
22
|
-
import bl_ui.
|
|
23
|
-
import bl_ui.properties_data_speaker
|
|
24
|
-
import bl_ui.properties_view_layer
|
|
25
|
-
import bl_ui.properties_output
|
|
6
|
+
import bl_ui.properties_data_light
|
|
26
7
|
import bl_operators.freestyle
|
|
27
|
-
import
|
|
28
|
-
import bl_ui.properties_physics_field
|
|
29
|
-
import bl_ui.node_add_menu_geometry
|
|
30
|
-
import bl_ui.properties_particle
|
|
31
|
-
import bl_ui.properties_constraint
|
|
32
|
-
import bl_ui.properties_physics_fluid
|
|
33
|
-
import bl_ui.node_add_menu
|
|
8
|
+
import bl_operators.wm
|
|
34
9
|
import bl_ui.space_graph
|
|
35
|
-
import bl_ui.
|
|
36
|
-
import bl_ui.
|
|
10
|
+
import bl_ui.properties_data_gpencil
|
|
11
|
+
import bl_ui.space_node
|
|
12
|
+
import bl_ui.properties_data_shaderfx
|
|
13
|
+
import bl_ui.properties_object
|
|
14
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
15
|
+
import bl_operators.node
|
|
16
|
+
import bl_ui.space_properties
|
|
37
17
|
import bl_ui.space_info
|
|
18
|
+
import bl_ui.properties_data_curves
|
|
38
19
|
import bl_operators.clip
|
|
39
|
-
import bl_ui.properties_data_lattice
|
|
40
|
-
import bl_ui.properties_data_armature
|
|
41
|
-
import bl_ui.properties_data_lightprobe
|
|
42
|
-
import bl_ui.properties_object
|
|
43
|
-
import bl_ui.space_userpref
|
|
44
20
|
import bl_operators.spreadsheet
|
|
45
|
-
import
|
|
46
|
-
import bl_ui.
|
|
47
|
-
import bl_operators.userpref
|
|
48
|
-
import bl_ui.space_toolsystem_toolbar
|
|
49
|
-
import bl_ui.properties_data_mesh
|
|
50
|
-
import bl_ui.space_outliner
|
|
21
|
+
import bl_ui.properties_collection
|
|
22
|
+
import bl_ui.space_console
|
|
51
23
|
import bl_ui.node_add_menu_compositor
|
|
52
|
-
import bl_ui.
|
|
53
|
-
import bl_ui.
|
|
54
|
-
import bl_ui.
|
|
55
|
-
import bl_ui.space_toolsystem_common
|
|
56
|
-
import bl_ui.node_add_menu_texture
|
|
57
|
-
import bl_ui.properties_data_curve
|
|
58
|
-
import bl_operators.anim
|
|
24
|
+
import bl_ui.properties_scene
|
|
25
|
+
import bl_ui.space_sequencer
|
|
26
|
+
import bl_ui.properties_texture
|
|
59
27
|
import bl_ui.properties_physics_geometry_nodes
|
|
60
|
-
import bl_ui.space_filebrowser
|
|
61
|
-
import bl_ui.space_time
|
|
62
|
-
import bl_ui.space_view3d
|
|
63
|
-
import bl_ui.properties_paint_common
|
|
64
28
|
import bl_ui.space_nla
|
|
65
|
-
import bl_ui.space_text
|
|
66
|
-
import bl_ui.properties_physics_dynamicpaint
|
|
67
|
-
import bl_ui.properties_data_gpencil
|
|
68
|
-
import bl_ui.properties_texture
|
|
69
|
-
import bl_ui.space_sequencer
|
|
70
|
-
import bl_ui.properties_scene
|
|
71
|
-
import bl_ui.properties_data_light
|
|
72
|
-
import bl_ui.properties_grease_pencil_common
|
|
73
|
-
import bl_ui.properties_physics_rigidbody_constraint
|
|
74
29
|
import bl_ui.properties_data_metaball
|
|
75
|
-
import bl_ui.properties_data_modifier
|
|
76
|
-
import bl_ui.space_view3d_toolbar
|
|
77
|
-
import bl_ui.properties_mask_common
|
|
78
|
-
import bl_ui.properties_data_shaderfx
|
|
79
|
-
import bl_ui.space_image
|
|
80
30
|
import bl_ui.properties_physics_rigidbody
|
|
31
|
+
import bl_ui.space_text
|
|
32
|
+
import bl_operators.anim
|
|
33
|
+
import bl_operators.presets
|
|
34
|
+
import bl_ui.properties_data_lattice
|
|
35
|
+
import bl_ui.space_image
|
|
36
|
+
import bl_ui.space_outliner
|
|
37
|
+
import bl_ui
|
|
38
|
+
import bl_ui.properties_data_bone
|
|
39
|
+
import bl_ui.space_statusbar
|
|
40
|
+
import bl_ui.node_add_menu_texture
|
|
41
|
+
import bl_ui.space_view3d
|
|
42
|
+
import bl_ui.properties_data_speaker
|
|
43
|
+
import bl_ui.properties_physics_fluid
|
|
44
|
+
import bl_operators.userpref
|
|
45
|
+
import bl_operators.file
|
|
46
|
+
import bl_ui.space_toolsystem_common
|
|
47
|
+
import bl_ui.space_view3d_toolbar
|
|
48
|
+
import bl_ui.properties_paint_common
|
|
49
|
+
import bl_ui.properties_constraint
|
|
50
|
+
import bl_ui.properties_data_mesh
|
|
51
|
+
import bl_ui.space_spreadsheet
|
|
52
|
+
import bl_ui.properties_data_modifier
|
|
53
|
+
import bl_ui.space_userpref
|
|
54
|
+
import bl_operators.assets
|
|
55
|
+
import bl_ui.space_filebrowser
|
|
56
|
+
import bl_ui.properties_material_gpencil
|
|
57
|
+
import bl_ui.space_clip
|
|
58
|
+
import bl_ui.properties_physics_cloth
|
|
59
|
+
import bl_ui.node_add_menu_geometry
|
|
60
|
+
import bl_ui.properties_data_curve
|
|
81
61
|
import bl_ui.properties_render
|
|
62
|
+
import bl_ui.properties_particle
|
|
82
63
|
import bl_ui.properties_data_empty
|
|
83
|
-
import bl_ui.
|
|
84
|
-
import bl_ui.
|
|
64
|
+
import bl_ui.properties_physics_softbody
|
|
65
|
+
import bl_ui.node_add_menu
|
|
66
|
+
import bl_ui.asset_shelf
|
|
67
|
+
import bl_operators.constraint
|
|
68
|
+
import bl_ui.properties_physics_common
|
|
69
|
+
import bl_ui.properties_data_lightprobe
|
|
70
|
+
import bl_ui.properties_output
|
|
71
|
+
import bl_ui.properties_view_layer
|
|
85
72
|
import bl_ui.space_dopesheet
|
|
73
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
74
|
+
import bl_ui.properties_data_armature
|
|
86
75
|
import bl_ui.properties_material
|
|
76
|
+
import bl_operators.object
|
|
77
|
+
import bl_ui.anim
|
|
78
|
+
import bl_ui.properties_physics_field
|
|
79
|
+
import bl_ui.properties_workspace
|
|
87
80
|
import bl_ui.generic_ui_list
|
|
88
|
-
import bl_ui.properties_physics_cloth
|
|
89
|
-
import bl_ui.space_properties
|
|
90
81
|
import bl_ui.properties_data_volume
|
|
91
|
-
import bl_operators.
|
|
92
|
-
import bl_ui.
|
|
82
|
+
import bl_operators.view3d
|
|
83
|
+
import bl_ui.properties_grease_pencil_common
|
|
84
|
+
import bl_ui.space_topbar
|
|
85
|
+
import bl_ui.properties_data_pointcloud
|
|
86
|
+
import bl_ui.properties_data_grease_pencil
|
|
87
|
+
import bl_ui.properties_world
|
|
88
|
+
import bl_ui.space_toolsystem_toolbar
|
|
89
|
+
import bl_ui.properties_data_camera
|
|
90
|
+
import bl_ui.properties_freestyle
|
|
91
|
+
import bl_ui.space_time
|
|
92
|
+
import bl_ui.properties_mask_common
|
|
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
|
-
|
|
208
96
|
class bpy_struct:
|
|
209
97
|
"""built-in base class for all classes in bpy.types."""
|
|
210
98
|
|
|
@@ -469,6 +357,118 @@ class bpy_struct:
|
|
|
469
357
|
"""
|
|
470
358
|
...
|
|
471
359
|
|
|
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): ...
|
|
@@ -23312,12 +23312,6 @@ class Paint(bpy_struct):
|
|
|
23312
23312
|
:type: 'CurveMapping'
|
|
23313
23313
|
"""
|
|
23314
23314
|
|
|
23315
|
-
input_samples: int
|
|
23316
|
-
""" Average multiple input samples together to smooth the brush stroke
|
|
23317
|
-
|
|
23318
|
-
:type: int
|
|
23319
|
-
"""
|
|
23320
|
-
|
|
23321
23315
|
palette: "Palette"
|
|
23322
23316
|
""" Active Palette
|
|
23323
23317
|
|
|
@@ -43010,6 +43004,12 @@ class UnifiedPaintSettings(bpy_struct):
|
|
|
43010
43004
|
:type: typing.Union[typing.List[float], typing.Tuple[float, float, float], 'mathutils.Color']
|
|
43011
43005
|
"""
|
|
43012
43006
|
|
|
43007
|
+
input_samples: int
|
|
43008
|
+
""" Number of input samples to average together to smooth the brush stroke
|
|
43009
|
+
|
|
43010
|
+
:type: int
|
|
43011
|
+
"""
|
|
43012
|
+
|
|
43013
43013
|
secondary_color: typing.Union[
|
|
43014
43014
|
typing.List[float], typing.Tuple[float, float, float], "mathutils.Color"
|
|
43015
43015
|
]
|
|
@@ -43048,6 +43048,12 @@ class UnifiedPaintSettings(bpy_struct):
|
|
|
43048
43048
|
:type: bool
|
|
43049
43049
|
"""
|
|
43050
43050
|
|
|
43051
|
+
use_unified_input_samples: bool
|
|
43052
|
+
""" Instead of per-brush input samples, the value is shared across brushes
|
|
43053
|
+
|
|
43054
|
+
:type: bool
|
|
43055
|
+
"""
|
|
43056
|
+
|
|
43051
43057
|
use_unified_size: bool
|
|
43052
43058
|
""" Instead of per-brush radius, the radius is shared across brushes
|
|
43053
43059
|
|
|
@@ -56531,6 +56537,12 @@ class Brush(ID, bpy_struct):
|
|
|
56531
56537
|
:type: typing.Union[str, int]
|
|
56532
56538
|
"""
|
|
56533
56539
|
|
|
56540
|
+
input_samples: int
|
|
56541
|
+
""" Number of input samples to average together to smooth the brush stroke
|
|
56542
|
+
|
|
56543
|
+
:type: int
|
|
56544
|
+
"""
|
|
56545
|
+
|
|
56534
56546
|
invert_density_pressure: bool
|
|
56535
56547
|
""" Invert the modulation of pressure in density
|
|
56536
56548
|
|
|
@@ -68803,6 +68815,12 @@ class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
|
68803
68815
|
:type: int
|
|
68804
68816
|
"""
|
|
68805
68817
|
|
|
68818
|
+
open_influence_panel: bool
|
|
68819
|
+
"""
|
|
68820
|
+
|
|
68821
|
+
:type: bool
|
|
68822
|
+
"""
|
|
68823
|
+
|
|
68806
68824
|
saturation: float
|
|
68807
68825
|
""" Color saturation factor
|
|
68808
68826
|
|
|
@@ -68857,6 +68875,121 @@ class GreasePencilColorModifier(Modifier, bpy_struct):
|
|
|
68857
68875
|
"""
|
|
68858
68876
|
...
|
|
68859
68877
|
|
|
68878
|
+
class GreasePencilMirrorModifier(Modifier, bpy_struct):
|
|
68879
|
+
invert_layer_filter: bool
|
|
68880
|
+
""" Invert layer filter
|
|
68881
|
+
|
|
68882
|
+
:type: bool
|
|
68883
|
+
"""
|
|
68884
|
+
|
|
68885
|
+
invert_layer_pass_filter: bool
|
|
68886
|
+
""" Invert layer pass filter
|
|
68887
|
+
|
|
68888
|
+
:type: bool
|
|
68889
|
+
"""
|
|
68890
|
+
|
|
68891
|
+
invert_material_filter: bool
|
|
68892
|
+
""" Invert material filter
|
|
68893
|
+
|
|
68894
|
+
:type: bool
|
|
68895
|
+
"""
|
|
68896
|
+
|
|
68897
|
+
invert_material_pass_filter: bool
|
|
68898
|
+
""" Invert material pass filter
|
|
68899
|
+
|
|
68900
|
+
:type: bool
|
|
68901
|
+
"""
|
|
68902
|
+
|
|
68903
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
68904
|
+
""" Layer name
|
|
68905
|
+
|
|
68906
|
+
:type: typing.Union[str, typing.Any]
|
|
68907
|
+
"""
|
|
68908
|
+
|
|
68909
|
+
layer_pass_filter: int
|
|
68910
|
+
""" Layer pass filter
|
|
68911
|
+
|
|
68912
|
+
:type: int
|
|
68913
|
+
"""
|
|
68914
|
+
|
|
68915
|
+
material_filter: "Material"
|
|
68916
|
+
""" Material used for filtering
|
|
68917
|
+
|
|
68918
|
+
:type: 'Material'
|
|
68919
|
+
"""
|
|
68920
|
+
|
|
68921
|
+
material_pass_filter: int
|
|
68922
|
+
""" Material pass
|
|
68923
|
+
|
|
68924
|
+
:type: int
|
|
68925
|
+
"""
|
|
68926
|
+
|
|
68927
|
+
object: "Object"
|
|
68928
|
+
""" Object used as center
|
|
68929
|
+
|
|
68930
|
+
:type: 'Object'
|
|
68931
|
+
"""
|
|
68932
|
+
|
|
68933
|
+
open_influence_panel: bool
|
|
68934
|
+
"""
|
|
68935
|
+
|
|
68936
|
+
:type: bool
|
|
68937
|
+
"""
|
|
68938
|
+
|
|
68939
|
+
use_axis_x: bool
|
|
68940
|
+
""" Mirror the X axis
|
|
68941
|
+
|
|
68942
|
+
:type: bool
|
|
68943
|
+
"""
|
|
68944
|
+
|
|
68945
|
+
use_axis_y: bool
|
|
68946
|
+
""" Mirror the Y axis
|
|
68947
|
+
|
|
68948
|
+
:type: bool
|
|
68949
|
+
"""
|
|
68950
|
+
|
|
68951
|
+
use_axis_z: bool
|
|
68952
|
+
""" Mirror the Z axis
|
|
68953
|
+
|
|
68954
|
+
:type: bool
|
|
68955
|
+
"""
|
|
68956
|
+
|
|
68957
|
+
use_layer_pass_filter: bool
|
|
68958
|
+
""" Use layer pass filter
|
|
68959
|
+
|
|
68960
|
+
:type: bool
|
|
68961
|
+
"""
|
|
68962
|
+
|
|
68963
|
+
use_material_pass_filter: bool
|
|
68964
|
+
""" Use material pass filter
|
|
68965
|
+
|
|
68966
|
+
:type: bool
|
|
68967
|
+
"""
|
|
68968
|
+
|
|
68969
|
+
@classmethod
|
|
68970
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
68971
|
+
"""
|
|
68972
|
+
|
|
68973
|
+
:param id: The RNA type identifier.
|
|
68974
|
+
:type id: typing.Optional[str]
|
|
68975
|
+
:rtype: 'Struct'
|
|
68976
|
+
:return: The RNA type or default when not found.
|
|
68977
|
+
"""
|
|
68978
|
+
...
|
|
68979
|
+
|
|
68980
|
+
@classmethod
|
|
68981
|
+
def bl_rna_get_subclass_py(
|
|
68982
|
+
cls, id: typing.Optional[str], default=None
|
|
68983
|
+
) -> typing.Any:
|
|
68984
|
+
"""
|
|
68985
|
+
|
|
68986
|
+
:param id: The RNA type identifier.
|
|
68987
|
+
:type id: typing.Optional[str]
|
|
68988
|
+
:rtype: typing.Any
|
|
68989
|
+
:return: The class or default when not found.
|
|
68990
|
+
"""
|
|
68991
|
+
...
|
|
68992
|
+
|
|
68860
68993
|
class GreasePencilNoiseModifier(Modifier, bpy_struct):
|
|
68861
68994
|
"""Noise effect modifier"""
|
|
68862
68995
|
|
|
@@ -69109,6 +69242,12 @@ class GreasePencilOffsetModifier(Modifier, bpy_struct):
|
|
|
69109
69242
|
:type: typing.Union[str, int]
|
|
69110
69243
|
"""
|
|
69111
69244
|
|
|
69245
|
+
open_influence_panel: bool
|
|
69246
|
+
"""
|
|
69247
|
+
|
|
69248
|
+
:type: bool
|
|
69249
|
+
"""
|
|
69250
|
+
|
|
69112
69251
|
rotation: typing.Union[
|
|
69113
69252
|
typing.List[float], typing.Tuple[float, float, float], "mathutils.Euler"
|
|
69114
69253
|
]
|
|
@@ -69294,6 +69433,12 @@ class GreasePencilOpacityModifier(Modifier, bpy_struct):
|
|
|
69294
69433
|
:type: int
|
|
69295
69434
|
"""
|
|
69296
69435
|
|
|
69436
|
+
open_influence_panel: bool
|
|
69437
|
+
"""
|
|
69438
|
+
|
|
69439
|
+
:type: bool
|
|
69440
|
+
"""
|
|
69441
|
+
|
|
69297
69442
|
use_custom_curve: bool
|
|
69298
69443
|
""" Use a custom curve to define a factor along the strokes
|
|
69299
69444
|
|
|
@@ -69636,6 +69781,147 @@ class GreasePencilSubdivModifier(Modifier, bpy_struct):
|
|
|
69636
69781
|
"""
|
|
69637
69782
|
...
|
|
69638
69783
|
|
|
69784
|
+
class GreasePencilThickModifierData(Modifier, bpy_struct):
|
|
69785
|
+
"""Adjust stroke thickness"""
|
|
69786
|
+
|
|
69787
|
+
custom_curve: "CurveMapping"
|
|
69788
|
+
""" Custom curve to apply effect
|
|
69789
|
+
|
|
69790
|
+
:type: 'CurveMapping'
|
|
69791
|
+
"""
|
|
69792
|
+
|
|
69793
|
+
invert_layer_filter: bool
|
|
69794
|
+
""" Invert layer filter
|
|
69795
|
+
|
|
69796
|
+
:type: bool
|
|
69797
|
+
"""
|
|
69798
|
+
|
|
69799
|
+
invert_layer_pass_filter: bool
|
|
69800
|
+
""" Invert layer pass filter
|
|
69801
|
+
|
|
69802
|
+
:type: bool
|
|
69803
|
+
"""
|
|
69804
|
+
|
|
69805
|
+
invert_material_filter: bool
|
|
69806
|
+
""" Invert material filter
|
|
69807
|
+
|
|
69808
|
+
:type: bool
|
|
69809
|
+
"""
|
|
69810
|
+
|
|
69811
|
+
invert_material_pass_filter: bool
|
|
69812
|
+
""" Invert material pass filter
|
|
69813
|
+
|
|
69814
|
+
:type: bool
|
|
69815
|
+
"""
|
|
69816
|
+
|
|
69817
|
+
invert_vertex_group: bool
|
|
69818
|
+
""" Invert vertex group weights
|
|
69819
|
+
|
|
69820
|
+
:type: bool
|
|
69821
|
+
"""
|
|
69822
|
+
|
|
69823
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
69824
|
+
""" Layer name
|
|
69825
|
+
|
|
69826
|
+
:type: typing.Union[str, typing.Any]
|
|
69827
|
+
"""
|
|
69828
|
+
|
|
69829
|
+
layer_pass_filter: int
|
|
69830
|
+
""" Layer pass filter
|
|
69831
|
+
|
|
69832
|
+
:type: int
|
|
69833
|
+
"""
|
|
69834
|
+
|
|
69835
|
+
material_filter: "Material"
|
|
69836
|
+
""" Material used for filtering
|
|
69837
|
+
|
|
69838
|
+
:type: 'Material'
|
|
69839
|
+
"""
|
|
69840
|
+
|
|
69841
|
+
material_pass_filter: int
|
|
69842
|
+
""" Material pass
|
|
69843
|
+
|
|
69844
|
+
:type: int
|
|
69845
|
+
"""
|
|
69846
|
+
|
|
69847
|
+
open_influence_panel: bool
|
|
69848
|
+
"""
|
|
69849
|
+
|
|
69850
|
+
:type: bool
|
|
69851
|
+
"""
|
|
69852
|
+
|
|
69853
|
+
thickness: float
|
|
69854
|
+
""" Absolute thickness to apply everywhere
|
|
69855
|
+
|
|
69856
|
+
:type: float
|
|
69857
|
+
"""
|
|
69858
|
+
|
|
69859
|
+
thickness_factor: float
|
|
69860
|
+
""" Factor to multiply the thickness with
|
|
69861
|
+
|
|
69862
|
+
:type: float
|
|
69863
|
+
"""
|
|
69864
|
+
|
|
69865
|
+
use_custom_curve: bool
|
|
69866
|
+
""" Use a custom curve to define a factor along the strokes
|
|
69867
|
+
|
|
69868
|
+
:type: bool
|
|
69869
|
+
"""
|
|
69870
|
+
|
|
69871
|
+
use_layer_pass_filter: bool
|
|
69872
|
+
""" Use layer pass filter
|
|
69873
|
+
|
|
69874
|
+
:type: bool
|
|
69875
|
+
"""
|
|
69876
|
+
|
|
69877
|
+
use_material_pass_filter: bool
|
|
69878
|
+
""" Use material pass filter
|
|
69879
|
+
|
|
69880
|
+
:type: bool
|
|
69881
|
+
"""
|
|
69882
|
+
|
|
69883
|
+
use_uniform_thickness: bool
|
|
69884
|
+
""" Replace the stroke thickness
|
|
69885
|
+
|
|
69886
|
+
:type: bool
|
|
69887
|
+
"""
|
|
69888
|
+
|
|
69889
|
+
use_weight_factor: bool
|
|
69890
|
+
""" Use weight to modulate effect
|
|
69891
|
+
|
|
69892
|
+
:type: bool
|
|
69893
|
+
"""
|
|
69894
|
+
|
|
69895
|
+
vertex_group_name: typing.Union[str, typing.Any]
|
|
69896
|
+
""" Vertex group name for modulating the deform
|
|
69897
|
+
|
|
69898
|
+
:type: typing.Union[str, typing.Any]
|
|
69899
|
+
"""
|
|
69900
|
+
|
|
69901
|
+
@classmethod
|
|
69902
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
69903
|
+
"""
|
|
69904
|
+
|
|
69905
|
+
:param id: The RNA type identifier.
|
|
69906
|
+
:type id: typing.Optional[str]
|
|
69907
|
+
:rtype: 'Struct'
|
|
69908
|
+
:return: The RNA type or default when not found.
|
|
69909
|
+
"""
|
|
69910
|
+
...
|
|
69911
|
+
|
|
69912
|
+
@classmethod
|
|
69913
|
+
def bl_rna_get_subclass_py(
|
|
69914
|
+
cls, id: typing.Optional[str], default=None
|
|
69915
|
+
) -> typing.Any:
|
|
69916
|
+
"""
|
|
69917
|
+
|
|
69918
|
+
:param id: The RNA type identifier.
|
|
69919
|
+
:type id: typing.Optional[str]
|
|
69920
|
+
:rtype: typing.Any
|
|
69921
|
+
:return: The class or default when not found.
|
|
69922
|
+
"""
|
|
69923
|
+
...
|
|
69924
|
+
|
|
69639
69925
|
class GreasePencilTintModifier(Modifier, bpy_struct):
|
|
69640
69926
|
color: typing.Union[
|
|
69641
69927
|
typing.List[float], typing.Tuple[float, float, float], "mathutils.Color"
|
|
@@ -69729,6 +70015,12 @@ class GreasePencilTintModifier(Modifier, bpy_struct):
|
|
|
69729
70015
|
:type: 'Object'
|
|
69730
70016
|
"""
|
|
69731
70017
|
|
|
70018
|
+
open_influence_panel: bool
|
|
70019
|
+
"""
|
|
70020
|
+
|
|
70021
|
+
:type: bool
|
|
70022
|
+
"""
|
|
70023
|
+
|
|
69732
70024
|
radius: float
|
|
69733
70025
|
""" Influence distance from the object
|
|
69734
70026
|
|
|
@@ -130185,10 +130477,10 @@ IMAGE_MT_editor_menus: "bl_ui.space_image.IMAGE_MT_editor_menus"
|
|
|
130185
130477
|
|
|
130186
130478
|
IMAGE_MT_image: "bl_ui.space_image.IMAGE_MT_image"
|
|
130187
130479
|
|
|
130188
|
-
IMAGE_MT_image_flip: "bl_ui.space_image.IMAGE_MT_image_flip"
|
|
130189
|
-
|
|
130190
130480
|
IMAGE_MT_image_invert: "bl_ui.space_image.IMAGE_MT_image_invert"
|
|
130191
130481
|
|
|
130482
|
+
IMAGE_MT_image_transform: "bl_ui.space_image.IMAGE_MT_image_transform"
|
|
130483
|
+
|
|
130192
130484
|
IMAGE_MT_mask_context_menu: "bl_ui.space_image.IMAGE_MT_mask_context_menu"
|
|
130193
130485
|
|
|
130194
130486
|
IMAGE_MT_pivot_pie: "bl_ui.space_image.IMAGE_MT_pivot_pie"
|
|
@@ -131775,8 +132067,6 @@ USERPREF_PT_experimental_new_features: "bl_ui.space_userpref.USERPREF_PT_experim
|
|
|
131775
132067
|
|
|
131776
132068
|
USERPREF_PT_experimental_prototypes: "bl_ui.space_userpref.USERPREF_PT_experimental_prototypes"
|
|
131777
132069
|
|
|
131778
|
-
USERPREF_PT_extensions: "bl_ui.space_userpref.USERPREF_PT_extensions"
|
|
131779
|
-
|
|
131780
132070
|
USERPREF_PT_extensions_repos: "bl_ui.space_userpref.USERPREF_PT_extensions_repos"
|
|
131781
132071
|
|
|
131782
132072
|
USERPREF_PT_file_paths_applications: "bl_ui.space_userpref.USERPREF_PT_file_paths_applications"
|