fake-bpy-module 20240524__py3-none-any.whl → 20240529__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_console_utils/autocomplete/complete_calltip/__init__.pyi +3 -3
- bl_operators/__init__.pyi +3 -0
- bl_operators/connect_to_output/__init__.pyi +325 -0
- bl_operators/image_as_planes/__init__.pyi +463 -0
- bl_operators/node_editor/__init__.pyi +6 -0
- bl_operators/node_editor/node_functions/__init__.pyi +23 -0
- bl_operators/presets/__init__.pyi +12 -12
- bl_operators/userpref/__init__.pyi +0 -214
- bl_operators/wm/__init__.pyi +24 -24
- bl_ui/__init__.pyi +12 -12
- bl_ui/anim/__init__.pyi +6 -6
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu/__init__.pyi +6 -6
- bl_ui/node_add_menu_compositor/__init__.pyi +108 -108
- bl_ui/node_add_menu_geometry/__init__.pyi +288 -288
- bl_ui/node_add_menu_shader/__init__.pyi +60 -60
- bl_ui/node_add_menu_texture/__init__.pyi +54 -54
- bl_ui/properties_collection/__init__.pyi +6 -6
- bl_ui/properties_data_armature/__init__.pyi +12 -12
- bl_ui/properties_data_camera/__init__.pyi +12 -12
- bl_ui/properties_data_curves/__init__.pyi +6 -6
- bl_ui/properties_data_gpencil/__init__.pyi +12 -12
- bl_ui/properties_data_grease_pencil/__init__.pyi +18 -18
- bl_ui/properties_data_mesh/__init__.pyi +24 -24
- bl_ui/properties_data_modifier/__init__.pyi +42 -42
- bl_ui/properties_data_pointcloud/__init__.pyi +6 -6
- bl_ui/properties_freestyle/__init__.pyi +6 -6
- bl_ui/properties_grease_pencil_common/__init__.pyi +72 -72
- bl_ui/properties_mask_common/__init__.pyi +36 -36
- bl_ui/properties_material/__init__.pyi +6 -6
- bl_ui/properties_material_gpencil/__init__.pyi +12 -12
- bl_ui/properties_object/__init__.pyi +6 -6
- bl_ui/properties_output/__init__.pyi +18 -18
- bl_ui/properties_paint_common/__init__.pyi +6 -6
- bl_ui/properties_particle/__init__.pyi +12 -12
- bl_ui/properties_physics_cloth/__init__.pyi +6 -6
- bl_ui/properties_physics_fluid/__init__.pyi +6 -6
- bl_ui/properties_render/__init__.pyi +7 -7
- bl_ui/properties_texture/__init__.pyi +6 -6
- bl_ui/properties_view_layer/__init__.pyi +6 -6
- bl_ui/space_clip/__init__.pyi +186 -186
- bl_ui/space_console/__init__.pyi +30 -30
- bl_ui/space_dopesheet/__init__.pyi +84 -84
- bl_ui/space_filebrowser/__init__.pyi +78 -78
- bl_ui/space_graph/__init__.pyi +96 -96
- bl_ui/space_image/__init__.pyi +138 -138
- bl_ui/space_info/__init__.pyi +30 -30
- bl_ui/space_nla/__init__.pyi +78 -78
- bl_ui/space_node/__init__.pyi +72 -72
- bl_ui/space_outliner/__init__.pyi +72 -72
- bl_ui/space_sequencer/__init__.pyi +204 -204
- bl_ui/space_text/__init__.pyi +72 -72
- bl_ui/space_time/__init__.pyi +24 -24
- bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -0
- bl_ui/space_topbar/__init__.pyi +114 -114
- bl_ui/space_userpref/__init__.pyi +36 -36
- bl_ui/space_view3d/__init__.pyi +1446 -1176
- bl_ui/space_view3d_toolbar/__init__.pyi +30 -30
- bl_ui/utils/__init__.pyi +6 -6
- bmesh/geometry/__init__.pyi +2 -2
- bmesh/ops/__init__.pyi +55 -54
- bmesh/types/__init__.pyi +43 -33
- bmesh/utils/__init__.pyi +2 -2
- bpy/app/__init__.pyi +5 -1
- bpy/app/handlers/__init__.pyi +37 -37
- bpy/app/icons/__init__.pyi +4 -4
- bpy/app/timers/__init__.pyi +6 -6
- bpy/ops/action/__init__.pyi +21 -0
- bpy/ops/anim/__init__.pyi +34 -0
- bpy/ops/armature/__init__.pyi +31 -0
- bpy/ops/asset/__init__.pyi +5 -0
- bpy/ops/bl_pkg/__init__.pyi +32 -21
- bpy/ops/boid/__init__.pyi +1 -0
- bpy/ops/brush/__init__.pyi +6 -0
- bpy/ops/buttons/__init__.pyi +2 -0
- bpy/ops/cachefile/__init__.pyi +3 -0
- bpy/ops/camera/__init__.pyi +2 -0
- bpy/ops/clip/__init__.pyi +49 -0
- bpy/ops/cloth/__init__.pyi +1 -0
- bpy/ops/collection/__init__.pyi +7 -0
- bpy/ops/console/__init__.pyi +11 -0
- bpy/ops/constraint/__init__.pyi +15 -0
- bpy/ops/curve/__init__.pyi +28 -0
- bpy/ops/curves/__init__.pyi +14 -0
- bpy/ops/cycles/__init__.pyi +2 -0
- bpy/ops/dpaint/__init__.pyi +2 -0
- bpy/ops/ed/__init__.pyi +3 -0
- bpy/ops/export_anim/__init__.pyi +1 -0
- bpy/ops/export_scene/__init__.pyi +20 -3
- bpy/ops/file/__init__.pyi +14 -0
- bpy/ops/fluid/__init__.pyi +1 -0
- bpy/ops/font/__init__.pyi +13 -0
- bpy/ops/geometry/__init__.pyi +7 -0
- bpy/ops/gizmogroup/__init__.pyi +1 -0
- bpy/ops/gpencil/__init__.pyi +106 -0
- bpy/ops/graph/__init__.pyi +47 -0
- bpy/ops/grease_pencil/__init__.pyi +52 -0
- bpy/ops/image/__init__.pyi +308 -0
- bpy/ops/import_anim/__init__.pyi +1 -0
- bpy/ops/import_curve/__init__.pyi +1 -0
- bpy/ops/import_scene/__init__.pyi +2 -0
- bpy/ops/info/__init__.pyi +3 -0
- bpy/ops/lattice/__init__.pyi +5 -0
- bpy/ops/marker/__init__.pyi +9 -0
- bpy/ops/mask/__init__.pyi +22 -0
- bpy/ops/mball/__init__.pyi +7 -0
- bpy/ops/mesh/__init__.pyi +134 -0
- bpy/ops/nla/__init__.pyi +20 -0
- bpy/ops/node/__init__.pyi +65 -0
- bpy/ops/object/__init__.pyi +174 -0
- bpy/ops/outliner/__init__.pyi +25 -0
- bpy/ops/paint/__init__.pyi +105 -0
- bpy/ops/paintcurve/__init__.pyi +4 -0
- bpy/ops/palette/__init__.pyi +4 -0
- bpy/ops/particle/__init__.pyi +17 -0
- bpy/ops/pose/__init__.pyi +24 -0
- bpy/ops/poselib/__init__.pyi +4 -0
- bpy/ops/preferences/__init__.pyi +28 -16
- bpy/ops/ptcache/__init__.pyi +2 -0
- bpy/ops/render/__init__.pyi +9 -0
- bpy/ops/rigidbody/__init__.pyi +7 -0
- bpy/ops/scene/__init__.pyi +16 -0
- bpy/ops/screen/__init__.pyi +21 -0
- bpy/ops/script/__init__.pyi +2 -0
- bpy/ops/sculpt/__init__.pyi +151 -0
- bpy/ops/sculpt_curves/__init__.pyi +3 -0
- bpy/ops/sequencer/__init__.pyi +57 -0
- bpy/ops/sound/__init__.pyi +4 -0
- bpy/ops/spreadsheet/__init__.pyi +2 -0
- bpy/ops/surface/__init__.pyi +6 -0
- bpy/ops/text/__init__.pyi +18 -0
- bpy/ops/text_editor/__init__.pyi +1 -0
- bpy/ops/texture/__init__.pyi +1 -0
- bpy/ops/transform/__init__.pyi +25 -0
- bpy/ops/ui/__init__.pyi +13 -0
- bpy/ops/uilist/__init__.pyi +3 -0
- bpy/ops/uv/__init__.pyi +40 -0
- bpy/ops/view2d/__init__.pyi +11 -0
- bpy/ops/view3d/__init__.pyi +30 -0
- bpy/ops/wm/__init__.pyi +114 -0
- bpy/ops/workspace/__init__.pyi +1 -0
- bpy/path/__init__.pyi +6 -6
- bpy/props/__init__.pyi +27 -15
- bpy/types/__init__.pyi +662 -388
- bpy/utils/__init__.pyi +12 -10
- bpy_extras/anim_utils/__init__.pyi +7 -7
- bpy_extras/io_utils/__init__.pyi +4 -4
- bpy_extras/mesh_utils/__init__.pyi +4 -4
- bpy_extras/object_utils/__init__.pyi +8 -8
- bpy_extras/view3d_utils/__init__.pyi +2 -0
- bpy_types/__init__.pyi +12 -12
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/RECORD +167 -163
- freestyle/shaders/__init__.pyi +2 -2
- freestyle/types/__init__.pyi +64 -56
- gpu/matrix/__init__.pyi +6 -6
- gpu/types/__init__.pyi +14 -10
- gpu_extras/batch/__init__.pyi +1 -1
- gpu_extras/presets/__init__.pyi +1 -1
- imbuf/__init__.pyi +2 -2
- mathutils/__init__.pyi +176 -137
- mathutils/bvhtree/__init__.pyi +4 -4
- mathutils/geometry/__init__.pyi +139 -139
- mathutils/kdtree/__init__.pyi +14 -10
- mathutils/noise/__init__.pyi +26 -26
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240524.dist-info → fake_bpy_module-20240529.dist-info}/top_level.txt +0 -0
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -10,6 +10,7 @@ def alembic_export(
|
|
|
10
10
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
11
11
|
execution_context: str | int | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
|
+
*,
|
|
13
14
|
filepath: str | typing.Any = "",
|
|
14
15
|
check_existing: bool | typing.Any | None = True,
|
|
15
16
|
filter_blender: bool | typing.Any | None = False,
|
|
@@ -199,6 +200,7 @@ def alembic_import(
|
|
|
199
200
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
200
201
|
execution_context: str | int | None = None,
|
|
201
202
|
undo: bool | None = None,
|
|
203
|
+
*,
|
|
202
204
|
filepath: str | typing.Any = "",
|
|
203
205
|
check_existing: bool | typing.Any | None = False,
|
|
204
206
|
filter_blender: bool | typing.Any | None = False,
|
|
@@ -314,6 +316,7 @@ def append(
|
|
|
314
316
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
315
317
|
execution_context: str | int | None = None,
|
|
316
318
|
undo: bool | None = None,
|
|
319
|
+
*,
|
|
317
320
|
filepath: str | typing.Any = "",
|
|
318
321
|
directory: str | typing.Any = "",
|
|
319
322
|
filename: str | typing.Any = "",
|
|
@@ -443,6 +446,7 @@ def batch_rename(
|
|
|
443
446
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
444
447
|
execution_context: str | int | None = None,
|
|
445
448
|
undo: bool | None = None,
|
|
449
|
+
*,
|
|
446
450
|
data_type: str | None = "OBJECT",
|
|
447
451
|
data_source: str | None = "SELECT",
|
|
448
452
|
actions: bpy.types.bpy_prop_collection[bl_operators.wm.BatchRenameAction]
|
|
@@ -481,6 +485,7 @@ def call_menu(
|
|
|
481
485
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
482
486
|
execution_context: str | int | None = None,
|
|
483
487
|
undo: bool | None = None,
|
|
488
|
+
*,
|
|
484
489
|
name: str | typing.Any = "",
|
|
485
490
|
):
|
|
486
491
|
"""Open a predefined menu
|
|
@@ -498,6 +503,7 @@ def call_menu_pie(
|
|
|
498
503
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
499
504
|
execution_context: str | int | None = None,
|
|
500
505
|
undo: bool | None = None,
|
|
506
|
+
*,
|
|
501
507
|
name: str | typing.Any = "",
|
|
502
508
|
):
|
|
503
509
|
"""Open a predefined pie menu
|
|
@@ -515,6 +521,7 @@ def call_panel(
|
|
|
515
521
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
516
522
|
execution_context: str | int | None = None,
|
|
517
523
|
undo: bool | None = None,
|
|
524
|
+
*,
|
|
518
525
|
name: str | typing.Any = "",
|
|
519
526
|
keep_open: bool | typing.Any | None = True,
|
|
520
527
|
):
|
|
@@ -549,6 +556,7 @@ def collada_export(
|
|
|
549
556
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
550
557
|
execution_context: str | int | None = None,
|
|
551
558
|
undo: bool | None = None,
|
|
559
|
+
*,
|
|
552
560
|
filepath: str | typing.Any = "",
|
|
553
561
|
check_existing: bool | typing.Any | None = True,
|
|
554
562
|
filter_blender: bool | typing.Any | None = False,
|
|
@@ -814,6 +822,7 @@ def collada_import(
|
|
|
814
822
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
815
823
|
execution_context: str | int | None = None,
|
|
816
824
|
undo: bool | None = None,
|
|
825
|
+
*,
|
|
817
826
|
filepath: str | typing.Any = "",
|
|
818
827
|
check_existing: bool | typing.Any | None = False,
|
|
819
828
|
filter_blender: bool | typing.Any | None = False,
|
|
@@ -943,6 +952,7 @@ def context_collection_boolean_set(
|
|
|
943
952
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
944
953
|
execution_context: str | int | None = None,
|
|
945
954
|
undo: bool | None = None,
|
|
955
|
+
*,
|
|
946
956
|
data_path_iter: str | typing.Any = "",
|
|
947
957
|
data_path_item: str | typing.Any = "",
|
|
948
958
|
type: str | None = "TOGGLE",
|
|
@@ -966,6 +976,7 @@ def context_cycle_array(
|
|
|
966
976
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
967
977
|
execution_context: str | int | None = None,
|
|
968
978
|
undo: bool | None = None,
|
|
979
|
+
*,
|
|
969
980
|
data_path: str | typing.Any = "",
|
|
970
981
|
reverse: bool | typing.Any | None = False,
|
|
971
982
|
):
|
|
@@ -986,6 +997,7 @@ def context_cycle_enum(
|
|
|
986
997
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
987
998
|
execution_context: str | int | None = None,
|
|
988
999
|
undo: bool | None = None,
|
|
1000
|
+
*,
|
|
989
1001
|
data_path: str | typing.Any = "",
|
|
990
1002
|
reverse: bool | typing.Any | None = False,
|
|
991
1003
|
wrap: bool | typing.Any | None = False,
|
|
@@ -1009,6 +1021,7 @@ def context_cycle_int(
|
|
|
1009
1021
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1010
1022
|
execution_context: str | int | None = None,
|
|
1011
1023
|
undo: bool | None = None,
|
|
1024
|
+
*,
|
|
1012
1025
|
data_path: str | typing.Any = "",
|
|
1013
1026
|
reverse: bool | typing.Any | None = False,
|
|
1014
1027
|
wrap: bool | typing.Any | None = False,
|
|
@@ -1032,6 +1045,7 @@ def context_menu_enum(
|
|
|
1032
1045
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1033
1046
|
execution_context: str | int | None = None,
|
|
1034
1047
|
undo: bool | None = None,
|
|
1048
|
+
*,
|
|
1035
1049
|
data_path: str | typing.Any = "",
|
|
1036
1050
|
):
|
|
1037
1051
|
"""Undocumented, consider contributing.
|
|
@@ -1049,6 +1063,7 @@ def context_modal_mouse(
|
|
|
1049
1063
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1050
1064
|
execution_context: str | int | None = None,
|
|
1051
1065
|
undo: bool | None = None,
|
|
1066
|
+
*,
|
|
1052
1067
|
data_path_iter: str | typing.Any = "",
|
|
1053
1068
|
data_path_item: str | typing.Any = "",
|
|
1054
1069
|
header_text: str | typing.Any = "",
|
|
@@ -1081,6 +1096,7 @@ def context_pie_enum(
|
|
|
1081
1096
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1082
1097
|
execution_context: str | int | None = None,
|
|
1083
1098
|
undo: bool | None = None,
|
|
1099
|
+
*,
|
|
1084
1100
|
data_path: str | typing.Any = "",
|
|
1085
1101
|
):
|
|
1086
1102
|
"""Undocumented, consider contributing.
|
|
@@ -1098,6 +1114,7 @@ def context_scale_float(
|
|
|
1098
1114
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1099
1115
|
execution_context: str | int | None = None,
|
|
1100
1116
|
undo: bool | None = None,
|
|
1117
|
+
*,
|
|
1101
1118
|
data_path: str | typing.Any = "",
|
|
1102
1119
|
value: typing.Any | None = 1.0,
|
|
1103
1120
|
):
|
|
@@ -1118,6 +1135,7 @@ def context_scale_int(
|
|
|
1118
1135
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1119
1136
|
execution_context: str | int | None = None,
|
|
1120
1137
|
undo: bool | None = None,
|
|
1138
|
+
*,
|
|
1121
1139
|
data_path: str | typing.Any = "",
|
|
1122
1140
|
value: typing.Any | None = 1.0,
|
|
1123
1141
|
always_step: bool | typing.Any | None = True,
|
|
@@ -1141,6 +1159,7 @@ def context_set_boolean(
|
|
|
1141
1159
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1142
1160
|
execution_context: str | int | None = None,
|
|
1143
1161
|
undo: bool | None = None,
|
|
1162
|
+
*,
|
|
1144
1163
|
data_path: str | typing.Any = "",
|
|
1145
1164
|
value: bool | typing.Any | None = True,
|
|
1146
1165
|
):
|
|
@@ -1161,6 +1180,7 @@ def context_set_enum(
|
|
|
1161
1180
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1162
1181
|
execution_context: str | int | None = None,
|
|
1163
1182
|
undo: bool | None = None,
|
|
1183
|
+
*,
|
|
1164
1184
|
data_path: str | typing.Any = "",
|
|
1165
1185
|
value: str | typing.Any = "",
|
|
1166
1186
|
):
|
|
@@ -1181,6 +1201,7 @@ def context_set_float(
|
|
|
1181
1201
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1182
1202
|
execution_context: str | int | None = None,
|
|
1183
1203
|
undo: bool | None = None,
|
|
1204
|
+
*,
|
|
1184
1205
|
data_path: str | typing.Any = "",
|
|
1185
1206
|
value: typing.Any | None = 0.0,
|
|
1186
1207
|
relative: bool | typing.Any | None = False,
|
|
@@ -1204,6 +1225,7 @@ def context_set_id(
|
|
|
1204
1225
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1205
1226
|
execution_context: str | int | None = None,
|
|
1206
1227
|
undo: bool | None = None,
|
|
1228
|
+
*,
|
|
1207
1229
|
data_path: str | typing.Any = "",
|
|
1208
1230
|
value: str | typing.Any = "",
|
|
1209
1231
|
):
|
|
@@ -1224,6 +1246,7 @@ def context_set_int(
|
|
|
1224
1246
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1225
1247
|
execution_context: str | int | None = None,
|
|
1226
1248
|
undo: bool | None = None,
|
|
1249
|
+
*,
|
|
1227
1250
|
data_path: str | typing.Any = "",
|
|
1228
1251
|
value: typing.Any | None = 0,
|
|
1229
1252
|
relative: bool | typing.Any | None = False,
|
|
@@ -1247,6 +1270,7 @@ def context_set_string(
|
|
|
1247
1270
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1248
1271
|
execution_context: str | int | None = None,
|
|
1249
1272
|
undo: bool | None = None,
|
|
1273
|
+
*,
|
|
1250
1274
|
data_path: str | typing.Any = "",
|
|
1251
1275
|
value: str | typing.Any = "",
|
|
1252
1276
|
):
|
|
@@ -1267,6 +1291,7 @@ def context_set_value(
|
|
|
1267
1291
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1268
1292
|
execution_context: str | int | None = None,
|
|
1269
1293
|
undo: bool | None = None,
|
|
1294
|
+
*,
|
|
1270
1295
|
data_path: str | typing.Any = "",
|
|
1271
1296
|
value: str | typing.Any = "",
|
|
1272
1297
|
):
|
|
@@ -1287,6 +1312,7 @@ def context_toggle(
|
|
|
1287
1312
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1288
1313
|
execution_context: str | int | None = None,
|
|
1289
1314
|
undo: bool | None = None,
|
|
1315
|
+
*,
|
|
1290
1316
|
data_path: str | typing.Any = "",
|
|
1291
1317
|
module: str | typing.Any = "",
|
|
1292
1318
|
):
|
|
@@ -1307,6 +1333,7 @@ def context_toggle_enum(
|
|
|
1307
1333
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1308
1334
|
execution_context: str | int | None = None,
|
|
1309
1335
|
undo: bool | None = None,
|
|
1336
|
+
*,
|
|
1310
1337
|
data_path: str | typing.Any = "",
|
|
1311
1338
|
value_1: str | typing.Any = "",
|
|
1312
1339
|
value_2: str | typing.Any = "",
|
|
@@ -1330,6 +1357,7 @@ def debug_menu(
|
|
|
1330
1357
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1331
1358
|
execution_context: str | int | None = None,
|
|
1332
1359
|
undo: bool | None = None,
|
|
1360
|
+
*,
|
|
1333
1361
|
debug_value: typing.Any | None = 0,
|
|
1334
1362
|
):
|
|
1335
1363
|
"""Open a popup to set the debug level
|
|
@@ -1347,6 +1375,7 @@ def doc_view(
|
|
|
1347
1375
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1348
1376
|
execution_context: str | int | None = None,
|
|
1349
1377
|
undo: bool | None = None,
|
|
1378
|
+
*,
|
|
1350
1379
|
doc_id: str | typing.Any = "",
|
|
1351
1380
|
):
|
|
1352
1381
|
"""Open online reference docs in a web browser
|
|
@@ -1364,6 +1393,7 @@ def doc_view_manual(
|
|
|
1364
1393
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1365
1394
|
execution_context: str | int | None = None,
|
|
1366
1395
|
undo: bool | None = None,
|
|
1396
|
+
*,
|
|
1367
1397
|
doc_id: str | typing.Any = "",
|
|
1368
1398
|
):
|
|
1369
1399
|
"""Load online manual
|
|
@@ -1395,6 +1425,7 @@ def drop_blend_file(
|
|
|
1395
1425
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1396
1426
|
execution_context: str | int | None = None,
|
|
1397
1427
|
undo: bool | None = None,
|
|
1428
|
+
*,
|
|
1398
1429
|
filepath: str | typing.Any = "",
|
|
1399
1430
|
):
|
|
1400
1431
|
"""Undocumented, consider contributing.
|
|
@@ -1412,6 +1443,7 @@ def drop_import_file(
|
|
|
1412
1443
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1413
1444
|
execution_context: str | int | None = None,
|
|
1414
1445
|
undo: bool | None = None,
|
|
1446
|
+
*,
|
|
1415
1447
|
directory: str | typing.Any = "",
|
|
1416
1448
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
1417
1449
|
| None = None,
|
|
@@ -1433,6 +1465,7 @@ def gpencil_export_pdf(
|
|
|
1433
1465
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1434
1466
|
execution_context: str | int | None = None,
|
|
1435
1467
|
undo: bool | None = None,
|
|
1468
|
+
*,
|
|
1436
1469
|
filepath: str | typing.Any = "",
|
|
1437
1470
|
check_existing: bool | typing.Any | None = True,
|
|
1438
1471
|
filter_blender: bool | typing.Any | None = False,
|
|
@@ -1558,6 +1591,7 @@ def gpencil_export_svg(
|
|
|
1558
1591
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1559
1592
|
execution_context: str | int | None = None,
|
|
1560
1593
|
undo: bool | None = None,
|
|
1594
|
+
*,
|
|
1561
1595
|
filepath: str | typing.Any = "",
|
|
1562
1596
|
check_existing: bool | typing.Any | None = True,
|
|
1563
1597
|
filter_blender: bool | typing.Any | None = False,
|
|
@@ -1674,6 +1708,7 @@ def gpencil_import_svg(
|
|
|
1674
1708
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1675
1709
|
execution_context: str | int | None = None,
|
|
1676
1710
|
undo: bool | None = None,
|
|
1711
|
+
*,
|
|
1677
1712
|
filepath: str | typing.Any = "",
|
|
1678
1713
|
directory: str | typing.Any = "",
|
|
1679
1714
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
@@ -1782,6 +1817,7 @@ def interface_theme_preset_add(
|
|
|
1782
1817
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1783
1818
|
execution_context: str | int | None = None,
|
|
1784
1819
|
undo: bool | None = None,
|
|
1820
|
+
*,
|
|
1785
1821
|
name: str | typing.Any = "",
|
|
1786
1822
|
remove_name: bool | typing.Any | None = False,
|
|
1787
1823
|
remove_active: bool | typing.Any | None = False,
|
|
@@ -1805,6 +1841,7 @@ def interface_theme_preset_remove(
|
|
|
1805
1841
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1806
1842
|
execution_context: str | int | None = None,
|
|
1807
1843
|
undo: bool | None = None,
|
|
1844
|
+
*,
|
|
1808
1845
|
name: str | typing.Any = "",
|
|
1809
1846
|
remove_name: bool | typing.Any | None = False,
|
|
1810
1847
|
remove_active: bool | typing.Any | None = True,
|
|
@@ -1828,6 +1865,7 @@ def interface_theme_preset_save(
|
|
|
1828
1865
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1829
1866
|
execution_context: str | int | None = None,
|
|
1830
1867
|
undo: bool | None = None,
|
|
1868
|
+
*,
|
|
1831
1869
|
name: str | typing.Any = "",
|
|
1832
1870
|
remove_name: bool | typing.Any | None = False,
|
|
1833
1871
|
remove_active: bool | typing.Any | None = True,
|
|
@@ -1851,6 +1889,7 @@ def keyconfig_preset_add(
|
|
|
1851
1889
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1852
1890
|
execution_context: str | int | None = None,
|
|
1853
1891
|
undo: bool | None = None,
|
|
1892
|
+
*,
|
|
1854
1893
|
name: str | typing.Any = "",
|
|
1855
1894
|
remove_name: bool | typing.Any | None = False,
|
|
1856
1895
|
remove_active: bool | typing.Any | None = False,
|
|
@@ -1874,6 +1913,7 @@ def keyconfig_preset_remove(
|
|
|
1874
1913
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1875
1914
|
execution_context: str | int | None = None,
|
|
1876
1915
|
undo: bool | None = None,
|
|
1916
|
+
*,
|
|
1877
1917
|
name: str | typing.Any = "",
|
|
1878
1918
|
remove_name: bool | typing.Any | None = False,
|
|
1879
1919
|
remove_active: bool | typing.Any | None = True,
|
|
@@ -1897,6 +1937,7 @@ def lib_reload(
|
|
|
1897
1937
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
1898
1938
|
execution_context: str | int | None = None,
|
|
1899
1939
|
undo: bool | None = None,
|
|
1940
|
+
*,
|
|
1900
1941
|
library: str | typing.Any = "",
|
|
1901
1942
|
filepath: str | typing.Any = "",
|
|
1902
1943
|
directory: str | typing.Any = "",
|
|
@@ -2004,6 +2045,7 @@ def lib_relocate(
|
|
|
2004
2045
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
2005
2046
|
execution_context: str | int | None = None,
|
|
2006
2047
|
undo: bool | None = None,
|
|
2048
|
+
*,
|
|
2007
2049
|
library: str | typing.Any = "",
|
|
2008
2050
|
filepath: str | typing.Any = "",
|
|
2009
2051
|
directory: str | typing.Any = "",
|
|
@@ -2115,6 +2157,7 @@ def link(
|
|
|
2115
2157
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
2116
2158
|
execution_context: str | int | None = None,
|
|
2117
2159
|
undo: bool | None = None,
|
|
2160
|
+
*,
|
|
2118
2161
|
filepath: str | typing.Any = "",
|
|
2119
2162
|
directory: str | typing.Any = "",
|
|
2120
2163
|
filename: str | typing.Any = "",
|
|
@@ -2255,6 +2298,7 @@ def obj_export(
|
|
|
2255
2298
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
2256
2299
|
execution_context: str | int | None = None,
|
|
2257
2300
|
undo: bool | None = None,
|
|
2301
|
+
*,
|
|
2258
2302
|
filepath: str | typing.Any = "",
|
|
2259
2303
|
check_existing: bool | typing.Any | None = True,
|
|
2260
2304
|
filter_blender: bool | typing.Any | None = False,
|
|
@@ -2479,6 +2523,7 @@ def obj_import(
|
|
|
2479
2523
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
2480
2524
|
execution_context: str | int | None = None,
|
|
2481
2525
|
undo: bool | None = None,
|
|
2526
|
+
*,
|
|
2482
2527
|
filepath: str | typing.Any = "",
|
|
2483
2528
|
directory: str | typing.Any = "",
|
|
2484
2529
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
@@ -2644,6 +2689,7 @@ def open_mainfile(
|
|
|
2644
2689
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
2645
2690
|
execution_context: str | int | None = None,
|
|
2646
2691
|
undo: bool | None = None,
|
|
2692
|
+
*,
|
|
2647
2693
|
filepath: str | typing.Any = "",
|
|
2648
2694
|
hide_props_region: bool | typing.Any | None = True,
|
|
2649
2695
|
check_existing: bool | typing.Any | None = False,
|
|
@@ -2779,6 +2825,7 @@ def operator_pie_enum(
|
|
|
2779
2825
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
2780
2826
|
execution_context: str | int | None = None,
|
|
2781
2827
|
undo: bool | None = None,
|
|
2828
|
+
*,
|
|
2782
2829
|
data_path: str | typing.Any = "",
|
|
2783
2830
|
prop_string: str | typing.Any = "",
|
|
2784
2831
|
):
|
|
@@ -2799,6 +2846,7 @@ def operator_preset_add(
|
|
|
2799
2846
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
2800
2847
|
execution_context: str | int | None = None,
|
|
2801
2848
|
undo: bool | None = None,
|
|
2849
|
+
*,
|
|
2802
2850
|
name: str | typing.Any = "",
|
|
2803
2851
|
remove_name: bool | typing.Any | None = False,
|
|
2804
2852
|
remove_active: bool | typing.Any | None = False,
|
|
@@ -2825,6 +2873,7 @@ def operator_presets_cleanup(
|
|
|
2825
2873
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
2826
2874
|
execution_context: str | int | None = None,
|
|
2827
2875
|
undo: bool | None = None,
|
|
2876
|
+
*,
|
|
2828
2877
|
operator: str | typing.Any = "",
|
|
2829
2878
|
properties: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
2830
2879
|
| None = None,
|
|
@@ -2846,6 +2895,7 @@ def owner_disable(
|
|
|
2846
2895
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
2847
2896
|
execution_context: str | int | None = None,
|
|
2848
2897
|
undo: bool | None = None,
|
|
2898
|
+
*,
|
|
2849
2899
|
owner_id: str | typing.Any = "",
|
|
2850
2900
|
):
|
|
2851
2901
|
"""Disable add-on for workspace
|
|
@@ -2863,6 +2913,7 @@ def owner_enable(
|
|
|
2863
2913
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
2864
2914
|
execution_context: str | int | None = None,
|
|
2865
2915
|
undo: bool | None = None,
|
|
2916
|
+
*,
|
|
2866
2917
|
owner_id: str | typing.Any = "",
|
|
2867
2918
|
):
|
|
2868
2919
|
"""Enable add-on for workspace
|
|
@@ -2880,6 +2931,7 @@ def path_open(
|
|
|
2880
2931
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
2881
2932
|
execution_context: str | int | None = None,
|
|
2882
2933
|
undo: bool | None = None,
|
|
2934
|
+
*,
|
|
2883
2935
|
filepath: str | typing.Any = "",
|
|
2884
2936
|
):
|
|
2885
2937
|
"""Open a path in a file browser
|
|
@@ -2897,6 +2949,7 @@ def ply_export(
|
|
|
2897
2949
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
2898
2950
|
execution_context: str | int | None = None,
|
|
2899
2951
|
undo: bool | None = None,
|
|
2952
|
+
*,
|
|
2900
2953
|
filepath: str | typing.Any = "",
|
|
2901
2954
|
check_existing: bool | typing.Any | None = True,
|
|
2902
2955
|
filter_blender: bool | typing.Any | None = False,
|
|
@@ -3073,6 +3126,7 @@ def ply_import(
|
|
|
3073
3126
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
3074
3127
|
execution_context: str | int | None = None,
|
|
3075
3128
|
undo: bool | None = None,
|
|
3129
|
+
*,
|
|
3076
3130
|
filepath: str | typing.Any = "",
|
|
3077
3131
|
directory: str | typing.Any = "",
|
|
3078
3132
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
@@ -3241,6 +3295,7 @@ def previews_batch_clear(
|
|
|
3241
3295
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
3242
3296
|
execution_context: str | int | None = None,
|
|
3243
3297
|
undo: bool | None = None,
|
|
3298
|
+
*,
|
|
3244
3299
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
3245
3300
|
| None = None,
|
|
3246
3301
|
directory: str | typing.Any = "",
|
|
@@ -3286,6 +3341,7 @@ def previews_batch_generate(
|
|
|
3286
3341
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
3287
3342
|
execution_context: str | int | None = None,
|
|
3288
3343
|
undo: bool | None = None,
|
|
3344
|
+
*,
|
|
3289
3345
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
3290
3346
|
| None = None,
|
|
3291
3347
|
directory: str | typing.Any = "",
|
|
@@ -3331,6 +3387,7 @@ def previews_clear(
|
|
|
3331
3387
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
3332
3388
|
execution_context: str | int | None = None,
|
|
3333
3389
|
undo: bool | None = None,
|
|
3390
|
+
*,
|
|
3334
3391
|
id_type: set[str] | None = {},
|
|
3335
3392
|
):
|
|
3336
3393
|
"""Clear data-block previews (only for some types like objects, materials, textures, etc.)
|
|
@@ -3395,6 +3452,7 @@ def properties_add(
|
|
|
3395
3452
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
3396
3453
|
execution_context: str | int | None = None,
|
|
3397
3454
|
undo: bool | None = None,
|
|
3455
|
+
*,
|
|
3398
3456
|
data_path: str | typing.Any = "",
|
|
3399
3457
|
):
|
|
3400
3458
|
"""Add your own property to the data-block
|
|
@@ -3412,6 +3470,7 @@ def properties_context_change(
|
|
|
3412
3470
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
3413
3471
|
execution_context: str | int | None = None,
|
|
3414
3472
|
undo: bool | None = None,
|
|
3473
|
+
*,
|
|
3415
3474
|
context: str | typing.Any = "",
|
|
3416
3475
|
):
|
|
3417
3476
|
"""Jump to a different tab inside the properties editor
|
|
@@ -3429,6 +3488,7 @@ def properties_edit(
|
|
|
3429
3488
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
3430
3489
|
execution_context: str | int | None = None,
|
|
3431
3490
|
undo: bool | None = None,
|
|
3491
|
+
*,
|
|
3432
3492
|
data_path: str | typing.Any = "",
|
|
3433
3493
|
property_name: str | typing.Any = "",
|
|
3434
3494
|
property_type: str | None = "FLOAT",
|
|
@@ -3644,6 +3704,7 @@ def properties_edit_value(
|
|
|
3644
3704
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
3645
3705
|
execution_context: str | int | None = None,
|
|
3646
3706
|
undo: bool | None = None,
|
|
3707
|
+
*,
|
|
3647
3708
|
data_path: str | typing.Any = "",
|
|
3648
3709
|
property_name: str | typing.Any = "",
|
|
3649
3710
|
eval_string: str | typing.Any = "",
|
|
@@ -3667,6 +3728,7 @@ def properties_remove(
|
|
|
3667
3728
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
3668
3729
|
execution_context: str | int | None = None,
|
|
3669
3730
|
undo: bool | None = None,
|
|
3731
|
+
*,
|
|
3670
3732
|
data_path: str | typing.Any = "",
|
|
3671
3733
|
property_name: str | typing.Any = "",
|
|
3672
3734
|
):
|
|
@@ -3701,6 +3763,7 @@ def radial_control(
|
|
|
3701
3763
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
3702
3764
|
execution_context: str | int | None = None,
|
|
3703
3765
|
undo: bool | None = None,
|
|
3766
|
+
*,
|
|
3704
3767
|
data_path_primary: str | typing.Any = "",
|
|
3705
3768
|
data_path_secondary: str | typing.Any = "",
|
|
3706
3769
|
use_secondary: str | typing.Any = "",
|
|
@@ -3751,6 +3814,7 @@ def read_factory_settings(
|
|
|
3751
3814
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
3752
3815
|
execution_context: str | int | None = None,
|
|
3753
3816
|
undo: bool | None = None,
|
|
3817
|
+
*,
|
|
3754
3818
|
use_factory_startup_app_template_only: bool | typing.Any | None = False,
|
|
3755
3819
|
app_template: str | typing.Any = "Template",
|
|
3756
3820
|
use_empty: bool | typing.Any | None = False,
|
|
@@ -3773,6 +3837,7 @@ def read_factory_userpref(
|
|
|
3773
3837
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
3774
3838
|
execution_context: str | int | None = None,
|
|
3775
3839
|
undo: bool | None = None,
|
|
3840
|
+
*,
|
|
3776
3841
|
use_factory_startup_app_template_only: bool | typing.Any | None = False,
|
|
3777
3842
|
):
|
|
3778
3843
|
"""Load factory default preferences. To make changes to preferences permanent, use "Save Preferences"
|
|
@@ -3804,6 +3869,7 @@ def read_homefile(
|
|
|
3804
3869
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
3805
3870
|
execution_context: str | int | None = None,
|
|
3806
3871
|
undo: bool | None = None,
|
|
3872
|
+
*,
|
|
3807
3873
|
filepath: str | typing.Any = "",
|
|
3808
3874
|
load_ui: bool | typing.Any | None = True,
|
|
3809
3875
|
use_splash: bool | typing.Any | None = False,
|
|
@@ -3852,6 +3918,7 @@ def recover_auto_save(
|
|
|
3852
3918
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
3853
3919
|
execution_context: str | int | None = None,
|
|
3854
3920
|
undo: bool | None = None,
|
|
3921
|
+
*,
|
|
3855
3922
|
filepath: str | typing.Any = "",
|
|
3856
3923
|
hide_props_region: bool | typing.Any | None = True,
|
|
3857
3924
|
check_existing: bool | typing.Any | None = False,
|
|
@@ -3950,6 +4017,7 @@ def recover_last_session(
|
|
|
3950
4017
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
3951
4018
|
execution_context: str | int | None = None,
|
|
3952
4019
|
undo: bool | None = None,
|
|
4020
|
+
*,
|
|
3953
4021
|
use_scripts: bool | typing.Any | None = True,
|
|
3954
4022
|
):
|
|
3955
4023
|
"""Open the last closed file ("quit.blend")
|
|
@@ -3967,6 +4035,7 @@ def redraw_timer(
|
|
|
3967
4035
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
3968
4036
|
execution_context: str | int | None = None,
|
|
3969
4037
|
undo: bool | None = None,
|
|
4038
|
+
*,
|
|
3970
4039
|
type: str | None = "DRAW",
|
|
3971
4040
|
iterations: typing.Any | None = 10,
|
|
3972
4041
|
time_limit: typing.Any | None = 0.0,
|
|
@@ -4011,6 +4080,7 @@ def revert_mainfile(
|
|
|
4011
4080
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
4012
4081
|
execution_context: str | int | None = None,
|
|
4013
4082
|
undo: bool | None = None,
|
|
4083
|
+
*,
|
|
4014
4084
|
use_scripts: bool | typing.Any | None = True,
|
|
4015
4085
|
):
|
|
4016
4086
|
"""Reload the saved file
|
|
@@ -4028,6 +4098,7 @@ def save_as_mainfile(
|
|
|
4028
4098
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
4029
4099
|
execution_context: str | int | None = None,
|
|
4030
4100
|
undo: bool | None = None,
|
|
4101
|
+
*,
|
|
4031
4102
|
filepath: str | typing.Any = "",
|
|
4032
4103
|
hide_props_region: bool | typing.Any | None = True,
|
|
4033
4104
|
check_existing: bool | typing.Any | None = True,
|
|
@@ -4146,6 +4217,7 @@ def save_mainfile(
|
|
|
4146
4217
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
4147
4218
|
execution_context: str | int | None = None,
|
|
4148
4219
|
undo: bool | None = None,
|
|
4220
|
+
*,
|
|
4149
4221
|
filepath: str | typing.Any = "",
|
|
4150
4222
|
hide_props_region: bool | typing.Any | None = True,
|
|
4151
4223
|
check_existing: bool | typing.Any | None = True,
|
|
@@ -4295,6 +4367,7 @@ def search_single_menu(
|
|
|
4295
4367
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
4296
4368
|
execution_context: str | int | None = None,
|
|
4297
4369
|
undo: bool | None = None,
|
|
4370
|
+
*,
|
|
4298
4371
|
menu_idname: str | typing.Any = "",
|
|
4299
4372
|
initial_query: str | typing.Any = "",
|
|
4300
4373
|
):
|
|
@@ -4315,6 +4388,7 @@ def set_stereo_3d(
|
|
|
4315
4388
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
4316
4389
|
execution_context: str | int | None = None,
|
|
4317
4390
|
undo: bool | None = None,
|
|
4391
|
+
*,
|
|
4318
4392
|
display_mode: str | None = "ANAGLYPH",
|
|
4319
4393
|
anaglyph_type: str | None = "RED_CYAN",
|
|
4320
4394
|
interlace_type: str | None = "ROW_INTERLEAVED",
|
|
@@ -4372,6 +4446,7 @@ def stl_export(
|
|
|
4372
4446
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
4373
4447
|
execution_context: str | int | None = None,
|
|
4374
4448
|
undo: bool | None = None,
|
|
4449
|
+
*,
|
|
4375
4450
|
filepath: str | typing.Any = "",
|
|
4376
4451
|
check_existing: bool | typing.Any | None = True,
|
|
4377
4452
|
filter_blender: bool | typing.Any | None = False,
|
|
@@ -4530,6 +4605,7 @@ def stl_import(
|
|
|
4530
4605
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
4531
4606
|
execution_context: str | int | None = None,
|
|
4532
4607
|
undo: bool | None = None,
|
|
4608
|
+
*,
|
|
4533
4609
|
filepath: str | typing.Any = "",
|
|
4534
4610
|
directory: str | typing.Any = "",
|
|
4535
4611
|
files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
|
|
@@ -4686,6 +4762,7 @@ def sysinfo(
|
|
|
4686
4762
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
4687
4763
|
execution_context: str | int | None = None,
|
|
4688
4764
|
undo: bool | None = None,
|
|
4765
|
+
*,
|
|
4689
4766
|
filepath: str | typing.Any = "",
|
|
4690
4767
|
):
|
|
4691
4768
|
"""Generate system information, saved into a text file
|
|
@@ -4703,6 +4780,7 @@ def tool_set_by_id(
|
|
|
4703
4780
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
4704
4781
|
execution_context: str | int | None = None,
|
|
4705
4782
|
undo: bool | None = None,
|
|
4783
|
+
*,
|
|
4706
4784
|
name: str | typing.Any = "",
|
|
4707
4785
|
cycle: bool | typing.Any | None = False,
|
|
4708
4786
|
as_fallback: bool | typing.Any | None = False,
|
|
@@ -4729,6 +4807,7 @@ def tool_set_by_index(
|
|
|
4729
4807
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
4730
4808
|
execution_context: str | int | None = None,
|
|
4731
4809
|
undo: bool | None = None,
|
|
4810
|
+
*,
|
|
4732
4811
|
index: typing.Any | None = 0,
|
|
4733
4812
|
cycle: bool | typing.Any | None = False,
|
|
4734
4813
|
expand: bool | typing.Any | None = True,
|
|
@@ -4800,6 +4879,7 @@ def url_open(
|
|
|
4800
4879
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
4801
4880
|
execution_context: str | int | None = None,
|
|
4802
4881
|
undo: bool | None = None,
|
|
4882
|
+
*,
|
|
4803
4883
|
url: str | typing.Any = "",
|
|
4804
4884
|
):
|
|
4805
4885
|
"""Open a website in the web browser
|
|
@@ -4817,6 +4897,7 @@ def url_open_preset(
|
|
|
4817
4897
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
4818
4898
|
execution_context: str | int | None = None,
|
|
4819
4899
|
undo: bool | None = None,
|
|
4900
|
+
*,
|
|
4820
4901
|
type: str | None = "",
|
|
4821
4902
|
id: str | typing.Any = "",
|
|
4822
4903
|
):
|
|
@@ -4837,6 +4918,7 @@ def usd_export(
|
|
|
4837
4918
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
4838
4919
|
execution_context: str | int | None = None,
|
|
4839
4920
|
undo: bool | None = None,
|
|
4921
|
+
*,
|
|
4840
4922
|
filepath: str | typing.Any = "",
|
|
4841
4923
|
check_existing: bool | typing.Any | None = True,
|
|
4842
4924
|
filter_blender: bool | typing.Any | None = False,
|
|
@@ -4886,6 +4968,14 @@ def usd_export(
|
|
|
4886
4968
|
root_prim_path: str | typing.Any = "/root",
|
|
4887
4969
|
export_custom_properties: bool | typing.Any | None = True,
|
|
4888
4970
|
author_blender_name: bool | typing.Any | None = True,
|
|
4971
|
+
export_meshes: bool | typing.Any | None = True,
|
|
4972
|
+
export_lights: bool | typing.Any | None = True,
|
|
4973
|
+
export_cameras: bool | typing.Any | None = True,
|
|
4974
|
+
export_curves: bool | typing.Any | None = True,
|
|
4975
|
+
export_volumes: bool | typing.Any | None = True,
|
|
4976
|
+
triangulate_meshes: bool | typing.Any | None = False,
|
|
4977
|
+
quad_method: str | None = "SHORTEST_DIAGONAL",
|
|
4978
|
+
ngon_method: str | None = "BEAUTY",
|
|
4889
4979
|
):
|
|
4890
4980
|
"""Export current scene in a USD archive
|
|
4891
4981
|
|
|
@@ -5061,6 +5151,22 @@ def usd_export(
|
|
|
5061
5151
|
:type export_custom_properties: bool | typing.Any | None
|
|
5062
5152
|
:param author_blender_name: Blender Names, Author USD custom attributes containing the original Blender object and object data names
|
|
5063
5153
|
:type author_blender_name: bool | typing.Any | None
|
|
5154
|
+
:param export_meshes: Meshes, Export all meshes
|
|
5155
|
+
:type export_meshes: bool | typing.Any | None
|
|
5156
|
+
:param export_lights: Lights, Export all lights
|
|
5157
|
+
:type export_lights: bool | typing.Any | None
|
|
5158
|
+
:param export_cameras: Cameras, Export all cameras
|
|
5159
|
+
:type export_cameras: bool | typing.Any | None
|
|
5160
|
+
:param export_curves: Curves, Export all curves
|
|
5161
|
+
:type export_curves: bool | typing.Any | None
|
|
5162
|
+
:param export_volumes: Volumes, Export all volumes
|
|
5163
|
+
:type export_volumes: bool | typing.Any | None
|
|
5164
|
+
:param triangulate_meshes: Triangulate Meshes, Triangulate meshes during export
|
|
5165
|
+
:type triangulate_meshes: bool | typing.Any | None
|
|
5166
|
+
:param quad_method: Quad Method, Method for splitting the quads into triangles
|
|
5167
|
+
:type quad_method: str | None
|
|
5168
|
+
:param ngon_method: N-gon Method, Method for splitting the n-gons into triangles
|
|
5169
|
+
:type ngon_method: str | None
|
|
5064
5170
|
"""
|
|
5065
5171
|
|
|
5066
5172
|
...
|
|
@@ -5069,6 +5175,7 @@ def usd_import(
|
|
|
5069
5175
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
5070
5176
|
execution_context: str | int | None = None,
|
|
5071
5177
|
undo: bool | None = None,
|
|
5178
|
+
*,
|
|
5072
5179
|
filepath: str | typing.Any = "",
|
|
5073
5180
|
check_existing: bool | typing.Any | None = False,
|
|
5074
5181
|
filter_blender: bool | typing.Any | None = False,
|
|
@@ -5126,6 +5233,7 @@ def usd_import(
|
|
|
5126
5233
|
tex_name_collision_mode: str | None = "USE_EXISTING",
|
|
5127
5234
|
attr_import_mode: str | None = "ALL",
|
|
5128
5235
|
validate_meshes: bool | typing.Any | None = False,
|
|
5236
|
+
import_defined_only: bool | typing.Any | None = True,
|
|
5129
5237
|
):
|
|
5130
5238
|
"""Import USD stage into current scene
|
|
5131
5239
|
|
|
@@ -5287,6 +5395,8 @@ def usd_import(
|
|
|
5287
5395
|
:type attr_import_mode: str | None
|
|
5288
5396
|
:param validate_meshes: Validate Meshes, Ensure the data is valid (when disabled, data may be imported which causes crashes displaying or editing)
|
|
5289
5397
|
:type validate_meshes: bool | typing.Any | None
|
|
5398
|
+
:param import_defined_only: Import only defined USD primitives, When disabled this allows importing USD primitives which are not defined,such as those with an override specifier
|
|
5399
|
+
:type import_defined_only: bool | typing.Any | None
|
|
5290
5400
|
"""
|
|
5291
5401
|
|
|
5292
5402
|
...
|
|
@@ -5351,6 +5461,7 @@ def xr_navigation_fly(
|
|
|
5351
5461
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
5352
5462
|
execution_context: str | int | None = None,
|
|
5353
5463
|
undo: bool | None = None,
|
|
5464
|
+
*,
|
|
5354
5465
|
mode: str | None = "VIEWER_FORWARD",
|
|
5355
5466
|
lock_location_z: bool | typing.Any | None = False,
|
|
5356
5467
|
lock_direction: bool | typing.Any | None = False,
|
|
@@ -5428,6 +5539,7 @@ def xr_navigation_grab(
|
|
|
5428
5539
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
5429
5540
|
execution_context: str | int | None = None,
|
|
5430
5541
|
undo: bool | None = None,
|
|
5542
|
+
*,
|
|
5431
5543
|
lock_location: bool | typing.Any | None = False,
|
|
5432
5544
|
lock_location_z: bool | typing.Any | None = False,
|
|
5433
5545
|
lock_rotation: bool | typing.Any | None = False,
|
|
@@ -5457,6 +5569,7 @@ def xr_navigation_reset(
|
|
|
5457
5569
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
5458
5570
|
execution_context: str | int | None = None,
|
|
5459
5571
|
undo: bool | None = None,
|
|
5572
|
+
*,
|
|
5460
5573
|
location: bool | typing.Any | None = True,
|
|
5461
5574
|
rotation: bool | typing.Any | None = True,
|
|
5462
5575
|
scale: bool | typing.Any | None = True,
|
|
@@ -5480,6 +5593,7 @@ def xr_navigation_teleport(
|
|
|
5480
5593
|
override_context: dict[str, typing.Any] | bpy.types.Context | None = None,
|
|
5481
5594
|
execution_context: str | int | None = None,
|
|
5482
5595
|
undo: bool | None = None,
|
|
5596
|
+
*,
|
|
5483
5597
|
teleport_axes: list[bool] | typing.Any | None = (True, True, True),
|
|
5484
5598
|
interpolation: typing.Any | None = 1.0,
|
|
5485
5599
|
offset: typing.Any | None = 0.0,
|