fake-bpy-module 20240807__py3-none-any.whl → 20240809__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_ui/space_node/__init__.pyi +41 -0
- bl_ui/space_view3d/__init__.pyi +59 -0
- bpy/ops/uv/__init__.pyi +3 -0
- bpy/types/__init__.pyi +28736 -28718
- {fake_bpy_module-20240807.dist-info → fake_bpy_module-20240809.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240807.dist-info → fake_bpy_module-20240809.dist-info}/RECORD +8 -8
- {fake_bpy_module-20240807.dist-info → fake_bpy_module-20240809.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240807.dist-info → fake_bpy_module-20240809.dist-info}/top_level.txt +0 -0
bl_ui/space_node/__init__.pyi
CHANGED
|
@@ -589,6 +589,47 @@ class NODE_PT_backdrop(bpy.types.Panel):
|
|
|
589
589
|
"""
|
|
590
590
|
...
|
|
591
591
|
|
|
592
|
+
class NODE_PT_compositor_debug(bpy.types.Panel):
|
|
593
|
+
bl_category: typing.Any
|
|
594
|
+
bl_label: typing.Any
|
|
595
|
+
bl_options: typing.Any
|
|
596
|
+
bl_parent_id: typing.Any
|
|
597
|
+
bl_region_type: typing.Any
|
|
598
|
+
bl_rna: typing.Any
|
|
599
|
+
bl_space_type: typing.Any
|
|
600
|
+
id_data: typing.Any
|
|
601
|
+
|
|
602
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
603
|
+
"""
|
|
604
|
+
|
|
605
|
+
:return: The RNA type or default when not found.
|
|
606
|
+
:rtype: bpy.types.Struct
|
|
607
|
+
"""
|
|
608
|
+
...
|
|
609
|
+
|
|
610
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
611
|
+
"""
|
|
612
|
+
|
|
613
|
+
:return: The class or default when not found.
|
|
614
|
+
:rtype: typing.Any
|
|
615
|
+
"""
|
|
616
|
+
...
|
|
617
|
+
|
|
618
|
+
def draw(self, context):
|
|
619
|
+
"""
|
|
620
|
+
|
|
621
|
+
:param context:
|
|
622
|
+
"""
|
|
623
|
+
...
|
|
624
|
+
|
|
625
|
+
@classmethod
|
|
626
|
+
def poll(cls, context):
|
|
627
|
+
"""
|
|
628
|
+
|
|
629
|
+
:param context:
|
|
630
|
+
"""
|
|
631
|
+
...
|
|
632
|
+
|
|
592
633
|
class NODE_PT_geometry_node_tool_mode(bpy.types.Panel):
|
|
593
634
|
bl_label: typing.Any
|
|
594
635
|
bl_region_type: typing.Any
|
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -17,6 +17,34 @@ class BoneOptions:
|
|
|
17
17
|
"""
|
|
18
18
|
...
|
|
19
19
|
|
|
20
|
+
class GREASE_PENCIL_MT_Layers(bpy.types.Menu):
|
|
21
|
+
bl_label: typing.Any
|
|
22
|
+
bl_rna: typing.Any
|
|
23
|
+
id_data: typing.Any
|
|
24
|
+
|
|
25
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
26
|
+
"""
|
|
27
|
+
|
|
28
|
+
:return: The RNA type or default when not found.
|
|
29
|
+
:rtype: bpy.types.Struct
|
|
30
|
+
"""
|
|
31
|
+
...
|
|
32
|
+
|
|
33
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
34
|
+
"""
|
|
35
|
+
|
|
36
|
+
:return: The class or default when not found.
|
|
37
|
+
:rtype: typing.Any
|
|
38
|
+
"""
|
|
39
|
+
...
|
|
40
|
+
|
|
41
|
+
def draw(self, context):
|
|
42
|
+
"""
|
|
43
|
+
|
|
44
|
+
:param context:
|
|
45
|
+
"""
|
|
46
|
+
...
|
|
47
|
+
|
|
20
48
|
class ShowHideMenu:
|
|
21
49
|
bl_label: typing.Any
|
|
22
50
|
|
|
@@ -6631,6 +6659,37 @@ class VIEW3D_PT_grease_pencil_multi_frame(bpy.types.Panel):
|
|
|
6631
6659
|
"""
|
|
6632
6660
|
...
|
|
6633
6661
|
|
|
6662
|
+
class VIEW3D_PT_greasepencil_draw_context_menu(bpy.types.Panel):
|
|
6663
|
+
bl_label: typing.Any
|
|
6664
|
+
bl_region_type: typing.Any
|
|
6665
|
+
bl_rna: typing.Any
|
|
6666
|
+
bl_space_type: typing.Any
|
|
6667
|
+
bl_ui_units_x: typing.Any
|
|
6668
|
+
id_data: typing.Any
|
|
6669
|
+
|
|
6670
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
6671
|
+
"""
|
|
6672
|
+
|
|
6673
|
+
:return: The RNA type or default when not found.
|
|
6674
|
+
:rtype: bpy.types.Struct
|
|
6675
|
+
"""
|
|
6676
|
+
...
|
|
6677
|
+
|
|
6678
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
6679
|
+
"""
|
|
6680
|
+
|
|
6681
|
+
:return: The class or default when not found.
|
|
6682
|
+
:rtype: typing.Any
|
|
6683
|
+
"""
|
|
6684
|
+
...
|
|
6685
|
+
|
|
6686
|
+
def draw(self, context):
|
|
6687
|
+
"""
|
|
6688
|
+
|
|
6689
|
+
:param context:
|
|
6690
|
+
"""
|
|
6691
|
+
...
|
|
6692
|
+
|
|
6634
6693
|
class VIEW3D_PT_object_type_visibility(bpy.types.Panel):
|
|
6635
6694
|
bl_label: typing.Any
|
|
6636
6695
|
bl_region_type: typing.Any
|
bpy/ops/uv/__init__.pyi
CHANGED
|
@@ -625,6 +625,7 @@ def remove_doubles(
|
|
|
625
625
|
*,
|
|
626
626
|
threshold: float | None = 0.02,
|
|
627
627
|
use_unselected: bool | None = False,
|
|
628
|
+
use_shared_vertex: bool | None = False,
|
|
628
629
|
):
|
|
629
630
|
"""Selected UV vertices that are within a radius of each other are welded together
|
|
630
631
|
|
|
@@ -635,6 +636,8 @@ def remove_doubles(
|
|
|
635
636
|
:type threshold: float | None
|
|
636
637
|
:param use_unselected: Unselected, Merge selected to other unselected vertices
|
|
637
638
|
:type use_unselected: bool | None
|
|
639
|
+
:param use_shared_vertex: Shared Vertex, Weld UVs based on shared vertices
|
|
640
|
+
:type use_shared_vertex: bool | None
|
|
638
641
|
"""
|
|
639
642
|
|
|
640
643
|
...
|