fake-bpy-module 20240411__py3-none-any.whl → 20240417__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 +7 -0
- bl_ui/node_add_menu/__init__.pyi +1 -1
- bl_ui/properties_data_lightprobe/__init__.pyi +1134 -0
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +3 -0
- bl_ui/properties_physics_fluid/__init__.pyi +3 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +17 -0
- bl_ui/space_userpref/__init__.pyi +13 -4
- bl_ui/space_view3d/__init__.pyi +190 -0
- bpy/app/translations/__init__.pyi +1 -1
- bpy/ops/curves/__init__.pyi +82 -0
- bpy/ops/export_scene/__init__.pyi +6 -3
- bpy/ops/grease_pencil/__init__.pyi +29 -0
- bpy/ops/mesh/__init__.pyi +1 -1
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/node/__init__.pyi +1 -1
- bpy/ops/object/__init__.pyi +8 -8
- bpy/ops/outliner/__init__.pyi +1 -1
- bpy/ops/preferences/__init__.pyi +1 -1
- bpy/ops/sculpt/__init__.pyi +8 -2
- bpy/ops/wm/__init__.pyi +1 -1
- bpy/types/__init__.pyi +146 -67
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240417.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240417.dist-info}/RECORD +25 -25
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240417.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240417.dist-info}/top_level.txt +0 -0
|
@@ -1234,6 +1234,23 @@ class _defs_gpencil_weight:
|
|
|
1234
1234
|
"""
|
|
1235
1235
|
...
|
|
1236
1236
|
|
|
1237
|
+
class _defs_grease_pencil_sculpt:
|
|
1238
|
+
""" """
|
|
1239
|
+
|
|
1240
|
+
def generate_from_brushes(self, context):
|
|
1241
|
+
"""
|
|
1242
|
+
|
|
1243
|
+
:param context:
|
|
1244
|
+
"""
|
|
1245
|
+
...
|
|
1246
|
+
|
|
1247
|
+
def poll_select_mask(self, context):
|
|
1248
|
+
"""
|
|
1249
|
+
|
|
1250
|
+
:param context:
|
|
1251
|
+
"""
|
|
1252
|
+
...
|
|
1253
|
+
|
|
1237
1254
|
class _defs_image_generic:
|
|
1238
1255
|
""" """
|
|
1239
1256
|
|
|
@@ -777,6 +777,14 @@ class USERPREF_MT_interface_theme_presets(bpy_types._GenericUI):
|
|
|
777
777
|
""" """
|
|
778
778
|
...
|
|
779
779
|
|
|
780
|
+
def post_cb(self, context, filepath):
|
|
781
|
+
"""
|
|
782
|
+
|
|
783
|
+
:param context:
|
|
784
|
+
:param filepath:
|
|
785
|
+
"""
|
|
786
|
+
...
|
|
787
|
+
|
|
780
788
|
def prepend(self, draw_func):
|
|
781
789
|
"""
|
|
782
790
|
|
|
@@ -799,10 +807,11 @@ class USERPREF_MT_interface_theme_presets(bpy_types._GenericUI):
|
|
|
799
807
|
"""
|
|
800
808
|
...
|
|
801
809
|
|
|
802
|
-
def reset_cb(self,
|
|
810
|
+
def reset_cb(self, _context, _filepath):
|
|
803
811
|
"""
|
|
804
812
|
|
|
805
|
-
:param
|
|
813
|
+
:param _context:
|
|
814
|
+
:param _filepath:
|
|
806
815
|
"""
|
|
807
816
|
...
|
|
808
817
|
|
|
@@ -11335,10 +11344,10 @@ class USERPREF_PT_theme(bpy_types._GenericUI):
|
|
|
11335
11344
|
""" """
|
|
11336
11345
|
...
|
|
11337
11346
|
|
|
11338
|
-
def draw(self,
|
|
11347
|
+
def draw(self, context):
|
|
11339
11348
|
"""
|
|
11340
11349
|
|
|
11341
|
-
:param
|
|
11350
|
+
:param context:
|
|
11342
11351
|
"""
|
|
11343
11352
|
...
|
|
11344
11353
|
|
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -5327,6 +5327,187 @@ class VIEW3D_MT_edit_curves(bpy_types._GenericUI):
|
|
|
5327
5327
|
""" """
|
|
5328
5328
|
...
|
|
5329
5329
|
|
|
5330
|
+
class VIEW3D_MT_edit_curves_add(bpy_types._GenericUI):
|
|
5331
|
+
""" """
|
|
5332
|
+
|
|
5333
|
+
bl_label: typing.Any
|
|
5334
|
+
""" """
|
|
5335
|
+
|
|
5336
|
+
bl_rna: typing.Any
|
|
5337
|
+
""" """
|
|
5338
|
+
|
|
5339
|
+
id_data: typing.Any
|
|
5340
|
+
""" """
|
|
5341
|
+
|
|
5342
|
+
def append(self, draw_func):
|
|
5343
|
+
"""
|
|
5344
|
+
|
|
5345
|
+
:param draw_func:
|
|
5346
|
+
"""
|
|
5347
|
+
...
|
|
5348
|
+
|
|
5349
|
+
def as_pointer(self):
|
|
5350
|
+
""" """
|
|
5351
|
+
...
|
|
5352
|
+
|
|
5353
|
+
def bl_rna_get_subclass(self):
|
|
5354
|
+
""" """
|
|
5355
|
+
...
|
|
5356
|
+
|
|
5357
|
+
def bl_rna_get_subclass_py(self):
|
|
5358
|
+
""" """
|
|
5359
|
+
...
|
|
5360
|
+
|
|
5361
|
+
def draw(self, _context):
|
|
5362
|
+
"""
|
|
5363
|
+
|
|
5364
|
+
:param _context:
|
|
5365
|
+
"""
|
|
5366
|
+
...
|
|
5367
|
+
|
|
5368
|
+
def draw_collapsible(self, context, layout):
|
|
5369
|
+
"""
|
|
5370
|
+
|
|
5371
|
+
:param context:
|
|
5372
|
+
:param layout:
|
|
5373
|
+
"""
|
|
5374
|
+
...
|
|
5375
|
+
|
|
5376
|
+
def draw_preset(self, _context):
|
|
5377
|
+
"""
|
|
5378
|
+
|
|
5379
|
+
:param _context:
|
|
5380
|
+
"""
|
|
5381
|
+
...
|
|
5382
|
+
|
|
5383
|
+
def driver_add(self):
|
|
5384
|
+
""" """
|
|
5385
|
+
...
|
|
5386
|
+
|
|
5387
|
+
def driver_remove(self):
|
|
5388
|
+
""" """
|
|
5389
|
+
...
|
|
5390
|
+
|
|
5391
|
+
def get(self):
|
|
5392
|
+
""" """
|
|
5393
|
+
...
|
|
5394
|
+
|
|
5395
|
+
def id_properties_clear(self):
|
|
5396
|
+
""" """
|
|
5397
|
+
...
|
|
5398
|
+
|
|
5399
|
+
def id_properties_ensure(self):
|
|
5400
|
+
""" """
|
|
5401
|
+
...
|
|
5402
|
+
|
|
5403
|
+
def id_properties_ui(self):
|
|
5404
|
+
""" """
|
|
5405
|
+
...
|
|
5406
|
+
|
|
5407
|
+
def is_extended(self):
|
|
5408
|
+
""" """
|
|
5409
|
+
...
|
|
5410
|
+
|
|
5411
|
+
def is_property_hidden(self):
|
|
5412
|
+
""" """
|
|
5413
|
+
...
|
|
5414
|
+
|
|
5415
|
+
def is_property_overridable_library(self):
|
|
5416
|
+
""" """
|
|
5417
|
+
...
|
|
5418
|
+
|
|
5419
|
+
def is_property_readonly(self):
|
|
5420
|
+
""" """
|
|
5421
|
+
...
|
|
5422
|
+
|
|
5423
|
+
def is_property_set(self):
|
|
5424
|
+
""" """
|
|
5425
|
+
...
|
|
5426
|
+
|
|
5427
|
+
def items(self):
|
|
5428
|
+
""" """
|
|
5429
|
+
...
|
|
5430
|
+
|
|
5431
|
+
def keyframe_delete(self):
|
|
5432
|
+
""" """
|
|
5433
|
+
...
|
|
5434
|
+
|
|
5435
|
+
def keyframe_insert(self):
|
|
5436
|
+
""" """
|
|
5437
|
+
...
|
|
5438
|
+
|
|
5439
|
+
def keys(self):
|
|
5440
|
+
""" """
|
|
5441
|
+
...
|
|
5442
|
+
|
|
5443
|
+
def path_from_id(self):
|
|
5444
|
+
""" """
|
|
5445
|
+
...
|
|
5446
|
+
|
|
5447
|
+
def path_menu(
|
|
5448
|
+
self,
|
|
5449
|
+
searchpaths,
|
|
5450
|
+
operator,
|
|
5451
|
+
props_default,
|
|
5452
|
+
prop_filepath,
|
|
5453
|
+
filter_ext,
|
|
5454
|
+
filter_path,
|
|
5455
|
+
display_name,
|
|
5456
|
+
add_operator,
|
|
5457
|
+
add_operator_props,
|
|
5458
|
+
):
|
|
5459
|
+
"""
|
|
5460
|
+
|
|
5461
|
+
:param searchpaths:
|
|
5462
|
+
:param operator:
|
|
5463
|
+
:param props_default:
|
|
5464
|
+
:param prop_filepath:
|
|
5465
|
+
:param filter_ext:
|
|
5466
|
+
:param filter_path:
|
|
5467
|
+
:param display_name:
|
|
5468
|
+
:param add_operator:
|
|
5469
|
+
:param add_operator_props:
|
|
5470
|
+
"""
|
|
5471
|
+
...
|
|
5472
|
+
|
|
5473
|
+
def path_resolve(self):
|
|
5474
|
+
""" """
|
|
5475
|
+
...
|
|
5476
|
+
|
|
5477
|
+
def pop(self):
|
|
5478
|
+
""" """
|
|
5479
|
+
...
|
|
5480
|
+
|
|
5481
|
+
def prepend(self, draw_func):
|
|
5482
|
+
"""
|
|
5483
|
+
|
|
5484
|
+
:param draw_func:
|
|
5485
|
+
"""
|
|
5486
|
+
...
|
|
5487
|
+
|
|
5488
|
+
def property_overridable_library_set(self):
|
|
5489
|
+
""" """
|
|
5490
|
+
...
|
|
5491
|
+
|
|
5492
|
+
def property_unset(self):
|
|
5493
|
+
""" """
|
|
5494
|
+
...
|
|
5495
|
+
|
|
5496
|
+
def remove(self, draw_func):
|
|
5497
|
+
"""
|
|
5498
|
+
|
|
5499
|
+
:param draw_func:
|
|
5500
|
+
"""
|
|
5501
|
+
...
|
|
5502
|
+
|
|
5503
|
+
def type_recast(self):
|
|
5504
|
+
""" """
|
|
5505
|
+
...
|
|
5506
|
+
|
|
5507
|
+
def values(self):
|
|
5508
|
+
""" """
|
|
5509
|
+
...
|
|
5510
|
+
|
|
5330
5511
|
class VIEW3D_MT_edit_curves_control_points(bpy_types._GenericUI):
|
|
5331
5512
|
""" """
|
|
5332
5513
|
|
|
@@ -45128,6 +45309,15 @@ class _draw_tool_settings_context_mode:
|
|
|
45128
45309
|
"""
|
|
45129
45310
|
...
|
|
45130
45311
|
|
|
45312
|
+
def SCULPT_GREASE_PENCIL(self, context, layout, tool):
|
|
45313
|
+
"""
|
|
45314
|
+
|
|
45315
|
+
:param context:
|
|
45316
|
+
:param layout:
|
|
45317
|
+
:param tool:
|
|
45318
|
+
"""
|
|
45319
|
+
...
|
|
45320
|
+
|
|
45131
45321
|
def VERTEX_GPENCIL(self, context, layout, tool):
|
|
45132
45322
|
"""
|
|
45133
45323
|
|
|
@@ -93,7 +93,7 @@ def unregister(module_name: str):
|
|
|
93
93
|
...
|
|
94
94
|
|
|
95
95
|
contexts: typing.Any
|
|
96
|
-
""" Constant value bpy.app.translations.contexts(default_real=None, default='*', operator_default='Operator', ui_events_keymaps='UI_Events_KeyMaps', plural='Plural', id_action='Action', id_armature='Armature', id_brush='Brush', id_cachefile='CacheFile', id_camera='Camera', id_collection='Collection', id_curves='Curves', id_curve='Curve', id_fs_linestyle='FreestyleLineStyle', id_gpencil='GPencil', id_id='ID', id_image='Image', id_lattice='Lattice', id_library='Library', id_light='Light', id_lightprobe='LightProbe', id_mask='Mask', id_material='Material', id_mesh='Mesh', id_metaball='Metaball', id_movieclip='MovieClip', id_nodetree='NodeTree', id_object='Object', id_paintcurve='PaintCurve', id_palette='Palette', id_particlesettings='ParticleSettings', id_pointcloud='PointCloud', id_scene='Scene', id_screen='Screen', id_sequence='Sequence', id_shapekey='Key', id_simulation='Simulation', id_sound='Sound', id_speaker='Speaker', id_text='Text', id_texture='Texture', id_vfont='VFont', id_volume='Volume', id_windowmanager='WindowManager', id_workspace='WorkSpace', id_world='World', editor_python_console='Python console',
|
|
96
|
+
""" Constant value bpy.app.translations.contexts(default_real=None, default='*', operator_default='Operator', ui_events_keymaps='UI_Events_KeyMaps', plural='Plural', id_action='Action', id_armature='Armature', id_brush='Brush', id_cachefile='CacheFile', id_camera='Camera', id_collection='Collection', id_curves='Curves', id_curve='Curve', id_fs_linestyle='FreestyleLineStyle', id_gpencil='GPencil', id_id='ID', id_image='Image', id_lattice='Lattice', id_library='Library', id_light='Light', id_lightprobe='LightProbe', id_mask='Mask', id_material='Material', id_mesh='Mesh', id_metaball='Metaball', id_movieclip='MovieClip', id_nodetree='NodeTree', id_object='Object', id_paintcurve='PaintCurve', id_palette='Palette', id_particlesettings='ParticleSettings', id_pointcloud='PointCloud', id_scene='Scene', id_screen='Screen', id_sequence='Sequence', id_shapekey='Key', id_simulation='Simulation', id_sound='Sound', id_speaker='Speaker', id_text='Text', id_texture='Texture', id_vfont='VFont', id_volume='Volume', id_windowmanager='WindowManager', id_workspace='WorkSpace', id_world='World', editor_filebrowser='File browser', editor_python_console='Python console', editor_preferences='Preferences', editor_view3d='View3D', amount='Amount', color='Color', constraint='Constraint', time='Time', unit='Unit')
|
|
97
97
|
"""
|
|
98
98
|
|
|
99
99
|
contexts_C_to_py: typing.Any
|
bpy/ops/curves/__init__.pyi
CHANGED
|
@@ -3,6 +3,88 @@ import bpy.types
|
|
|
3
3
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
|
+
def add_bezier(
|
|
7
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
8
|
+
execution_context: str = None,
|
|
9
|
+
undo: bool = None,
|
|
10
|
+
radius: typing.Any = 1.0,
|
|
11
|
+
enter_editmode: typing.Union[bool, typing.Any] = False,
|
|
12
|
+
align: typing.Any = "WORLD",
|
|
13
|
+
location: typing.Any = (0.0, 0.0, 0.0),
|
|
14
|
+
rotation: typing.Any = (0.0, 0.0, 0.0),
|
|
15
|
+
scale: typing.Any = (0.0, 0.0, 0.0),
|
|
16
|
+
):
|
|
17
|
+
"""Add new bezier curve
|
|
18
|
+
|
|
19
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
20
|
+
:type execution_context: str
|
|
21
|
+
:type undo: bool
|
|
22
|
+
:param radius: Radius
|
|
23
|
+
:type radius: typing.Any
|
|
24
|
+
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
25
|
+
:type enter_editmode: typing.Union[bool, typing.Any]
|
|
26
|
+
:param align: Align, The alignment of the new object
|
|
27
|
+
|
|
28
|
+
WORLD
|
|
29
|
+
World -- Align the new object to the world.
|
|
30
|
+
|
|
31
|
+
VIEW
|
|
32
|
+
View -- Align the new object to the view.
|
|
33
|
+
|
|
34
|
+
CURSOR
|
|
35
|
+
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
36
|
+
:type align: typing.Any
|
|
37
|
+
:param location: Location, Location for the newly added object
|
|
38
|
+
:type location: typing.Any
|
|
39
|
+
:param rotation: Rotation, Rotation for the newly added object
|
|
40
|
+
:type rotation: typing.Any
|
|
41
|
+
:param scale: Scale, Scale for the newly added object
|
|
42
|
+
:type scale: typing.Any
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
...
|
|
46
|
+
|
|
47
|
+
def add_circle(
|
|
48
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
49
|
+
execution_context: str = None,
|
|
50
|
+
undo: bool = None,
|
|
51
|
+
radius: typing.Any = 1.0,
|
|
52
|
+
enter_editmode: typing.Union[bool, typing.Any] = False,
|
|
53
|
+
align: typing.Any = "WORLD",
|
|
54
|
+
location: typing.Any = (0.0, 0.0, 0.0),
|
|
55
|
+
rotation: typing.Any = (0.0, 0.0, 0.0),
|
|
56
|
+
scale: typing.Any = (0.0, 0.0, 0.0),
|
|
57
|
+
):
|
|
58
|
+
"""Add new circle curve
|
|
59
|
+
|
|
60
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
61
|
+
:type execution_context: str
|
|
62
|
+
:type undo: bool
|
|
63
|
+
:param radius: Radius
|
|
64
|
+
:type radius: typing.Any
|
|
65
|
+
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
66
|
+
:type enter_editmode: typing.Union[bool, typing.Any]
|
|
67
|
+
:param align: Align, The alignment of the new object
|
|
68
|
+
|
|
69
|
+
WORLD
|
|
70
|
+
World -- Align the new object to the world.
|
|
71
|
+
|
|
72
|
+
VIEW
|
|
73
|
+
View -- Align the new object to the view.
|
|
74
|
+
|
|
75
|
+
CURSOR
|
|
76
|
+
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
77
|
+
:type align: typing.Any
|
|
78
|
+
:param location: Location, Location for the newly added object
|
|
79
|
+
:type location: typing.Any
|
|
80
|
+
:param rotation: Rotation, Rotation for the newly added object
|
|
81
|
+
:type rotation: typing.Any
|
|
82
|
+
:param scale: Scale, Scale for the newly added object
|
|
83
|
+
:type scale: typing.Any
|
|
84
|
+
"""
|
|
85
|
+
|
|
86
|
+
...
|
|
87
|
+
|
|
6
88
|
def attribute_set(
|
|
7
89
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
8
90
|
execution_context: str = None,
|
|
@@ -13,17 +13,18 @@ def fbx(
|
|
|
13
13
|
use_selection: typing.Union[bool, typing.Any] = False,
|
|
14
14
|
use_visible: typing.Union[bool, typing.Any] = False,
|
|
15
15
|
use_active_collection: typing.Union[bool, typing.Any] = False,
|
|
16
|
+
collection: typing.Union[str, typing.Any] = "",
|
|
16
17
|
global_scale: typing.Any = 1.0,
|
|
17
18
|
apply_unit_scale: typing.Union[bool, typing.Any] = True,
|
|
18
19
|
apply_scale_options: typing.Any = "FBX_SCALE_NONE",
|
|
19
20
|
use_space_transform: typing.Union[bool, typing.Any] = True,
|
|
20
21
|
bake_space_transform: typing.Union[bool, typing.Any] = False,
|
|
21
22
|
object_types: typing.Any = {
|
|
22
|
-
'"EMPTY"',
|
|
23
23
|
'"ARMATURE"',
|
|
24
|
-
'"CAMERA"',
|
|
25
|
-
'"OTHER"',
|
|
26
24
|
'"LIGHT"',
|
|
25
|
+
'"EMPTY"',
|
|
26
|
+
'"OTHER"',
|
|
27
|
+
'"CAMERA"',
|
|
27
28
|
'"MESH"',
|
|
28
29
|
},
|
|
29
30
|
use_mesh_modifiers: typing.Union[bool, typing.Any] = True,
|
|
@@ -73,6 +74,8 @@ def fbx(
|
|
|
73
74
|
:type use_visible: typing.Union[bool, typing.Any]
|
|
74
75
|
:param use_active_collection: Active Collection, Export only objects from the active collection (and its children)
|
|
75
76
|
:type use_active_collection: typing.Union[bool, typing.Any]
|
|
77
|
+
:param collection: Source Collection, Export only objects from this collection (and its children)
|
|
78
|
+
:type collection: typing.Union[str, typing.Any]
|
|
76
79
|
:param global_scale: Scale, Scale all data (Some importers do not support scaled armatures!)
|
|
77
80
|
:type global_scale: typing.Any
|
|
78
81
|
:param apply_unit_scale: Apply Unit, Take into account current Blender units settings (if unset, raw Blender Units values are used as-is)
|
|
@@ -630,6 +630,35 @@ def reorder(
|
|
|
630
630
|
|
|
631
631
|
...
|
|
632
632
|
|
|
633
|
+
def sculpt_paint(
|
|
634
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
635
|
+
execution_context: str = None,
|
|
636
|
+
undo: bool = None,
|
|
637
|
+
stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement] = None,
|
|
638
|
+
mode: typing.Any = "NORMAL",
|
|
639
|
+
):
|
|
640
|
+
"""Draw a new stroke in the active Grease Pencil object
|
|
641
|
+
|
|
642
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
643
|
+
:type execution_context: str
|
|
644
|
+
:type undo: bool
|
|
645
|
+
:param stroke: Stroke
|
|
646
|
+
:type stroke: bpy.types.bpy_prop_collection[bpy.types.OperatorStrokeElement]
|
|
647
|
+
:param mode: Stroke Mode, Action taken when a paint stroke is made
|
|
648
|
+
|
|
649
|
+
NORMAL
|
|
650
|
+
Regular -- Apply brush normally.
|
|
651
|
+
|
|
652
|
+
INVERT
|
|
653
|
+
Invert -- Invert action of brush for duration of stroke.
|
|
654
|
+
|
|
655
|
+
SMOOTH
|
|
656
|
+
Smooth -- Switch brush to smooth mode for duration of stroke.
|
|
657
|
+
:type mode: typing.Any
|
|
658
|
+
"""
|
|
659
|
+
|
|
660
|
+
...
|
|
661
|
+
|
|
633
662
|
def select_all(
|
|
634
663
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
635
664
|
execution_context: str = None,
|
bpy/ops/mesh/__init__.pyi
CHANGED
|
@@ -1835,7 +1835,7 @@ def normals_tools(
|
|
|
1835
1835
|
RESET
|
|
1836
1836
|
Reset Normal -- Reset the internal clipboard and/or normal of selected element.
|
|
1837
1837
|
:type mode: typing.Any
|
|
1838
|
-
:param absolute: Absolute Coordinates, Copy Absolute coordinates
|
|
1838
|
+
:param absolute: Absolute Coordinates, Copy Absolute coordinates of Normal vector
|
|
1839
1839
|
:type absolute: typing.Union[bool, typing.Any]
|
|
1840
1840
|
"""
|
|
1841
1841
|
|
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -100,11 +100,11 @@ def bake(
|
|
|
100
100
|
clean_curves: typing.Union[bool, typing.Any] = False,
|
|
101
101
|
bake_types: typing.Any = {'"POSE"'},
|
|
102
102
|
channel_types: typing.Any = {
|
|
103
|
-
'"
|
|
103
|
+
'"LOCATION"',
|
|
104
104
|
'"BBONE"',
|
|
105
|
-
'"SCALE"',
|
|
106
105
|
'"PROPS"',
|
|
107
|
-
'"
|
|
106
|
+
'"ROTATION"',
|
|
107
|
+
'"SCALE"',
|
|
108
108
|
},
|
|
109
109
|
):
|
|
110
110
|
"""Bake all selected objects location/scale/rotation animation to an action
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -1039,7 +1039,7 @@ def link_make(
|
|
|
1039
1039
|
undo: bool = None,
|
|
1040
1040
|
replace: typing.Union[bool, typing.Any] = False,
|
|
1041
1041
|
):
|
|
1042
|
-
"""
|
|
1042
|
+
"""Make a link between selected output and input sockets
|
|
1043
1043
|
|
|
1044
1044
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1045
1045
|
:type execution_context: str
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -1514,9 +1514,9 @@ def gpencil_add(
|
|
|
1514
1514
|
:type scale: typing.Any
|
|
1515
1515
|
:param type: Type
|
|
1516
1516
|
:type type: typing.Union[str, int]
|
|
1517
|
-
:param use_in_front: Show In Front, Show
|
|
1517
|
+
:param use_in_front: Show In Front, Show Line Art grease pencil in front of everything
|
|
1518
1518
|
:type use_in_front: typing.Union[bool, typing.Any]
|
|
1519
|
-
:param stroke_depth_offset: Stroke Offset, Stroke offset for the
|
|
1519
|
+
:param stroke_depth_offset: Stroke Offset, Stroke offset for the Line Art modifier
|
|
1520
1520
|
:type stroke_depth_offset: typing.Any
|
|
1521
1521
|
:param use_lights: Use Lights, Use lights for this grease pencil object
|
|
1522
1522
|
:type use_lights: typing.Union[bool, typing.Any]
|
|
@@ -1708,9 +1708,9 @@ def grease_pencil_add(
|
|
|
1708
1708
|
:type undo: bool
|
|
1709
1709
|
:param type: Type
|
|
1710
1710
|
:type type: typing.Union[str, int]
|
|
1711
|
-
:param use_in_front: Show In Front, Show
|
|
1711
|
+
:param use_in_front: Show In Front, Show Line Art grease pencil in front of everything
|
|
1712
1712
|
:type use_in_front: typing.Union[bool, typing.Any]
|
|
1713
|
-
:param stroke_depth_offset: Stroke Offset, Stroke offset for the
|
|
1713
|
+
:param stroke_depth_offset: Stroke Offset, Stroke offset for the Line Art modifier
|
|
1714
1714
|
:type stroke_depth_offset: typing.Any
|
|
1715
1715
|
:param use_lights: Use Lights, Use lights for this grease pencil object
|
|
1716
1716
|
:type use_lights: typing.Union[bool, typing.Any]
|
|
@@ -2443,7 +2443,7 @@ def lineart_bake_strokes(
|
|
|
2443
2443
|
execution_context: str = None,
|
|
2444
2444
|
undo: bool = None,
|
|
2445
2445
|
):
|
|
2446
|
-
"""Bake Line Art for current
|
|
2446
|
+
"""Bake Line Art for current Grease Pencil object
|
|
2447
2447
|
|
|
2448
2448
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
2449
2449
|
:type execution_context: str
|
|
@@ -2457,7 +2457,7 @@ def lineart_bake_strokes_all(
|
|
|
2457
2457
|
execution_context: str = None,
|
|
2458
2458
|
undo: bool = None,
|
|
2459
2459
|
):
|
|
2460
|
-
"""Bake all Grease Pencil objects that have a
|
|
2460
|
+
"""Bake all Grease Pencil objects that have a Line Art modifier
|
|
2461
2461
|
|
|
2462
2462
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
2463
2463
|
:type execution_context: str
|
|
@@ -2471,7 +2471,7 @@ def lineart_clear(
|
|
|
2471
2471
|
execution_context: str = None,
|
|
2472
2472
|
undo: bool = None,
|
|
2473
2473
|
):
|
|
2474
|
-
"""Clear all strokes in current
|
|
2474
|
+
"""Clear all strokes in current Grease Pencil object
|
|
2475
2475
|
|
|
2476
2476
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
2477
2477
|
:type execution_context: str
|
|
@@ -2485,7 +2485,7 @@ def lineart_clear_all(
|
|
|
2485
2485
|
execution_context: str = None,
|
|
2486
2486
|
undo: bool = None,
|
|
2487
2487
|
):
|
|
2488
|
-
"""Clear all strokes in all Grease Pencil objects that have a
|
|
2488
|
+
"""Clear all strokes in all Grease Pencil objects that have a Line Art modifier
|
|
2489
2489
|
|
|
2490
2490
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
2491
2491
|
:type execution_context: str
|
bpy/ops/outliner/__init__.pyi
CHANGED
|
@@ -977,7 +977,7 @@ def orphans_purge(
|
|
|
977
977
|
undo: bool = None,
|
|
978
978
|
do_local_ids: typing.Union[bool, typing.Any] = True,
|
|
979
979
|
do_linked_ids: typing.Union[bool, typing.Any] = True,
|
|
980
|
-
do_recursive: typing.Union[bool, typing.Any] =
|
|
980
|
+
do_recursive: typing.Union[bool, typing.Any] = True,
|
|
981
981
|
):
|
|
982
982
|
"""Clear all orphaned data-blocks without any users from the file
|
|
983
983
|
|
bpy/ops/preferences/__init__.pyi
CHANGED
|
@@ -350,7 +350,7 @@ def extension_repo_add(
|
|
|
350
350
|
:type name: typing.Union[str, typing.Any]
|
|
351
351
|
:param remote_path: URL, Remote URL or path for extension repository
|
|
352
352
|
:type remote_path: typing.Union[str, typing.Any]
|
|
353
|
-
:param use_custom_directory: Custom Directory, Manually set the path for extensions to be stored. When disabled a
|
|
353
|
+
:param use_custom_directory: Custom Directory, Manually set the path for extensions to be stored. When disabled a user's extensions directory is created
|
|
354
354
|
:type use_custom_directory: typing.Union[bool, typing.Any]
|
|
355
355
|
:param custom_directory: Custom Directory, The local directory containing extensions
|
|
356
356
|
:type custom_directory: typing.Union[str, typing.Any]
|
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,
|
|
@@ -877,6 +877,7 @@ def trim_box_gesture(
|
|
|
877
877
|
ymax: typing.Any = 0,
|
|
878
878
|
wait_for_input: typing.Union[bool, typing.Any] = True,
|
|
879
879
|
use_front_faces_only: typing.Union[bool, typing.Any] = False,
|
|
880
|
+
location: typing.Any = (0, 0),
|
|
880
881
|
trim_mode: typing.Any = "DIFFERENCE",
|
|
881
882
|
use_cursor_depth: typing.Union[bool, typing.Any] = False,
|
|
882
883
|
trim_orientation: typing.Any = "VIEW",
|
|
@@ -900,6 +901,8 @@ def trim_box_gesture(
|
|
|
900
901
|
:type wait_for_input: typing.Union[bool, typing.Any]
|
|
901
902
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
902
903
|
:type use_front_faces_only: typing.Union[bool, typing.Any]
|
|
904
|
+
:param location: Location, Mouse location
|
|
905
|
+
:type location: typing.Any
|
|
903
906
|
:param trim_mode: Trim Mode
|
|
904
907
|
|
|
905
908
|
DIFFERENCE
|
|
@@ -947,6 +950,7 @@ def trim_lasso_gesture(
|
|
|
947
950
|
undo: bool = None,
|
|
948
951
|
path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] = None,
|
|
949
952
|
use_front_faces_only: typing.Union[bool, typing.Any] = False,
|
|
953
|
+
location: typing.Any = (0, 0),
|
|
950
954
|
trim_mode: typing.Any = "DIFFERENCE",
|
|
951
955
|
use_cursor_depth: typing.Union[bool, typing.Any] = False,
|
|
952
956
|
trim_orientation: typing.Any = "VIEW",
|
|
@@ -962,6 +966,8 @@ def trim_lasso_gesture(
|
|
|
962
966
|
:type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath]
|
|
963
967
|
:param use_front_faces_only: Front Faces Only, Affect only faces facing towards the view
|
|
964
968
|
:type use_front_faces_only: typing.Union[bool, typing.Any]
|
|
969
|
+
:param location: Location, Mouse location
|
|
970
|
+
:type location: typing.Any
|
|
965
971
|
:param trim_mode: Trim Mode
|
|
966
972
|
|
|
967
973
|
DIFFERENCE
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -744,7 +744,7 @@ def collada_export(
|
|
|
744
744
|
:type include_shapekeys: typing.Union[bool, typing.Any]
|
|
745
745
|
:param deform_bones_only: Deform Bones Only, Only export deforming bones with armatures
|
|
746
746
|
:type deform_bones_only: typing.Union[bool, typing.Any]
|
|
747
|
-
:param include_animations: Include Animations, Export animations if available (exporting animations will enforce the decomposition of node transforms into
|
|
747
|
+
:param include_animations: Include Animations, Export animations if available (exporting animations will enforce the decomposition of node transforms into <translation> <rotation> and <scale> components)
|
|
748
748
|
:type include_animations: typing.Union[bool, typing.Any]
|
|
749
749
|
:param include_all_actions: Include all Actions, Export also unassigned actions (this allows you to export entire animation libraries for your character(s))
|
|
750
750
|
:type include_all_actions: typing.Union[bool, typing.Any]
|