fake-bge-module 20250103__py3-none-any.whl → 20250201__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.
- addon_utils/__init__.pyi +11 -6
- aud/__init__.pyi +4 -0
- bge/types/__init__.pyi +66 -27
- bgl/__init__.pyi +2 -2
- bgui/image/__init__.pyi +3 -1
- bgui/system/__init__.pyi +12 -4
- bl_console_utils/autocomplete/complete_calltip/__init__.pyi +5 -2
- bl_console_utils/autocomplete/complete_import/__init__.pyi +6 -3
- bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -1
- bl_console_utils/autocomplete/intellisense/__init__.pyi +8 -2
- bl_operators/node/__init__.pyi +78 -0
- bl_ui/anim/__init__.pyi +6 -0
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu_shader/__init__.pyi +0 -1
- bl_ui/node_add_menu_texture/__init__.pyi +1 -0
- bl_ui/properties_data_camera/__init__.pyi +0 -2
- bl_ui/properties_mask_common/__init__.pyi +17 -0
- bl_ui/properties_material_gpencil/__init__.pyi +29 -0
- bl_ui/properties_scene/__init__.pyi +6 -0
- bl_ui/properties_view_layer/__init__.pyi +1 -0
- bl_ui/space_clip/__init__.pyi +53 -0
- bl_ui/space_graph/__init__.pyi +2 -0
- bl_ui/space_image/__init__.pyi +25 -0
- bl_ui/space_node/__init__.pyi +0 -1
- bl_ui/space_sequencer/__init__.pyi +2 -1
- blf/__init__.pyi +6 -3
- bmesh/ops/__init__.pyi +111 -54
- bmesh/types/__init__.pyi +134 -46
- bmesh/utils/__init__.pyi +17 -5
- bpy/__init__.pyi +1 -2
- bpy/_typing/__init__.pyi +4 -0
- bpy/{typing → _typing/rna_enums}/__init__.pyi +36 -36
- bpy/app/__init__.pyi +13 -5
- bpy/app/handlers/__init__.pyi +4 -2
- bpy/app/icons/__init__.pyi +6 -2
- bpy/app/translations/__init__.pyi +17 -8
- bpy/msgbus/__init__.pyi +14 -2
- bpy/ops/action/__init__.pyi +51 -151
- bpy/ops/anim/__init__.pyi +61 -179
- bpy/ops/armature/__init__.pyi +48 -147
- bpy/ops/asset/__init__.pyi +16 -71
- bpy/ops/boid/__init__.pyi +11 -44
- bpy/ops/brush/__init__.pyi +16 -42
- bpy/ops/buttons/__init__.pyi +6 -29
- bpy/ops/cachefile/__init__.pyi +5 -19
- bpy/ops/camera/__init__.pyi +2 -5
- bpy/ops/clip/__init__.pyi +95 -293
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +10 -26
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +57 -186
- bpy/ops/curves/__init__.pyi +37 -109
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +8 -22
- bpy/ops/ed/__init__.pyi +20 -52
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +55 -32
- bpy/ops/extensions/__init__.pyi +34 -110
- bpy/ops/file/__init__.pyi +40 -167
- bpy/ops/fluid/__init__.pyi +14 -77
- bpy/ops/font/__init__.pyi +23 -85
- bpy/ops/geometry/__init__.pyi +29 -46
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +82 -201
- bpy/ops/grease_pencil/__init__.pyi +125 -324
- bpy/ops/image/__init__.pyi +61 -163
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +4 -6
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +11 -32
- bpy/ops/logic/__init__.pyi +26 -65
- bpy/ops/marker/__init__.pyi +11 -31
- bpy/ops/mask/__init__.pyi +39 -132
- bpy/ops/material/__init__.pyi +3 -19
- bpy/ops/mball/__init__.pyi +8 -19
- bpy/ops/mesh/__init__.pyi +223 -470
- bpy/ops/nla/__init__.pyi +42 -150
- bpy/ops/node/__init__.pyi +169 -393
- bpy/ops/object/__init__.pyi +320 -749
- bpy/ops/outliner/__init__.pyi +76 -268
- bpy/ops/paint/__init__.pyi +67 -147
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +39 -134
- bpy/ops/pose/__init__.pyi +64 -182
- bpy/ops/poselib/__init__.pyi +9 -33
- bpy/ops/preferences/__init__.pyi +35 -94
- bpy/ops/ptcache/__init__.pyi +7 -33
- bpy/ops/render/__init__.pyi +13 -37
- bpy/ops/rigidbody/__init__.pyi +22 -54
- bpy/ops/scene/__init__.pyi +47 -130
- bpy/ops/screen/__init__.pyi +46 -144
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +40 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +104 -327
- bpy/ops/sound/__init__.pyi +17 -28
- bpy/ops/spreadsheet/__init__.pyi +4 -15
- bpy/ops/surface/__init__.pyi +6 -13
- bpy/ops/text/__init__.pyi +43 -175
- bpy/ops/text_editor/__init__.pyi +1 -3
- bpy/ops/texture/__init__.pyi +4 -21
- bpy/ops/transform/__init__.pyi +114 -134
- bpy/ops/ui/__init__.pyi +39 -120
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +58 -143
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +68 -238
- bpy/ops/wm/__init__.pyi +178 -319
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- bpy/path/__init__.pyi +16 -6
- bpy/props/__init__.pyi +157 -127
- bpy/types/__init__.pyi +35227 -34838
- bpy/utils/__init__.pyi +71 -25
- bpy/utils/previews/__init__.pyi +2 -1
- bpy/utils/units/__init__.pyi +2 -1
- bpy_extras/anim_utils/__init__.pyi +11 -3
- bpy_extras/bmesh_utils/__init__.pyi +2 -1
- bpy_extras/image_utils/__init__.pyi +5 -2
- bpy_extras/io_utils/__init__.pyi +12 -5
- bpy_extras/mesh_utils/__init__.pyi +27 -6
- bpy_extras/object_utils/__init__.pyi +6 -5
- bpy_extras/view3d_utils/__init__.pyi +9 -2
- {fake_bge_module-20250103.dist-info → fake_bge_module-20250201.dist-info}/METADATA +3 -3
- {fake_bge_module-20250103.dist-info → fake_bge_module-20250201.dist-info}/RECORD +153 -152
- {fake_bge_module-20250103.dist-info → fake_bge_module-20250201.dist-info}/WHEEL +1 -1
- freestyle/chainingiterators/__init__.pyi +7 -2
- freestyle/functions/__init__.pyi +16 -4
- freestyle/shaders/__init__.pyi +5 -1
- freestyle/types/__init__.pyi +103 -30
- freestyle/utils/ContextFunctions/__init__.pyi +2 -2
- freestyle/utils/__init__.pyi +2 -1
- gpu/capabilities/__init__.pyi +2 -1
- gpu/matrix/__init__.pyi +4 -2
- gpu/state/__init__.pyi +2 -2
- gpu/types/__init__.pyi +40 -8
- gpu_extras/batch/__init__.pyi +13 -1
- gpu_extras/presets/__init__.pyi +10 -1
- idprop/types/__init__.pyi +4 -2
- imbuf/__init__.pyi +6 -3
- imbuf/types/__init__.pyi +5 -2
- mathutils/__init__.pyi +126 -35
- mathutils/bvhtree/__init__.pyi +21 -6
- mathutils/geometry/__init__.pyi +68 -22
- mathutils/interpolate/__init__.pyi +5 -1
- mathutils/kdtree/__init__.pyi +21 -8
- mathutils/noise/__init__.pyi +2 -1
- rna_info/__init__.pyi +2 -1
- {fake_bge_module-20250103.dist-info → fake_bge_module-20250201.dist-info}/top_level.txt +0 -0
bl_ui/space_clip/__init__.pyi
CHANGED
|
@@ -860,6 +860,34 @@ class CLIP_PT_active_mask_spline(
|
|
|
860
860
|
:rtype: typing.Any
|
|
861
861
|
"""
|
|
862
862
|
|
|
863
|
+
class CLIP_PT_animation(CLIP_PT_clip_view_panel, bpy.types.Panel):
|
|
864
|
+
bl_category: typing.Any
|
|
865
|
+
bl_label: typing.Any
|
|
866
|
+
bl_region_type: typing.Any
|
|
867
|
+
bl_rna: typing.Any
|
|
868
|
+
bl_space_type: typing.Any
|
|
869
|
+
id_data: typing.Any
|
|
870
|
+
|
|
871
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
872
|
+
"""
|
|
873
|
+
|
|
874
|
+
:return: The RNA type or default when not found.
|
|
875
|
+
:rtype: bpy.types.Struct
|
|
876
|
+
"""
|
|
877
|
+
|
|
878
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
879
|
+
"""
|
|
880
|
+
|
|
881
|
+
:return: The class or default when not found.
|
|
882
|
+
:rtype: typing.Any
|
|
883
|
+
"""
|
|
884
|
+
|
|
885
|
+
def draw(self, context):
|
|
886
|
+
"""
|
|
887
|
+
|
|
888
|
+
:param context:
|
|
889
|
+
"""
|
|
890
|
+
|
|
863
891
|
class CLIP_PT_annotation(
|
|
864
892
|
CLIP_PT_clip_view_panel,
|
|
865
893
|
bl_ui.properties_grease_pencil_common.AnnotationDataPanel,
|
|
@@ -1115,6 +1143,31 @@ class CLIP_PT_mask(bl_ui.properties_mask_common.MASK_PT_mask, bpy.types.Panel):
|
|
|
1115
1143
|
:rtype: typing.Any
|
|
1116
1144
|
"""
|
|
1117
1145
|
|
|
1146
|
+
class CLIP_PT_mask_animation(
|
|
1147
|
+
bl_ui.properties_mask_common.MASK_PT_animation, bpy.types.Panel
|
|
1148
|
+
):
|
|
1149
|
+
bl_category: typing.Any
|
|
1150
|
+
bl_label: typing.Any
|
|
1151
|
+
bl_options: typing.Any
|
|
1152
|
+
bl_region_type: typing.Any
|
|
1153
|
+
bl_rna: typing.Any
|
|
1154
|
+
bl_space_type: typing.Any
|
|
1155
|
+
id_data: typing.Any
|
|
1156
|
+
|
|
1157
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1158
|
+
"""
|
|
1159
|
+
|
|
1160
|
+
:return: The RNA type or default when not found.
|
|
1161
|
+
:rtype: bpy.types.Struct
|
|
1162
|
+
"""
|
|
1163
|
+
|
|
1164
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1165
|
+
"""
|
|
1166
|
+
|
|
1167
|
+
:return: The class or default when not found.
|
|
1168
|
+
:rtype: typing.Any
|
|
1169
|
+
"""
|
|
1170
|
+
|
|
1118
1171
|
class CLIP_PT_mask_display(
|
|
1119
1172
|
bl_ui.properties_mask_common.MASK_PT_display, bpy.types.Panel
|
|
1120
1173
|
):
|
bl_ui/space_graph/__init__.pyi
CHANGED
|
@@ -158,6 +158,7 @@ class GRAPH_MT_key(bpy.types.Menu):
|
|
|
158
158
|
class GRAPH_MT_key_blending(bpy.types.Menu):
|
|
159
159
|
bl_label: typing.Any
|
|
160
160
|
bl_rna: typing.Any
|
|
161
|
+
bl_translation_context: typing.Any
|
|
161
162
|
id_data: typing.Any
|
|
162
163
|
|
|
163
164
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -208,6 +209,7 @@ class GRAPH_MT_key_density(bpy.types.Menu):
|
|
|
208
209
|
class GRAPH_MT_key_smoothing(bpy.types.Menu):
|
|
209
210
|
bl_label: typing.Any
|
|
210
211
|
bl_rna: typing.Any
|
|
212
|
+
bl_translation_context: typing.Any
|
|
211
213
|
id_data: typing.Any
|
|
212
214
|
|
|
213
215
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
bl_ui/space_image/__init__.pyi
CHANGED
|
@@ -881,6 +881,31 @@ class IMAGE_PT_mask(bl_ui.properties_mask_common.MASK_PT_mask, bpy.types.Panel):
|
|
|
881
881
|
:rtype: typing.Any
|
|
882
882
|
"""
|
|
883
883
|
|
|
884
|
+
class IMAGE_PT_mask_animation(
|
|
885
|
+
bl_ui.properties_mask_common.MASK_PT_animation, bpy.types.Panel
|
|
886
|
+
):
|
|
887
|
+
bl_category: typing.Any
|
|
888
|
+
bl_label: typing.Any
|
|
889
|
+
bl_options: typing.Any
|
|
890
|
+
bl_region_type: typing.Any
|
|
891
|
+
bl_rna: typing.Any
|
|
892
|
+
bl_space_type: typing.Any
|
|
893
|
+
id_data: typing.Any
|
|
894
|
+
|
|
895
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
896
|
+
"""
|
|
897
|
+
|
|
898
|
+
:return: The RNA type or default when not found.
|
|
899
|
+
:rtype: bpy.types.Struct
|
|
900
|
+
"""
|
|
901
|
+
|
|
902
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
903
|
+
"""
|
|
904
|
+
|
|
905
|
+
:return: The class or default when not found.
|
|
906
|
+
:rtype: typing.Any
|
|
907
|
+
"""
|
|
908
|
+
|
|
884
909
|
class IMAGE_PT_mask_display(
|
|
885
910
|
bl_ui.properties_mask_common.MASK_PT_display, bpy.types.Panel
|
|
886
911
|
):
|
bl_ui/space_node/__init__.pyi
CHANGED
|
@@ -1458,6 +1458,7 @@ class SEQUENCER_PT_effect_text_box(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1458
1458
|
bl_region_type: typing.Any
|
|
1459
1459
|
bl_rna: typing.Any
|
|
1460
1460
|
bl_space_type: typing.Any
|
|
1461
|
+
bl_translation_context: typing.Any
|
|
1461
1462
|
id_data: typing.Any
|
|
1462
1463
|
|
|
1463
1464
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
@@ -2600,4 +2601,4 @@ class SequencerColorTagPicker:
|
|
|
2600
2601
|
"""
|
|
2601
2602
|
|
|
2602
2603
|
def draw_color_balance(layout, color_balance): ...
|
|
2603
|
-
def
|
|
2604
|
+
def selected_strips_count(context): ...
|
blf/__init__.pyi
CHANGED
|
@@ -54,7 +54,7 @@ def color(fontid: int, r: float, g: float, b: float, a: float):
|
|
|
54
54
|
:type a: float
|
|
55
55
|
"""
|
|
56
56
|
|
|
57
|
-
def dimensions(fontid: int, text: str):
|
|
57
|
+
def dimensions(fontid: int, text: str) -> tuple[float, float]:
|
|
58
58
|
"""Return the width and height of the text.
|
|
59
59
|
|
|
60
60
|
:param fontid: The id of the typeface as returned by `blf.load`, for default font use 0.
|
|
@@ -62,6 +62,7 @@ def dimensions(fontid: int, text: str):
|
|
|
62
62
|
:param text: the text to draw.
|
|
63
63
|
:type text: str
|
|
64
64
|
:return: the width and height of the text.
|
|
65
|
+
:rtype: tuple[float, float]
|
|
65
66
|
"""
|
|
66
67
|
|
|
67
68
|
def disable(fontid: int, option: int):
|
|
@@ -91,10 +92,11 @@ def enable(fontid: int, option: int):
|
|
|
91
92
|
:type option: int
|
|
92
93
|
"""
|
|
93
94
|
|
|
94
|
-
def load(filepath) -> int:
|
|
95
|
+
def load(filepath: bytes | str) -> int:
|
|
95
96
|
"""Load a new font.
|
|
96
97
|
|
|
97
98
|
:param filepath: the filepath of the font.
|
|
99
|
+
:type filepath: bytes | str
|
|
98
100
|
:return: the new font's fontid or -1 if there was an error.
|
|
99
101
|
:rtype: int
|
|
100
102
|
"""
|
|
@@ -158,10 +160,11 @@ def size(fontid: int, size: float):
|
|
|
158
160
|
:type size: float
|
|
159
161
|
"""
|
|
160
162
|
|
|
161
|
-
def unload(filepath):
|
|
163
|
+
def unload(filepath: bytes | str):
|
|
162
164
|
"""Unload an existing font.
|
|
163
165
|
|
|
164
166
|
:param filepath: the filepath of the font.
|
|
167
|
+
:type filepath: bytes | str
|
|
165
168
|
"""
|
|
166
169
|
|
|
167
170
|
def word_wrap(fontid: int, wrap_width: int):
|