fake-bge-module 20241226__py3-none-any.whl → 20241228__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.
@@ -2195,6 +2195,34 @@ class VIEW3D_MT_editor_menus(bpy.types.Menu):
2195
2195
  :param context:
2196
2196
  """
2197
2197
 
2198
+ class VIEW3D_MT_empty_add(bpy.types.Menu):
2199
+ bl_idname: typing.Any
2200
+ bl_label: typing.Any
2201
+ bl_options: typing.Any
2202
+ bl_rna: typing.Any
2203
+ bl_translation_context: typing.Any
2204
+ id_data: typing.Any
2205
+
2206
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
2207
+ """
2208
+
2209
+ :return: The RNA type or default when not found.
2210
+ :rtype: bpy.types.Struct
2211
+ """
2212
+
2213
+ def bl_rna_get_subclass_py(self) -> typing.Any:
2214
+ """
2215
+
2216
+ :return: The class or default when not found.
2217
+ :rtype: typing.Any
2218
+ """
2219
+
2220
+ def draw(self, _context):
2221
+ """
2222
+
2223
+ :param _context:
2224
+ """
2225
+
2198
2226
  class VIEW3D_MT_face_sets(bpy.types.Menu):
2199
2227
  bl_label: typing.Any
2200
2228
  bl_rna: typing.Any
bpy/props/__init__.pyi CHANGED
@@ -83,6 +83,10 @@ Remember that these callbacks may be executed in threaded context.
83
83
 
84
84
  ```../examples/bpy.props.5.py```
85
85
 
86
+ [NOTE]
87
+ Pointer properties do not support storing references to embedded IDs (e.g. bpy.types.Scene.collection, bpy.types.Material.node_tree).
88
+ These should exclusively be referenced and accessed through their owner ID (e.g. the scene or material).
89
+
86
90
  [NOTE]
87
91
  Typically this function doesn't need to be accessed directly.
88
92
  Instead use del cls.attr
bpy/types/__init__.pyi CHANGED
@@ -96232,6 +96232,8 @@ example of how to create/use filtering/reordering callbacks.
96232
96232
  * FunctionNodeCompare.output_template
96233
96233
  * FunctionNodeEulerToRotation.input_template
96234
96234
  * FunctionNodeEulerToRotation.output_template
96235
+ * FunctionNodeFindInString.input_template
96236
+ * FunctionNodeFindInString.output_template
96235
96237
  * FunctionNodeFloatToInt.input_template
96236
96238
  * FunctionNodeFloatToInt.output_template
96237
96239
  * FunctionNodeHashValue.input_template
@@ -106922,6 +106924,100 @@ This example script prints the vertices and UVs for each polygon, assumes the ac
106922
106924
  :columns: 2
106923
106925
 
106924
106926
 
106927
+ --------------------
106928
+
106929
+ * bpy_struct.id_data
106930
+ * Node.type
106931
+ * Node.location
106932
+ * Node.location_absolute
106933
+ * Node.width
106934
+ * Node.height
106935
+ * Node.dimensions
106936
+ * Node.name
106937
+ * Node.label
106938
+ * Node.inputs
106939
+ * Node.outputs
106940
+ * Node.internal_links
106941
+ * Node.parent
106942
+ * Node.warning_propagation
106943
+ * Node.use_custom_color
106944
+ * Node.color
106945
+ * Node.color_tag
106946
+ * Node.select
106947
+ * Node.show_options
106948
+ * Node.show_preview
106949
+ * Node.hide
106950
+ * Node.mute
106951
+ * Node.show_texture
106952
+ * Node.bl_idname
106953
+ * Node.bl_label
106954
+ * Node.bl_description
106955
+ * Node.bl_icon
106956
+ * Node.bl_static_type
106957
+ * Node.bl_width_default
106958
+ * Node.bl_width_min
106959
+ * Node.bl_width_max
106960
+ * Node.bl_height_default
106961
+ * Node.bl_height_min
106962
+ * Node.bl_height_max
106963
+
106964
+ :columns: 2
106965
+
106966
+
106967
+ --------------------
106968
+
106969
+ * bpy_struct.as_pointer
106970
+ * bpy_struct.driver_add
106971
+ * bpy_struct.driver_remove
106972
+ * bpy_struct.get
106973
+ * bpy_struct.id_properties_clear
106974
+ * bpy_struct.id_properties_ensure
106975
+ * bpy_struct.id_properties_ui
106976
+ * bpy_struct.is_property_hidden
106977
+ * bpy_struct.is_property_overridable_library
106978
+ * bpy_struct.is_property_readonly
106979
+ * bpy_struct.is_property_set
106980
+ * bpy_struct.items
106981
+ * bpy_struct.keyframe_delete
106982
+ * bpy_struct.keyframe_insert
106983
+ * bpy_struct.keys
106984
+ * bpy_struct.path_from_id
106985
+ * bpy_struct.path_resolve
106986
+ * bpy_struct.pop
106987
+ * bpy_struct.property_overridable_library_set
106988
+ * bpy_struct.property_unset
106989
+ * bpy_struct.type_recast
106990
+ * bpy_struct.values
106991
+ * Node.socket_value_update
106992
+ * Node.is_registered_node_type
106993
+ * Node.poll
106994
+ * Node.poll_instance
106995
+ * Node.update
106996
+ * Node.insert_link
106997
+ * Node.init
106998
+ * Node.copy
106999
+ * Node.free
107000
+ * Node.draw_buttons
107001
+ * Node.draw_buttons_ext
107002
+ * Node.draw_label
107003
+ * Node.debug_zone_body_lazy_function_graph
107004
+ * Node.debug_zone_lazy_function_graph
107005
+ * Node.poll
107006
+ * Node.bl_rna_get_subclass
107007
+ * Node.bl_rna_get_subclass_py
107008
+ * NodeInternal.poll
107009
+ * NodeInternal.poll_instance
107010
+ * NodeInternal.update
107011
+ * NodeInternal.draw_buttons
107012
+ * NodeInternal.draw_buttons_ext
107013
+ * NodeInternal.bl_rna_get_subclass
107014
+ * NodeInternal.bl_rna_get_subclass_py
107015
+ * FunctionNode.bl_rna_get_subclass
107016
+ * FunctionNode.bl_rna_get_subclass_py
107017
+
107018
+ :columns: 2
107019
+
107020
+
106925
107021
  --------------------
106926
107022
 
106927
107023
  * bpy_struct.id_data
@@ -148390,6 +148486,57 @@ class FunctionNodeEulerToRotation(FunctionNode, NodeInternal, Node, bpy_struct):
148390
148486
  :rtype: typing.Any
148391
148487
  """
