fake-bpy-module 20240606__py3-none-any.whl → 20240608__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/connect_to_output/__init__.pyi +8 -8
- bl_operators/node_editor/node_functions/__init__.pyi +0 -1
- bl_operators/view3d/__init__.pyi +195 -0
- bl_ui/space_userpref/__init__.pyi +270 -0
- bpy/ops/export_scene/__init__.pyi +3 -0
- bpy/ops/extensions/__init__.pyi +3 -0
- bpy/ops/import_scene/__init__.pyi +6 -0
- bpy/ops/object/__init__.pyi +0 -15
- bpy/ops/preferences/__init__.pyi +0 -28
- bpy/ops/wm/__init__.pyi +10 -10
- bpy/types/__init__.pyi +97 -9
- bpy/utils/__init__.pyi +17 -2
- {fake_bpy_module-20240606.dist-info → fake_bpy_module-20240608.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240606.dist-info → fake_bpy_module-20240608.dist-info}/RECORD +16 -16
- {fake_bpy_module-20240606.dist-info → fake_bpy_module-20240608.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240606.dist-info → fake_bpy_module-20240608.dist-info}/top_level.txt +0 -0
|
@@ -291,20 +291,20 @@ class NODE_OT_connect_to_output(
|
|
|
291
291
|
"""
|
|
292
292
|
...
|
|
293
293
|
|
|
294
|
-
def
|
|
295
|
-
"""
|
|
294
|
+
def search_connected_viewer_sockets(self, output_node, r_sockets, index=None):
|
|
295
|
+
"""From an output node, recursively scan node tree for connected viewer sockets
|
|
296
296
|
|
|
297
|
-
:param
|
|
298
|
-
:param
|
|
297
|
+
:param output_node:
|
|
298
|
+
:param r_sockets:
|
|
299
|
+
:param index:
|
|
299
300
|
"""
|
|
300
301
|
...
|
|
301
302
|
|
|
302
|
-
def
|
|
303
|
-
"""Recursively
|
|
303
|
+
def search_viewer_sockets_in_tree(self, tree, r_sockets):
|
|
304
|
+
"""Recursively get all viewer sockets in a node tree
|
|
304
305
|
|
|
305
|
-
:param
|
|
306
|
+
:param tree:
|
|
306
307
|
:param r_sockets:
|
|
307
|
-
:param index:
|
|
308
308
|
"""
|
|
309
309
|
...
|
|
310
310
|
|
|
@@ -17,7 +17,6 @@ def get_group_output_node(tree, output_node_idname="NodeGroupOutput"): ...
|
|
|
17
17
|
def get_internal_socket(socket): ...
|
|
18
18
|
def get_output_location(tree): ...
|
|
19
19
|
def is_viewer_link(link, output_node): ...
|
|
20
|
-
def is_viewer_socket(socket): ...
|
|
21
20
|
def is_visible_socket(socket): ...
|
|
22
21
|
def node_editor_poll(cls, context): ...
|
|
23
22
|
def node_space_type_poll(cls, context, types): ...
|
bl_operators/view3d/__init__.pyi
CHANGED
|
@@ -396,6 +396,201 @@ class VIEW3D_FH_empty_image(bpy_types.FileHandler):
|
|
|
396
396
|
"""
|
|
397
397
|
...
|
|
398
398
|
|
|
399
|
+
class VIEW3D_FH_vdb_volume(bpy_types.FileHandler):
|
|
400
|
+
bl_file_extensions: typing.Any
|
|
401
|
+
bl_idname: typing.Any
|
|
402
|
+
bl_import_operator: typing.Any
|
|
403
|
+
bl_label: typing.Any
|
|
404
|
+
bl_rna: typing.Any
|
|
405
|
+
id_data: typing.Any
|
|
406
|
+
|
|
407
|
+
def as_pointer(self) -> int:
|
|
408
|
+
"""Returns the memory address which holds a pointer to Blender's internal data
|
|
409
|
+
|
|
410
|
+
:return: int (memory address).
|
|
411
|
+
:rtype: int
|
|
412
|
+
"""
|
|
413
|
+
...
|
|
414
|
+
|
|
415
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
416
|
+
"""
|
|
417
|
+
|
|
418
|
+
:return: The RNA type or default when not found.
|
|
419
|
+
:rtype: bpy.types.Struct
|
|
420
|
+
"""
|
|
421
|
+
...
|
|
422
|
+
|
|
423
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
424
|
+
"""
|
|
425
|
+
|
|
426
|
+
:return: The class or default when not found.
|
|
427
|
+
:rtype: typing.Any
|
|
428
|
+
"""
|
|
429
|
+
...
|
|
430
|
+
|
|
431
|
+
def driver_add(self) -> bpy.types.FCurve:
|
|
432
|
+
"""Adds driver(s) to the given property
|
|
433
|
+
|
|
434
|
+
:return: The driver(s) added.
|
|
435
|
+
:rtype: bpy.types.FCurve
|
|
436
|
+
"""
|
|
437
|
+
...
|
|
438
|
+
|
|
439
|
+
def driver_remove(self) -> bool:
|
|
440
|
+
"""Remove driver(s) from the given property
|
|
441
|
+
|
|
442
|
+
:return: Success of driver removal.
|
|
443
|
+
:rtype: bool
|
|
444
|
+
"""
|
|
445
|
+
...
|
|
446
|
+
|
|
447
|
+
def get(self):
|
|
448
|
+
"""Returns the value of the custom property assigned to key or default
|
|
449
|
+
when not found (matches Python's dictionary function of the same name).
|
|
450
|
+
|
|
451
|
+
"""
|
|
452
|
+
...
|
|
453
|
+
|
|
454
|
+
def id_properties_clear(self):
|
|
455
|
+
"""
|
|
456
|
+
|
|
457
|
+
:return: Remove the parent group for an RNA struct's custom IDProperties.
|
|
458
|
+
"""
|
|
459
|
+
...
|
|
460
|
+
|
|
461
|
+
def id_properties_ensure(self):
|
|
462
|
+
"""
|
|
463
|
+
|
|
464
|
+
:return: the parent group for an RNA struct's custom IDProperties.
|
|
465
|
+
"""
|
|
466
|
+
...
|
|
467
|
+
|
|
468
|
+
def id_properties_ui(self):
|
|
469
|
+
"""
|
|
470
|
+
|
|
471
|
+
:return: Return an object used to manage an IDProperty's UI data.
|
|
472
|
+
"""
|
|
473
|
+
...
|
|
474
|
+
|
|
475
|
+
def is_property_hidden(self) -> bool:
|
|
476
|
+
"""Check if a property is hidden.
|
|
477
|
+
|
|
478
|
+
:return: True when the property is hidden.
|
|
479
|
+
:rtype: bool
|
|
480
|
+
"""
|
|
481
|
+
...
|
|
482
|
+
|
|
483
|
+
def is_property_overridable_library(self) -> bool:
|
|
484
|
+
"""Check if a property is overridable.
|
|
485
|
+
|
|
486
|
+
:return: True when the property is overridable.
|
|
487
|
+
:rtype: bool
|
|
488
|
+
"""
|
|
489
|
+
...
|
|
490
|
+
|
|
491
|
+
def is_property_readonly(self) -> bool:
|
|
492
|
+
"""Check if a property is readonly.
|
|
493
|
+
|
|
494
|
+
:return: True when the property is readonly (not writable).
|
|
495
|
+
:rtype: bool
|
|
496
|
+
"""
|
|
497
|
+
...
|
|
498
|
+
|
|
499
|
+
def is_property_set(self) -> bool:
|
|
500
|
+
"""Check if a property is set, use for testing operator properties.
|
|
501
|
+
|
|
502
|
+
:return: True when the property has been set.
|
|
503
|
+
:rtype: bool
|
|
504
|
+
"""
|
|
505
|
+
...
|
|
506
|
+
|
|
507
|
+
def items(self):
|
|
508
|
+
"""Returns the items of this objects custom properties (matches Python's
|
|
509
|
+
dictionary function of the same name).
|
|
510
|
+
|
|
511
|
+
:return: custom property key, value pairs.
|
|
512
|
+
"""
|
|
513
|
+
...
|
|
514
|
+
|
|
515
|
+
def keyframe_delete(self) -> bool:
|
|
516
|
+
"""Remove a keyframe from this properties fcurve.
|
|
517
|
+
|
|
518
|
+
:return: Success of keyframe deletion.
|
|
519
|
+
:rtype: bool
|
|
520
|
+
"""
|
|
521
|
+
...
|
|
522
|
+
|
|
523
|
+
def keyframe_insert(self) -> bool:
|
|
524
|
+
"""Insert a keyframe on the property given, adding fcurves and animation data when necessary.
|
|
525
|
+
|
|
526
|
+
:return: Success of keyframe insertion.
|
|
527
|
+
:rtype: bool
|
|
528
|
+
"""
|
|
529
|
+
...
|
|
530
|
+
|
|
531
|
+
def keys(self):
|
|
532
|
+
"""Returns the keys of this objects custom properties (matches Python's
|
|
533
|
+
dictionary function of the same name).
|
|
534
|
+
|
|
535
|
+
:return: custom property keys.
|
|
536
|
+
"""
|
|
537
|
+
...
|
|
538
|
+
|
|
539
|
+
def path_from_id(self) -> str:
|
|
540
|
+
"""Returns the data path from the ID to this object (string).
|
|
541
|
+
|
|
542
|
+
:return: The path from `bpy.types.bpy_struct.id_data`
|
|
543
|
+
to this struct and property (when given).
|
|
544
|
+
:rtype: str
|
|
545
|
+
"""
|
|
546
|
+
...
|
|
547
|
+
|
|
548
|
+
def path_resolve(self):
|
|
549
|
+
"""Returns the property from the path, raise an exception when not found."""
|
|
550
|
+
...
|
|
551
|
+
|
|
552
|
+
def poll_drop(self, context):
|
|
553
|
+
"""
|
|
554
|
+
|
|
555
|
+
:param context:
|
|
556
|
+
"""
|
|
557
|
+
...
|
|
558
|
+
|
|
559
|
+
def pop(self):
|
|
560
|
+
"""Remove and return the value of the custom property assigned to key or default
|
|
561
|
+
when not found (matches Python's dictionary function of the same name).
|
|
562
|
+
|
|
563
|
+
"""
|
|
564
|
+
...
|
|
565
|
+
|
|
566
|
+
def property_overridable_library_set(self) -> bool:
|
|
567
|
+
"""Define a property as overridable or not (only for custom properties!).
|
|
568
|
+
|
|
569
|
+
:return: True when the overridable status of the property was successfully set.
|
|
570
|
+
:rtype: bool
|
|
571
|
+
"""
|
|
572
|
+
...
|
|
573
|
+
|
|
574
|
+
def property_unset(self):
|
|
575
|
+
"""Unset a property, will use default value afterward."""
|
|
576
|
+
...
|
|
577
|
+
|
|
578
|
+
def type_recast(self):
|
|
579
|
+
"""Return a new instance, this is needed because types
|
|
580
|
+
such as textures can be changed at runtime.
|
|
581
|
+
|
|
582
|
+
:return: a new instance of this object with the type initialized again.
|
|
583
|
+
"""
|
|
584
|
+
...
|
|
585
|
+
|
|
586
|
+
def values(self):
|
|
587
|
+
"""Returns the values of this objects custom properties (matches Python's
|
|
588
|
+
dictionary function of the same name).
|
|
589
|
+
|
|
590
|
+
:return: custom property values.
|
|
591
|
+
"""
|
|
592
|
+
...
|
|
593
|
+
|
|
399
594
|
class VIEW3D_OT_edit_mesh_extrude_individual_move(bpy_types.Operator):
|
|
400
595
|
"""Extrude each individual face separately along local normals"""
|
|
401
596
|
|
|
@@ -670,6 +670,276 @@ class USERPREF_MT_editor_menus(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
670
670
|
"""
|
|
671
671
|
...
|
|
672
672
|
|
|
673
|
+
class USERPREF_MT_extensions_active_repo(bpy_types.Menu, bpy_types._GenericUI):
|
|
674
|
+
bl_label: typing.Any
|
|
675
|
+
bl_rna: typing.Any
|
|
676
|
+
id_data: typing.Any
|
|
677
|
+
|
|
678
|
+
def append(self, draw_func):
|
|
679
|
+
"""Append a draw function to this menu,
|
|
680
|
+
takes the same arguments as the menus draw function
|
|
681
|
+
|
|
682
|
+
:param draw_func:
|
|
683
|
+
"""
|
|
684
|
+
...
|
|
685
|
+
|
|
686
|
+
def as_pointer(self) -> int:
|
|
687
|
+
"""Returns the memory address which holds a pointer to Blender's internal data
|
|
688
|
+
|
|
689
|
+
:return: int (memory address).
|
|
690
|
+
:rtype: int
|
|
691
|
+
"""
|
|
692
|
+
...
|
|
693
|
+
|
|
694
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
695
|
+
"""
|
|
696
|
+
|
|
697
|
+
:return: The RNA type or default when not found.
|
|
698
|
+
:rtype: bpy.types.Struct
|
|
699
|
+
"""
|
|
700
|
+
...
|
|
701
|
+
|
|
702
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
703
|
+
"""
|
|
704
|
+
|
|
705
|
+
:return: The class or default when not found.
|
|
706
|
+
:rtype: typing.Any
|
|
707
|
+
"""
|
|
708
|
+
...
|
|
709
|
+
|
|
710
|
+
def draw(self, context):
|
|
711
|
+
"""
|
|
712
|
+
|
|
713
|
+
:param context:
|
|
714
|
+
"""
|
|
715
|
+
...
|
|
716
|
+
|
|
717
|
+
def draw_collapsible(self, context, layout):
|
|
718
|
+
"""
|
|
719
|
+
|
|
720
|
+
:param context:
|
|
721
|
+
:param layout:
|
|
722
|
+
"""
|
|
723
|
+
...
|
|
724
|
+
|
|
725
|
+
def draw_preset(self, _context):
|
|
726
|
+
"""Define these on the subclass:
|
|
727
|
+
- preset_operator (string)
|
|
728
|
+
- preset_subdir (string)Optionally:
|
|
729
|
+
- preset_add_operator (string)
|
|
730
|
+
- preset_extensions (set of strings)
|
|
731
|
+
- preset_operator_defaults (dict of keyword args)
|
|
732
|
+
|
|
733
|
+
:param _context:
|
|
734
|
+
"""
|
|
735
|
+
...
|
|
736
|
+
|
|
737
|
+
def driver_add(self) -> bpy.types.FCurve:
|
|
738
|
+
"""Adds driver(s) to the given property
|
|
739
|
+
|
|
740
|
+
:return: The driver(s) added.
|
|
741
|
+
:rtype: bpy.types.FCurve
|
|
742
|
+
"""
|
|
743
|
+
...
|
|
744
|
+
|
|
745
|
+
def driver_remove(self) -> bool:
|
|
746
|
+
"""Remove driver(s) from the given property
|
|
747
|
+
|
|
748
|
+
:return: Success of driver removal.
|
|
749
|
+
:rtype: bool
|
|
750
|
+
"""
|
|
751
|
+
...
|
|
752
|
+
|
|
753
|
+
def get(self):
|
|
754
|
+
"""Returns the value of the custom property assigned to key or default
|
|
755
|
+
when not found (matches Python's dictionary function of the same name).
|
|
756
|
+
|
|
757
|
+
"""
|
|
758
|
+
...
|
|
759
|
+
|
|
760
|
+
def id_properties_clear(self):
|
|
761
|
+
"""
|
|
762
|
+
|
|
763
|
+
:return: Remove the parent group for an RNA struct's custom IDProperties.
|
|
764
|
+
"""
|
|
765
|
+
...
|
|
766
|
+
|
|
767
|
+
def id_properties_ensure(self):
|
|
768
|
+
"""
|
|
769
|
+
|
|
770
|
+
:return: the parent group for an RNA struct's custom IDProperties.
|
|
771
|
+
"""
|
|
772
|
+
...
|
|
773
|
+
|
|
774
|
+
def id_properties_ui(self):
|
|
775
|
+
"""
|
|
776
|
+
|
|
777
|
+
:return: Return an object used to manage an IDProperty's UI data.
|
|
778
|
+
"""
|
|
779
|
+
...
|
|
780
|
+
|
|
781
|
+
def is_extended(self): ...
|
|
782
|
+
def is_property_hidden(self) -> bool:
|
|
783
|
+
"""Check if a property is hidden.
|
|
784
|
+
|
|
785
|
+
:return: True when the property is hidden.
|
|
786
|
+
:rtype: bool
|
|
787
|
+
"""
|
|
788
|
+
...
|
|
789
|
+
|
|
790
|
+
def is_property_overridable_library(self) -> bool:
|
|
791
|
+
"""Check if a property is overridable.
|
|
792
|
+
|
|
793
|
+
:return: True when the property is overridable.
|
|
794
|
+
:rtype: bool
|
|
795
|
+
"""
|
|
796
|
+
...
|
|
797
|
+
|
|
798
|
+
def is_property_readonly(self) -> bool:
|
|
799
|
+
"""Check if a property is readonly.
|
|
800
|
+
|
|
801
|
+
:return: True when the property is readonly (not writable).
|
|
802
|
+
:rtype: bool
|
|
803
|
+
"""
|
|
804
|
+
...
|
|
805
|
+
|
|
806
|
+
def is_property_set(self) -> bool:
|
|
807
|
+
"""Check if a property is set, use for testing operator properties.
|
|
808
|
+
|
|
809
|
+
:return: True when the property has been set.
|
|
810
|
+
:rtype: bool
|
|
811
|
+
"""
|
|
812
|
+
...
|
|
813
|
+
|
|
814
|
+
def items(self):
|
|
815
|
+
"""Returns the items of this objects custom properties (matches Python's
|
|
816
|
+
dictionary function of the same name).
|
|
817
|
+
|
|
818
|
+
:return: custom property key, value pairs.
|
|
819
|
+
"""
|
|
820
|
+
...
|
|
821
|
+
|
|
822
|
+
def keyframe_delete(self) -> bool:
|
|
823
|
+
"""Remove a keyframe from this properties fcurve.
|
|
824
|
+
|
|
825
|
+
:return: Success of keyframe deletion.
|
|
826
|
+
:rtype: bool
|
|
827
|
+
"""
|
|
828
|
+
...
|
|
829
|
+
|
|
830
|
+
def keyframe_insert(self) -> bool:
|
|
831
|
+
"""Insert a keyframe on the property given, adding fcurves and animation data when necessary.
|
|
832
|
+
|
|
833
|
+
:return: Success of keyframe insertion.
|
|
834
|
+
:rtype: bool
|
|
835
|
+
"""
|
|
836
|
+
...
|
|
837
|
+
|
|
838
|
+
def keys(self):
|
|
839
|
+
"""Returns the keys of this objects custom properties (matches Python's
|
|
840
|
+
dictionary function of the same name).
|
|
841
|
+
|
|
842
|
+
:return: custom property keys.
|
|
843
|
+
"""
|
|
844
|
+
...
|
|
845
|
+
|
|
846
|
+
def path_from_id(self) -> str:
|
|
847
|
+
"""Returns the data path from the ID to this object (string).
|
|
848
|
+
|
|
849
|
+
:return: The path from `bpy.types.bpy_struct.id_data`
|
|
850
|
+
to this struct and property (when given).
|
|
851
|
+
:rtype: str
|
|
852
|
+
"""
|
|
853
|
+
...
|
|
854
|
+
|
|
855
|
+
def path_menu(
|
|
856
|
+
self,
|
|
857
|
+
searchpaths: list[str],
|
|
858
|
+
operator: str,
|
|
859
|
+
props_default: dict = None,
|
|
860
|
+
prop_filepath: str | None = "filepath",
|
|
861
|
+
filter_ext: collections.abc.Callable | None = None,
|
|
862
|
+
filter_path=None,
|
|
863
|
+
display_name: collections.abc.Callable | None = None,
|
|
864
|
+
add_operator=None,
|
|
865
|
+
add_operator_props=None,
|
|
866
|
+
):
|
|
867
|
+
"""Populate a menu from a list of paths.
|
|
868
|
+
|
|
869
|
+
:param searchpaths: Paths to scan.
|
|
870
|
+
:type searchpaths: list[str]
|
|
871
|
+
:param operator: The operator id to use with each file.
|
|
872
|
+
:type operator: str
|
|
873
|
+
:param props_default: Properties to assign to each operator.
|
|
874
|
+
:type props_default: dict
|
|
875
|
+
:param prop_filepath: Optional operator filepath property (defaults to "filepath").
|
|
876
|
+
:type prop_filepath: str | None
|
|
877
|
+
:param filter_ext: Optional callback that takes the file extensions.
|
|
878
|
+
|
|
879
|
+
Returning false excludes the file from the list.
|
|
880
|
+
:type filter_ext: collections.abc.Callable | None
|
|
881
|
+
:param filter_path:
|
|
882
|
+
:param display_name: Optional callback that takes the full path, returns the name to display.
|
|
883
|
+
:type display_name: collections.abc.Callable | None
|
|
884
|
+
:param add_operator:
|
|
885
|
+
:param add_operator_props:
|
|
886
|
+
"""
|
|
887
|
+
...
|
|
888
|
+
|
|
889
|
+
def path_resolve(self):
|
|
890
|
+
"""Returns the property from the path, raise an exception when not found."""
|
|
891
|
+
...
|
|
892
|
+
|
|
893
|
+
def pop(self):
|
|
894
|
+
"""Remove and return the value of the custom property assigned to key or default
|
|
895
|
+
when not found (matches Python's dictionary function of the same name).
|
|
896
|
+
|
|
897
|
+
"""
|
|
898
|
+
...
|
|
899
|
+
|
|
900
|
+
def prepend(self, draw_func):
|
|
901
|
+
"""Prepend a draw function to this menu, takes the same arguments as
|
|
902
|
+
the menus draw function
|
|
903
|
+
|
|
904
|
+
:param draw_func:
|
|
905
|
+
"""
|
|
906
|
+
...
|
|
907
|
+
|
|
908
|
+
def property_overridable_library_set(self) -> bool:
|
|
909
|
+
"""Define a property as overridable or not (only for custom properties!).
|
|
910
|
+
|
|
911
|
+
:return: True when the overridable status of the property was successfully set.
|
|
912
|
+
:rtype: bool
|
|
913
|
+
"""
|
|
914
|
+
...
|
|
915
|
+
|
|
916
|
+
def property_unset(self):
|
|
917
|
+
"""Unset a property, will use default value afterward."""
|
|
918
|
+
...
|
|
919
|
+
|
|
920
|
+
def remove(self, draw_func):
|
|
921
|
+
"""Remove a draw function that has been added to this menu
|
|
922
|
+
|
|
923
|
+
:param draw_func:
|
|
924
|
+
"""
|
|
925
|
+
...
|
|
926
|
+
|
|
927
|
+
def type_recast(self):
|
|
928
|
+
"""Return a new instance, this is needed because types
|
|
929
|
+
such as textures can be changed at runtime.
|
|
930
|
+
|
|
931
|
+
:return: a new instance of this object with the type initialized again.
|
|
932
|
+
"""
|
|
933
|
+
...
|
|
934
|
+
|
|
935
|
+
def values(self):
|
|
936
|
+
"""Returns the values of this objects custom properties (matches Python's
|
|
937
|
+
dictionary function of the same name).
|
|
938
|
+
|
|
939
|
+
:return: custom property values.
|
|
940
|
+
"""
|
|
941
|
+
...
|
|
942
|
+
|
|
673
943
|
class USERPREF_MT_interface_theme_presets(bpy_types.Menu, bpy_types._GenericUI):
|
|
674
944
|
bl_label: typing.Any
|
|
675
945
|
bl_rna: typing.Any
|
|
@@ -302,6 +302,7 @@ def gltf(
|
|
|
302
302
|
use_active_collection: bool | typing.Any | None = False,
|
|
303
303
|
use_active_scene: bool | typing.Any | None = False,
|
|
304
304
|
collection: str | typing.Any = "",
|
|
305
|
+
at_collection_center: bool | typing.Any | None = False,
|
|
305
306
|
export_extras: bool | typing.Any | None = False,
|
|
306
307
|
export_yup: bool | typing.Any | None = True,
|
|
307
308
|
export_apply: bool | typing.Any | None = False,
|
|
@@ -524,6 +525,8 @@ def gltf(
|
|
|
524
525
|
:type use_active_scene: bool | typing.Any | None
|
|
525
526
|
:param collection: Source Collection, Export only objects from this collection (and its children)
|
|
526
527
|
:type collection: str | typing.Any
|
|
528
|
+
:param at_collection_center: Export at Collection Center, Export at Collection center of mass of root objects of the collection
|
|
529
|
+
:type at_collection_center: bool | typing.Any | None
|
|
527
530
|
:param export_extras: Custom Properties, Export custom properties as glTF extras
|
|
528
531
|
:type export_extras: bool | typing.Any | None
|
|
529
532
|
:param export_yup: +Y Up, Export using glTF convention, +Y up
|
bpy/ops/extensions/__init__.pyi
CHANGED
|
@@ -57,6 +57,7 @@ def package_install(
|
|
|
57
57
|
pkg_id: str | typing.Any = "",
|
|
58
58
|
enable_on_install: bool | typing.Any | None = True,
|
|
59
59
|
url: str | typing.Any = "",
|
|
60
|
+
do_legacy_replace: bool | typing.Any | None = False,
|
|
60
61
|
):
|
|
61
62
|
"""Download and install the extension
|
|
62
63
|
|
|
@@ -73,6 +74,8 @@ def package_install(
|
|
|
73
74
|
:type enable_on_install: bool | typing.Any | None
|
|
74
75
|
:param url: URL
|
|
75
76
|
:type url: str | typing.Any
|
|
77
|
+
:param do_legacy_replace: Do Legacy Replace
|
|
78
|
+
:type do_legacy_replace: bool | typing.Any | None
|
|
76
79
|
"""
|
|
77
80
|
|
|
78
81
|
...
|
|
@@ -129,6 +129,8 @@ def gltf(
|
|
|
129
129
|
merge_vertices: bool | typing.Any | None = False,
|
|
130
130
|
import_shading: str | None = "NORMALS",
|
|
131
131
|
bone_heuristic: str | None = "BLENDER",
|
|
132
|
+
disable_bone_shape: bool | typing.Any | None = False,
|
|
133
|
+
bone_shape_scale_factor: typing.Any | None = 1.0,
|
|
132
134
|
guess_original_bind_pose: bool | typing.Any | None = True,
|
|
133
135
|
import_webp_texture: bool | typing.Any | None = False,
|
|
134
136
|
):
|
|
@@ -173,6 +175,10 @@ def gltf(
|
|
|
173
175
|
FORTUNE
|
|
174
176
|
Fortune (may look better, less accurate) -- Might look better than Temperance, but also might have errors. A bone with one child has its tip placed at its child's root. Non-uniform scalings may get messed up though, so beware.
|
|
175
177
|
:type bone_heuristic: str | None
|
|
178
|
+
:param disable_bone_shape: Disable Bone Shape, Do not create bone shapes
|
|
179
|
+
:type disable_bone_shape: bool | typing.Any | None
|
|
180
|
+
:param bone_shape_scale_factor: Bone Shape Scale, Scale factor for bone shapes
|
|
181
|
+
:type bone_shape_scale_factor: typing.Any | None
|
|
176
182
|
:param guess_original_bind_pose: Guess Original Bind Pose, Try to guess the original bind pose for skinned meshes from the inverse bind matrices. When off, use default/rest pose as bind pose
|
|
177
183
|
:type guess_original_bind_pose: bool | typing.Any | None
|
|
178
184
|
:param import_webp_texture: Import WebP textures, If a texture exists in WebP format, loads the WebP texture instead of the fallback PNG/JPEG one
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -5833,21 +5833,6 @@ def volume_import(
|
|
|
5833
5833
|
Thumbnails -- Display files as thumbnails.
|
|
5834
5834
|
:type display_type: str | None
|
|
5835
5835
|
:param sort_method: File sorting mode
|
|
5836
|
-
|
|
5837
|
-
DEFAULT
|
|
5838
|
-
Default -- Automatically determine sort method for files.
|
|
5839
|
-
|
|
5840
|
-
FILE_SORT_ALPHA
|
|
5841
|
-
Name -- Sort the file list alphabetically.
|
|
5842
|
-
|
|
5843
|
-
FILE_SORT_EXTENSION
|
|
5844
|
-
Extension -- Sort the file list by extension/type.
|
|
5845
|
-
|
|
5846
|
-
FILE_SORT_TIME
|
|
5847
|
-
Modified Date -- Sort files by modification time.
|
|
5848
|
-
|
|
5849
|
-
FILE_SORT_SIZE
|
|
5850
|
-
Size -- Sort files by size.
|
|
5851
5836
|
:type sort_method: str | None
|
|
5852
5837
|
:param use_sequence_detection: Detect Sequences, Automatically detect animated sequences in selected volume files (based on file names)
|
|
5853
5838
|
:type use_sequence_detection: bool | typing.Any | None
|
bpy/ops/preferences/__init__.pyi
CHANGED
|
@@ -418,34 +418,6 @@ def extension_repo_remove(
|
|
|
418
418
|
|
|
419
419
|
...
|
|
420
420
|
|
|
421
|
-
def extension_repo_sync(
|
|
422
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
423
|
-
execution_context: int | str | None = None,
|
|
424
|
-
undo: bool | None = None,
|
|
425
|
-
):
|
|
426
|
-
"""Refresh the list of extensions for the active repository
|
|
427
|
-
|
|
428
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
429
|
-
:type execution_context: int | str | None
|
|
430
|
-
:type undo: bool | None
|
|
431
|
-
"""
|
|
432
|
-
|
|
433
|
-
...
|
|
434
|
-
|
|
435
|
-
def extension_repo_upgrade(
|
|
436
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
437
|
-
execution_context: int | str | None = None,
|
|
438
|
-
undo: bool | None = None,
|
|
439
|
-
):
|
|
440
|
-
"""Upgrade all the extensions to their latest version for the active repository
|
|
441
|
-
|
|
442
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
443
|
-
:type execution_context: int | str | None
|
|
444
|
-
:type undo: bool | None
|
|
445
|
-
"""
|
|
446
|
-
|
|
447
|
-
...
|
|
448
|
-
|
|
449
421
|
def extension_url_drop(
|
|
450
422
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
451
423
|
execution_context: int | str | None = None,
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -5068,16 +5068,16 @@ def usd_export(
|
|
|
5068
5068
|
:type export_normals: bool | typing.Any | None
|
|
5069
5069
|
:param export_materials: Materials, Export viewport settings of materials as USD preview materials, and export material assignments as geometry subsets
|
|
5070
5070
|
:type export_materials: bool | typing.Any | None
|
|
5071
|
-
:param export_subdivision: Subdivision
|
|
5071
|
+
:param export_subdivision: Subdivision, Choose how subdivision modifiers will be mapped to the USD subdivision scheme during export
|
|
5072
5072
|
|
|
5073
5073
|
IGNORE
|
|
5074
|
-
Ignore --
|
|
5074
|
+
Ignore -- Scheme = None. Export base mesh without subdivision.
|
|
5075
5075
|
|
|
5076
5076
|
TESSELLATE
|
|
5077
|
-
Tessellate --
|
|
5077
|
+
Tessellate -- Scheme = None. Export subdivided mesh.
|
|
5078
5078
|
|
|
5079
5079
|
BEST_MATCH
|
|
5080
|
-
Best Match --
|
|
5080
|
+
Best Match -- Scheme = Catmull-Clark, when possible. Reverts to exporting the subdivided mesh for the Simple subdivision type.
|
|
5081
5081
|
:type export_subdivision: str | None
|
|
5082
5082
|
:param export_armatures: Armatures, Export armatures and meshes with armature modifiers as USD skeletons and skinned meshes
|
|
5083
5083
|
:type export_armatures: bool | typing.Any | None
|
|
@@ -5099,7 +5099,7 @@ def usd_export(
|
|
|
5099
5099
|
:type generate_preview_surface: bool | typing.Any | None
|
|
5100
5100
|
:param generate_materialx_network: MaterialX Network, Generate a MaterialX network representation of the materials
|
|
5101
5101
|
:type generate_materialx_network: bool | typing.Any | None
|
|
5102
|
-
:param convert_orientation: Convert Orientation,
|
|
5102
|
+
:param convert_orientation: Convert Orientation, Convert orientation axis to a different convention to match other applications
|
|
5103
5103
|
:type convert_orientation: bool | typing.Any | None
|
|
5104
5104
|
:param export_global_forward_selection: Forward Axis
|
|
5105
5105
|
|
|
@@ -5261,7 +5261,7 @@ def usd_import(
|
|
|
5261
5261
|
read_mesh_attributes: bool | typing.Any | None = True,
|
|
5262
5262
|
prim_path_mask: str | typing.Any = "",
|
|
5263
5263
|
import_guide: bool | typing.Any | None = False,
|
|
5264
|
-
import_proxy: bool | typing.Any | None =
|
|
5264
|
+
import_proxy: bool | typing.Any | None = False,
|
|
5265
5265
|
import_render: bool | typing.Any | None = True,
|
|
5266
5266
|
import_all_materials: bool | typing.Any | None = False,
|
|
5267
5267
|
import_usd_preview: bool | typing.Any | None = True,
|
|
@@ -5356,11 +5356,11 @@ def usd_import(
|
|
|
5356
5356
|
:type import_meshes: bool | typing.Any | None
|
|
5357
5357
|
:param import_volumes: Volumes
|
|
5358
5358
|
:type import_volumes: bool | typing.Any | None
|
|
5359
|
-
:param import_shapes: Shapes
|
|
5359
|
+
:param import_shapes: USD Shapes
|
|
5360
5360
|
:type import_shapes: bool | typing.Any | None
|
|
5361
|
-
:param import_skeletons:
|
|
5361
|
+
:param import_skeletons: Armatures
|
|
5362
5362
|
:type import_skeletons: bool | typing.Any | None
|
|
5363
|
-
:param import_blendshapes:
|
|
5363
|
+
:param import_blendshapes: Shape Keys
|
|
5364
5364
|
:type import_blendshapes: bool | typing.Any | None
|
|
5365
5365
|
:param import_points: Point Clouds
|
|
5366
5366
|
:type import_points: bool | typing.Any | None
|
|
@@ -5438,7 +5438,7 @@ def usd_import(
|
|
|
5438
5438
|
:type validate_meshes: bool | typing.Any | None
|
|
5439
5439
|
:param create_world_material: Create World Material, Convert the first discovered USD dome light to a world background shader
|
|
5440
5440
|
:type create_world_material: bool | typing.Any | None
|
|
5441
|
-
:param import_defined_only: Import only defined USD primitives
|
|
5441
|
+
:param import_defined_only: Defined Primitives Only, Import only defined USD primitives. When disabled this allows importing USD primitives which are not defined, such as those with an override specifier
|
|
5442
5442
|
:type import_defined_only: bool | typing.Any | None
|
|
5443
5443
|
"""
|
|
5444
5444
|
|
bpy/types/__init__.pyi
CHANGED
|
@@ -59617,6 +59617,49 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
59617
59617
|
:columns: 2
|
|
59618
59618
|
|
|
59619
59619
|
|
|
59620
|
+
--------------------
|
|
59621
|
+
|
|
59622
|
+
* bpy_struct.id_data
|
|
59623
|
+
* FileHandler.bl_idname
|
|
59624
|
+
* FileHandler.bl_import_operator
|
|
59625
|
+
* FileHandler.bl_export_operator
|
|
59626
|
+
* FileHandler.bl_label
|
|
59627
|
+
* FileHandler.bl_file_extensions
|
|
59628
|
+
|
|
59629
|
+
:columns: 2
|
|
59630
|
+
|
|
59631
|
+
|
|
59632
|
+
--------------------
|
|
59633
|
+
|
|
59634
|
+
* bpy_struct.as_pointer
|
|
59635
|
+
* bpy_struct.driver_add
|
|
59636
|
+
* bpy_struct.driver_remove
|
|
59637
|
+
* bpy_struct.get
|
|
59638
|
+
* bpy_struct.id_properties_clear
|
|
59639
|
+
* bpy_struct.id_properties_ensure
|
|
59640
|
+
* bpy_struct.id_properties_ui
|
|
59641
|
+
* bpy_struct.is_property_hidden
|
|
59642
|
+
* bpy_struct.is_property_overridable_library
|
|
59643
|
+
* bpy_struct.is_property_readonly
|
|
59644
|
+
* bpy_struct.is_property_set
|
|
59645
|
+
* bpy_struct.items
|
|
59646
|
+
* bpy_struct.keyframe_delete
|
|
59647
|
+
* bpy_struct.keyframe_insert
|
|
59648
|
+
* bpy_struct.keys
|
|
59649
|
+
* bpy_struct.path_from_id
|
|
59650
|
+
* bpy_struct.path_resolve
|
|
59651
|
+
* bpy_struct.pop
|
|
59652
|
+
* bpy_struct.property_overridable_library_set
|
|
59653
|
+
* bpy_struct.property_unset
|
|
59654
|
+
* bpy_struct.type_recast
|
|
59655
|
+
* bpy_struct.values
|
|
59656
|
+
* FileHandler.poll_drop
|
|
59657
|
+
* FileHandler.bl_rna_get_subclass
|
|
59658
|
+
* FileHandler.bl_rna_get_subclass_py
|
|
59659
|
+
|
|
59660
|
+
:columns: 2
|
|
59661
|
+
|
|
59662
|
+
|
|
59620
59663
|
--------------------
|
|
59621
59664
|
|
|
59622
59665
|
* bpy_struct.id_data
|
|
@@ -151313,6 +151356,12 @@ class UserExtensionRepo(bpy_struct):
|
|
|
151313
151356
|
:type: str
|
|
151314
151357
|
"""
|
|
151315
151358
|
|
|
151359
|
+
source: str
|
|
151360
|
+
""" Select if the repository is in a user managed or system provided directory
|
|
151361
|
+
|
|
151362
|
+
:type: str
|
|
151363
|
+
"""
|
|
151364
|
+
|
|
151316
151365
|
use_access_token: bool
|
|
151317
151366
|
""" Repository requires an access token
|
|
151318
151367
|
|
|
@@ -159422,6 +159471,31 @@ class VIEW3D_FH_empty_image(FileHandler, bpy_struct):
|
|
|
159422
159471
|
"""
|
|
159423
159472
|
...
|
|
159424
159473
|
|
|
159474
|
+
class VIEW3D_FH_vdb_volume(FileHandler, bpy_struct):
|
|
159475
|
+
@classmethod
|
|
159476
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
159477
|
+
"""
|
|
159478
|
+
|
|
159479
|
+
:param id: The RNA type identifier.
|
|
159480
|
+
:type id: str | None
|
|
159481
|
+
:param default:
|
|
159482
|
+
:return: The RNA type or default when not found.
|
|
159483
|
+
:rtype: Struct
|
|
159484
|
+
"""
|
|
159485
|
+
...
|
|
159486
|
+
|
|
159487
|
+
@classmethod
|
|
159488
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
159489
|
+
"""
|
|
159490
|
+
|
|
159491
|
+
:param id: The RNA type identifier.
|
|
159492
|
+
:type id: str | None
|
|
159493
|
+
:param default:
|
|
159494
|
+
:return: The class or default when not found.
|
|
159495
|
+
:rtype: typing.Any
|
|
159496
|
+
"""
|
|
159497
|
+
...
|
|
159498
|
+
|
|
159425
159499
|
class FileAssetSelectParams(FileSelectParams, bpy_struct):
|
|
159426
159500
|
"""Settings for the file selection in Asset Browser mode"""
|
|
159427
159501
|
|
|
@@ -228264,25 +228338,25 @@ class ShaderNodeTexBrick(ShaderNode, NodeInternal, Node, bpy_struct):
|
|
|
228264
228338
|
"""
|
|
228265
228339
|
|
|
228266
228340
|
offset: float
|
|
228267
|
-
"""
|
|
228341
|
+
""" Determines the brick offset of the various rows
|
|
228268
228342
|
|
|
228269
228343
|
:type: float
|
|
228270
228344
|
"""
|
|
228271
228345
|
|
|
228272
228346
|
offset_frequency: int
|
|
228273
|
-
"""
|
|
228347
|
+
""" How often rows are offset. A value of 2 gives an even/uneven pattern of rows
|
|
228274
228348
|
|
|
228275
228349
|
:type: int
|
|
228276
228350
|
"""
|
|
228277
228351
|
|
|
228278
228352
|
squash: float
|
|
228279
|
-
"""
|
|
228353
|
+
""" Factor to adjust the brick’s width for particular rows determined by the Offset Frequency
|
|
228280
228354
|
|
|
228281
228355
|
:type: float
|
|
228282
228356
|
"""
|
|
228283
228357
|
|
|
228284
228358
|
squash_frequency: int
|
|
228285
|
-
"""
|
|
228359
|
+
""" How often rows consist of “squished” bricks
|
|
228286
228360
|
|
|
228287
228361
|
:type: int
|
|
228288
228362
|
"""
|
|
@@ -229159,7 +229233,10 @@ class ShaderNodeTexSky(ShaderNode, NodeInternal, Node, bpy_struct):
|
|
|
229159
229233
|
"""Generate a procedural sky texture"""
|
|
229160
229234
|
|
|
229161
229235
|
air_density: float
|
|
229162
|
-
""" Density of air molecules
|
|
229236
|
+
""" Density of air molecules.
|
|
229237
|
+
• 0 - No air.
|
|
229238
|
+
• 1 - Clear day atmosphere.
|
|
229239
|
+
• 2 - Highly polluted day
|
|
229163
229240
|
|
|
229164
229241
|
:type: float
|
|
229165
229242
|
"""
|
|
@@ -229177,7 +229254,11 @@ class ShaderNodeTexSky(ShaderNode, NodeInternal, Node, bpy_struct):
|
|
|
229177
229254
|
"""
|
|
229178
229255
|
|
|
229179
229256
|
dust_density: float
|
|
229180
|
-
""" Density of dust molecules and water droplets
|
|
229257
|
+
""" Density of dust molecules and water droplets.
|
|
229258
|
+
• 0 - No dust.
|
|
229259
|
+
• 1 - Clear day atmosphere.
|
|
229260
|
+
• 5 - City like atmosphere.
|
|
229261
|
+
• 10 - Hazy day
|
|
229181
229262
|
|
|
229182
229263
|
:type: float
|
|
229183
229264
|
"""
|
|
@@ -229189,7 +229270,10 @@ class ShaderNodeTexSky(ShaderNode, NodeInternal, Node, bpy_struct):
|
|
|
229189
229270
|
"""
|
|
229190
229271
|
|
|
229191
229272
|
ozone_density: float
|
|
229192
|
-
""" Density of ozone layer
|
|
229273
|
+
""" Density of ozone layer.
|
|
229274
|
+
• 0 - No ozone.
|
|
229275
|
+
• 1 - Clear day atmosphere.
|
|
229276
|
+
• 2 - City like atmosphere
|
|
229193
229277
|
|
|
229194
229278
|
:type: float
|
|
229195
229279
|
"""
|
|
@@ -230625,7 +230709,7 @@ class TextureNodeAt(TextureNode, NodeInternal, Node, bpy_struct):
|
|
|
230625
230709
|
|
|
230626
230710
|
class TextureNodeBricks(TextureNode, NodeInternal, Node, bpy_struct):
|
|
230627
230711
|
offset: float
|
|
230628
|
-
"""
|
|
230712
|
+
""" Determines the brick offset of the various rows
|
|
230629
230713
|
|
|
230630
230714
|
:type: float
|
|
230631
230715
|
"""
|
|
@@ -230637,7 +230721,7 @@ class TextureNodeBricks(TextureNode, NodeInternal, Node, bpy_struct):
|
|
|
230637
230721
|
"""
|
|
230638
230722
|
|
|
230639
230723
|
squash: float
|
|
230640
|
-
"""
|
|
230724
|
+
""" Factor to adjust the brick’s width for particular rows determined by the Offset Frequency
|
|
230641
230725
|
|
|
230642
230726
|
:type: float
|
|
230643
230727
|
"""
|
|
@@ -235107,6 +235191,8 @@ USERPREF_HT_header: bl_ui.space_userpref.USERPREF_HT_header
|
|
|
235107
235191
|
|
|
235108
235192
|
USERPREF_MT_editor_menus: bl_ui.space_userpref.USERPREF_MT_editor_menus
|
|
235109
235193
|
|
|
235194
|
+
USERPREF_MT_extensions_active_repo: bl_ui.space_userpref.USERPREF_MT_extensions_active_repo
|
|
235195
|
+
|
|
235110
235196
|
USERPREF_MT_interface_theme_presets: bl_ui.space_userpref.USERPREF_MT_interface_theme_presets
|
|
235111
235197
|
|
|
235112
235198
|
USERPREF_MT_keyconfigs: bl_ui.space_userpref.USERPREF_MT_keyconfigs
|
|
@@ -235285,6 +235371,8 @@ VIEW3D_FH_camera_background_image: bl_operators.view3d.VIEW3D_FH_camera_backgrou
|
|
|
235285
235371
|
|
|
235286
235372
|
VIEW3D_FH_empty_image: bl_operators.view3d.VIEW3D_FH_empty_image
|
|
235287
235373
|
|
|
235374
|
+
VIEW3D_FH_vdb_volume: bl_operators.view3d.VIEW3D_FH_vdb_volume
|
|
235375
|
+
|
|
235288
235376
|
VIEW3D_HT_header: bl_ui.space_view3d.VIEW3D_HT_header
|
|
235289
235377
|
|
|
235290
235378
|
VIEW3D_HT_tool_header: bl_ui.space_view3d.VIEW3D_HT_tool_header
|
bpy/utils/__init__.pyi
CHANGED
|
@@ -428,7 +428,8 @@ def script_paths(
|
|
|
428
428
|
subdir: str | None = None,
|
|
429
429
|
user_pref: bool | None = True,
|
|
430
430
|
check_all: bool | None = False,
|
|
431
|
-
use_user=True,
|
|
431
|
+
use_user: bool | None = True,
|
|
432
|
+
use_system_environment: bool | None = True,
|
|
432
433
|
) -> list:
|
|
433
434
|
"""Returns a list of valid script paths.
|
|
434
435
|
|
|
@@ -438,6 +439,10 @@ def script_paths(
|
|
|
438
439
|
:type user_pref: bool | None
|
|
439
440
|
:param check_all: Include local, user and system paths rather just the paths Blender uses.
|
|
440
441
|
:type check_all: bool | None
|
|
442
|
+
:param use_user: Include user paths
|
|
443
|
+
:type use_user: bool | None
|
|
444
|
+
:param use_system_environment: Include BLENDER_SYSTEM_SCRIPTS variable path
|
|
445
|
+
:type use_system_environment: bool | None
|
|
441
446
|
:return: script paths.
|
|
442
447
|
:rtype: list
|
|
443
448
|
"""
|
|
@@ -448,7 +453,8 @@ def script_paths(
|
|
|
448
453
|
subdir: str | None = None,
|
|
449
454
|
user_pref: bool | None = True,
|
|
450
455
|
check_all: bool | None = False,
|
|
451
|
-
use_user=True,
|
|
456
|
+
use_user: bool | None = True,
|
|
457
|
+
use_system_environment: bool | None = True,
|
|
452
458
|
) -> list:
|
|
453
459
|
"""Returns a list of valid script paths.
|
|
454
460
|
|
|
@@ -458,6 +464,10 @@ def script_paths(
|
|
|
458
464
|
:type user_pref: bool | None
|
|
459
465
|
:param check_all: Include local, user and system paths rather just the paths Blender uses.
|
|
460
466
|
:type check_all: bool | None
|
|
467
|
+
:param use_user: Include user paths
|
|
468
|
+
:type use_user: bool | None
|
|
469
|
+
:param use_system_environment: Include BLENDER_SYSTEM_SCRIPTS variable path
|
|
470
|
+
:type use_system_environment: bool | None
|
|
461
471
|
:return: script paths.
|
|
462
472
|
:rtype: list
|
|
463
473
|
"""
|
|
@@ -469,6 +479,11 @@ def script_paths_pref():
|
|
|
469
479
|
|
|
470
480
|
...
|
|
471
481
|
|
|
482
|
+
def script_paths_system_environment():
|
|
483
|
+
"""Returns a list of system script directories from environment variables."""
|
|
484
|
+
|
|
485
|
+
...
|
|
486
|
+
|
|
472
487
|
def smpte_from_frame(frame: int | None, *, fps=None, fps_base=None) -> str:
|
|
473
488
|
"""Returns an SMPTE formatted string from the frame:
|
|
474
489
|
HH:MM:SS:FF.If fps and fps_base are not given the current scene is used.
|
|
@@ -47,7 +47,7 @@ bl_operators/assets/__init__.pyi,sha256=ql1eAG5OtyF1S4eGuLjQMWxU99CfQ9B7VzKCyI4U
|
|
|
47
47
|
bl_operators/bmesh/__init__.pyi,sha256=2EtNC6kriMbmDARx9e47SJYRtpWHYr8kJoZ5mNjHofo,158
|
|
48
48
|
bl_operators/bmesh/find_adjacent/__init__.pyi,sha256=nWMlEexaU1j7FWa1gYOT_BOfjINguOSMXCJY845wauE,676
|
|
49
49
|
bl_operators/clip/__init__.pyi,sha256=2MwAsR72w94s170tNb4GuLjTx_j8DOJwDzZaQHlBEhk,56184
|
|
50
|
-
bl_operators/connect_to_output/__init__.pyi,sha256=
|
|
50
|
+
bl_operators/connect_to_output/__init__.pyi,sha256=9GiaIHXQgCsoK3EmNE1YZw0uDriWLlkRClLpKZH90p0,8395
|
|
51
51
|
bl_operators/console/__init__.pyi,sha256=j2Iz8qcHeFaRH5yN_jA1eUmyTn3OROkP4HoJby_g_d0,27785
|
|
52
52
|
bl_operators/constraint/__init__.pyi,sha256=q0eGuJsyFw16zeZUhbbuKQmxHrWe9wWbNyELpSk3YeE,22502
|
|
53
53
|
bl_operators/file/__init__.pyi,sha256=lCHSSwRdxWJS-E9RPpjokRNQJ4CVNwiN07GmQjDhOvo,16968
|
|
@@ -58,7 +58,7 @@ bl_operators/image_as_planes/__init__.pyi,sha256=4Qw3Q8AlkyjYDAT_yuNhQxO5KfHVlH2
|
|
|
58
58
|
bl_operators/mesh/__init__.pyi,sha256=JPC60NQkcETdg11bbEpq6pO8D_y4MLGYlqHa9bIwvW0,16903
|
|
59
59
|
bl_operators/node/__init__.pyi,sha256=05DJVtgVxGs1svvRDsDUB9sd899c3iwXSu1BpFP2BOk,57860
|
|
60
60
|
bl_operators/node_editor/__init__.pyi,sha256=FV9O2LQHgb2aBgUVqgqI1BmdO9lkOCAE7Qrz9ZwBjp4,159
|
|
61
|
-
bl_operators/node_editor/node_functions/__init__.pyi,sha256=
|
|
61
|
+
bl_operators/node_editor/node_functions/__init__.pyi,sha256=O6mCApd530rb3btjLtzuVmowllJjIpbzVEAqOUdRvZs,591
|
|
62
62
|
bl_operators/object/__init__.pyi,sha256=Xq_PjOU1nNU1TrdsPqe8MBhgH4WFK5_R9yu3xImHB_Q,83651
|
|
63
63
|
bl_operators/object_align/__init__.pyi,sha256=mGCC8VYB2LPvD9IFDV7TaXUSc-mJ-ZhIaSXqNxmSewA,5879
|
|
64
64
|
bl_operators/object_quick_effects/__init__.pyi,sha256=z2ZCxFrAIElInCuV-e_4Nfgg7KTYnrf851YzjuVsWw0,22612
|
|
@@ -73,7 +73,7 @@ bl_operators/uvcalc_follow_active/__init__.pyi,sha256=5wljjUofULbcGLAxu1SPo3VHMU
|
|
|
73
73
|
bl_operators/uvcalc_lightmap/__init__.pyi,sha256=S4Qd8hIuR4QphYKkqWNzer-XlR6RZFsPQgzTeQ_Kvgc,6808
|
|
74
74
|
bl_operators/uvcalc_transform/__init__.pyi,sha256=CbwgnUkyq48X8OGU6qsrzAWAw9Il0qGAl6HHN8e4Oyo,13387
|
|
75
75
|
bl_operators/vertexpaint_dirt/__init__.pyi,sha256=E0sI_J6oIOG7jWfLApMwVsqr7Tu3QW84-7cjVCV2ib8,5852
|
|
76
|
-
bl_operators/view3d/__init__.pyi,sha256=
|
|
76
|
+
bl_operators/view3d/__init__.pyi,sha256=MZLCOkPPQikjNGKQhrGELaWg2Og1zAOQoRkqCOCw8tE,43917
|
|
77
77
|
bl_operators/wm/__init__.pyi,sha256=OyYPf6PGaHVsH28t1SQIY_BEOi3exDnU_oNjV-jHPew,257198
|
|
78
78
|
bl_operators/world/__init__.pyi,sha256=ja4FkQmlqUj7blB1eB3vDaa1a5d2dwCEQhhT0fVAWVE,5809
|
|
79
79
|
bl_previews_utils/__init__.pyi,sha256=QCEV9HiZ_Nv-soA5ReC2_W1ogkROXmlTPuek5nQli4U,163
|
|
@@ -159,7 +159,7 @@ bl_ui/space_time/__init__.pyi,sha256=iVKxpW960HHo304p_yNhcwNKaV-zjyVmfV6rFhO1lDU
|
|
|
159
159
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=4_lkUFwBtoZqh7hLHCnB3TTrNuUs0eNqG-P-5T1I1sY,5534
|
|
160
160
|
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=WmiZn4V262GOyTMfq7YAvHdUMu6jjfrQIrsZ20dGhDY,20867
|
|
161
161
|
bl_ui/space_topbar/__init__.pyi,sha256=5O2KeKSREgivzrKuXs1WRgHOpO7d58fvUfbW4ojuNN8,183460
|
|
162
|
-
bl_ui/space_userpref/__init__.pyi,sha256=
|
|
162
|
+
bl_ui/space_userpref/__init__.pyi,sha256=eeCLM6VfnjDk7qqJjydfBPgMY7YMY_YLfwnOWwc44qw,546391
|
|
163
163
|
bl_ui/space_view3d/__init__.pyi,sha256=Bcb1Y1Lab6fJeXc-OCE8KVxdvtV1uX4JKRXDFXzaJYw,1911638
|
|
164
164
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=OojxA1PFe3Ib828MbaQsIbn8OugDytc10bpbR0VJzIg,622883
|
|
165
165
|
bl_ui/temp_anim_layers/__init__.pyi,sha256=K2L2joXW9oCrHKbEX5ZsLUa3zABZ3NJ32YfJO_uwKSY,5947
|
|
@@ -207,8 +207,8 @@ bpy/ops/cycles/__init__.pyi,sha256=w6l4MI2YonbEpb5BkUsj4y9k0eJS71rMfkHKh5s-lYY,2
|
|
|
207
207
|
bpy/ops/dpaint/__init__.pyi,sha256=p2GNDiQaiN6ti8NDWiHfw_DEBoOegGy9HlMcPF-iWU4,2314
|
|
208
208
|
bpy/ops/ed/__init__.pyi,sha256=Kp9GQKYCiu0Omo2lss75ZpUOPb3-LX570t5TJsd6bUI,9462
|
|
209
209
|
bpy/ops/export_anim/__init__.pyi,sha256=3XjL-aY3D37MQCAkSVlHL0gYNK0_JDiMdBU4BR7vh6o,2292
|
|
210
|
-
bpy/ops/export_scene/__init__.pyi,sha256=
|
|
211
|
-
bpy/ops/extensions/__init__.pyi,sha256=
|
|
210
|
+
bpy/ops/export_scene/__init__.pyi,sha256=HNiXZiVt0s-vLCIBjCciZ4C2EQ5_4sncF0UxOKLnK5w,40180
|
|
211
|
+
bpy/ops/extensions/__init__.pyi,sha256=wCOXnfiaMbd5gzx3_HQO3Tgm9dL9LUSDzycgoeWZa9k,16002
|
|
212
212
|
bpy/ops/file/__init__.pyi,sha256=tt5ndw1Pks3hgy86NBSvKrxWX15StN29wjCk7Kn3o-s,25833
|
|
213
213
|
bpy/ops/fluid/__init__.pyi,sha256=BlftRcURUvMv94-FhEOTOrmRS5w2sz6-GoyEaBp41H4,5788
|
|
214
214
|
bpy/ops/font/__init__.pyi,sha256=pZOadqQH-I2tQqEZLPD2oMOREynvAFtb-M3rLJkGr3c,18752
|
|
@@ -220,7 +220,7 @@ bpy/ops/grease_pencil/__init__.pyi,sha256=QGluB0Xa1Mf5gqKNf2rWs4ccJRVwTyppnG0X7l
|
|
|
220
220
|
bpy/ops/image/__init__.pyi,sha256=ZZsr3kM5O0FwWIlc_z0imE-1tmoYRsCvXDwvdVe2f70,62560
|
|
221
221
|
bpy/ops/import_anim/__init__.pyi,sha256=7mM5oQrn97txefqTHnT4L89ySHfZ2Ic8Sgy2xfChrV8,3077
|
|
222
222
|
bpy/ops/import_curve/__init__.pyi,sha256=zEW4XZeySdCypFeX7yOtRDbfyblTYthZ8nAf0uLiWkw,780
|
|
223
|
-
bpy/ops/import_scene/__init__.pyi,sha256=
|
|
223
|
+
bpy/ops/import_scene/__init__.pyi,sha256=x8mHIJfgVWfDLM-TgM7v1WEdYzIugt_OSCyeNXTkMvU,10144
|
|
224
224
|
bpy/ops/info/__init__.pyi,sha256=ODSMajt868vLy_U9AxSWy4PPODCnibmnmQg20czLbX0,4312
|
|
225
225
|
bpy/ops/lattice/__init__.pyi,sha256=jCyToIf_fTg3vv6nlrbfb1d1Bxi4TXXS7LjfZ4cSQXw,4753
|
|
226
226
|
bpy/ops/marker/__init__.pyi,sha256=bZwovTJC2UF2r6N1bM8pCl0fZeoJS10N9bqNhaW4XKg,7369
|
|
@@ -230,7 +230,7 @@ bpy/ops/mball/__init__.pyi,sha256=Grv6jeWqDX0M5fJfc118xS3n0KGFP27UeuZHK0RfGMk,53
|
|
|
230
230
|
bpy/ops/mesh/__init__.pyi,sha256=4ANZF7__zfKp9xETMKoraDxisGAxM-9TL8JJ-U1X53E,152717
|
|
231
231
|
bpy/ops/nla/__init__.pyi,sha256=fuqWkOfhF48-3_5rjAcoO5Y8vTrmb0qlk0PyAeQtVLU,24830
|
|
232
232
|
bpy/ops/node/__init__.pyi,sha256=GE2C5WzQ87-KaQNNsjQK8IGNf7R5Ju95wCw56k-M5Rk,65067
|
|
233
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
233
|
+
bpy/ops/object/__init__.pyi,sha256=j5uap6dRMgQhSKYETlCvkm6EvleXkfIQwZ6wjsRMYNQ,202948
|
|
234
234
|
bpy/ops/outliner/__init__.pyi,sha256=ETM-rcMeT1jf4y3Z7bFnrjfKMRYC208_2pMKvHyjza4,38083
|
|
235
235
|
bpy/ops/paint/__init__.pyi,sha256=Vgc93NVldAvshYa3tSAwLvTj7hSupQfEvU8UFOcUtaU,44986
|
|
236
236
|
bpy/ops/paintcurve/__init__.pyi,sha256=SX6yrvs3Yq5Vt4G3mXkCUu5QakKhdSsY1d9YCEAHmbA,4429
|
|
@@ -238,7 +238,7 @@ bpy/ops/palette/__init__.pyi,sha256=zrlQ_TwCGcjhmUURNUnrAuUIrWRgjTp2KrH07fbDUOM,
|
|
|
238
238
|
bpy/ops/particle/__init__.pyi,sha256=PtnBT6e4qfdqnj_gA9G-cl8qbMYKZeHZq7s1uvqYNPM,19311
|
|
239
239
|
bpy/ops/pose/__init__.pyi,sha256=RearLc25fHLPPwFXFVGZp6g7aP_IXYeVnSqfgUbJm5M,28487
|
|
240
240
|
bpy/ops/poselib/__init__.pyi,sha256=IWHKl49NXRnloN29rNVvzImj_Ufgc69yIOXQIiR4i_U,5601
|
|
241
|
-
bpy/ops/preferences/__init__.pyi,sha256=
|
|
241
|
+
bpy/ops/preferences/__init__.pyi,sha256=ZbGZH4AbTyaJ9HA3guxbykmvrbINIExZV5mBivmj5t0,26890
|
|
242
242
|
bpy/ops/ptcache/__init__.pyi,sha256=djd55uF9NiWnihyU2hQ83D7NplLxQXk4zgU_US8u-LE,2994
|
|
243
243
|
bpy/ops/render/__init__.pyi,sha256=6yd6n_PozuV-bhR9xmDwt2zwE5VqSiKD-aR21EmX508,9453
|
|
244
244
|
bpy/ops/rigidbody/__init__.pyi,sha256=rjEuh-VB4nFizamRINoUcD0f3yQQSGUsyhtLaHHH8F4,8151
|
|
@@ -260,13 +260,13 @@ bpy/ops/uilist/__init__.pyi,sha256=hUBe9g9ff9d1Bx8AryLK--DQum_31-V1mQZ868s4_7o,2
|
|
|
260
260
|
bpy/ops/uv/__init__.pyi,sha256=iTUnKdws1aFsHX2nGRyplZvNCpytKgcThsOJ84vIo54,49976
|
|
261
261
|
bpy/ops/view2d/__init__.pyi,sha256=LWQQFhFsNhXaVT0w0m47rD_T3cP9LThrpBxAFWFIa1U,9859
|
|
262
262
|
bpy/ops/view3d/__init__.pyi,sha256=GYOPq7hR_5A2iSk_7cW4DpoJbOR3lVpU3V_bIh0XpXs,41423
|
|
263
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
263
|
+
bpy/ops/wm/__init__.pyi,sha256=NFtKpbKc-S6LtRG0RpsdFhIPdNMAmaQMPNvShYfEDUQ,236195
|
|
264
264
|
bpy/ops/workspace/__init__.pyi,sha256=5meuBP_QWCDCkoE2vQqdgBnkeRVsdoOvgqsDqZ1pfzE,3316
|
|
265
265
|
bpy/ops/world/__init__.pyi,sha256=imGbkOZ4Z_mNMwg2TwfpPf1DeGiige4UE-vc9991_tk,1032
|
|
266
266
|
bpy/path/__init__.pyi,sha256=_sJAmwZHhmcIXbchob_87KT_Nyv6R_qrX76gy9IbDRk,11515
|
|
267
267
|
bpy/props/__init__.pyi,sha256=zu1VsqE0gJ6OoBI_ZkYIW_WodAZ2H-0CuESfQDDhFkM,29002
|
|
268
|
-
bpy/types/__init__.pyi,sha256=
|
|
269
|
-
bpy/utils/__init__.pyi,sha256=
|
|
268
|
+
bpy/types/__init__.pyi,sha256=8RHRSaiD7unGP_QzO-Y-rqzH1rySGesg5zfZzHabkIg,5204122
|
|
269
|
+
bpy/utils/__init__.pyi,sha256=j40qxVYp__ZU4OCAG7Vmw9IlI6Tj1yIm3SduACnsu4k,18625
|
|
270
270
|
bpy/utils/previews/__init__.pyi,sha256=odPazdv-bjKEVpeX-KfaDGZe5rKlMT11zL_q1SgPK3U,4255
|
|
271
271
|
bpy/utils/units/__init__.pyi,sha256=Mf5e9M8OwkE2zC-rs5CVV7NfobaI7LQkU0v7u-z9xwI,2655
|
|
272
272
|
bpy_extras/__init__.pyi,sha256=mSQGV3OnBDLrI9Bur-VUrKNXrE7dQbDDnQwb40kdi5I,862
|
|
@@ -351,7 +351,7 @@ rna_xml/__init__.pyi,sha256=0qo0Lc6fTAAUSnHNIy0caLHVgK6-hk1havURr61jizM,601
|
|
|
351
351
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
352
352
|
sys_info/__init__.pyi,sha256=9MR_HOycufd8IKZQf-QDqUqE8Aj1D8n_Pfvi9wEKtvo,164
|
|
353
353
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
354
|
-
fake_bpy_module-
|
|
355
|
-
fake_bpy_module-
|
|
356
|
-
fake_bpy_module-
|
|
357
|
-
fake_bpy_module-
|
|
354
|
+
fake_bpy_module-20240608.dist-info/METADATA,sha256=F1aoSmYAgNByMlO1513ANRPP9O7caxQhW9ycNjM7MUU,7315
|
|
355
|
+
fake_bpy_module-20240608.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
356
|
+
fake_bpy_module-20240608.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
357
|
+
fake_bpy_module-20240608.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|