fake-bpy-module 20240502__py3-none-any.whl → 20240504__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_paint_common/__init__.pyi +23 -0
- bl_ui/space_sequencer/__init__.pyi +175 -181
- bl_ui/space_toolsystem_toolbar/__init__.pyi +3 -0
- bl_ui/space_view3d/__init__.pyi +191 -1
- bpy/ops/export_scene/__init__.pyi +5 -5
- bpy/ops/grease_pencil/__init__.pyi +34 -0
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/object/__init__.pyi +28 -0
- bpy/ops/paint/__init__.pyi +3 -3
- bpy/ops/sculpt/__init__.pyi +89 -6
- bpy/types/__init__.pyi +28249 -27826
- {fake_bpy_module-20240502.dist-info → fake_bpy_module-20240504.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240502.dist-info → fake_bpy_module-20240504.dist-info}/RECORD +15 -15
- {fake_bpy_module-20240502.dist-info → fake_bpy_module-20240504.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240502.dist-info → fake_bpy_module-20240504.dist-info}/top_level.txt +0 -0
|
@@ -3,6 +3,29 @@ import bpy_types
|
|
|
3
3
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
|
+
class BrushAssetShelf:
|
|
7
|
+
""" """
|
|
8
|
+
|
|
9
|
+
bl_default_preview_size: typing.Any
|
|
10
|
+
""" """
|
|
11
|
+
|
|
12
|
+
bl_options: typing.Any
|
|
13
|
+
""" """
|
|
14
|
+
|
|
15
|
+
def asset_poll(self, asset):
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
:param asset:
|
|
19
|
+
"""
|
|
20
|
+
...
|
|
21
|
+
|
|
22
|
+
def poll(self, context):
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
:param context:
|
|
26
|
+
"""
|
|
27
|
+
...
|
|
28
|
+
|
|
6
29
|
class UnifiedPaintPanel:
|
|
7
30
|
""" """
|
|
8
31
|
|
|
@@ -6321,187 +6321,6 @@ class SEQUENCER_MT_view(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
6321
6321
|
""" """
|
|
6322
6322
|
...
|
|
6323
6323
|
|
|
6324
|
-
class SEQUENCER_MT_view_cache(bpy_types.Menu, bpy_types._GenericUI):
|
|
6325
|
-
""" """
|
|
6326
|
-
|
|
6327
|
-
bl_label: typing.Any
|
|
6328
|
-
""" """
|
|
6329
|
-
|
|
6330
|
-
bl_rna: typing.Any
|
|
6331
|
-
""" """
|
|
6332
|
-
|
|
6333
|
-
id_data: typing.Any
|
|
6334
|
-
""" """
|
|
6335
|
-
|
|
6336
|
-
def append(self, draw_func):
|
|
6337
|
-
"""
|
|
6338
|
-
|
|
6339
|
-
:param draw_func:
|
|
6340
|
-
"""
|
|
6341
|
-
...
|
|
6342
|
-
|
|
6343
|
-
def as_pointer(self):
|
|
6344
|
-
""" """
|
|
6345
|
-
...
|
|
6346
|
-
|
|
6347
|
-
def bl_rna_get_subclass(self):
|
|
6348
|
-
""" """
|
|
6349
|
-
...
|
|
6350
|
-
|
|
6351
|
-
def bl_rna_get_subclass_py(self):
|
|
6352
|
-
""" """
|
|
6353
|
-
...
|
|
6354
|
-
|
|
6355
|
-
def draw(self, context):
|
|
6356
|
-
"""
|
|
6357
|
-
|
|
6358
|
-
:param context:
|
|
6359
|
-
"""
|
|
6360
|
-
...
|
|
6361
|
-
|
|
6362
|
-
def draw_collapsible(self, context, layout):
|
|
6363
|
-
"""
|
|
6364
|
-
|
|
6365
|
-
:param context:
|
|
6366
|
-
:param layout:
|
|
6367
|
-
"""
|
|
6368
|
-
...
|
|
6369
|
-
|
|
6370
|
-
def draw_preset(self, _context):
|
|
6371
|
-
"""
|
|
6372
|
-
|
|
6373
|
-
:param _context:
|
|
6374
|
-
"""
|
|
6375
|
-
...
|
|
6376
|
-
|
|
6377
|
-
def driver_add(self):
|
|
6378
|
-
""" """
|
|
6379
|
-
...
|
|
6380
|
-
|
|
6381
|
-
def driver_remove(self):
|
|
6382
|
-
""" """
|
|
6383
|
-
...
|
|
6384
|
-
|
|
6385
|
-
def get(self):
|
|
6386
|
-
""" """
|
|
6387
|
-
...
|
|
6388
|
-
|
|
6389
|
-
def id_properties_clear(self):
|
|
6390
|
-
""" """
|
|
6391
|
-
...
|
|
6392
|
-
|
|
6393
|
-
def id_properties_ensure(self):
|
|
6394
|
-
""" """
|
|
6395
|
-
...
|
|
6396
|
-
|
|
6397
|
-
def id_properties_ui(self):
|
|
6398
|
-
""" """
|
|
6399
|
-
...
|
|
6400
|
-
|
|
6401
|
-
def is_extended(self):
|
|
6402
|
-
""" """
|
|
6403
|
-
...
|
|
6404
|
-
|
|
6405
|
-
def is_property_hidden(self):
|
|
6406
|
-
""" """
|
|
6407
|
-
...
|
|
6408
|
-
|
|
6409
|
-
def is_property_overridable_library(self):
|
|
6410
|
-
""" """
|
|
6411
|
-
...
|
|
6412
|
-
|
|
6413
|
-
def is_property_readonly(self):
|
|
6414
|
-
""" """
|
|
6415
|
-
...
|
|
6416
|
-
|
|
6417
|
-
def is_property_set(self):
|
|
6418
|
-
""" """
|
|
6419
|
-
...
|
|
6420
|
-
|
|
6421
|
-
def items(self):
|
|
6422
|
-
""" """
|
|
6423
|
-
...
|
|
6424
|
-
|
|
6425
|
-
def keyframe_delete(self):
|
|
6426
|
-
""" """
|
|
6427
|
-
...
|
|
6428
|
-
|
|
6429
|
-
def keyframe_insert(self):
|
|
6430
|
-
""" """
|
|
6431
|
-
...
|
|
6432
|
-
|
|
6433
|
-
def keys(self):
|
|
6434
|
-
""" """
|
|
6435
|
-
...
|
|
6436
|
-
|
|
6437
|
-
def path_from_id(self):
|
|
6438
|
-
""" """
|
|
6439
|
-
...
|
|
6440
|
-
|
|
6441
|
-
def path_menu(
|
|
6442
|
-
self,
|
|
6443
|
-
searchpaths,
|
|
6444
|
-
operator,
|
|
6445
|
-
props_default,
|
|
6446
|
-
prop_filepath,
|
|
6447
|
-
filter_ext,
|
|
6448
|
-
filter_path,
|
|
6449
|
-
display_name,
|
|
6450
|
-
add_operator,
|
|
6451
|
-
add_operator_props,
|
|
6452
|
-
):
|
|
6453
|
-
"""
|
|
6454
|
-
|
|
6455
|
-
:param searchpaths:
|
|
6456
|
-
:param operator:
|
|
6457
|
-
:param props_default:
|
|
6458
|
-
:param prop_filepath:
|
|
6459
|
-
:param filter_ext:
|
|
6460
|
-
:param filter_path:
|
|
6461
|
-
:param display_name:
|
|
6462
|
-
:param add_operator:
|
|
6463
|
-
:param add_operator_props:
|
|
6464
|
-
"""
|
|
6465
|
-
...
|
|
6466
|
-
|
|
6467
|
-
def path_resolve(self):
|
|
6468
|
-
""" """
|
|
6469
|
-
...
|
|
6470
|
-
|
|
6471
|
-
def pop(self):
|
|
6472
|
-
""" """
|
|
6473
|
-
...
|
|
6474
|
-
|
|
6475
|
-
def prepend(self, draw_func):
|
|
6476
|
-
"""
|
|
6477
|
-
|
|
6478
|
-
:param draw_func:
|
|
6479
|
-
"""
|
|
6480
|
-
...
|
|
6481
|
-
|
|
6482
|
-
def property_overridable_library_set(self):
|
|
6483
|
-
""" """
|
|
6484
|
-
...
|
|
6485
|
-
|
|
6486
|
-
def property_unset(self):
|
|
6487
|
-
""" """
|
|
6488
|
-
...
|
|
6489
|
-
|
|
6490
|
-
def remove(self, draw_func):
|
|
6491
|
-
"""
|
|
6492
|
-
|
|
6493
|
-
:param draw_func:
|
|
6494
|
-
"""
|
|
6495
|
-
...
|
|
6496
|
-
|
|
6497
|
-
def type_recast(self):
|
|
6498
|
-
""" """
|
|
6499
|
-
...
|
|
6500
|
-
|
|
6501
|
-
def values(self):
|
|
6502
|
-
""" """
|
|
6503
|
-
...
|
|
6504
|
-
|
|
6505
6324
|
class SEQUENCER_MT_view_pie(bpy_types.Menu, bpy_types._GenericUI):
|
|
6506
6325
|
""" """
|
|
6507
6326
|
|
|
@@ -9176,6 +8995,181 @@ class SEQUENCER_PT_cache_settings(
|
|
|
9176
8995
|
""" """
|
|
9177
8996
|
...
|
|
9178
8997
|
|
|
8998
|
+
class SEQUENCER_PT_cache_view_settings(
|
|
8999
|
+
bpy_types.Panel, SequencerButtonsPanel, bpy_types._GenericUI
|
|
9000
|
+
):
|
|
9001
|
+
""" """
|
|
9002
|
+
|
|
9003
|
+
bl_category: typing.Any
|
|
9004
|
+
""" """
|
|
9005
|
+
|
|
9006
|
+
bl_label: typing.Any
|
|
9007
|
+
""" """
|
|
9008
|
+
|
|
9009
|
+
bl_parent_id: typing.Any
|
|
9010
|
+
""" """
|
|
9011
|
+
|
|
9012
|
+
bl_region_type: typing.Any
|
|
9013
|
+
""" """
|
|
9014
|
+
|
|
9015
|
+
bl_rna: typing.Any
|
|
9016
|
+
""" """
|
|
9017
|
+
|
|
9018
|
+
bl_space_type: typing.Any
|
|
9019
|
+
""" """
|
|
9020
|
+
|
|
9021
|
+
id_data: typing.Any
|
|
9022
|
+
""" """
|
|
9023
|
+
|
|
9024
|
+
def append(self, draw_func):
|
|
9025
|
+
"""
|
|
9026
|
+
|
|
9027
|
+
:param draw_func:
|
|
9028
|
+
"""
|
|
9029
|
+
...
|
|
9030
|
+
|
|
9031
|
+
def as_pointer(self):
|
|
9032
|
+
""" """
|
|
9033
|
+
...
|
|
9034
|
+
|
|
9035
|
+
def bl_rna_get_subclass(self):
|
|
9036
|
+
""" """
|
|
9037
|
+
...
|
|
9038
|
+
|
|
9039
|
+
def bl_rna_get_subclass_py(self):
|
|
9040
|
+
""" """
|
|
9041
|
+
...
|
|
9042
|
+
|
|
9043
|
+
def draw(self, context):
|
|
9044
|
+
"""
|
|
9045
|
+
|
|
9046
|
+
:param context:
|
|
9047
|
+
"""
|
|
9048
|
+
...
|
|
9049
|
+
|
|
9050
|
+
def draw_header(self, context):
|
|
9051
|
+
"""
|
|
9052
|
+
|
|
9053
|
+
:param context:
|
|
9054
|
+
"""
|
|
9055
|
+
...
|
|
9056
|
+
|
|
9057
|
+
def driver_add(self):
|
|
9058
|
+
""" """
|
|
9059
|
+
...
|
|
9060
|
+
|
|
9061
|
+
def driver_remove(self):
|
|
9062
|
+
""" """
|
|
9063
|
+
...
|
|
9064
|
+
|
|
9065
|
+
def get(self):
|
|
9066
|
+
""" """
|
|
9067
|
+
...
|
|
9068
|
+
|
|
9069
|
+
def has_sequencer(self, context):
|
|
9070
|
+
"""
|
|
9071
|
+
|
|
9072
|
+
:param context:
|
|
9073
|
+
"""
|
|
9074
|
+
...
|
|
9075
|
+
|
|
9076
|
+
def id_properties_clear(self):
|
|
9077
|
+
""" """
|
|
9078
|
+
...
|
|
9079
|
+
|
|
9080
|
+
def id_properties_ensure(self):
|
|
9081
|
+
""" """
|
|
9082
|
+
...
|
|
9083
|
+
|
|
9084
|
+
def id_properties_ui(self):
|
|
9085
|
+
""" """
|
|
9086
|
+
...
|
|
9087
|
+
|
|
9088
|
+
def is_extended(self):
|
|
9089
|
+
""" """
|
|
9090
|
+
...
|
|
9091
|
+
|
|
9092
|
+
def is_property_hidden(self):
|
|
9093
|
+
""" """
|
|
9094
|
+
...
|
|
9095
|
+
|
|
9096
|
+
def is_property_overridable_library(self):
|
|
9097
|
+
""" """
|
|
9098
|
+
...
|
|
9099
|
+
|
|
9100
|
+
def is_property_readonly(self):
|
|
9101
|
+
""" """
|
|
9102
|
+
...
|
|
9103
|
+
|
|
9104
|
+
def is_property_set(self):
|
|
9105
|
+
""" """
|
|
9106
|
+
...
|
|
9107
|
+
|
|
9108
|
+
def items(self):
|
|
9109
|
+
""" """
|
|
9110
|
+
...
|
|
9111
|
+
|
|
9112
|
+
def keyframe_delete(self):
|
|
9113
|
+
""" """
|
|
9114
|
+
...
|
|
9115
|
+
|
|
9116
|
+
def keyframe_insert(self):
|
|
9117
|
+
""" """
|
|
9118
|
+
...
|
|
9119
|
+
|
|
9120
|
+
def keys(self):
|
|
9121
|
+
""" """
|
|
9122
|
+
...
|
|
9123
|
+
|
|
9124
|
+
def path_from_id(self):
|
|
9125
|
+
""" """
|
|
9126
|
+
...
|
|
9127
|
+
|
|
9128
|
+
def path_resolve(self):
|
|
9129
|
+
""" """
|
|
9130
|
+
...
|
|
9131
|
+
|
|
9132
|
+
def poll(self, context):
|
|
9133
|
+
"""
|
|
9134
|
+
|
|
9135
|
+
:param context:
|
|
9136
|
+
"""
|
|
9137
|
+
...
|
|
9138
|
+
|
|
9139
|
+
def pop(self):
|
|
9140
|
+
""" """
|
|
9141
|
+
...
|
|
9142
|
+
|
|
9143
|
+
def prepend(self, draw_func):
|
|
9144
|
+
"""
|
|
9145
|
+
|
|
9146
|
+
:param draw_func:
|
|
9147
|
+
"""
|
|
9148
|
+
...
|
|
9149
|
+
|
|
9150
|
+
def property_overridable_library_set(self):
|
|
9151
|
+
""" """
|
|
9152
|
+
...
|
|
9153
|
+
|
|
9154
|
+
def property_unset(self):
|
|
9155
|
+
""" """
|
|
9156
|
+
...
|
|
9157
|
+
|
|
9158
|
+
def remove(self, draw_func):
|
|
9159
|
+
"""
|
|
9160
|
+
|
|
9161
|
+
:param draw_func:
|
|
9162
|
+
"""
|
|
9163
|
+
...
|
|
9164
|
+
|
|
9165
|
+
def type_recast(self):
|
|
9166
|
+
""" """
|
|
9167
|
+
...
|
|
9168
|
+
|
|
9169
|
+
def values(self):
|
|
9170
|
+
""" """
|
|
9171
|
+
...
|
|
9172
|
+
|
|
9179
9173
|
class SEQUENCER_PT_custom_props(
|
|
9180
9174
|
bpy_types.Panel,
|
|
9181
9175
|
SequencerButtonsPanel,
|
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import bl_ui.properties_grease_pencil_common
|
|
3
|
+
import bl_ui.properties_paint_common
|
|
3
4
|
import bl_ui.space_toolsystem_common
|
|
4
5
|
import bpy_types
|
|
5
6
|
|
|
@@ -897,7 +898,15 @@ class TOPBAR_PT_gpencil_vertexcolor(
|
|
|
897
898
|
""" """
|
|
898
899
|
...
|
|
899
900
|
|
|
900
|
-
class VIEW3D_AST_sculpt_brushes(
|
|
901
|
+
class VIEW3D_AST_sculpt_brushes(
|
|
902
|
+
bl_ui.properties_paint_common.BrushAssetShelf, bpy_types.AssetShelf
|
|
903
|
+
):
|
|
904
|
+
""" """
|
|
905
|
+
|
|
906
|
+
bl_default_preview_size: typing.Any
|
|
907
|
+
""" """
|
|
908
|
+
|
|
909
|
+
bl_options: typing.Any
|
|
901
910
|
""" """
|
|
902
911
|
|
|
903
912
|
bl_rna: typing.Any
|
|
@@ -20959,6 +20968,187 @@ class VIEW3D_MT_object_mode_pie(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
20959
20968
|
""" """
|
|
20960
20969
|
...
|
|
20961
20970
|
|
|
20971
|
+
class VIEW3D_MT_object_modifiers(bpy_types.Menu, bpy_types._GenericUI):
|
|
20972
|
+
""" """
|
|
20973
|
+
|
|
20974
|
+
bl_label: typing.Any
|
|
20975
|
+
""" """
|
|
20976
|
+
|
|
20977
|
+
bl_rna: typing.Any
|
|
20978
|
+
""" """
|
|
20979
|
+
|
|
20980
|
+
id_data: typing.Any
|
|
20981
|
+
""" """
|
|
20982
|
+
|
|
20983
|
+
def append(self, draw_func):
|
|
20984
|
+
"""
|
|
20985
|
+
|
|
20986
|
+
:param draw_func:
|
|
20987
|
+
"""
|
|
20988
|
+
...
|
|
20989
|
+
|
|
20990
|
+
def as_pointer(self):
|
|
20991
|
+
""" """
|
|
20992
|
+
...
|
|
20993
|
+
|
|
20994
|
+
def bl_rna_get_subclass(self):
|
|
20995
|
+
""" """
|
|
20996
|
+
...
|
|
20997
|
+
|
|
20998
|
+
def bl_rna_get_subclass_py(self):
|
|
20999
|
+
""" """
|
|
21000
|
+
...
|
|
21001
|
+
|
|
21002
|
+
def draw(self, _context):
|
|
21003
|
+
"""
|
|
21004
|
+
|
|
21005
|
+
:param _context:
|
|
21006
|
+
"""
|
|
21007
|
+
...
|
|
21008
|
+
|
|
21009
|
+
def draw_collapsible(self, context, layout):
|
|
21010
|
+
"""
|
|
21011
|
+
|
|
21012
|
+
:param context:
|
|
21013
|
+
:param layout:
|
|
21014
|
+
"""
|
|
21015
|
+
...
|
|
21016
|
+
|
|
21017
|
+
def draw_preset(self, _context):
|
|
21018
|
+
"""
|
|
21019
|
+
|
|
21020
|
+
:param _context:
|
|
21021
|
+
"""
|
|
21022
|
+
...
|
|
21023
|
+
|
|
21024
|
+
def driver_add(self):
|
|
21025
|
+
""" """
|
|
21026
|
+
...
|
|
21027
|
+
|
|
21028
|
+
def driver_remove(self):
|
|
21029
|
+
""" """
|
|
21030
|
+
...
|
|
21031
|
+
|
|
21032
|
+
def get(self):
|
|
21033
|
+
""" """
|
|
21034
|
+
...
|
|
21035
|
+
|
|
21036
|
+
def id_properties_clear(self):
|
|
21037
|
+
""" """
|
|
21038
|
+
...
|
|
21039
|
+
|
|
21040
|
+
def id_properties_ensure(self):
|
|
21041
|
+
""" """
|
|
21042
|
+
...
|
|
21043
|
+
|
|
21044
|
+
def id_properties_ui(self):
|
|
21045
|
+
""" """
|
|
21046
|
+
...
|
|
21047
|
+
|
|
21048
|
+
def is_extended(self):
|
|
21049
|
+
""" """
|
|
21050
|
+
...
|
|
21051
|
+
|
|
21052
|
+
def is_property_hidden(self):
|
|
21053
|
+
""" """
|
|
21054
|
+
...
|
|
21055
|
+
|
|
21056
|
+
def is_property_overridable_library(self):
|
|
21057
|
+
""" """
|
|
21058
|
+
...
|
|
21059
|
+
|
|
21060
|
+
def is_property_readonly(self):
|
|
21061
|
+
""" """
|
|
21062
|
+
...
|
|
21063
|
+
|
|
21064
|
+
def is_property_set(self):
|
|
21065
|
+
""" """
|
|
21066
|
+
...
|
|
21067
|
+
|
|
21068
|
+
def items(self):
|
|
21069
|
+
""" """
|
|
21070
|
+
...
|
|
21071
|
+
|
|
21072
|
+
def keyframe_delete(self):
|
|
21073
|
+
""" """
|
|
21074
|
+
...
|
|
21075
|
+
|
|
21076
|
+
def keyframe_insert(self):
|
|
21077
|
+
""" """
|
|
21078
|
+
...
|
|
21079
|
+
|
|
21080
|
+
def keys(self):
|
|
21081
|
+
""" """
|
|
21082
|
+
...
|
|
21083
|
+
|
|
21084
|
+
def path_from_id(self):
|
|
21085
|
+
""" """
|
|
21086
|
+
...
|
|
21087
|
+
|
|
21088
|
+
def path_menu(
|
|
21089
|
+
self,
|
|
21090
|
+
searchpaths,
|
|
21091
|
+
operator,
|
|
21092
|
+
props_default,
|
|
21093
|
+
prop_filepath,
|
|
21094
|
+
filter_ext,
|
|
21095
|
+
filter_path,
|
|
21096
|
+
display_name,
|
|
21097
|
+
add_operator,
|
|
21098
|
+
add_operator_props,
|
|
21099
|
+
):
|
|
21100
|
+
"""
|
|
21101
|
+
|
|
21102
|
+
:param searchpaths:
|
|
21103
|
+
:param operator:
|
|
21104
|
+
:param props_default:
|
|
21105
|
+
:param prop_filepath:
|
|
21106
|
+
:param filter_ext:
|
|
21107
|
+
:param filter_path:
|
|
21108
|
+
:param display_name:
|
|
21109
|
+
:param add_operator:
|
|
21110
|
+
:param add_operator_props:
|
|
21111
|
+
"""
|
|
21112
|
+
...
|
|
21113
|
+
|
|
21114
|
+
def path_resolve(self):
|
|
21115
|
+
""" """
|
|
21116
|
+
...
|
|
21117
|
+
|
|
21118
|
+
def pop(self):
|
|
21119
|
+
""" """
|
|
21120
|
+
...
|
|
21121
|
+
|
|
21122
|
+
def prepend(self, draw_func):
|
|
21123
|
+
"""
|
|
21124
|
+
|
|
21125
|
+
:param draw_func:
|
|
21126
|
+
"""
|
|
21127
|
+
...
|
|
21128
|
+
|
|
21129
|
+
def property_overridable_library_set(self):
|
|
21130
|
+
""" """
|
|
21131
|
+
...
|
|
21132
|
+
|
|
21133
|
+
def property_unset(self):
|
|
21134
|
+
""" """
|
|
21135
|
+
...
|
|
21136
|
+
|
|
21137
|
+
def remove(self, draw_func):
|
|
21138
|
+
"""
|
|
21139
|
+
|
|
21140
|
+
:param draw_func:
|
|
21141
|
+
"""
|
|
21142
|
+
...
|
|
21143
|
+
|
|
21144
|
+
def type_recast(self):
|
|
21145
|
+
""" """
|
|
21146
|
+
...
|
|
21147
|
+
|
|
21148
|
+
def values(self):
|
|
21149
|
+
""" """
|
|
21150
|
+
...
|
|
21151
|
+
|
|
20962
21152
|
class VIEW3D_MT_object_parent(bpy_types.Menu, bpy_types._GenericUI):
|
|
20963
21153
|
""" """
|
|
20964
21154
|
|
|
@@ -20,12 +20,12 @@ def fbx(
|
|
|
20
20
|
use_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
21
21
|
bake_space_transform: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
22
22
|
object_types: typing.Optional[typing.Any] = {
|
|
23
|
-
'"
|
|
24
|
-
'"
|
|
23
|
+
'"ARMATURE"',
|
|
24
|
+
'"OTHER"',
|
|
25
25
|
'"CAMERA"',
|
|
26
26
|
'"MESH"',
|
|
27
|
-
'"
|
|
28
|
-
'"
|
|
27
|
+
'"LIGHT"',
|
|
28
|
+
'"EMPTY"',
|
|
29
29
|
},
|
|
30
30
|
use_mesh_modifiers: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
31
31
|
use_mesh_modifiers_render: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -551,7 +551,7 @@ def gltf(
|
|
|
551
551
|
:type export_frame_step: typing.Optional[typing.Any]
|
|
552
552
|
:param export_force_sampling: Always Sample Animations, Apply sampling to all animations
|
|
553
553
|
:type export_force_sampling: typing.Optional[typing.Union[bool, typing.Any]]
|
|
554
|
-
:param export_pointer_animation: Export Animation Pointer (Experimental), Export material, Light & Camera animation as Animation Pointer
|
|
554
|
+
:param export_pointer_animation: Export Animation Pointer (Experimental), Export material, Light & Camera animation as Animation Pointer
|
|
555
555
|
:type export_pointer_animation: typing.Optional[typing.Union[bool, typing.Any]]
|
|
556
556
|
:param export_animation_mode: Animation mode, Export Animation mode
|
|
557
557
|
|
|
@@ -209,6 +209,40 @@ def duplicate_move(
|
|
|
209
209
|
|
|
210
210
|
...
|
|
211
211
|
|
|
212
|
+
def extrude(
|
|
213
|
+
override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
|
|
214
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
215
|
+
undo: typing.Optional[bool] = None,
|
|
216
|
+
):
|
|
217
|
+
"""Extrude the selected points
|
|
218
|
+
|
|
219
|
+
:type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
|
|
220
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
221
|
+
:type undo: typing.Optional[bool]
|
|
222
|
+
"""
|
|
223
|
+
|
|
224
|
+
...
|
|
225
|
+
|
|
226
|
+
def extrude_move(
|
|
227
|
+
override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
|
|
228
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
229
|
+
undo: typing.Optional[bool] = None,
|
|
230
|
+
GREASE_PENCIL_OT_extrude: typing.Optional[typing.Any] = None,
|
|
231
|
+
TRANSFORM_OT_translate: typing.Optional[bpy.ops.transform.translate] = None,
|
|
232
|
+
):
|
|
233
|
+
"""Extrude selected points and move them
|
|
234
|
+
|
|
235
|
+
:type override_context: typing.Optional[typing.Union[dict, bpy.types.Context]]
|
|
236
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
237
|
+
:type undo: typing.Optional[bool]
|
|
238
|
+
:param GREASE_PENCIL_OT_extrude: Extrude Stroke Points, Extrude the selected points
|
|
239
|
+
:type GREASE_PENCIL_OT_extrude: typing.Optional[typing.Any]
|
|
240
|
+
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
241
|
+
:type TRANSFORM_OT_translate: typing.Optional[bpy.ops.transform.translate]
|
|
242
|
+
"""
|
|
243
|
+
|
|
244
|
+
...
|
|
245
|
+
|
|
212
246
|
def insert_blank_frame(
|
|
213
247
|
override_context: typing.Optional[typing.Union[dict, bpy.types.Context]] = None,
|
|
214
248
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -101,11 +101,11 @@ def bake(
|
|
|
101
101
|
clean_curves: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
102
102
|
bake_types: typing.Optional[typing.Any] = {'"POSE"'},
|
|
103
103
|
channel_types: typing.Optional[typing.Any] = {
|
|
104
|
-
'"BBONE"',
|
|
105
104
|
'"PROPS"',
|
|
106
|
-
'"
|
|
107
|
-
'"ROTATION"',
|
|
105
|
+
'"BBONE"',
|
|
108
106
|
'"LOCATION"',
|
|
107
|
+
'"ROTATION"',
|
|
108
|
+
'"SCALE"',
|
|
109
109
|
},
|
|
110
110
|
):
|
|
111
111
|
"""Bake all selected objects location/scale/rotation animation to an action
|