148392
148488
 
148489
+ class FunctionNodeFindInString(FunctionNode, NodeInternal, Node, bpy_struct):
148490
+ @classmethod
148491
+ def is_registered_node_type(cls) -> bool:
148492
+ """True if a registered node type
148493
+
148494
+ :return: Result
148495
+ :rtype: bool
148496
+ """
148497
+
148498
+ @classmethod
148499
+ def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
148500
+ """Input socket template
148501
+
148502
+ :param index: Index
148503
+ :type index: int | None
148504
+ :return: result
148505
+ :rtype: NodeInternalSocketTemplate
148506
+ """
148507
+
148508
+ @classmethod
148509
+ def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
148510
+ """Output socket template
148511
+
148512
+ :param index: Index
148513
+ :type index: int | None
148514
+ :return: result
148515
+ :rtype: NodeInternalSocketTemplate
148516
+ """
148517
+
148518
+ @classmethod
148519
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
148520
+ """
148521
+
148522
+ :param id: The RNA type identifier.
148523
+ :type id: str | None
148524
+ :param default:
148525
+ :return: The RNA type or default when not found.
148526
+ :rtype: Struct
148527
+ """
148528
+
148529
+ @classmethod
148530
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
148531
+ """
148532
+
148533
+ :param id: The RNA type identifier.
148534
+ :type id: str | None
148535
+ :param default:
148536
+ :return: The class or default when not found.
148537
+ :rtype: typing.Any
148538
+ """
148539
+
148393
148540
  class FunctionNodeFloatToInt(FunctionNode, NodeInternal, Node, bpy_struct):
148394
148541
  rounding_mode: bpy.typing.NodeFloatToIntItems
