fake-bge-module 20250220__py3-none-any.whl → 20250222__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.
- bpy/app/__init__.pyi +1 -1
- bpy/ops/object/__init__.pyi +7 -3
- bpy/ops/wm/__init__.pyi +0 -391
- bpy/types/__init__.pyi +6 -0
- {fake_bge_module-20250220.dist-info → fake_bge_module-20250222.dist-info}/METADATA +1 -1
- {fake_bge_module-20250220.dist-info → fake_bge_module-20250222.dist-info}/RECORD +9 -9
- freestyle/utils/__init__.pyi +1 -1
- {fake_bge_module-20250220.dist-info → fake_bge_module-20250222.dist-info}/WHEEL +0 -0
- {fake_bge_module-20250220.dist-info → fake_bge_module-20250222.dist-info}/top_level.txt +0 -0
bpy/app/__init__.pyi
CHANGED
|
@@ -97,7 +97,7 @@ build_linkflags: typing.Any
|
|
|
97
97
|
"""
|
|
98
98
|
|
|
99
99
|
build_options: typing.Any
|
|
100
|
-
""" Constant value bpy.app.build_options(bullet=True, codec_avi=False, codec_ffmpeg=True, codec_sndfile=True, compositor_cpu=True, cycles=True, cycles_osl=True, freestyle=True, gameengine=True, image_cineon=True, image_dds=True, image_hdr=True, image_openexr=True, image_openjpeg=True, image_tiff=True, input_ndof=True, audaspace=True, international=True, openal=True, opensubdiv=True, sdl=True, coreaudio=False, jack=False, pulseaudio=False, wasapi=False, libmv=True, mod_oceansim=True, mod_remesh=True, player=
|
|
100
|
+
""" Constant value bpy.app.build_options(bullet=True, codec_avi=False, codec_ffmpeg=True, codec_sndfile=True, compositor_cpu=True, cycles=True, cycles_osl=True, freestyle=True, gameengine=True, image_cineon=True, image_dds=True, image_hdr=True, image_openexr=True, image_openjpeg=True, image_tiff=True, input_ndof=True, audaspace=True, international=True, openal=True, opensubdiv=True, sdl=True, coreaudio=False, jack=False, pulseaudio=False, wasapi=False, libmv=True, mod_oceansim=True, mod_remesh=True, player=False, collada=True, io_wavefront_obj=True, io_ply=True, io_stl=True, io_gpencil=True, opencolorio=True, openmp=True, openvdb=True, alembic=True, usd=True, fluid=True, xr_openxr=True, potrace=True, pugixml=True, haru=True)
|
|
101
101
|
"""
|
|
102
102
|
|
|
103
103
|
build_platform: typing.Any
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -566,7 +566,8 @@ def convert(
|
|
|
566
566
|
undo: bool | None = None,
|
|
567
567
|
/,
|
|
568
568
|
*,
|
|
569
|
-
target: typing.Literal["CURVE", "MESH", "CURVES", "GREASEPENCIL"]
|
|
569
|
+
target: typing.Literal["CURVE", "MESH", "POINTCLOUD", "CURVES", "GREASEPENCIL"]
|
|
570
|
+
| None = "MESH",
|
|
570
571
|
keep_original: bool | None = False,
|
|
571
572
|
merge_customdata: bool | None = True,
|
|
572
573
|
thickness: int | None = 5,
|
|
@@ -583,14 +584,17 @@ def convert(
|
|
|
583
584
|
Curve -- Curve from Mesh or Text objects.
|
|
584
585
|
|
|
585
586
|
MESH
|
|
586
|
-
Mesh -- Mesh from Curve, Surface, Metaball, or
|
|
587
|
+
Mesh -- Mesh from Curve, Surface, Metaball, Text, or Point Cloud objects.
|
|
588
|
+
|
|
589
|
+
POINTCLOUD
|
|
590
|
+
Point Cloud -- Point Cloud from Mesh objects.
|
|
587
591
|
|
|
588
592
|
CURVES
|
|
589
593
|
Curves -- Curves from evaluated curve data.
|
|
590
594
|
|
|
591
595
|
GREASEPENCIL
|
|
592
596
|
Grease Pencil -- Grease Pencil from Curve or Mesh objects.
|
|
593
|
-
:type target: typing.Literal['CURVE','MESH','CURVES','GREASEPENCIL'] | None
|
|
597
|
+
:type target: typing.Literal['CURVE','MESH','POINTCLOUD','CURVES','GREASEPENCIL'] | None
|
|
594
598
|
:param keep_original: Keep Original, Keep original objects instead of replacing them
|
|
595
599
|
:type keep_original: bool | None
|
|
596
600
|
:param merge_customdata: Merge UVs, Merge UV coordinates that share a vertex to account for imprecision in some modifiers
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -590,397 +590,6 @@ def clear_recent_files(
|
|
|
590
590
|
:type remove: typing.Literal['ALL','MISSING'] | None
|
|
591
591
|
"""
|
|
592
592
|
|
|
593
|
-
def collada_export(
|
|
594
|
-
execution_context: int | str | None = None,
|
|
595
|
-
undo: bool | None = None,
|
|
596
|
-
/,
|
|
597
|
-
*,
|
|
598
|
-
filepath: str = "",
|
|
599
|
-
check_existing: bool | None = True,
|
|
600
|
-
filter_blender: bool | None = False,
|
|
601
|
-
filter_backup: bool | None = False,
|
|
602
|
-
filter_image: bool | None = False,
|
|
603
|
-
filter_movie: bool | None = False,
|
|
604
|
-
filter_python: bool | None = False,
|
|
605
|
-
filter_font: bool | None = False,
|
|
606
|
-
filter_sound: bool | None = False,
|
|
607
|
-
filter_text: bool | None = False,
|
|
608
|
-
filter_archive: bool | None = False,
|
|
609
|
-
filter_btx: bool | None = False,
|
|
610
|
-
filter_collada: bool | None = True,
|
|
611
|
-
filter_alembic: bool | None = False,
|
|
612
|
-
filter_usd: bool | None = False,
|
|
613
|
-
filter_obj: bool | None = False,
|
|
614
|
-
filter_volume: bool | None = False,
|
|
615
|
-
filter_folder: bool | None = True,
|
|
616
|
-
filter_blenlib: bool | None = False,
|
|
617
|
-
filemode: int | None = 8,
|
|
618
|
-
display_type: typing.Literal[
|
|
619
|
-
"DEFAULT", "LIST_VERTICAL", "LIST_HORIZONTAL", "THUMBNAIL"
|
|
620
|
-
]
|
|
621
|
-
| None = "DEFAULT",
|
|
622
|
-
sort_method: str | None = "",
|
|
623
|
-
filter_glob: str = "*.dae",
|
|
624
|
-
prop_bc_export_ui_section: typing.Literal[
|
|
625
|
-
"main", "geometry", "armature", "animation", "collada"
|
|
626
|
-
]
|
|
627
|
-
| None = "main",
|
|
628
|
-
apply_modifiers: bool | None = False,
|
|
629
|
-
export_mesh_type: int | None = 0,
|
|
630
|
-
export_mesh_type_selection: typing.Literal["view", "render"] | None = "view",
|
|
631
|
-
export_global_forward_selection: typing.Literal["X", "Y", "Z", "-X", "-Y", "-Z"]
|
|
632
|
-
| None = "Y",
|
|
633
|
-
export_global_up_selection: typing.Literal["X", "Y", "Z", "-X", "-Y", "-Z"]
|
|
634
|
-
| None = "Z",
|
|
635
|
-
apply_global_orientation: bool | None = False,
|
|
636
|
-
selected: bool | None = False,
|
|
637
|
-
include_children: bool | None = False,
|
|
638
|
-
include_armatures: bool | None = False,
|
|
639
|
-
include_shapekeys: bool | None = False,
|
|
640
|
-
deform_bones_only: bool | None = False,
|
|
641
|
-
include_animations: bool | None = True,
|
|
642
|
-
include_all_actions: bool | None = True,
|
|
643
|
-
export_animation_type_selection: typing.Literal["sample", "keys"] | None = "sample",
|
|
644
|
-
sampling_rate: int | None = 1,
|
|
645
|
-
keep_smooth_curves: bool | None = False,
|
|
646
|
-
keep_keyframes: bool | None = False,
|
|
647
|
-
keep_flat_curves: bool | None = False,
|
|
648
|
-
active_uv_only: bool | None = False,
|
|
649
|
-
use_texture_copies: bool | None = True,
|
|
650
|
-
triangulate: bool | None = True,
|
|
651
|
-
use_object_instantiation: bool | None = True,
|
|
652
|
-
use_blender_profile: bool | None = True,
|
|
653
|
-
sort_by_name: bool | None = False,
|
|
654
|
-
export_object_transformation_type: int | None = 0,
|
|
655
|
-
export_object_transformation_type_selection: typing.Literal["matrix", "decomposed"]
|
|
656
|
-
| None = "matrix",
|
|
657
|
-
export_animation_transformation_type: int | None = 0,
|
|
658
|
-
export_animation_transformation_type_selection: typing.Literal[
|
|
659
|
-
"matrix", "decomposed"
|
|
660
|
-
]
|
|
661
|
-
| None = "matrix",
|
|
662
|
-
open_sim: bool | None = False,
|
|
663
|
-
limit_precision: bool | None = False,
|
|
664
|
-
keep_bind_info: bool | None = False,
|
|
665
|
-
):
|
|
666
|
-
"""Save a Collada file
|
|
667
|
-
|
|
668
|
-
:type execution_context: int | str | None
|
|
669
|
-
:type undo: bool | None
|
|
670
|
-
:param filepath: File Path, Path to file
|
|
671
|
-
:type filepath: str
|
|
672
|
-
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
673
|
-
:type check_existing: bool | None
|
|
674
|
-
:param filter_blender: Filter .blend files
|
|
675
|
-
:type filter_blender: bool | None
|
|
676
|
-
:param filter_backup: Filter .blend files
|
|
677
|
-
:type filter_backup: bool | None
|
|
678
|
-
:param filter_image: Filter image files
|
|
679
|
-
:type filter_image: bool | None
|
|
680
|
-
:param filter_movie: Filter movie files
|
|
681
|
-
:type filter_movie: bool | None
|
|
682
|
-
:param filter_python: Filter Python files
|
|
683
|
-
:type filter_python: bool | None
|
|
684
|
-
:param filter_font: Filter font files
|
|
685
|
-
:type filter_font: bool | None
|
|
686
|
-
:param filter_sound: Filter sound files
|
|
687
|
-
:type filter_sound: bool | None
|
|
688
|
-
:param filter_text: Filter text files
|
|
689
|
-
:type filter_text: bool | None
|
|
690
|
-
:param filter_archive: Filter archive files
|
|
691
|
-
:type filter_archive: bool | None
|
|
692
|
-
:param filter_btx: Filter btx files
|
|
693
|
-
:type filter_btx: bool | None
|
|
694
|
-
:param filter_collada: Filter COLLADA files
|
|
695
|
-
:type filter_collada: bool | None
|
|
696
|
-
:param filter_alembic: Filter Alembic files
|
|
697
|
-
:type filter_alembic: bool | None
|
|
698
|
-
:param filter_usd: Filter USD files
|
|
699
|
-
:type filter_usd: bool | None
|
|
700
|
-
:param filter_obj: Filter OBJ files
|
|
701
|
-
:type filter_obj: bool | None
|
|
702
|
-
:param filter_volume: Filter OpenVDB volume files
|
|
703
|
-
:type filter_volume: bool | None
|
|
704
|
-
:param filter_folder: Filter folders
|
|
705
|
-
:type filter_folder: bool | None
|
|
706
|
-
:param filter_blenlib: Filter Blender IDs
|
|
707
|
-
:type filter_blenlib: bool | None
|
|
708
|
-
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
709
|
-
:type filemode: int | None
|
|
710
|
-
:param display_type: Display Type
|
|
711
|
-
|
|
712
|
-
DEFAULT
|
|
713
|
-
Default -- Automatically determine display type for files.
|
|
714
|
-
|
|
715
|
-
LIST_VERTICAL
|
|
716
|
-
Short List -- Display files as short list.
|
|
717
|
-
|
|
718
|
-
LIST_HORIZONTAL
|
|
719
|
-
Long List -- Display files as a detailed list.
|
|
720
|
-
|
|
721
|
-
THUMBNAIL
|
|
722
|
-
Thumbnails -- Display files as thumbnails.
|
|
723
|
-
:type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
|
|
724
|
-
:param sort_method: File sorting mode
|
|
725
|
-
:type sort_method: str | None
|
|
726
|
-
:type filter_glob: str
|
|
727
|
-
:param prop_bc_export_ui_section: Export Section, Only for User Interface organization
|
|
728
|
-
|
|
729
|
-
main
|
|
730
|
-
Main -- Data export section.
|
|
731
|
-
|
|
732
|
-
geometry
|
|
733
|
-
Geom -- Geometry export section.
|
|
734
|
-
|
|
735
|
-
armature
|
|
736
|
-
Arm -- Armature export section.
|
|
737
|
-
|
|
738
|
-
animation
|
|
739
|
-
Anim -- Animation export section.
|
|
740
|
-
|
|
741
|
-
collada
|
|
742
|
-
Extra -- Collada export section.
|
|
743
|
-
:type prop_bc_export_ui_section: typing.Literal['main','geometry','armature','animation','collada'] | None
|
|
744
|
-
:param apply_modifiers: Apply Modifiers, Apply modifiers to exported mesh (non destructive)
|
|
745
|
-
:type apply_modifiers: bool | None
|
|
746
|
-
:param export_mesh_type: Resolution, Modifier resolution for export
|
|
747
|
-
:type export_mesh_type: int | None
|
|
748
|
-
:param export_mesh_type_selection: Resolution, Modifier resolution for export
|
|
749
|
-
|
|
750
|
-
view
|
|
751
|
-
Viewport -- Apply modifier's viewport settings.
|
|
752
|
-
|
|
753
|
-
render
|
|
754
|
-
Render -- Apply modifier's render settings.
|
|
755
|
-
:type export_mesh_type_selection: typing.Literal['view','render'] | None
|
|
756
|
-
:param export_global_forward_selection: Global Forward Axis, Global Forward axis for export
|
|
757
|
-
|
|
758
|
-
X
|
|
759
|
-
X -- Global Forward is positive X Axis.
|
|
760
|
-
|
|
761
|
-
Y
|
|
762
|
-
Y -- Global Forward is positive Y Axis.
|
|
763
|
-
|
|
764
|
-
Z
|
|
765
|
-
Z -- Global Forward is positive Z Axis.
|
|
766
|
-
|
|
767
|
-
-X
|
|
768
|
-
-X -- Global Forward is negative X Axis.
|
|
769
|
-
|
|
770
|
-
-Y
|
|
771
|
-
-Y -- Global Forward is negative Y Axis.
|
|
772
|
-
|
|
773
|
-
-Z
|
|
774
|
-
-Z -- Global Forward is negative Z Axis.
|
|
775
|
-
:type export_global_forward_selection: typing.Literal['X','Y','Z','-X','-Y','-Z'] | None
|
|
776
|
-
:param export_global_up_selection: Global Up Axis, Global Up axis for export
|
|
777
|
-
|
|
778
|
-
X
|
|
779
|
-
X -- Global UP is positive X Axis.
|
|
780
|
-
|
|
781
|
-
Y
|
|
782
|
-
Y -- Global UP is positive Y Axis.
|
|
783
|
-
|
|
784
|
-
Z
|
|
785
|
-
Z -- Global UP is positive Z Axis.
|
|
786
|
-
|
|
787
|
-
-X
|
|
788
|
-
-X -- Global UP is negative X Axis.
|
|
789
|
-
|
|
790
|
-
-Y
|
|
791
|
-
-Y -- Global UP is negative Y Axis.
|
|
792
|
-
|
|
793
|
-
-Z
|
|
794
|
-
-Z -- Global UP is negative Z Axis.
|
|
795
|
-
:type export_global_up_selection: typing.Literal['X','Y','Z','-X','-Y','-Z'] | None
|
|
796
|
-
:param apply_global_orientation: Apply Global Orientation, Rotate all root objects to match the global orientation settings otherwise set the global orientation per Collada asset
|
|
797
|
-
:type apply_global_orientation: bool | None
|
|
798
|
-
:param selected: Selection Only, Export only selected elements
|
|
799
|
-
:type selected: bool | None
|
|
800
|
-
:param include_children: Include Children, Export all children of selected objects (even if not selected)
|
|
801
|
-
:type include_children: bool | None
|
|
802
|
-
:param include_armatures: Include Armatures, Export related armatures (even if not selected)
|
|
803
|
-
:type include_armatures: bool | None
|
|
804
|
-
:param include_shapekeys: Include Shape Keys, Export all Shape Keys from Mesh Objects
|
|
805
|
-
:type include_shapekeys: bool | None
|
|
806
|
-
:param deform_bones_only: Deform Bones Only, Only export deforming bones with armatures
|
|
807
|
-
:type deform_bones_only: bool | None
|
|
808
|
-
:param include_animations: Include Animations, Export animations if available (exporting animations will enforce the decomposition of node transforms into <translation> <rotation> and <scale> components)
|
|
809
|
-
:type include_animations: bool | None
|
|
810
|
-
:param include_all_actions: Include all Actions, Export also unassigned actions (this allows you to export entire animation libraries for your character(s))
|
|
811
|
-
:type include_all_actions: bool | None
|
|
812
|
-
:param export_animation_type_selection: Key Type, Type for exported animations (use sample keys or Curve keys)
|
|
813
|
-
|
|
814
|
-
sample
|
|
815
|
-
Samples -- Export Sampled points guided by sampling rate.
|
|
816
|
-
|
|
817
|
-
keys
|
|
818
|
-
Curves -- Export Curves (note: guided by curve keys).
|
|
819
|
-
:type export_animation_type_selection: typing.Literal['sample','keys'] | None
|
|
820
|
-
:param sampling_rate: Sampling Rate, The distance between 2 keyframes (1 to key every frame)
|
|
821
|
-
:type sampling_rate: int | None
|
|
822
|
-
:param keep_smooth_curves: Keep Smooth curves, Export also the curve handles (if available) (this does only work when the inverse parent matrix is the unity matrix, otherwise you may end up with odd results)
|
|
823
|
-
:type keep_smooth_curves: bool | None
|
|
824
|
-
:param keep_keyframes: Keep Keyframes, Use existing keyframes as additional sample points (this helps when you want to keep manual tweaks)
|
|
825
|
-
:type keep_keyframes: bool | None
|
|
826
|
-
:param keep_flat_curves: All Keyed Curves, Export also curves which have only one key or are totally flat
|
|
827
|
-
:type keep_flat_curves: bool | None
|
|
828
|
-
:param active_uv_only: Only Selected UV Map, Export only the selected UV Map
|
|
829
|
-
:type active_uv_only: bool | None
|
|
830
|
-
:param use_texture_copies: Copy, Copy textures to same folder where the .dae file is exported
|
|
831
|
-
:type use_texture_copies: bool | None
|
|
832
|
-
:param triangulate: Triangulate, Export polygons (quads and n-gons) as triangles
|
|
833
|
-
:type triangulate: bool | None
|
|
834
|
-
:param use_object_instantiation: Use Object Instances, Instantiate multiple Objects from same Data
|
|
835
|
-
:type use_object_instantiation: bool | None
|
|
836
|
-
:param use_blender_profile: Use Blender Profile, Export additional Blender specific information (for material, shaders, bones, etc.)
|
|
837
|
-
:type use_blender_profile: bool | None
|
|
838
|
-
:param sort_by_name: Sort by Object name, Sort exported data by Object name
|
|
839
|
-
:type sort_by_name: bool | None
|
|
840
|
-
:param export_object_transformation_type: Transform, Object Transformation type for translation, scale and rotation
|
|
841
|
-
:type export_object_transformation_type: int | None
|
|
842
|
-
:param export_object_transformation_type_selection: Transform, Object Transformation type for translation, scale and rotation
|
|
843
|
-
|
|
844
|
-
matrix
|
|
845
|
-
Matrix -- Use <matrix> representation for exported transformations.
|
|
846
|
-
|
|
847
|
-
decomposed
|
|
848
|
-
Decomposed -- Use <rotate>, <translate> and <scale> representation for exported transformations.
|
|
849
|
-
:type export_object_transformation_type_selection: typing.Literal['matrix','decomposed'] | None
|
|
850
|
-
:param export_animation_transformation_type: Transform, Transformation type for translation, scale and rotation. Note: The Animation transformation type in the Anim Tab is always equal to the Object transformation type in the Geom tab
|
|
851
|
-
:type export_animation_transformation_type: int | None
|
|
852
|
-
:param export_animation_transformation_type_selection: Transform, Transformation type for translation, scale and rotation. Note: The Animation transformation type in the Anim Tab is always equal to the Object transformation type in the Geom tab
|
|
853
|
-
|
|
854
|
-
matrix
|
|
855
|
-
Matrix -- Use <matrix> representation for exported transformations.
|
|
856
|
-
|
|
857
|
-
decomposed
|
|
858
|
-
Decomposed -- Use <rotate>, <translate> and <scale> representation for exported transformations.
|
|
859
|
-
:type export_animation_transformation_type_selection: typing.Literal['matrix','decomposed'] | None
|
|
860
|
-
:param open_sim: Export to SL/OpenSim, Compatibility mode for Second Life, OpenSimulator and other compatible online worlds
|
|
861
|
-
:type open_sim: bool | None
|
|
862
|
-
:param limit_precision: Limit Precision, Reduce the precision of the exported data to 6 digits
|
|
863
|
-
:type limit_precision: bool | None
|
|
864
|
-
:param keep_bind_info: Keep Bind Info, Store Bindpose information in custom bone properties for later use during Collada export
|
|
865
|
-
:type keep_bind_info: bool | None
|
|
866
|
-
"""
|
|
867
|
-
|
|
868
|
-
def collada_import(
|
|
869
|
-
execution_context: int | str | None = None,
|
|
870
|
-
undo: bool | None = None,
|
|
871
|
-
/,
|
|
872
|
-
*,
|
|
873
|
-
filepath: str = "",
|
|
874
|
-
check_existing: bool | None = False,
|
|
875
|
-
filter_blender: bool | None = False,
|
|
876
|
-
filter_backup: bool | None = False,
|
|
877
|
-
filter_image: bool | None = False,
|
|
878
|
-
filter_movie: bool | None = False,
|
|
879
|
-
filter_python: bool | None = False,
|
|
880
|
-
filter_font: bool | None = False,
|
|
881
|
-
filter_sound: bool | None = False,
|
|
882
|
-
filter_text: bool | None = False,
|
|
883
|
-
filter_archive: bool | None = False,
|
|
884
|
-
filter_btx: bool | None = False,
|
|
885
|
-
filter_collada: bool | None = True,
|
|
886
|
-
filter_alembic: bool | None = False,
|
|
887
|
-
filter_usd: bool | None = False,
|
|
888
|
-
filter_obj: bool | None = False,
|
|
889
|
-
filter_volume: bool | None = False,
|
|
890
|
-
filter_folder: bool | None = True,
|
|
891
|
-
filter_blenlib: bool | None = False,
|
|
892
|
-
filemode: int | None = 8,
|
|
893
|
-
display_type: typing.Literal[
|
|
894
|
-
"DEFAULT", "LIST_VERTICAL", "LIST_HORIZONTAL", "THUMBNAIL"
|
|
895
|
-
]
|
|
896
|
-
| None = "DEFAULT",
|
|
897
|
-
sort_method: str | None = "",
|
|
898
|
-
filter_glob: str = "*.dae",
|
|
899
|
-
import_units: bool | None = False,
|
|
900
|
-
custom_normals: bool | None = True,
|
|
901
|
-
fix_orientation: bool | None = False,
|
|
902
|
-
find_chains: bool | None = False,
|
|
903
|
-
auto_connect: bool | None = False,
|
|
904
|
-
min_chain_length: int | None = 0,
|
|
905
|
-
keep_bind_info: bool | None = False,
|
|
906
|
-
):
|
|
907
|
-
"""Load a Collada file
|
|
908
|
-
|
|
909
|
-
:type execution_context: int | str | None
|
|
910
|
-
:type undo: bool | None
|
|
911
|
-
:param filepath: File Path, Path to file
|
|
912
|
-
:type filepath: str
|
|
913
|
-
:param check_existing: Check Existing, Check and warn on overwriting existing files
|
|
914
|
-
:type check_existing: bool | None
|
|
915
|
-
:param filter_blender: Filter .blend files
|
|
916
|
-
:type filter_blender: bool | None
|
|
917
|
-
:param filter_backup: Filter .blend files
|
|
918
|
-
:type filter_backup: bool | None
|
|
919
|
-
:param filter_image: Filter image files
|
|
920
|
-
:type filter_image: bool | None
|
|
921
|
-
:param filter_movie: Filter movie files
|
|
922
|
-
:type filter_movie: bool | None
|
|
923
|
-
:param filter_python: Filter Python files
|
|
924
|
-
:type filter_python: bool | None
|
|
925
|
-
:param filter_font: Filter font files
|
|
926
|
-
:type filter_font: bool | None
|
|
927
|
-
:param filter_sound: Filter sound files
|
|
928
|
-
:type filter_sound: bool | None
|
|
929
|
-
:param filter_text: Filter text files
|
|
930
|
-
:type filter_text: bool | None
|
|
931
|
-
:param filter_archive: Filter archive files
|
|
932
|
-
:type filter_archive: bool | None
|
|
933
|
-
:param filter_btx: Filter btx files
|
|
934
|
-
:type filter_btx: bool | None
|
|
935
|
-
:param filter_collada: Filter COLLADA files
|
|
936
|
-
:type filter_collada: bool | None
|
|
937
|
-
:param filter_alembic: Filter Alembic files
|
|
938
|
-
:type filter_alembic: bool | None
|
|
939
|
-
:param filter_usd: Filter USD files
|
|
940
|
-
:type filter_usd: bool | None
|
|
941
|
-
:param filter_obj: Filter OBJ files
|
|
942
|
-
:type filter_obj: bool | None
|
|
943
|
-
:param filter_volume: Filter OpenVDB volume files
|
|
944
|
-
:type filter_volume: bool | None
|
|
945
|
-
:param filter_folder: Filter folders
|
|
946
|
-
:type filter_folder: bool | None
|
|
947
|
-
:param filter_blenlib: Filter Blender IDs
|
|
948
|
-
:type filter_blenlib: bool | None
|
|
949
|
-
:param filemode: File Browser Mode, The setting for the file browser mode to load a .blend file, a library or a special file
|
|
950
|
-
:type filemode: int | None
|
|
951
|
-
:param display_type: Display Type
|
|
952
|
-
|
|
953
|
-
DEFAULT
|
|
954
|
-
Default -- Automatically determine display type for files.
|
|
955
|
-
|
|
956
|
-
LIST_VERTICAL
|
|
957
|
-
Short List -- Display files as short list.
|
|
958
|
-
|
|
959
|
-
LIST_HORIZONTAL
|
|
960
|
-
Long List -- Display files as a detailed list.
|
|
961
|
-
|
|
962
|
-
THUMBNAIL
|
|
963
|
-
Thumbnails -- Display files as thumbnails.
|
|
964
|
-
:type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
|
|
965
|
-
:param sort_method: File sorting mode
|
|
966
|
-
:type sort_method: str | None
|
|
967
|
-
:type filter_glob: str
|
|
968
|
-
:param import_units: Import Units, If disabled match import to Blender's current Unit settings, otherwise use the settings from the Imported scene
|
|
969
|
-
:type import_units: bool | None
|
|
970
|
-
:param custom_normals: Custom Normals, Import custom normals, if available (otherwise Blender will compute them)
|
|
971
|
-
:type custom_normals: bool | None
|
|
972
|
-
:param fix_orientation: Fix Leaf Bones, Fix Orientation of Leaf Bones (Collada does only support Joints)
|
|
973
|
-
:type fix_orientation: bool | None
|
|
974
|
-
:param find_chains: Find Bone Chains, Find best matching Bone Chains and ensure bones in chain are connected
|
|
975
|
-
:type find_chains: bool | None
|
|
976
|
-
:param auto_connect: Auto Connect, Set use_connect for parent bones which have exactly one child bone
|
|
977
|
-
:type auto_connect: bool | None
|
|
978
|
-
:param min_chain_length: Minimum Chain Length, When searching Bone Chains disregard chains of length below this value
|
|
979
|
-
:type min_chain_length: int | None
|
|
980
|
-
:param keep_bind_info: Keep Bind Info, Store Bindpose information in custom bone properties for later use during Collada export
|
|
981
|
-
:type keep_bind_info: bool | None
|
|
982
|
-
"""
|
|
983
|
-
|
|
984
593
|
def collection_export_all(
|
|
985
594
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
986
595
|
):
|
bpy/types/__init__.pyi
CHANGED
|
@@ -139354,6 +139354,12 @@ class Context(bpy_struct):
|
|
|
139354
139354
|
"""
|
|
139355
139355
|
|
|
139356
139356
|
curves: typing.Any
|
|
139357
|
+
pointcloud: PointCloud | None
|
|
139358
|
+
"""
|
|
139359
|
+
|
|
139360
|
+
:type: PointCloud | None
|
|
139361
|
+
"""
|
|
139362
|
+
|
|
139357
139363
|
volume: Volume | None
|
|
139358
139364
|
"""
|
|
139359
139365
|
|
|
@@ -220,7 +220,7 @@ bpy/__init__.pyi,sha256=KeQc-X1TjhtunVxLDy0IK0cMmurLmAQm4fX_D__UPJo,464
|
|
|
220
220
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
221
221
|
bpy/_typing/__init__.pyi,sha256=7bioadpQS-8UKR8TdY1m4MqUFqKVy8h13sPIt28ZUqs,99
|
|
222
222
|
bpy/_typing/rna_enums/__init__.pyi,sha256=nNGo1tQHkeeoPg6eTXza0DSQ8JoUha15U4dsninFprs,139623
|
|
223
|
-
bpy/app/__init__.pyi,sha256=
|
|
223
|
+
bpy/app/__init__.pyi,sha256=ZV-MHGB04mBRjzisCtoIkQzNPQklZMRki-s0IQD9c8Q,8768
|
|
224
224
|
bpy/app/handlers/__init__.pyi,sha256=paak3tw5Edrs_VfQUvgZNA6YsTeuBULkNe9mgo2TzI8,7116
|
|
225
225
|
bpy/app/icons/__init__.pyi,sha256=w18Xn9y0T54WlpHyhC3_y8a3Lq9kuo3U72Bu7wOY41A,928
|
|
226
226
|
bpy/app/timers/__init__.pyi,sha256=vtrATRAmkTfP1CknievwpOCC19cPOMowyLTE6Ie9GSg,2126
|
|
@@ -271,7 +271,7 @@ bpy/ops/mball/__init__.pyi,sha256=VRZZbMhoN6OWmsG-344hmoHQ-_qcjRuisuzJvLxGobI,41
|
|
|
271
271
|
bpy/ops/mesh/__init__.pyi,sha256=Gp2MK7c7qJtOinM72vvDDYV3wIAbFenIbej0hWcHj90,133710
|
|
272
272
|
bpy/ops/nla/__init__.pyi,sha256=qWBmb8nOy9c6H_rKEjt3spO-TnwPaqJc1meOgDy5uaY,18145
|
|
273
273
|
bpy/ops/node/__init__.pyi,sha256=m1fchmX8mU4_B_IA00VGljBqo_EFVHQ1wg6swSnxTdY,53596
|
|
274
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
274
|
+
bpy/ops/object/__init__.pyi,sha256=hLToMQ9U1aMoY5bWCHbpit9Hob-T-8ys7ezHK9E5hXo,172336
|
|
275
275
|
bpy/ops/outliner/__init__.pyi,sha256=la079qCOhk_Bf_FiEtjcNh0jP97X0sY5aPgnAxOT4x0,27743
|
|
276
276
|
bpy/ops/paint/__init__.pyi,sha256=Q-EnWEXXc_RyYXxGY0x4zTQbmNwd4HOaPxashYEWwpk,37665
|
|
277
277
|
bpy/ops/paintcurve/__init__.pyi,sha256=sJfa-6TohaHNlvBFZ5X2vhjeMCp91in2K6UqwIF3d80,2980
|
|
@@ -302,12 +302,12 @@ bpy/ops/uilist/__init__.pyi,sha256=1Vu7qHRYL-MOM5kdcHJLmJwucvveh10t1wbmL_98GEM,1
|
|
|
302
302
|
bpy/ops/uv/__init__.pyi,sha256=_PFdsIxNsw5RLzCHmpqA7MnHriWUf0mau2pvYSyj7DQ,45436
|
|
303
303
|
bpy/ops/view2d/__init__.pyi,sha256=bw6xoLUDUWQGk36g4T8THDWpNSH_VX8Pyg_mlGB9Dik,6986
|
|
304
304
|
bpy/ops/view3d/__init__.pyi,sha256=qOxRARE56KMzHZiljp1P_TTlo-dVlUhClpLKzD3AUOU,30884
|
|
305
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
305
|
+
bpy/ops/wm/__init__.pyi,sha256=7n3NWXtALgz3uEBGD0Rf7rM49Sh856Ay927nileE_qQ,198362
|
|
306
306
|
bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHCU,1983
|
|
307
307
|
bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
|
|
308
308
|
bpy/path/__init__.pyi,sha256=emlV7ocbsOuOSMzxJXr6ldKRk2-_K0DWlKc3Ylt5dsU,5484
|
|
309
309
|
bpy/props/__init__.pyi,sha256=Ky1J5ndL8p_pvAaQakudyKKVynbr1NxXvzoN-5E9_I0,35237
|
|
310
|
-
bpy/types/__init__.pyi,sha256=
|
|
310
|
+
bpy/types/__init__.pyi,sha256=ggDVu_sYcB2AeA75n9OWMKVGTcCK6g789LaJfLruOmY,5705295
|
|
311
311
|
bpy/utils/__init__.pyi,sha256=y7dfOaWh9PE_q0Qs8gEKOm71RQuMZI0wQ1B07DCDHF4,14909
|
|
312
312
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
313
313
|
bpy/utils/units/__init__.pyi,sha256=QuXx22JjmObRmP_KcdoqOlDSvVtXZHeK5nTIvwjcUnI,2645
|
|
@@ -342,7 +342,7 @@ freestyle/functions/__init__.pyi,sha256=sEPnGHwZm8XBlfE7CKLros3CKJlAh1h1FI74nBTE
|
|
|
342
342
|
freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
|
|
343
343
|
freestyle/shaders/__init__.pyi,sha256=4a-rY8mkkIcsnIvYGcP8YgAULdJENDJnncju2CjhQVg,24014
|
|
344
344
|
freestyle/types/__init__.pyi,sha256=Dmb8LokYlO2lCfmDwPX5MwwpnHHSRaXU2t6Nu37Rzjg,100200
|
|
345
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
345
|
+
freestyle/utils/__init__.pyi,sha256=lW5JWrilkFTvRmtYoS3hbmWfj2abo2hHsvp4eyGLbcQ,5108
|
|
346
346
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=fPDfiBEjpoqXQhBhmHJ6WxG9oLMItwQ32MxKQz_c9_I,3445
|
|
347
347
|
gpu/__init__.pyi,sha256=Q-AbyJO85pPYcwXNWtvgAhFGGJ6OnnHrlsXQxur9jhs,7999
|
|
348
348
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -389,7 +389,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
389
389
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
390
390
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
391
391
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
392
|
-
fake_bge_module-
|
|
393
|
-
fake_bge_module-
|
|
394
|
-
fake_bge_module-
|
|
395
|
-
fake_bge_module-
|
|
392
|
+
fake_bge_module-20250222.dist-info/METADATA,sha256=Y_fedRYGcAIeJHzkTCQ-avxeYRikwJKapzhhqkv3upk,4872
|
|
393
|
+
fake_bge_module-20250222.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
394
|
+
fake_bge_module-20250222.dist-info/top_level.txt,sha256=eE5ylpw84TnTp2h-RCfTJgCBykd4PsHdymQwBM_dVls,544
|
|
395
|
+
fake_bge_module-20250222.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
|
|
|
124
124
|
"""get the diffuse RGBA color from an FEdge"""
|
|
125
125
|
|
|
126
126
|
def normal_at_I0D(it): ...
|
|
127
|
-
def pairwise(iterable, types={
|
|
127
|
+
def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
|
|
128
128
|
"""Yields a tuple containing the previous and current object"""
|
|
129
129
|
|
|
130
130
|
def rgb_to_bw(r, g, b):
|
|
File without changes
|
|
File without changes
|