fake-bpy-module 20240509__py3-none-any.whl → 20240511__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.

aud/__init__.pyi CHANGED
@@ -740,11 +740,12 @@ class Sound:
740
740
  """
741
741
  ...
742
742
 
743
- def loop(self, count) -> Sound:
743
+ def loop(self, count: int) -> Sound:
744
744
  """Loops a sound.
745
745
 
746
746
  :param count: How often the sound should be looped.
747
747
  Negative values mean endlessly.
748
+ :type count: int
748
749
  :return: The created `Sound` object.
749
750
  :rtype: Sound
750
751
  """
bl_operators/__init__.pyi CHANGED
@@ -28,6 +28,7 @@ from . import uvcalc_transform
28
28
  from . import vertexpaint_dirt
29
29
  from . import view3d
30
30
  from . import wm
31
+ from . import world
31
32
 
32
33
  GenericType = typing.TypeVar("GenericType")
33
34
 
@@ -0,0 +1,143 @@
1
+ import typing
2
+ import bpy_types
3
+
4
+ GenericType = typing.TypeVar("GenericType")
5
+
6
+ class WORLD_OT_convert_volume_to_mesh(bpy_types.Operator):
7
+ """ """
8
+
9
+ bl_idname: typing.Any
10
+ """ """
11
+
12
+ bl_label: typing.Any
13
+ """ """
14
+
15
+ bl_options: typing.Any
16
+ """ """
17
+
18
+ bl_rna: typing.Any
19
+ """ """
20
+
21
+ id_data: typing.Any
22
+ """ """
23
+
24
+ def as_keywords(self, ignore):
25
+ """
26
+
27
+ :param ignore:
28
+ """
29
+ ...
30
+
31
+ def as_pointer(self):
32
+ """ """
33
+ ...
34
+
35
+ def bl_rna_get_subclass(self):
36
+ """ """
37
+ ...
38
+
39
+ def bl_rna_get_subclass_py(self):
40
+ """ """
41
+ ...
42
+
43
+ def driver_add(self):
44
+ """ """
45
+ ...
46
+
47
+ def driver_remove(self):
48
+ """ """
49
+ ...
50
+
51
+ def execute(self, context):
52
+ """
53
+
54
+ :param context:
55
+ """
56
+ ...
57
+
58
+ def get(self):
59
+ """ """
60
+ ...
61
+
62
+ def id_properties_clear(self):
63
+ """ """
64
+ ...
65
+
66
+ def id_properties_ensure(self):
67
+ """ """
68
+ ...
69
+
70
+ def id_properties_ui(self):
71
+ """ """
72
+ ...
73
+
74
+ def is_property_hidden(self):
75
+ """ """
76
+ ...
77
+
78
+ def is_property_overridable_library(self):
79
+ """ """
80
+ ...
81
+
82
+ def is_property_readonly(self):
83
+ """ """
84
+ ...
85
+
86
+ def is_property_set(self):
87
+ """ """
88
+ ...
89
+
90
+ def items(self):
91
+ """ """
92
+ ...
93
+
94
+ def keyframe_delete(self):
95
+ """ """
96
+ ...
97
+
98
+ def keyframe_insert(self):
99
+ """ """
100
+ ...
101
+
102
+ def keys(self):
103
+ """ """
104
+ ...
105
+
106
+ def path_from_id(self):
107
+ """ """
108
+ ...
109
+
110
+ def path_resolve(self):
111
+ """ """
112
+ ...
113
+
114
+ def poll(self, context):
115
+ """
116
+
117
+ :param context:
118
+ """
119
+ ...
120
+
121
+ def poll_message_set(self):
122
+ """ """
123
+ ...
124
+
125
+ def pop(self):
126
+ """ """
127
+ ...
128
+
129
+ def property_overridable_library_set(self):
130
+ """ """
131
+ ...
132
+
133
+ def property_unset(self):
134
+ """ """
135
+ ...
136
+
137
+ def type_recast(self):
138
+ """ """
139
+ ...
140
+
141
+ def values(self):
142
+ """ """
143
+ ...
File without changes
@@ -597,6 +597,187 @@ class GREASE_PENCIL_UL_masks(bpy_types.UIList, bpy_types._GenericUI):
597
597
  """ """
598
598
  ...
599
599
 
600
+ class GreasePencil_MT_group_context_menu(bpy_types.Menu, bpy_types._GenericUI):
601
+ """ """
602
+
603
+ bl_label: typing.Any
604
+ """ """
605
+
606
+ bl_rna: typing.Any
607
+ """ """
608
+
609
+ id_data: typing.Any
610
+ """ """
611
+
612
+ def append(self, draw_func):
613
+ """
614
+
615
+ :param draw_func:
616
+ """
617
+ ...
618
+
619
+ def as_pointer(self):
620
+ """ """
621
+ ...
622
+
623
+ def bl_rna_get_subclass(self):
624
+ """ """
625
+ ...
626
+
627
+ def bl_rna_get_subclass_py(self):
628
+ """ """
629
+ ...
630
+
631
+ def draw(self, context):
632
+ """
633
+
634
+ :param context:
635
+ """
636
+ ...
637
+
638
+ def draw_collapsible(self, context, layout):
639
+ """
640
+
641
+ :param context:
642
+ :param layout:
643
+ """
644
+ ...
645
+
646
+ def draw_preset(self, _context):
647
+ """
648
+
649
+ :param _context:
650
+ """
651
+ ...
652
+
653
+ def driver_add(self):
654
+ """ """
655
+ ...
656
+
657
+ def driver_remove(self):
658
+ """ """
659
+ ...
660
+
661
+ def get(self):
662
+ """ """
663
+ ...
664
+
665
+ def id_properties_clear(self):
666
+ """ """
667
+ ...
668
+
669
+ def id_properties_ensure(self):
670
+ """ """
671
+ ...
672
+
673
+ def id_properties_ui(self):
674
+ """ """
675
+ ...
676
+
677
+ def is_extended(self):
678
+ """ """
679
+ ...
680
+
681
+ def is_property_hidden(self):
682
+ """ """
683
+ ...
684
+
685
+ def is_property_overridable_library(self):
686
+ """ """
687
+ ...
688
+
689
+ def is_property_readonly(self):
690
+ """ """
691
+ ...
692
+
693
+ def is_property_set(self):
694
+ """ """
695
+ ...
696
+
697
+ def items(self):
698
+ """ """
699
+ ...
700
+
701
+ def keyframe_delete(self):
702
+ """ """
703
+ ...
704
+
705
+ def keyframe_insert(self):
706
+ """ """
707
+ ...
708
+
709
+ def keys(self):
710
+ """ """
711
+ ...
712
+
713
+ def path_from_id(self):
714
+ """ """
715
+ ...
716
+
717
+ def path_menu(
718
+ self,
719
+ searchpaths,
720
+ operator,
721
+ props_default,
722
+ prop_filepath,
723
+ filter_ext,
724
+ filter_path,
725
+ display_name,
726
+ add_operator,
727
+ add_operator_props,
728
+ ):
729
+ """
730
+
731
+ :param searchpaths:
732
+ :param operator:
733
+ :param props_default:
734
+ :param prop_filepath:
735
+ :param filter_ext:
736
+ :param filter_path:
737
+ :param display_name:
738
+ :param add_operator:
739
+ :param add_operator_props:
740
+ """
741
+ ...
742
+
743
+ def path_resolve(self):
744
+ """ """
745
+ ...
746
+
747
+ def pop(self):
748
+ """ """
749
+ ...
750
+
751
+ def prepend(self, draw_func):
752
+ """
753
+
754
+ :param draw_func:
755
+ """
756
+ ...
757
+
758
+ def property_overridable_library_set(self):
759
+ """ """
760
+ ...
761
+
762
+ def property_unset(self):
763
+ """ """
764
+ ...
765
+
766
+ def remove(self, draw_func):
767
+ """
768
+
769
+ :param draw_func:
770
+ """
771
+ ...
772
+
773
+ def type_recast(self):
774
+ """ """
775
+ ...
776
+
777
+ def values(self):
778
+ """ """
779
+ ...
780
+
600
781
  class DATA_PT_context_grease_pencil(
601
782
  bpy_types.Panel, DataButtonsPanel, bpy_types._GenericUI
602
783
  ):
blf/__init__.pyi CHANGED
@@ -105,12 +105,13 @@ def enable(fontid: int, option: int):
105
105
 
106
106
  ...
107
107
 
108
- def load(filepath: typing.Union[str, bytes]):
108
+ def load(filepath: typing.Union[str, bytes]) -> int:
109
109
  """Load a new font.
110
110
 
111
111
  :param filepath: the filepath of the font.
112
112
  :type filepath: typing.Union[str, bytes]
113
113
  :return: the new font's fontid or -1 if there was an error.
114
+ :rtype: int
114
115
  """
115
116
 
116
117
  ...
@@ -146,7 +147,7 @@ def shadow(fontid: int, level: int, r: float, g: float, b: float, a: float):
146
147
 
147
148
  :param fontid: The id of the typeface as returned by `blf.load`, for default font use 0.
148
149
  :type fontid: int
149
- :param level: The blur level, can be 3, 5 or 0.
150
+ :param level: The blur level (0, 3, 5) or outline (6).
150
151
  :type level: int
151
152
  :param r: Shadow color (red channel 0.0 - 1.0).
152
153
  :type r: float