fake-bpy-module 20240326__py3-none-any.whl → 20240327__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.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_operators/presets/__init__.pyi +167 -0
- bl_operators/view3d/__init__.pyi +248 -0
- bpy/ops/export_scene/__init__.pyi +2 -2
- bpy/ops/nla/__init__.pyi +2 -2
- bpy/ops/sculpt/__init__.pyi +20 -2
- bpy/ops/wm/__init__.pyi +23 -0
- bpy/types/__init__.pyi +64 -2
- bpy_types/__init__.pyi +3 -0
- {fake_bpy_module-20240326.dist-info → fake_bpy_module-20240327.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240326.dist-info → fake_bpy_module-20240327.dist-info}/RECORD +12 -12
- {fake_bpy_module-20240326.dist-info → fake_bpy_module-20240327.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240326.dist-info → fake_bpy_module-20240327.dist-info}/top_level.txt +0 -0
|
@@ -3340,6 +3340,173 @@ class RemovePresetKeyconfig(bpy_types.Operator):
|
|
|
3340
3340
|
""" """
|
|
3341
3341
|
...
|
|
3342
3342
|
|
|
3343
|
+
class SavePresetInterfaceTheme(bpy_types.Operator):
|
|
3344
|
+
""" """
|
|
3345
|
+
|
|
3346
|
+
bl_idname: typing.Any
|
|
3347
|
+
""" """
|
|
3348
|
+
|
|
3349
|
+
bl_label: typing.Any
|
|
3350
|
+
""" """
|
|
3351
|
+
|
|
3352
|
+
bl_options: typing.Any
|
|
3353
|
+
""" """
|
|
3354
|
+
|
|
3355
|
+
bl_rna: typing.Any
|
|
3356
|
+
""" """
|
|
3357
|
+
|
|
3358
|
+
id_data: typing.Any
|
|
3359
|
+
""" """
|
|
3360
|
+
|
|
3361
|
+
preset_menu: typing.Any
|
|
3362
|
+
""" """
|
|
3363
|
+
|
|
3364
|
+
preset_subdir: typing.Any
|
|
3365
|
+
""" """
|
|
3366
|
+
|
|
3367
|
+
def as_filename(self, name):
|
|
3368
|
+
"""
|
|
3369
|
+
|
|
3370
|
+
:param name:
|
|
3371
|
+
"""
|
|
3372
|
+
...
|
|
3373
|
+
|
|
3374
|
+
def as_keywords(self, ignore):
|
|
3375
|
+
"""
|
|
3376
|
+
|
|
3377
|
+
:param ignore:
|
|
3378
|
+
"""
|
|
3379
|
+
...
|
|
3380
|
+
|
|
3381
|
+
def as_pointer(self):
|
|
3382
|
+
""" """
|
|
3383
|
+
...
|
|
3384
|
+
|
|
3385
|
+
def bl_rna_get_subclass(self):
|
|
3386
|
+
""" """
|
|
3387
|
+
...
|
|
3388
|
+
|
|
3389
|
+
def bl_rna_get_subclass_py(self):
|
|
3390
|
+
""" """
|
|
3391
|
+
...
|
|
3392
|
+
|
|
3393
|
+
def check(self, _context):
|
|
3394
|
+
"""
|
|
3395
|
+
|
|
3396
|
+
:param _context:
|
|
3397
|
+
"""
|
|
3398
|
+
...
|
|
3399
|
+
|
|
3400
|
+
def driver_add(self):
|
|
3401
|
+
""" """
|
|
3402
|
+
...
|
|
3403
|
+
|
|
3404
|
+
def driver_remove(self):
|
|
3405
|
+
""" """
|
|
3406
|
+
...
|
|
3407
|
+
|
|
3408
|
+
def execute(self, context):
|
|
3409
|
+
"""
|
|
3410
|
+
|
|
3411
|
+
:param context:
|
|
3412
|
+
"""
|
|
3413
|
+
...
|
|
3414
|
+
|
|
3415
|
+
def get(self):
|
|
3416
|
+
""" """
|
|
3417
|
+
...
|
|
3418
|
+
|
|
3419
|
+
def id_properties_clear(self):
|
|
3420
|
+
""" """
|
|
3421
|
+
...
|
|
3422
|
+
|
|
3423
|
+
def id_properties_ensure(self):
|
|
3424
|
+
""" """
|
|
3425
|
+
...
|
|
3426
|
+
|
|
3427
|
+
def id_properties_ui(self):
|
|
3428
|
+
""" """
|
|
3429
|
+
...
|
|
3430
|
+
|
|
3431
|
+
def invoke(self, context, event):
|
|
3432
|
+
"""
|
|
3433
|
+
|
|
3434
|
+
:param context:
|
|
3435
|
+
:param event:
|
|
3436
|
+
"""
|
|
3437
|
+
...
|
|
3438
|
+
|
|
3439
|
+
def is_property_hidden(self):
|
|
3440
|
+
""" """
|
|
3441
|
+
...
|
|
3442
|
+
|
|
3443
|
+
def is_property_overridable_library(self):
|
|
3444
|
+
""" """
|
|
3445
|
+
...
|
|
3446
|
+
|
|
3447
|
+
def is_property_readonly(self):
|
|
3448
|
+
""" """
|
|
3449
|
+
...
|
|
3450
|
+
|
|
3451
|
+
def is_property_set(self):
|
|
3452
|
+
""" """
|
|
3453
|
+
...
|
|
3454
|
+
|
|
3455
|
+
def items(self):
|
|
3456
|
+
""" """
|
|
3457
|
+
...
|
|
3458
|
+
|
|
3459
|
+
def keyframe_delete(self):
|
|
3460
|
+
""" """
|
|
3461
|
+
...
|
|
3462
|
+
|
|
3463
|
+
def keyframe_insert(self):
|
|
3464
|
+
""" """
|
|
3465
|
+
...
|
|
3466
|
+
|
|
3467
|
+
def keys(self):
|
|
3468
|
+
""" """
|
|
3469
|
+
...
|
|
3470
|
+
|
|
3471
|
+
def path_from_id(self):
|
|
3472
|
+
""" """
|
|
3473
|
+
...
|
|
3474
|
+
|
|
3475
|
+
def path_resolve(self):
|
|
3476
|
+
""" """
|
|
3477
|
+
...
|
|
3478
|
+
|
|
3479
|
+
def poll(self, context):
|
|
3480
|
+
"""
|
|
3481
|
+
|
|
3482
|
+
:param context:
|
|
3483
|
+
"""
|
|
3484
|
+
...
|
|
3485
|
+
|
|
3486
|
+
def poll_message_set(self):
|
|
3487
|
+
""" """
|
|
3488
|
+
...
|
|
3489
|
+
|
|
3490
|
+
def pop(self):
|
|
3491
|
+
""" """
|
|
3492
|
+
...
|
|
3493
|
+
|
|
3494
|
+
def property_overridable_library_set(self):
|
|
3495
|
+
""" """
|
|
3496
|
+
...
|
|
3497
|
+
|
|
3498
|
+
def property_unset(self):
|
|
3499
|
+
""" """
|
|
3500
|
+
...
|
|
3501
|
+
|
|
3502
|
+
def type_recast(self):
|
|
3503
|
+
""" """
|
|
3504
|
+
...
|
|
3505
|
+
|
|
3506
|
+
def values(self):
|
|
3507
|
+
""" """
|
|
3508
|
+
...
|
|
3509
|
+
|
|
3343
3510
|
class WM_MT_operator_presets(bpy_types._GenericUI):
|
|
3344
3511
|
""" """
|
|
3345
3512
|
|
bl_operators/view3d/__init__.pyi
CHANGED
|
@@ -3,6 +3,254 @@ import bpy_types
|
|
|
3
3
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
|
+
class VIEW3D_FH_camera_background_image(bpy_types.FileHandler):
|
|
7
|
+
""" """
|
|
8
|
+
|
|
9
|
+
bl_file_extensions: typing.Any
|
|
10
|
+
""" """
|
|
11
|
+
|
|
12
|
+
bl_idname: typing.Any
|
|
13
|
+
""" """
|
|
14
|
+
|
|
15
|
+
bl_import_operator: typing.Any
|
|
16
|
+
""" """
|
|
17
|
+
|
|
18
|
+
bl_label: typing.Any
|
|
19
|
+
""" """
|
|
20
|
+
|
|
21
|
+
bl_rna: typing.Any
|
|
22
|
+
""" """
|
|
23
|
+
|
|
24
|
+
id_data: typing.Any
|
|
25
|
+
""" """
|
|
26
|
+
|
|
27
|
+
def as_pointer(self):
|
|
28
|
+
""" """
|
|
29
|
+
...
|
|
30
|
+
|
|
31
|
+
def bl_rna_get_subclass(self):
|
|
32
|
+
""" """
|
|
33
|
+
...
|
|
34
|
+
|
|
35
|
+
def bl_rna_get_subclass_py(self):
|
|
36
|
+
""" """
|
|
37
|
+
...
|
|
38
|
+
|
|
39
|
+
def driver_add(self):
|
|
40
|
+
""" """
|
|
41
|
+
...
|
|
42
|
+
|
|
43
|
+
def driver_remove(self):
|
|
44
|
+
""" """
|
|
45
|
+
...
|
|
46
|
+
|
|
47
|
+
def get(self):
|
|
48
|
+
""" """
|
|
49
|
+
...
|
|
50
|
+
|
|
51
|
+
def id_properties_clear(self):
|
|
52
|
+
""" """
|
|
53
|
+
...
|
|
54
|
+
|
|
55
|
+
def id_properties_ensure(self):
|
|
56
|
+
""" """
|
|
57
|
+
...
|
|
58
|
+
|
|
59
|
+
def id_properties_ui(self):
|
|
60
|
+
""" """
|
|
61
|
+
...
|
|
62
|
+
|
|
63
|
+
def is_property_hidden(self):
|
|
64
|
+
""" """
|
|
65
|
+
...
|
|
66
|
+
|
|
67
|
+
def is_property_overridable_library(self):
|
|
68
|
+
""" """
|
|
69
|
+
...
|
|
70
|
+
|
|
71
|
+
def is_property_readonly(self):
|
|
72
|
+
""" """
|
|
73
|
+
...
|
|
74
|
+
|
|
75
|
+
def is_property_set(self):
|
|
76
|
+
""" """
|
|
77
|
+
...
|
|
78
|
+
|
|
79
|
+
def items(self):
|
|
80
|
+
""" """
|
|
81
|
+
...
|
|
82
|
+
|
|
83
|
+
def keyframe_delete(self):
|
|
84
|
+
""" """
|
|
85
|
+
...
|
|
86
|
+
|
|
87
|
+
def keyframe_insert(self):
|
|
88
|
+
""" """
|
|
89
|
+
...
|
|
90
|
+
|
|
91
|
+
def keys(self):
|
|
92
|
+
""" """
|
|
93
|
+
...
|
|
94
|
+
|
|
95
|
+
def path_from_id(self):
|
|
96
|
+
""" """
|
|
97
|
+
...
|
|
98
|
+
|
|
99
|
+
def path_resolve(self):
|
|
100
|
+
""" """
|
|
101
|
+
...
|
|
102
|
+
|
|
103
|
+
def poll_drop(self, context):
|
|
104
|
+
"""
|
|
105
|
+
|
|
106
|
+
:param context:
|
|
107
|
+
"""
|
|
108
|
+
...
|
|
109
|
+
|
|
110
|
+
def pop(self):
|
|
111
|
+
""" """
|
|
112
|
+
...
|
|
113
|
+
|
|
114
|
+
def property_overridable_library_set(self):
|
|
115
|
+
""" """
|
|
116
|
+
...
|
|
117
|
+
|
|
118
|
+
def property_unset(self):
|
|
119
|
+
""" """
|
|
120
|
+
...
|
|
121
|
+
|
|
122
|
+
def type_recast(self):
|
|
123
|
+
""" """
|
|
124
|
+
...
|
|
125
|
+
|
|
126
|
+
def values(self):
|
|
127
|
+
""" """
|
|
128
|
+
...
|
|
129
|
+
|
|
130
|
+
class VIEW3D_FH_empty_image(bpy_types.FileHandler):
|
|
131
|
+
""" """
|
|
132
|
+
|
|
133
|
+
bl_file_extensions: typing.Any
|
|
134
|
+
""" """
|
|
135
|
+
|
|
136
|
+
bl_idname: typing.Any
|
|
137
|
+
""" """
|
|
138
|
+
|
|
139
|
+
bl_import_operator: typing.Any
|
|
140
|
+
""" """
|
|
141
|
+
|
|
142
|
+
bl_label: typing.Any
|
|
143
|
+
""" """
|
|
144
|
+
|
|
145
|
+
bl_rna: typing.Any
|
|
146
|
+
""" """
|
|
147
|
+
|
|
148
|
+
id_data: typing.Any
|
|
149
|
+
""" """
|
|
150
|
+
|
|
151
|
+
def as_pointer(self):
|
|
152
|
+
""" """
|
|
153
|
+
...
|
|
154
|
+
|
|
155
|
+
def bl_rna_get_subclass(self):
|
|
156
|
+
""" """
|
|
157
|
+
...
|
|
158
|
+
|
|
159
|
+
def bl_rna_get_subclass_py(self):
|
|
160
|
+
""" """
|
|
161
|
+
...
|
|
162
|
+
|
|
163
|
+
def driver_add(self):
|
|
164
|
+
""" """
|
|
165
|
+
...
|
|
166
|
+
|
|
167
|
+
def driver_remove(self):
|
|
168
|
+
""" """
|
|
169
|
+
...
|
|
170
|
+
|
|
171
|
+
def get(self):
|
|
172
|
+
""" """
|
|
173
|
+
...
|
|
174
|
+
|
|
175
|
+
def id_properties_clear(self):
|
|
176
|
+
""" """
|
|
177
|
+
...
|
|
178
|
+
|
|
179
|
+
def id_properties_ensure(self):
|
|
180
|
+
""" """
|
|
181
|
+
...
|
|
182
|
+
|
|
183
|
+
def id_properties_ui(self):
|
|
184
|
+
""" """
|
|
185
|
+
...
|
|
186
|
+
|
|
187
|
+
def is_property_hidden(self):
|
|
188
|
+
""" """
|
|
189
|
+
...
|
|
190
|
+
|
|
191
|
+
def is_property_overridable_library(self):
|
|
192
|
+
""" """
|
|
193
|
+
...
|
|
194
|
+
|
|
195
|
+
def is_property_readonly(self):
|
|
196
|
+
""" """
|
|
197
|
+
...
|
|
198
|
+
|
|
199
|
+
def is_property_set(self):
|
|
200
|
+
""" """
|
|
201
|
+
...
|
|
202
|
+
|
|
203
|
+
def items(self):
|
|
204
|
+
""" """
|
|
205
|
+
...
|
|
206
|
+
|
|
207
|
+
def keyframe_delete(self):
|
|
208
|
+
""" """
|
|
209
|
+
...
|
|
210
|
+
|
|
211
|
+
def keyframe_insert(self):
|
|
212
|
+
""" """
|
|
213
|
+
...
|
|
214
|
+
|
|
215
|
+
def keys(self):
|
|
216
|
+
""" """
|
|
217
|
+
...
|
|
218
|
+
|
|
219
|
+
def path_from_id(self):
|
|
220
|
+
""" """
|
|
221
|
+
...
|
|
222
|
+
|
|
223
|
+
def path_resolve(self):
|
|
224
|
+
""" """
|
|
225
|
+
...
|
|
226
|
+
|
|
227
|
+
def poll_drop(self, context):
|
|
228
|
+
"""
|
|
229
|
+
|
|
230
|
+
:param context:
|
|
231
|
+
"""
|
|
232
|
+
...
|
|
233
|
+
|
|
234
|
+
def pop(self):
|
|
235
|
+
""" """
|
|
236
|
+
...
|
|
237
|
+
|
|
238
|
+
def property_overridable_library_set(self):
|
|
239
|
+
""" """
|
|
240
|
+
...
|
|
241
|
+
|
|
242
|
+
def property_unset(self):
|
|
243
|
+
""" """
|
|
244
|
+
...
|
|
245
|
+
|
|
246
|
+
def type_recast(self):
|
|
247
|
+
""" """
|
|
248
|
+
...
|
|
249
|
+
|
|
250
|
+
def values(self):
|
|
251
|
+
""" """
|
|
252
|
+
...
|
|
253
|
+
|
|
6
254
|
class VIEW3D_OT_edit_mesh_extrude_individual_move(bpy_types.Operator):
|
|
7
255
|
""" """
|
|
8
256
|
|
|
@@ -19,11 +19,11 @@ def fbx(
|
|
|
19
19
|
use_space_transform: typing.Union[bool, typing.Any] = True,
|
|
20
20
|
bake_space_transform: typing.Union[bool, typing.Any] = False,
|
|
21
21
|
object_types: typing.Any = {
|
|
22
|
-
'"CAMERA"',
|
|
23
22
|
'"EMPTY"',
|
|
23
|
+
'"MESH"',
|
|
24
24
|
'"ARMATURE"',
|
|
25
25
|
'"OTHER"',
|
|
26
|
-
'"
|
|
26
|
+
'"CAMERA"',
|
|
27
27
|
'"LIGHT"',
|
|
28
28
|
},
|
|
29
29
|
use_mesh_modifiers: typing.Union[bool, typing.Any] = True,
|
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -101,11 +101,11 @@ def bake(
|
|
|
101
101
|
clean_curves: typing.Union[bool, typing.Any] = False,
|
|
102
102
|
bake_types: typing.Any = {'"POSE"'},
|
|
103
103
|
channel_types: typing.Any = {
|
|
104
|
-
'"PROPS"',
|
|
105
104
|
'"LOCATION"',
|
|
105
|
+
'"SCALE"',
|
|
106
106
|
'"ROTATION"',
|
|
107
107
|
'"BBONE"',
|
|
108
|
-
'"
|
|
108
|
+
'"PROPS"',
|
|
109
109
|
},
|
|
110
110
|
):
|
|
111
111
|
"""Bake all selected objects location/scale/rotation animation to an action
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -47,7 +47,7 @@ def cloth_filter(
|
|
|
47
47
|
bpy.types.OperatorStrokeElement
|
|
48
48
|
] = None,
|
|
49
49
|
type: typing.Any = "GRAVITY",
|
|
50
|
-
force_axis: typing.Any = {'"
|
|
50
|
+
force_axis: typing.Any = {'"Z"', '"Y"', '"X"'},
|
|
51
51
|
orientation: typing.Any = "LOCAL",
|
|
52
52
|
cloth_mass: typing.Any = 1.0,
|
|
53
53
|
cloth_damping: typing.Any = 0.0,
|
|
@@ -599,7 +599,7 @@ def mesh_filter(
|
|
|
599
599
|
bpy.types.OperatorStrokeElement
|
|
600
600
|
] = None,
|
|
601
601
|
type: typing.Any = "INFLATE",
|
|
602
|
-
deform_axis: typing.Any = {'"
|
|
602
|
+
deform_axis: typing.Any = {'"Z"', '"Y"', '"X"'},
|
|
603
603
|
orientation: typing.Any = "LOCAL",
|
|
604
604
|
surface_smooth_shape_preservation: typing.Any = 0.5,
|
|
605
605
|
surface_smooth_current_vertex: typing.Any = 0.5,
|
|
@@ -881,6 +881,7 @@ def trim_box_gesture(
|
|
|
881
881
|
use_cursor_depth: typing.Union[bool, typing.Any] = False,
|
|
882
882
|
trim_orientation: typing.Any = "VIEW",
|
|
883
883
|
trim_extrude_mode: typing.Any = "FIXED",
|
|
884
|
+
trim_solver: typing.Any = "FAST",
|
|
884
885
|
):
|
|
885
886
|
"""Trims the mesh within the box as you move the brush
|
|
886
887
|
|
|
@@ -928,6 +929,14 @@ def trim_box_gesture(
|
|
|
928
929
|
FIXED
|
|
929
930
|
Fixed -- Extrude back faces by fixed amount.
|
|
930
931
|
:type trim_extrude_mode: typing.Any
|
|
932
|
+
:param trim_solver: Solver
|
|
933
|
+
|
|
934
|
+
EXACT
|
|
935
|
+
Exact -- Use the exact boolean solver.
|
|
936
|
+
|
|
937
|
+
FAST
|
|
938
|
+
Fast -- Use the fast float boolean solver.
|
|
939
|
+
:type trim_solver: typing.Any
|
|
931
940
|
"""
|
|
932
941
|
|
|
933
942
|
...
|
|
@@ -942,6 +951,7 @@ def trim_lasso_gesture(
|
|
|
942
951
|
use_cursor_depth: typing.Union[bool, typing.Any] = False,
|
|
943
952
|
trim_orientation: typing.Any = "VIEW",
|
|
944
953
|
trim_extrude_mode: typing.Any = "FIXED",
|
|
954
|
+
trim_solver: typing.Any = "FAST",
|
|
945
955
|
):
|
|
946
956
|
"""Trims the mesh within the lasso as you move the brush
|
|
947
957
|
|
|
@@ -981,6 +991,14 @@ def trim_lasso_gesture(
|
|
|
981
991
|
FIXED
|
|
982
992
|
Fixed -- Extrude back faces by fixed amount.
|
|
983
993
|
:type trim_extrude_mode: typing.Any
|
|
994
|
+
:param trim_solver: Solver
|
|
995
|
+
|
|
996
|
+
EXACT
|
|
997
|
+
Exact -- Use the exact boolean solver.
|
|
998
|
+
|
|
999
|
+
FAST
|
|
1000
|
+
Fast -- Use the fast float boolean solver.
|
|
1001
|
+
:type trim_solver: typing.Any
|
|
984
1002
|
"""
|
|
985
1003
|
|
|
986
1004
|
...
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -1801,6 +1801,29 @@ def interface_theme_preset_remove(
|
|
|
1801
1801
|
|
|
1802
1802
|
...
|
|
1803
1803
|
|
|
1804
|
+
def interface_theme_preset_save(
|
|
1805
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1806
|
+
execution_context: typing.Union[str, int] = None,
|
|
1807
|
+
undo: bool = None,
|
|
1808
|
+
name: typing.Union[str, typing.Any] = "",
|
|
1809
|
+
remove_name: typing.Union[bool, typing.Any] = False,
|
|
1810
|
+
remove_active: typing.Union[bool, typing.Any] = True,
|
|
1811
|
+
):
|
|
1812
|
+
"""Save a custom theme in the preset list
|
|
1813
|
+
|
|
1814
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1815
|
+
:type execution_context: typing.Union[str, int]
|
|
1816
|
+
:type undo: bool
|
|
1817
|
+
:param name: Name, Name of the preset, used to make the path name
|
|
1818
|
+
:type name: typing.Union[str, typing.Any]
|
|
1819
|
+
:param remove_name: remove_name
|
|
1820
|
+
:type remove_name: typing.Union[bool, typing.Any]
|
|
1821
|
+
:param remove_active: remove_active
|
|
1822
|
+
:type remove_active: typing.Union[bool, typing.Any]
|
|
1823
|
+
"""
|
|
1824
|
+
|
|
1825
|
+
...
|
|
1826
|
+
|
|
1804
1827
|
def keyconfig_preset_add(
|
|
1805
1828
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1806
1829
|
execution_context: typing.Union[str, int] = None,
|
bpy/types/__init__.pyi
CHANGED
|
@@ -57888,7 +57888,7 @@ class KeyConfigurations(bpy_struct):
|
|
|
57888
57888
|
idname: typing.Union[str, typing.Any],
|
|
57889
57889
|
context: typing.Any = "INVOKE_DEFAULT",
|
|
57890
57890
|
properties: OperatorProperties = None,
|
|
57891
|
-
include: typing.Any = {'"NDOF"', '"KEYBOARD"', '"
|
|
57891
|
+
include: typing.Any = {'"NDOF"', '"KEYBOARD"', '"ACTIONZONE"', '"MOUSE"'},
|
|
57892
57892
|
exclude: typing.Any = {},
|
|
57893
57893
|
) -> typing.Any:
|
|
57894
57894
|
"""find_item_from_operator
|
|
@@ -58350,7 +58350,7 @@ class KeyMapItems(bpy_struct):
|
|
|
58350
58350
|
self,
|
|
58351
58351
|
idname: typing.Union[str, typing.Any],
|
|
58352
58352
|
properties: OperatorProperties = None,
|
|
58353
|
-
include: typing.Any = {'"NDOF"', '"KEYBOARD"', '"
|
|
58353
|
+
include: typing.Any = {'"NDOF"', '"KEYBOARD"', '"ACTIONZONE"', '"MOUSE"'},
|
|
58354
58354
|
exclude: typing.Any = {},
|
|
58355
58355
|
) -> typing.Any:
|
|
58356
58356
|
"""find_from_operator
|
|
@@ -125559,6 +125559,60 @@ class VIEW3D_AST_sculpt_brushes(bpy_struct):
|
|
|
125559
125559
|
"""
|
|
125560
125560
|
...
|
|
125561
125561
|
|
|
125562
|
+
class VIEW3D_FH_camera_background_image(bpy_struct):
|
|
125563
|
+
""" """
|
|
125564
|
+
|
|
125565
|
+
@classmethod
|
|
125566
|
+
def bl_rna_get_subclass(cls, id: str, default=None):
|
|
125567
|
+
"""
|
|
125568
|
+
|
|
125569
|
+
:param id: The RNA type identifier.
|
|
125570
|
+
:type id: str
|
|
125571
|
+
:param default:
|
|
125572
|
+
:return: The RNA type or default when not found.
|
|
125573
|
+
:rtype: Struct
|
|
125574
|
+
"""
|
|
125575
|
+
...
|
|
125576
|
+
|
|
125577
|
+
@classmethod
|
|
125578
|
+
def bl_rna_get_subclass_py(cls, id: str, default=None):
|
|
125579
|
+
"""
|
|
125580
|
+
|
|
125581
|
+
:param id: The RNA type identifier.
|
|
125582
|
+
:type id: str
|
|
125583
|
+
:param default:
|
|
125584
|
+
:return: The class or default when not found.
|
|
125585
|
+
:rtype: typing.Any
|
|
125586
|
+
"""
|
|
125587
|
+
...
|
|
125588
|
+
|
|
125589
|
+
class VIEW3D_FH_empty_image(bpy_struct):
|
|
125590
|
+
""" """
|
|
125591
|
+
|
|
125592
|
+
@classmethod
|
|
125593
|
+
def bl_rna_get_subclass(cls, id: str, default=None):
|
|
125594
|
+
"""
|
|
125595
|
+
|
|
125596
|
+
:param id: The RNA type identifier.
|
|
125597
|
+
:type id: str
|
|
125598
|
+
:param default:
|
|
125599
|
+
:return: The RNA type or default when not found.
|
|
125600
|
+
:rtype: Struct
|
|
125601
|
+
"""
|
|
125602
|
+
...
|
|
125603
|
+
|
|
125604
|
+
@classmethod
|
|
125605
|
+
def bl_rna_get_subclass_py(cls, id: str, default=None):
|
|
125606
|
+
"""
|
|
125607
|
+
|
|
125608
|
+
:param id: The RNA type identifier.
|
|
125609
|
+
:type id: str
|
|
125610
|
+
:param default:
|
|
125611
|
+
:return: The class or default when not found.
|
|
125612
|
+
:rtype: typing.Any
|
|
125613
|
+
"""
|
|
125614
|
+
...
|
|
125615
|
+
|
|
125562
125616
|
class VIEWLAYER_UL_aov(bpy_struct):
|
|
125563
125617
|
""" """
|
|
125564
125618
|
|
|
@@ -137599,6 +137653,14 @@ VIEW3D_AST_sculpt_brushes: bl_ui.space_view3d.VIEW3D_AST_sculpt_brushes
|
|
|
137599
137653
|
"""
|
|
137600
137654
|
"""
|
|
137601
137655
|
|
|
137656
|
+
VIEW3D_FH_camera_background_image: bl_operators.view3d.VIEW3D_FH_camera_background_image
|
|
137657
|
+
"""
|
|
137658
|
+
"""
|
|
137659
|
+
|
|
137660
|
+
VIEW3D_FH_empty_image: bl_operators.view3d.VIEW3D_FH_empty_image
|
|
137661
|
+
"""
|
|
137662
|
+
"""
|
|
137663
|
+
|
|
137602
137664
|
VIEW3D_HT_header: bl_ui.space_view3d.VIEW3D_HT_header
|
|
137603
137665
|
"""
|
|
137604
137666
|
"""
|
bpy_types/__init__.pyi
CHANGED
|
@@ -56,7 +56,7 @@ bl_operators/object/__init__.pyi,sha256=y0g2VOQlxkkhUGFe6FzL1UFnEsG7PcBFFnmgI_y9
|
|
|
56
56
|
bl_operators/object_align/__init__.pyi,sha256=GzRSXfHUkX5SVBbih2tDDKDj4VWq3j0VLcjB-6vqKMM,2358
|
|
57
57
|
bl_operators/object_quick_effects/__init__.pyi,sha256=sUvQwNENs5ZV725werYlb219Ce3phZjXXVRudf-KG4A,8446
|
|
58
58
|
bl_operators/object_randomize_transform/__init__.pyi,sha256=JtlJ1AUjd7Ap0ES0Ryiq3STK5vbk1eUb5E0vTLIY6fQ,2202
|
|
59
|
-
bl_operators/presets/__init__.pyi,sha256=
|
|
59
|
+
bl_operators/presets/__init__.pyi,sha256=TsEdWpRa-xUOrLpHVOAQmBkQUQKBJ2BEqF8LCsDrv1U,55588
|
|
60
60
|
bl_operators/rigidbody/__init__.pyi,sha256=S_vGz6oUFYqdyq1s7K8jMQNezWPaUxEuFJBAva0c3s8,6248
|
|
61
61
|
bl_operators/screen_play_rendered_anim/__init__.pyi,sha256=BjUM19AVNF4RbH_uc55Z6mAAAdh_yxf4gCZ39qbN0tM,2052
|
|
62
62
|
bl_operators/sequencer/__init__.pyi,sha256=ZqLZP8aojmpM66Ms5VfDzDnbtrGucuRQMIvAOvT98C8,11666
|
|
@@ -66,7 +66,7 @@ bl_operators/uvcalc_follow_active/__init__.pyi,sha256=_1txa6NDwvieCbo-UGm4V6lYS2
|
|
|
66
66
|
bl_operators/uvcalc_lightmap/__init__.pyi,sha256=Ym41eMw9jsE5QkDj1_Tj1wuDMFdrMW9vQJyXCUe6ZM4,3121
|
|
67
67
|
bl_operators/uvcalc_transform/__init__.pyi,sha256=5v6jpDQaGpNNa50St_nr6yGkQMt1xINqespyJK5SUyc,5377
|
|
68
68
|
bl_operators/vertexpaint_dirt/__init__.pyi,sha256=McFf_on3v-XlEW3fQEgwpvpgxVHIrCbn30DNMYlgKdY,2282
|
|
69
|
-
bl_operators/view3d/__init__.pyi,sha256=
|
|
69
|
+
bl_operators/view3d/__init__.pyi,sha256=CtrOEo54-Izd6G4KjVgHNy8pI4ACCxsyYvHcjfpD-Tk,14652
|
|
70
70
|
bl_operators/wm/__init__.pyi,sha256=SVc35clvorKpSoyBSMFs1aL0hbT7UKYkWACAD5XmZDQ,94752
|
|
71
71
|
bl_previews_utils/__init__.pyi,sha256=p3ziz8G6uAf8yslPB8MclRs0QYdNodhWOytQUjztaFs,92
|
|
72
72
|
bl_previews_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -199,7 +199,7 @@ bpy/ops/dpaint/__init__.pyi,sha256=f99dbvAlCHDX-lQcjeQPQfEyJeqUM2H7eW3crC46y4k,2
|
|
|
199
199
|
bpy/ops/ed/__init__.pyi,sha256=FB1ICxeZQsAkDUV1g6cH0c4fqKr_qPEiGcj7n9acfWE,9406
|
|
200
200
|
bpy/ops/export_anim/__init__.pyi,sha256=QOhHLpZxpTjpeNBDfxeXL-GgOzsdfANKFIfn04eNVuk,2224
|
|
201
201
|
bpy/ops/export_mesh/__init__.pyi,sha256=u_sLXIynraYJ4ykAoegXuX7jWCFCm460D_VkMTWfMYI,2581
|
|
202
|
-
bpy/ops/export_scene/__init__.pyi,sha256=
|
|
202
|
+
bpy/ops/export_scene/__init__.pyi,sha256=ygNRNBplQm_OcflSZQ-Avhf5TGP-zOgThYy68riJDtw,42501
|
|
203
203
|
bpy/ops/file/__init__.pyi,sha256=GZza4lGAQK777Yjbvz71ffNuvxJU1tAYuKtiXRu9JXE,25295
|
|
204
204
|
bpy/ops/fluid/__init__.pyi,sha256=BZYv5G1X1FNQkoTziTTsU7VnH2VFgW5IIF9-ltsExFo,5424
|
|
205
205
|
bpy/ops/font/__init__.pyi,sha256=ZwhWD__bpR6nM36bpvAgAgBG-N1sGmBWdPbisOE78UM,18646
|
|
@@ -220,7 +220,7 @@ bpy/ops/mask/__init__.pyi,sha256=-wAZz1Uw_U0Bfrwpb6BKY0Nm7nEKuYcHrw7fJ8E7A3U,214
|
|
|
220
220
|
bpy/ops/material/__init__.pyi,sha256=Bw8kZGmiMuOLBzWhZOGuyXLYwgGi_ImRIMtTRaikQLs,1139
|
|
221
221
|
bpy/ops/mball/__init__.pyi,sha256=iTJJvHcg1iaEej4IgzW_mGdW4_G5ww9rKIDqY-NHHhc,5017
|
|
222
222
|
bpy/ops/mesh/__init__.pyi,sha256=PS0sV7jHNHMGxpoJY9PoXp0FmDKdeb1CTh9LZAkoAJY,147257
|
|
223
|
-
bpy/ops/nla/__init__.pyi,sha256=
|
|
223
|
+
bpy/ops/nla/__init__.pyi,sha256=bOlQVa4YEMT8-GDjqB7XK5KqOukJzwEbvbh_iOElivM,23860
|
|
224
224
|
bpy/ops/node/__init__.pyi,sha256=VXdsVOwKYjwxKi84x1FVclVU8HUihhSUhoUJrrYLFoU,60624
|
|
225
225
|
bpy/ops/object/__init__.pyi,sha256=dyI2WxXFre2-X9gk2b98YKq9Ot3uIY32TB2rcZO2O2w,195991
|
|
226
226
|
bpy/ops/outliner/__init__.pyi,sha256=CSldQVoTwmeVXPc2ciusDQc5o6HFo0LF3VBCkUoKy0g,35821
|
|
@@ -237,7 +237,7 @@ bpy/ops/rigidbody/__init__.pyi,sha256=uJXw-GLOVf3MD8vagd1tjmpKiXQqWyBw_XCmgJBrOB
|
|
|
237
237
|
bpy/ops/scene/__init__.pyi,sha256=CX2au6DVgTUju4ADW-WDnJFJfU4OMcNX3bxbyK7qhBk,19659
|
|
238
238
|
bpy/ops/screen/__init__.pyi,sha256=sfqX8dTwcoOBygwmiDmSq_ucvEL6pB0CxQx3RGV0nrE,26334
|
|
239
239
|
bpy/ops/script/__init__.pyi,sha256=Pqgos0lntRuuc6mnH1XCfFB4DajIH_-JwXulSVJyWA8,1554
|
|
240
|
-
bpy/ops/sculpt/__init__.pyi,sha256=
|
|
240
|
+
bpy/ops/sculpt/__init__.pyi,sha256=MKBSXvJf4Rcl9MQdnmGz6BSUqSgCnmBVDVbEf7Ke4Do,35682
|
|
241
241
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=4PXQ_0M603I2ThYSiCP5rtYkhvaIRveCAy5sMbhC-G0,3100
|
|
242
242
|
bpy/ops/sequencer/__init__.pyi,sha256=HfDi_5XwJPI-P93M7ipFBSD0sJ8M0rmn26dJY12uRlM,85407
|
|
243
243
|
bpy/ops/sound/__init__.pyi,sha256=2iic8OBlQR9D-2JpVTttY-pVgY2zGYB8yr_JuzBQhgA,18862
|
|
@@ -252,12 +252,12 @@ bpy/ops/uilist/__init__.pyi,sha256=q-cYllnN2oW2E1NhwgFgbf30jV8RqjYgfBsw7Uze_4k,2
|
|
|
252
252
|
bpy/ops/uv/__init__.pyi,sha256=wKnUnvHkvjPKa2rRnK0Zmnl27Yh97IY-DoV11q-4VDE,48667
|
|
253
253
|
bpy/ops/view2d/__init__.pyi,sha256=MZa7nCJaqLxX59tsJ8wtGSlYQpCeYcQPSn7YoOqZ2mk,9027
|
|
254
254
|
bpy/ops/view3d/__init__.pyi,sha256=4zpl4veO7iqB5QQw0t2dBWvAq1qAgvvPrStszfAipkI,39706
|
|
255
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
255
|
+
bpy/ops/wm/__init__.pyi,sha256=2zYQz3XjLXcV6v8ZyZ58wUZQOHumEVUp0_O7aLflWVU,236044
|
|
256
256
|
bpy/ops/workspace/__init__.pyi,sha256=--eKJHEjikwh9vW1fLk7aLnqs951OIehUc1Ih4BaKbY,3122
|
|
257
257
|
bpy/ops/world/__init__.pyi,sha256=AC5Usw80jY1M4kA0_TP1DQVCFoVMUHXKjqM4jzHZ6zQ,428
|
|
258
258
|
bpy/path/__init__.pyi,sha256=JdAATG1YvG3YPT3N8efWnwmPlxVR_xpojqcyxL_eCOY,6278
|
|
259
259
|
bpy/props/__init__.pyi,sha256=PyqNw_wJo6FWsL_OHpzXbBGJmmjMHn5LSGWyq7dWcRs,24335
|
|
260
|
-
bpy/types/__init__.pyi,sha256=
|
|
260
|
+
bpy/types/__init__.pyi,sha256=m1ajNESupyZaAxVO7HdLKNtF11nr05UV8Cl2MKBiN_s,3161743
|
|
261
261
|
bpy/utils/__init__.pyi,sha256=UZGztNNluDmQPK2M2UHx6oogvChb4x8sSFtygu0wiRg,11587
|
|
262
262
|
bpy/utils/previews/__init__.pyi,sha256=0vWcQrvQ0xgzxF8AAUu2XVRZgkEGqqoQBk8ovUVF0u4,3035
|
|
263
263
|
bpy/utils/units/__init__.pyi,sha256=1vtEQMCIi1bkSL1m3F7J64E8hDxHx0aMGHwi4BioNxM,2331
|
|
@@ -275,7 +275,7 @@ bpy_extras/object_utils/__init__.pyi,sha256=ey3w_d1U7MY5lT7EEgMOSVeUStPi_NwN8XJb
|
|
|
275
275
|
bpy_extras/view3d_utils/__init__.pyi,sha256=OlDaIQFNeI2blazE5zHaibLXCERGdgA5xNq3kVzX-9g,3388
|
|
276
276
|
bpy_restrict_state/__init__.pyi,sha256=z0wntJmk-6RiN6gW3oMlFkHOBRPIKGYfC_Q9SIoQRQ4,329
|
|
277
277
|
bpy_restrict_state/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
278
|
-
bpy_types/__init__.pyi,sha256=
|
|
278
|
+
bpy_types/__init__.pyi,sha256=WvtvoUvr_RLAs4d3c-ld7nTrWF5rwSk5ItgFX9sg624,58139
|
|
279
279
|
bpy_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
280
280
|
console_python/__init__.pyi,sha256=Inm6_DPDVMBeaDI8iLzuxyiUB_hOZ7ekIQ6zVDkmTs0,585
|
|
281
281
|
console_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -337,7 +337,7 @@ rna_xml/__init__.pyi,sha256=12yOlLxfl-1hZ6MN5TCak3gGdgz4TknNjZ4OuoJE7x4,578
|
|
|
337
337
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
338
338
|
sys_info/__init__.pyi,sha256=5cKQiE7NFvOTsjdqB7pO7uflClATfF-90sCEeo9JOO8,110
|
|
339
339
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
|
-
fake_bpy_module-
|
|
341
|
-
fake_bpy_module-
|
|
342
|
-
fake_bpy_module-
|
|
343
|
-
fake_bpy_module-
|
|
340
|
+
fake_bpy_module-20240327.dist-info/METADATA,sha256=5cjzPw3bxotrPIG0pRqSKXsazJ9HwdESGlrXc6Mf5h8,7008
|
|
341
|
+
fake_bpy_module-20240327.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
342
|
+
fake_bpy_module-20240327.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
343
|
+
fake_bpy_module-20240327.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|