fake-bpy-module 20240514__py3-none-any.whl → 20240516__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_ui/properties_render/__init__.pyi +183 -0
- bl_ui/properties_world/__init__.pyi +499 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +3 -0
- bl_ui/space_userpref/__init__.pyi +2 -2
- bl_ui/space_view3d/__init__.pyi +329 -2
- bl_ui/space_view3d_toolbar/__init__.pyi +170 -0
- bmesh/utils/__init__.pyi +2 -2
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +1 -2
- bpy/ops/bl_pkg/__init__.pyi +511 -0
- bpy/ops/export_scene/__init__.pyi +2 -81
- bpy/ops/grease_pencil/__init__.pyi +41 -0
- bpy/ops/import_scene/__init__.pyi +0 -28
- bpy/ops/nla/__init__.pyi +2 -2
- bpy/ops/preferences/__init__.pyi +6 -3
- bpy/types/__init__.pyi +50845 -50660
- {fake_bpy_module-20240514.dist-info → fake_bpy_module-20240516.dist-info}/METADATA +2 -1
- {fake_bpy_module-20240514.dist-info → fake_bpy_module-20240516.dist-info}/RECORD +23 -25
- mathutils/__init__.pyi +72 -71
- mathutils/geometry/__init__.pyi +4 -4
- bpy/ops/export_mesh/__init__.pyi +0 -67
- bpy/ops/import_mesh/__init__.pyi +0 -49
- bpy/ops/import_mesh/py.typed +0 -0
- /bpy/ops/{export_mesh → bl_pkg}/py.typed +0 -0
- {fake_bpy_module-20240514.dist-info → fake_bpy_module-20240516.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240514.dist-info → fake_bpy_module-20240516.dist-info}/top_level.txt +0 -0
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -8273,10 +8273,10 @@ class VIEW3D_MT_edit_greasepencil_cleanup(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
8273
8273
|
""" """
|
|
8274
8274
|
...
|
|
8275
8275
|
|
|
8276
|
-
def draw(self,
|
|
8276
|
+
def draw(self, context):
|
|
8277
8277
|
"""
|
|
8278
8278
|
|
|
8279
|
-
:param
|
|
8279
|
+
:param context:
|
|
8280
8280
|
"""
|
|
8281
8281
|
...
|
|
8282
8282
|
|
|
@@ -34407,6 +34407,187 @@ class VIEW3D_MT_weight_gpencil(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
34407
34407
|
""" """
|
|
34408
34408
|
...
|
|
34409
34409
|
|
|
34410
|
+
class VIEW3D_MT_weight_grease_pencil(bpy_types.Menu, bpy_types._GenericUI):
|
|
34411
|
+
""" """
|
|
34412
|
+
|
|
34413
|
+
bl_label: typing.Any
|
|
34414
|
+
""" """
|
|
34415
|
+
|
|
34416
|
+
bl_rna: typing.Any
|
|
34417
|
+
""" """
|
|
34418
|
+
|
|
34419
|
+
id_data: typing.Any
|
|
34420
|
+
""" """
|
|
34421
|
+
|
|
34422
|
+
def append(self, draw_func):
|
|
34423
|
+
"""
|
|
34424
|
+
|
|
34425
|
+
:param draw_func:
|
|
34426
|
+
"""
|
|
34427
|
+
...
|
|
34428
|
+
|
|
34429
|
+
def as_pointer(self):
|
|
34430
|
+
""" """
|
|
34431
|
+
...
|
|
34432
|
+
|
|
34433
|
+
def bl_rna_get_subclass(self):
|
|
34434
|
+
""" """
|
|
34435
|
+
...
|
|
34436
|
+
|
|
34437
|
+
def bl_rna_get_subclass_py(self):
|
|
34438
|
+
""" """
|
|
34439
|
+
...
|
|
34440
|
+
|
|
34441
|
+
def draw(self, _context):
|
|
34442
|
+
"""
|
|
34443
|
+
|
|
34444
|
+
:param _context:
|
|
34445
|
+
"""
|
|
34446
|
+
...
|
|
34447
|
+
|
|
34448
|
+
def draw_collapsible(self, context, layout):
|
|
34449
|
+
"""
|
|
34450
|
+
|
|
34451
|
+
:param context:
|
|
34452
|
+
:param layout:
|
|
34453
|
+
"""
|
|
34454
|
+
...
|
|
34455
|
+
|
|
34456
|
+
def draw_preset(self, _context):
|
|
34457
|
+
"""
|
|
34458
|
+
|
|
34459
|
+
:param _context:
|
|
34460
|
+
"""
|
|
34461
|
+
...
|
|
34462
|
+
|
|
34463
|
+
def driver_add(self):
|
|
34464
|
+
""" """
|
|
34465
|
+
...
|
|
34466
|
+
|
|
34467
|
+
def driver_remove(self):
|
|
34468
|
+
""" """
|
|
34469
|
+
...
|
|
34470
|
+
|
|
34471
|
+
def get(self):
|
|
34472
|
+
""" """
|
|
34473
|
+
...
|
|
34474
|
+
|
|
34475
|
+
def id_properties_clear(self):
|
|
34476
|
+
""" """
|
|
34477
|
+
...
|
|
34478
|
+
|
|
34479
|
+
def id_properties_ensure(self):
|
|
34480
|
+
""" """
|
|
34481
|
+
...
|
|
34482
|
+
|
|
34483
|
+
def id_properties_ui(self):
|
|
34484
|
+
""" """
|
|
34485
|
+
...
|
|
34486
|
+
|
|
34487
|
+
def is_extended(self):
|
|
34488
|
+
""" """
|
|
34489
|
+
...
|
|
34490
|
+
|
|
34491
|
+
def is_property_hidden(self):
|
|
34492
|
+
""" """
|
|
34493
|
+
...
|
|
34494
|
+
|
|
34495
|
+
def is_property_overridable_library(self):
|
|
34496
|
+
""" """
|
|
34497
|
+
...
|
|
34498
|
+
|
|
34499
|
+
def is_property_readonly(self):
|
|
34500
|
+
""" """
|
|
34501
|
+
...
|
|
34502
|
+
|
|
34503
|
+
def is_property_set(self):
|
|
34504
|
+
""" """
|
|
34505
|
+
...
|
|
34506
|
+
|
|
34507
|
+
def items(self):
|
|
34508
|
+
""" """
|
|
34509
|
+
...
|
|
34510
|
+
|
|
34511
|
+
def keyframe_delete(self):
|
|
34512
|
+
""" """
|
|
34513
|
+
...
|
|
34514
|
+
|
|
34515
|
+
def keyframe_insert(self):
|
|
34516
|
+
""" """
|
|
34517
|
+
...
|
|
34518
|
+
|
|
34519
|
+
def keys(self):
|
|
34520
|
+
""" """
|
|
34521
|
+
...
|
|
34522
|
+
|
|
34523
|
+
def path_from_id(self):
|
|
34524
|
+
""" """
|
|
34525
|
+
...
|
|
34526
|
+
|
|
34527
|
+
def path_menu(
|
|
34528
|
+
self,
|
|
34529
|
+
searchpaths,
|
|
34530
|
+
operator,
|
|
34531
|
+
props_default,
|
|
34532
|
+
prop_filepath,
|
|
34533
|
+
filter_ext,
|
|
34534
|
+
filter_path,
|
|
34535
|
+
display_name,
|
|
34536
|
+
add_operator,
|
|
34537
|
+
add_operator_props,
|
|
34538
|
+
):
|
|
34539
|
+
"""
|
|
34540
|
+
|
|
34541
|
+
:param searchpaths:
|
|
34542
|
+
:param operator:
|
|
34543
|
+
:param props_default:
|
|
34544
|
+
:param prop_filepath:
|
|
34545
|
+
:param filter_ext:
|
|
34546
|
+
:param filter_path:
|
|
34547
|
+
:param display_name:
|
|
34548
|
+
:param add_operator:
|
|
34549
|
+
:param add_operator_props:
|
|
34550
|
+
"""
|
|
34551
|
+
...
|
|
34552
|
+
|
|
34553
|
+
def path_resolve(self):
|
|
34554
|
+
""" """
|
|
34555
|
+
...
|
|
34556
|
+
|
|
34557
|
+
def pop(self):
|
|
34558
|
+
""" """
|
|
34559
|
+
...
|
|
34560
|
+
|
|
34561
|
+
def prepend(self, draw_func):
|
|
34562
|
+
"""
|
|
34563
|
+
|
|
34564
|
+
:param draw_func:
|
|
34565
|
+
"""
|
|
34566
|
+
...
|
|
34567
|
+
|
|
34568
|
+
def property_overridable_library_set(self):
|
|
34569
|
+
""" """
|
|
34570
|
+
...
|
|
34571
|
+
|
|
34572
|
+
def property_unset(self):
|
|
34573
|
+
""" """
|
|
34574
|
+
...
|
|
34575
|
+
|
|
34576
|
+
def remove(self, draw_func):
|
|
34577
|
+
"""
|
|
34578
|
+
|
|
34579
|
+
:param draw_func:
|
|
34580
|
+
"""
|
|
34581
|
+
...
|
|
34582
|
+
|
|
34583
|
+
def type_recast(self):
|
|
34584
|
+
""" """
|
|
34585
|
+
...
|
|
34586
|
+
|
|
34587
|
+
def values(self):
|
|
34588
|
+
""" """
|
|
34589
|
+
...
|
|
34590
|
+
|
|
34410
34591
|
class VIEW3D_MT_wpaint_vgroup_lock_pie(bpy_types.Menu, bpy_types._GenericUI):
|
|
34411
34592
|
""" """
|
|
34412
34593
|
|
|
@@ -42059,6 +42240,152 @@ class VIEW3D_PT_sculpt_context_menu(bpy_types.Panel, bpy_types._GenericUI):
|
|
|
42059
42240
|
""" """
|
|
42060
42241
|
...
|
|
42061
42242
|
|
|
42243
|
+
class VIEW3D_PT_sculpt_snapping(bpy_types.Panel, bpy_types._GenericUI):
|
|
42244
|
+
""" """
|
|
42245
|
+
|
|
42246
|
+
bl_label: typing.Any
|
|
42247
|
+
""" """
|
|
42248
|
+
|
|
42249
|
+
bl_region_type: typing.Any
|
|
42250
|
+
""" """
|
|
42251
|
+
|
|
42252
|
+
bl_rna: typing.Any
|
|
42253
|
+
""" """
|
|
42254
|
+
|
|
42255
|
+
bl_space_type: typing.Any
|
|
42256
|
+
""" """
|
|
42257
|
+
|
|
42258
|
+
id_data: typing.Any
|
|
42259
|
+
""" """
|
|
42260
|
+
|
|
42261
|
+
def append(self, draw_func):
|
|
42262
|
+
"""
|
|
42263
|
+
|
|
42264
|
+
:param draw_func:
|
|
42265
|
+
"""
|
|
42266
|
+
...
|
|
42267
|
+
|
|
42268
|
+
def as_pointer(self):
|
|
42269
|
+
""" """
|
|
42270
|
+
...
|
|
42271
|
+
|
|
42272
|
+
def bl_rna_get_subclass(self):
|
|
42273
|
+
""" """
|
|
42274
|
+
...
|
|
42275
|
+
|
|
42276
|
+
def bl_rna_get_subclass_py(self):
|
|
42277
|
+
""" """
|
|
42278
|
+
...
|
|
42279
|
+
|
|
42280
|
+
def draw(self, context):
|
|
42281
|
+
"""
|
|
42282
|
+
|
|
42283
|
+
:param context:
|
|
42284
|
+
"""
|
|
42285
|
+
...
|
|
42286
|
+
|
|
42287
|
+
def driver_add(self):
|
|
42288
|
+
""" """
|
|
42289
|
+
...
|
|
42290
|
+
|
|
42291
|
+
def driver_remove(self):
|
|
42292
|
+
""" """
|
|
42293
|
+
...
|
|
42294
|
+
|
|
42295
|
+
def get(self):
|
|
42296
|
+
""" """
|
|
42297
|
+
...
|
|
42298
|
+
|
|
42299
|
+
def id_properties_clear(self):
|
|
42300
|
+
""" """
|
|
42301
|
+
...
|
|
42302
|
+
|
|
42303
|
+
def id_properties_ensure(self):
|
|
42304
|
+
""" """
|
|
42305
|
+
...
|
|
42306
|
+
|
|
42307
|
+
def id_properties_ui(self):
|
|
42308
|
+
""" """
|
|
42309
|
+
...
|
|
42310
|
+
|
|
42311
|
+
def is_extended(self):
|
|
42312
|
+
""" """
|
|
42313
|
+
...
|
|
42314
|
+
|
|
42315
|
+
def is_property_hidden(self):
|
|
42316
|
+
""" """
|
|
42317
|
+
...
|
|
42318
|
+
|
|
42319
|
+
def is_property_overridable_library(self):
|
|
42320
|
+
""" """
|
|
42321
|
+
...
|
|
42322
|
+
|
|
42323
|
+
def is_property_readonly(self):
|
|
42324
|
+
""" """
|
|
42325
|
+
...
|
|
42326
|
+
|
|
42327
|
+
def is_property_set(self):
|
|
42328
|
+
""" """
|
|
42329
|
+
...
|
|
42330
|
+
|
|
42331
|
+
def items(self):
|
|
42332
|
+
""" """
|
|
42333
|
+
...
|
|
42334
|
+
|
|
42335
|
+
def keyframe_delete(self):
|
|
42336
|
+
""" """
|
|
42337
|
+
...
|
|
42338
|
+
|
|
42339
|
+
def keyframe_insert(self):
|
|
42340
|
+
""" """
|
|
42341
|
+
...
|
|
42342
|
+
|
|
42343
|
+
def keys(self):
|
|
42344
|
+
""" """
|
|
42345
|
+
...
|
|
42346
|
+
|
|
42347
|
+
def path_from_id(self):
|
|
42348
|
+
""" """
|
|
42349
|
+
...
|
|
42350
|
+
|
|
42351
|
+
def path_resolve(self):
|
|
42352
|
+
""" """
|
|
42353
|
+
...
|
|
42354
|
+
|
|
42355
|
+
def pop(self):
|
|
42356
|
+
""" """
|
|
42357
|
+
...
|
|
42358
|
+
|
|
42359
|
+
def prepend(self, draw_func):
|
|
42360
|
+
"""
|
|
42361
|
+
|
|
42362
|
+
:param draw_func:
|
|
42363
|
+
"""
|
|
42364
|
+
...
|
|
42365
|
+
|
|
42366
|
+
def property_overridable_library_set(self):
|
|
42367
|
+
""" """
|
|
42368
|
+
...
|
|
42369
|
+
|
|
42370
|
+
def property_unset(self):
|
|
42371
|
+
""" """
|
|
42372
|
+
...
|
|
42373
|
+
|
|
42374
|
+
def remove(self, draw_func):
|
|
42375
|
+
"""
|
|
42376
|
+
|
|
42377
|
+
:param draw_func:
|
|
42378
|
+
"""
|
|
42379
|
+
...
|
|
42380
|
+
|
|
42381
|
+
def type_recast(self):
|
|
42382
|
+
""" """
|
|
42383
|
+
...
|
|
42384
|
+
|
|
42385
|
+
def values(self):
|
|
42386
|
+
""" """
|
|
42387
|
+
...
|
|
42388
|
+
|
|
42062
42389
|
class VIEW3D_PT_shading(bpy_types.Panel, bpy_types._GenericUI):
|
|
42063
42390
|
""" """
|
|
42064
42391
|
|
|
@@ -6115,6 +6115,176 @@ class VIEW3D_PT_tools_grease_pencil_sculpt_settings(
|
|
|
6115
6115
|
""" """
|
|
6116
6116
|
...
|
|
6117
6117
|
|
|
6118
|
+
class VIEW3D_PT_tools_grease_pencil_v3_brush_advanced(
|
|
6119
|
+
bpy_types.Panel, View3DPanel, bpy_types._GenericUI
|
|
6120
|
+
):
|
|
6121
|
+
""" """
|
|
6122
|
+
|
|
6123
|
+
bl_category: typing.Any
|
|
6124
|
+
""" """
|
|
6125
|
+
|
|
6126
|
+
bl_context: typing.Any
|
|
6127
|
+
""" """
|
|
6128
|
+
|
|
6129
|
+
bl_label: typing.Any
|
|
6130
|
+
""" """
|
|
6131
|
+
|
|
6132
|
+
bl_options: typing.Any
|
|
6133
|
+
""" """
|
|
6134
|
+
|
|
6135
|
+
bl_parent_id: typing.Any
|
|
6136
|
+
""" """
|
|
6137
|
+
|
|
6138
|
+
bl_region_type: typing.Any
|
|
6139
|
+
""" """
|
|
6140
|
+
|
|
6141
|
+
bl_rna: typing.Any
|
|
6142
|
+
""" """
|
|
6143
|
+
|
|
6144
|
+
bl_space_type: typing.Any
|
|
6145
|
+
""" """
|
|
6146
|
+
|
|
6147
|
+
bl_ui_units_x: typing.Any
|
|
6148
|
+
""" """
|
|
6149
|
+
|
|
6150
|
+
id_data: typing.Any
|
|
6151
|
+
""" """
|
|
6152
|
+
|
|
6153
|
+
def append(self, draw_func):
|
|
6154
|
+
"""
|
|
6155
|
+
|
|
6156
|
+
:param draw_func:
|
|
6157
|
+
"""
|
|
6158
|
+
...
|
|
6159
|
+
|
|
6160
|
+
def as_pointer(self):
|
|
6161
|
+
""" """
|
|
6162
|
+
...
|
|
6163
|
+
|
|
6164
|
+
def bl_rna_get_subclass(self):
|
|
6165
|
+
""" """
|
|
6166
|
+
...
|
|
6167
|
+
|
|
6168
|
+
def bl_rna_get_subclass_py(self):
|
|
6169
|
+
""" """
|
|
6170
|
+
...
|
|
6171
|
+
|
|
6172
|
+
def draw(self, context):
|
|
6173
|
+
"""
|
|
6174
|
+
|
|
6175
|
+
:param context:
|
|
6176
|
+
"""
|
|
6177
|
+
...
|
|
6178
|
+
|
|
6179
|
+
def driver_add(self):
|
|
6180
|
+
""" """
|
|
6181
|
+
...
|
|
6182
|
+
|
|
6183
|
+
def driver_remove(self):
|
|
6184
|
+
""" """
|
|
6185
|
+
...
|
|
6186
|
+
|
|
6187
|
+
def get(self):
|
|
6188
|
+
""" """
|
|
6189
|
+
...
|
|
6190
|
+
|
|
6191
|
+
def id_properties_clear(self):
|
|
6192
|
+
""" """
|
|
6193
|
+
...
|
|
6194
|
+
|
|
6195
|
+
def id_properties_ensure(self):
|
|
6196
|
+
""" """
|
|
6197
|
+
...
|
|
6198
|
+
|
|
6199
|
+
def id_properties_ui(self):
|
|
6200
|
+
""" """
|
|
6201
|
+
...
|
|
6202
|
+
|
|
6203
|
+
def is_extended(self):
|
|
6204
|
+
""" """
|
|
6205
|
+
...
|
|
6206
|
+
|
|
6207
|
+
def is_property_hidden(self):
|
|
6208
|
+
""" """
|
|
6209
|
+
...
|
|
6210
|
+
|
|
6211
|
+
def is_property_overridable_library(self):
|
|
6212
|
+
""" """
|
|
6213
|
+
...
|
|
6214
|
+
|
|
6215
|
+
def is_property_readonly(self):
|
|
6216
|
+
""" """
|
|
6217
|
+
...
|
|
6218
|
+
|
|
6219
|
+
def is_property_set(self):
|
|
6220
|
+
""" """
|
|
6221
|
+
...
|
|
6222
|
+
|
|
6223
|
+
def items(self):
|
|
6224
|
+
""" """
|
|
6225
|
+
...
|
|
6226
|
+
|
|
6227
|
+
def keyframe_delete(self):
|
|
6228
|
+
""" """
|
|
6229
|
+
...
|
|
6230
|
+
|
|
6231
|
+
def keyframe_insert(self):
|
|
6232
|
+
""" """
|
|
6233
|
+
...
|
|
6234
|
+
|
|
6235
|
+
def keys(self):
|
|
6236
|
+
""" """
|
|
6237
|
+
...
|
|
6238
|
+
|
|
6239
|
+
def path_from_id(self):
|
|
6240
|
+
""" """
|
|
6241
|
+
...
|
|
6242
|
+
|
|
6243
|
+
def path_resolve(self):
|
|
6244
|
+
""" """
|
|
6245
|
+
...
|
|
6246
|
+
|
|
6247
|
+
def poll(self, context):
|
|
6248
|
+
"""
|
|
6249
|
+
|
|
6250
|
+
:param context:
|
|
6251
|
+
"""
|
|
6252
|
+
...
|
|
6253
|
+
|
|
6254
|
+
def pop(self):
|
|
6255
|
+
""" """
|
|
6256
|
+
...
|
|
6257
|
+
|
|
6258
|
+
def prepend(self, draw_func):
|
|
6259
|
+
"""
|
|
6260
|
+
|
|
6261
|
+
:param draw_func:
|
|
6262
|
+
"""
|
|
6263
|
+
...
|
|
6264
|
+
|
|
6265
|
+
def property_overridable_library_set(self):
|
|
6266
|
+
""" """
|
|
6267
|
+
...
|
|
6268
|
+
|
|
6269
|
+
def property_unset(self):
|
|
6270
|
+
""" """
|
|
6271
|
+
...
|
|
6272
|
+
|
|
6273
|
+
def remove(self, draw_func):
|
|
6274
|
+
"""
|
|
6275
|
+
|
|
6276
|
+
:param draw_func:
|
|
6277
|
+
"""
|
|
6278
|
+
...
|
|
6279
|
+
|
|
6280
|
+
def type_recast(self):
|
|
6281
|
+
""" """
|
|
6282
|
+
...
|
|
6283
|
+
|
|
6284
|
+
def values(self):
|
|
6285
|
+
""" """
|
|
6286
|
+
...
|
|
6287
|
+
|
|
6118
6288
|
class VIEW3D_PT_tools_grease_pencil_v3_brush_mix_palette(
|
|
6119
6289
|
bpy_types.Panel, View3DPanel, bpy_types._GenericUI
|
|
6120
6290
|
):
|
bmesh/utils/__init__.pyi
CHANGED
|
@@ -173,7 +173,7 @@ def vert_dissolve(vert: bmesh.types.BMVert) -> bool:
|
|
|
173
173
|
|
|
174
174
|
def vert_separate(
|
|
175
175
|
vert: bmesh.types.BMVert, edges: bmesh.types.BMEdge
|
|
176
|
-
) -> typing.Tuple[bmesh.types.BMVert]:
|
|
176
|
+
) -> typing.Tuple[bmesh.types.BMVert, ...]:
|
|
177
177
|
"""Separate this vertex at every edge.
|
|
178
178
|
|
|
179
179
|
:param vert: The vert to be separated.
|
|
@@ -181,7 +181,7 @@ def vert_separate(
|
|
|
181
181
|
:param edges: The edges to separated.
|
|
182
182
|
:type edges: bmesh.types.BMEdge
|
|
183
183
|
:return: The newly separated verts (including the vertex passed).
|
|
184
|
-
:rtype: typing.Tuple[bmesh.types.BMVert]
|
|
184
|
+
:rtype: typing.Tuple[bmesh.types.BMVert, ...]
|
|
185
185
|
"""
|
|
186
186
|
|
|
187
187
|
...
|
bpy/app/__init__.pyi
CHANGED
|
@@ -58,7 +58,7 @@ background: typing.Any
|
|
|
58
58
|
""" Boolean, True when blender is running without a user interface (started with -b)
|
|
59
59
|
"""
|
|
60
60
|
|
|
61
|
-
binary_path:
|
|
61
|
+
binary_path: str
|
|
62
62
|
""" The location of Blender's executable, useful for utilities that open new instances. Read-only unless Blender is built as a Python module - in this case the value is an empty string which script authors may point to a Blender binary.
|
|
63
63
|
"""
|
|
64
64
|
|
|
@@ -238,7 +238,7 @@ use_userpref_skip_save_on_exit: typing.Any
|
|
|
238
238
|
""" Boolean, for application behavior (started with --enable-* matching this attribute name)
|
|
239
239
|
"""
|
|
240
240
|
|
|
241
|
-
version: typing.
|
|
241
|
+
version: typing.Tuple[int, int, int]
|
|
242
242
|
""" The Blender version as a tuple of 3 numbers. eg. (2, 83, 1)
|
|
243
243
|
"""
|
|
244
244
|
|
bpy/ops/__init__.pyi
CHANGED
|
@@ -154,6 +154,7 @@ from . import action
|
|
|
154
154
|
from . import anim
|
|
155
155
|
from . import armature
|
|
156
156
|
from . import asset
|
|
157
|
+
from . import bl_pkg
|
|
157
158
|
from . import boid
|
|
158
159
|
from . import brush
|
|
159
160
|
from . import buttons
|
|
@@ -170,7 +171,6 @@ from . import cycles
|
|
|
170
171
|
from . import dpaint
|
|
171
172
|
from . import ed
|
|
172
173
|
from . import export_anim
|
|
173
|
-
from . import export_mesh
|
|
174
174
|
from . import export_scene
|
|
175
175
|
from . import file
|
|
176
176
|
from . import fluid
|
|
@@ -183,7 +183,6 @@ from . import grease_pencil
|
|
|
183
183
|
from . import image
|
|
184
184
|
from . import import_anim
|
|
185
185
|
from . import import_curve
|
|
186
|
-
from . import import_mesh
|
|
187
186
|
from . import import_scene
|
|
188
187
|
from . import info
|
|
189
188
|
from . import lattice
|