fake-bpy-module 20240410__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 +371 -0
- bpy/app/translations/__init__.pyi +1 -1
- bpy/ops/curves/__init__.pyi +99 -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 +4 -1
- bpy/types/__init__.pyi +272 -189
- {fake_bpy_module-20240410.dist-info → fake_bpy_module-20240417.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240410.dist-info → fake_bpy_module-20240417.dist-info}/RECORD +25 -25
- {fake_bpy_module-20240410.dist-info → fake_bpy_module-20240417.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240410.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,368 @@ 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
|
+
|
|
5511
|
+
class VIEW3D_MT_edit_curves_control_points(bpy_types._GenericUI):
|
|
5512
|
+
""" """
|
|
5513
|
+
|
|
5514
|
+
bl_label: typing.Any
|
|
5515
|
+
""" """
|
|
5516
|
+
|
|
5517
|
+
bl_rna: typing.Any
|
|
5518
|
+
""" """
|
|
5519
|
+
|
|
5520
|
+
id_data: typing.Any
|
|
5521
|
+
""" """
|
|
5522
|
+
|
|
5523
|
+
def append(self, draw_func):
|
|
5524
|
+
"""
|
|
5525
|
+
|
|
5526
|
+
:param draw_func:
|
|
5527
|
+
"""
|
|
5528
|
+
...
|
|
5529
|
+
|
|
5530
|
+
def as_pointer(self):
|
|
5531
|
+
""" """
|
|
5532
|
+
...
|
|
5533
|
+
|
|
5534
|
+
def bl_rna_get_subclass(self):
|
|
5535
|
+
""" """
|
|
5536
|
+
...
|
|
5537
|
+
|
|
5538
|
+
def bl_rna_get_subclass_py(self):
|
|
5539
|
+
""" """
|
|
5540
|
+
...
|
|
5541
|
+
|
|
5542
|
+
def draw(self, _context):
|
|
5543
|
+
"""
|
|
5544
|
+
|
|
5545
|
+
:param _context:
|
|
5546
|
+
"""
|
|
5547
|
+
...
|
|
5548
|
+
|
|
5549
|
+
def draw_collapsible(self, context, layout):
|
|
5550
|
+
"""
|
|
5551
|
+
|
|
5552
|
+
:param context:
|
|
5553
|
+
:param layout:
|
|
5554
|
+
"""
|
|
5555
|
+
...
|
|
5556
|
+
|
|
5557
|
+
def draw_preset(self, _context):
|
|
5558
|
+
"""
|
|
5559
|
+
|
|
5560
|
+
:param _context:
|
|
5561
|
+
"""
|
|
5562
|
+
...
|
|
5563
|
+
|
|
5564
|
+
def driver_add(self):
|
|
5565
|
+
""" """
|
|
5566
|
+
...
|
|
5567
|
+
|
|
5568
|
+
def driver_remove(self):
|
|
5569
|
+
""" """
|
|
5570
|
+
...
|
|
5571
|
+
|
|
5572
|
+
def get(self):
|
|
5573
|
+
""" """
|
|
5574
|
+
...
|
|
5575
|
+
|
|
5576
|
+
def id_properties_clear(self):
|
|
5577
|
+
""" """
|
|
5578
|
+
...
|
|
5579
|
+
|
|
5580
|
+
def id_properties_ensure(self):
|
|
5581
|
+
""" """
|
|
5582
|
+
...
|
|
5583
|
+
|
|
5584
|
+
def id_properties_ui(self):
|
|
5585
|
+
""" """
|
|
5586
|
+
...
|
|
5587
|
+
|
|
5588
|
+
def is_extended(self):
|
|
5589
|
+
""" """
|
|
5590
|
+
...
|
|
5591
|
+
|
|
5592
|
+
def is_property_hidden(self):
|
|
5593
|
+
""" """
|
|
5594
|
+
...
|
|
5595
|
+
|
|
5596
|
+
def is_property_overridable_library(self):
|
|
5597
|
+
""" """
|
|
5598
|
+
...
|
|
5599
|
+
|
|
5600
|
+
def is_property_readonly(self):
|
|
5601
|
+
""" """
|
|
5602
|
+
...
|
|
5603
|
+
|
|
5604
|
+
def is_property_set(self):
|
|
5605
|
+
""" """
|
|
5606
|
+
...
|
|
5607
|
+
|
|
5608
|
+
def items(self):
|
|
5609
|
+
""" """
|
|
5610
|
+
...
|
|
5611
|
+
|
|
5612
|
+
def keyframe_delete(self):
|
|
5613
|
+
""" """
|
|
5614
|
+
...
|
|
5615
|
+
|
|
5616
|
+
def keyframe_insert(self):
|
|
5617
|
+
""" """
|
|
5618
|
+
...
|
|
5619
|
+
|
|
5620
|
+
def keys(self):
|
|
5621
|
+
""" """
|
|
5622
|
+
...
|
|
5623
|
+
|
|
5624
|
+
def path_from_id(self):
|
|
5625
|
+
""" """
|
|
5626
|
+
...
|
|
5627
|
+
|
|
5628
|
+
def path_menu(
|
|
5629
|
+
self,
|
|
5630
|
+
searchpaths,
|
|
5631
|
+
operator,
|
|
5632
|
+
props_default,
|
|
5633
|
+
prop_filepath,
|
|
5634
|
+
filter_ext,
|
|
5635
|
+
filter_path,
|
|
5636
|
+
display_name,
|
|
5637
|
+
add_operator,
|
|
5638
|
+
add_operator_props,
|
|
5639
|
+
):
|
|
5640
|
+
"""
|
|
5641
|
+
|
|
5642
|
+
:param searchpaths:
|
|
5643
|
+
:param operator:
|
|
5644
|
+
:param props_default:
|
|
5645
|
+
:param prop_filepath:
|
|
5646
|
+
:param filter_ext:
|
|
5647
|
+
:param filter_path:
|
|
5648
|
+
:param display_name:
|
|
5649
|
+
:param add_operator:
|
|
5650
|
+
:param add_operator_props:
|
|
5651
|
+
"""
|
|
5652
|
+
...
|
|
5653
|
+
|
|
5654
|
+
def path_resolve(self):
|
|
5655
|
+
""" """
|
|
5656
|
+
...
|
|
5657
|
+
|
|
5658
|
+
def pop(self):
|
|
5659
|
+
""" """
|
|
5660
|
+
...
|
|
5661
|
+
|
|
5662
|
+
def prepend(self, draw_func):
|
|
5663
|
+
"""
|
|
5664
|
+
|
|
5665
|
+
:param draw_func:
|
|
5666
|
+
"""
|
|
5667
|
+
...
|
|
5668
|
+
|
|
5669
|
+
def property_overridable_library_set(self):
|
|
5670
|
+
""" """
|
|
5671
|
+
...
|
|
5672
|
+
|
|
5673
|
+
def property_unset(self):
|
|
5674
|
+
""" """
|
|
5675
|
+
...
|
|
5676
|
+
|
|
5677
|
+
def remove(self, draw_func):
|
|
5678
|
+
"""
|
|
5679
|
+
|
|
5680
|
+
:param draw_func:
|
|
5681
|
+
"""
|
|
5682
|
+
...
|
|
5683
|
+
|
|
5684
|
+
def type_recast(self):
|
|
5685
|
+
""" """
|
|
5686
|
+
...
|
|
5687
|
+
|
|
5688
|
+
def values(self):
|
|
5689
|
+
""" """
|
|
5690
|
+
...
|
|
5691
|
+
|
|
5330
5692
|
class VIEW3D_MT_edit_curves_segments(bpy_types._GenericUI):
|
|
5331
5693
|
""" """
|
|
5332
5694
|
|
|
@@ -44947,6 +45309,15 @@ class _draw_tool_settings_context_mode:
|
|
|
44947
45309
|
"""
|
|
44948
45310
|
...
|
|
44949
45311
|
|
|
45312
|
+
def SCULPT_GREASE_PENCIL(self, context, layout, tool):
|
|
45313
|
+
"""
|
|
45314
|
+
|
|
45315
|
+
:param context:
|
|
45316
|
+
:param layout:
|
|
45317
|
+
:param tool:
|
|
45318
|
+
"""
|
|
45319
|
+
...
|
|
45320
|
+
|
|
44950
45321
|
def VERTEX_GPENCIL(self, context, layout, tool):
|
|
44951
45322
|
"""
|
|
44952
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,
|
|
@@ -217,6 +299,23 @@ def extrude_move(
|
|
|
217
299
|
|
|
218
300
|
...
|
|
219
301
|
|
|
302
|
+
def handle_type_set(
|
|
303
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
304
|
+
execution_context: str = None,
|
|
305
|
+
undo: bool = None,
|
|
306
|
+
type: typing.Union[str, int] = "AUTO",
|
|
307
|
+
):
|
|
308
|
+
"""Set the handle type for bezier curves
|
|
309
|
+
|
|
310
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
311
|
+
:type execution_context: str
|
|
312
|
+
:type undo: bool
|
|
313
|
+
:param type: Type
|
|
314
|
+
:type type: typing.Union[str, int]
|
|
315
|
+
"""
|
|
316
|
+
|
|
317
|
+
...
|
|
318
|
+
|
|
220
319
|
def sculptmode_toggle(
|
|
221
320
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
222
321
|
execution_context: str = None,
|
|
@@ -13,18 +13,19 @@ 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
|
-
'"
|
|
23
|
+
'"ARMATURE"',
|
|
24
|
+
'"LIGHT"',
|
|
23
25
|
'"EMPTY"',
|
|
24
26
|
'"OTHER"',
|
|
27
|
+
'"CAMERA"',
|
|
25
28
|
'"MESH"',
|
|
26
|
-
'"LIGHT"',
|
|
27
|
-
'"ARMATURE"',
|
|
28
29
|
},
|
|
29
30
|
use_mesh_modifiers: typing.Union[bool, typing.Any] = True,
|
|
30
31
|
use_mesh_modifiers_render: 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
|
-
'"ROTATION"',
|
|
104
|
-
'"SCALE"',
|
|
105
|
-
'"PROPS"',
|
|
106
103
|
'"LOCATION"',
|
|
107
104
|
'"BBONE"',
|
|
105
|
+
'"PROPS"',
|
|
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
|