148395
148542
  """ Method used to convert the float to an integer
@@ -245161,6 +245308,8 @@ VIEW3D_MT_edit_surface: bl_ui.space_view3d.VIEW3D_MT_edit_surface
245161
245308
 
245162
245309
  VIEW3D_MT_editor_menus: bl_ui.space_view3d.VIEW3D_MT_editor_menus
245163
245310
 
245311
+ VIEW3D_MT_empty_add: bl_ui.space_view3d.VIEW3D_MT_empty_add
245312
+
245164
245313
  VIEW3D_MT_face_sets: bl_ui.space_view3d.VIEW3D_MT_face_sets
245165
245314
 
245166
245315
  VIEW3D_MT_face_sets_init: bl_ui.space_view3d.VIEW3D_MT_face_sets_init
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bge-module
3
- Version: 20241226
3
+ Version: 20241228
4
4
  Summary: Collection of the fake Blender Game Engine (BGE) Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -196,7 +196,7 @@ bl_ui/space_toolsystem_common/__init__.pyi,sha256=IFq4tTh_oM6-dQWMZbuRo6HhYinOLB
196
196
  bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=amIcQArvjsuZ7iHNMO3EETPZ1LXkSGRjIwTLtqDkJbk,9946
197
197
  bl_ui/space_topbar/__init__.pyi,sha256=tVupsHc6IdA1o_axDcB1Cbf0o8ARZzgLncMXgguQnWY,15316
198
198
  bl_ui/space_userpref/__init__.pyi,sha256=iLYc94VUBgP3dE6whoVFktEjvqAE-oLGDbtey9Y4L0E,79675
199
- bl_ui/space_view3d/__init__.pyi,sha256=rEdRAL_GqVB9ZENgJZg8GgfZUJbn66MJ8juZuLyOBb4,155552
199
+ bl_ui/space_view3d/__init__.pyi,sha256=2XdGSo7tQ4_Hx_BL89AqXOqNHVXdkLHkvMUK88LX8-I,156171
200
200
  bl_ui/space_view3d_toolbar/__init__.pyi,sha256=EG6IIG6nSOJAvIRRxU3TyjEQNWZ_n2tFEB6FlwjIhuw,76295
201
201
  bl_ui/utils/__init__.pyi,sha256=qkgl-AlZI3QD4UUITGIvN9PbifOI4BPkZBpu7WyxMBw,483
202
202
  bl_ui_utils/__init__.pyi,sha256=ZOo9_bgn1c9NiCNalhTplCD2IChG67rU_V3BeG0k4pE,93
@@ -299,8 +299,8 @@ bpy/ops/wm/__init__.pyi,sha256=qZIVpmo960-MeNzY2luRjFGcQaZLO4M0BnjtvY3Zcx8,23223
299
299
  bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJY,3133
300
300
  bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
301
301
  bpy/path/__init__.pyi,sha256=b_M-IUy-VEWMDZJH0bP9P-HHcLLcQo59S1dARRQrP9E,5064
302
- bpy/props/__init__.pyi,sha256=Do_cp_VuSfmXp66VbLhesCH-sI_OgR5St-TpauUFo1c,30889
303
- bpy/types/__init__.pyi,sha256=h4aI6TA3EBfJD5MNBnA1v27G0KsvB4MfEYprLbhLK6k,5629169
302
+ bpy/props/__init__.pyi,sha256=k9vf7m3oEeYq3t2Ropv6BhzAk1cH5L-0qe9U5N9NZuA,31136
303
+ bpy/types/__init__.pyi,sha256=YofK_jZrbhgiplLAczPc145rGKMQ5tJm4mBfk_hDzOs,5632639
304
304
  bpy/typing/__init__.pyi,sha256=3KI4vqpVn5OlaoxmsWH9LYKDmNxRYltoP_Jid2cSOnE,139452
305
305
  bpy/utils/__init__.pyi,sha256=XXoE6J8aW13NQ-2FvnFORXyNVUFfO8hSno-xfgJ6ZNI,13078
306
306
  bpy/utils/previews/__init__.pyi,sha256=XEThA7jxMWet1sPTJ3mmngM6LdAdKiIVSZOKbCsbvzw,2217
@@ -364,7 +364,7 @@ keyingsets_builtins/__init__.pyi,sha256=FmSnRj8eAiQ_O-X_-kAHM_a8rCv_HZBrjXLXDRss
364
364
  keyingsets_builtins/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
365
365
  keyingsets_utils/__init__.pyi,sha256=UpGuAqOVl6bmy3rffJhqFS8ZKhUtAV-MfVyuuHtqXQI,770
366
366
  keyingsets_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
367
- mathutils/__init__.pyi,sha256=3udxVUkLdDN4OGc8TkIrsbhk79aq1bBWoJze-PNbloQ,85115
367
+ mathutils/__init__.pyi,sha256=sDnTH-uhMaB1yyy_9JPLrGsKi210wdrzDxM7fh0rfKo,85137
368
368
  mathutils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
369
369
  mathutils/bvhtree/__init__.pyi,sha256=QYzvayvePk9ZRSoLBU37C_qILQLka94FGfuUmguKIRo,4061
370
370
  mathutils/geometry/__init__.pyi,sha256=0zip3XQVFWaYQFyF5LWiFYP6zdU31SLJHq2BEymlinM,20563
@@ -383,7 +383,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
383
383
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
384
384
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
385
385
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
386
- fake_bge_module-20241226.dist-info/METADATA,sha256=BEDvauP6bAIffCAYjKRTo4kpm8ixYHGBpxjoSRHlp9M,4787
387
- fake_bge_module-20241226.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
388
- fake_bge_module-20241226.dist-info/top_level.txt,sha256=G2g8DM6N1EXHQhWiW_lc0Dp7Tmqpop00oo_f2rdLQOU,520
389
- fake_bge_module-20241226.dist-info/RECORD,,
386
+ fake_bge_module-20241228.dist-info/METADATA,sha256=k0jkaNAPycYzQUQZm0mYgfjevNBM2yM0XGMMDW6IABA,4787
387
+ fake_bge_module-20241228.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
388
+ fake_bge_module-20241228.dist-info/top_level.txt,sha256=G2g8DM6N1EXHQhWiW_lc0Dp7Tmqpop00oo_f2rdLQOU,520
389
+ fake_bge_module-20241228.dist-info/RECORD,,
mathutils/__init__.pyi CHANGED
@@ -3610,7 +3610,9 @@ class Vector:
3610
3610
  """
3611
3611
 
3612
3612
  def angle_signed(
3613
- self, other: collections.abc.Sequence[float] | typing_extensions.Self, fallback
3613
+ self,
3614
+ other: collections.abc.Sequence[float] | typing_extensions.Self,
3615
+ fallback=None,
3614
3616
  ):
3615
3617
  """Return the signed angle between two 2D vectors (clockwise is positive).
3616
3618