fake-bge-module 20250307__py3-none-any.whl → 20250309__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/ops/node/__init__.pyi CHANGED
@@ -6,6 +6,15 @@ import bpy._typing.rna_enums
6
6
  import bpy.ops.transform
7
7
  import bpy.types
8
8
 
9
+ def activate_viewer(
10
+ execution_context: int | str | None = None, undo: bool | None = None
11
+ ):
12
+ """Activate selected viewer node in compositor and geometry nodes
13
+
14
+ :type execution_context: int | str | None
15
+ :type undo: bool | None
16
+ """
17
+
9
18
  def add_collection(
10
19
  execution_context: int | str | None = None,
11
20
  undo: bool | None = None,
bpy/types/__init__.pyi CHANGED
@@ -9922,6 +9922,8 @@ Shared Enum Types <bpy_types_enum_items/index>
9922
9922
  * GeometryNodeImportPLY.output_template
9923
9923
  * GeometryNodeImportSTL.input_template
9924
9924
  * GeometryNodeImportSTL.output_template
9925
+ * GeometryNodeImportText.input_template
9926
+ * GeometryNodeImportText.output_template
9925
9927
  * GeometryNodeIndexOfNearest.input_template
9926
9928
  * GeometryNodeIndexOfNearest.output_template
9927
9929
  * GeometryNodeIndexSwitch.input_template
@@ -101148,6 +101150,102 @@ of the scene and only show nodes of the renderer they are designed for.
101148
101150
  :columns: 2
101149
101151
 
101150
101152
 
101153
+ --------------------
101154
+
101155
+ * bpy_struct.id_data
101156
+ * Node.type
101157
+ * Node.location
101158
+ * Node.location_absolute
101159
+ * Node.width
101160
+ * Node.height
101161
+ * Node.dimensions
101162
+ * Node.name
101163
+ * Node.label
101164
+ * Node.inputs
101165
+ * Node.outputs
101166
+ * Node.internal_links
101167
+ * Node.parent
101168
+ * Node.warning_propagation
101169
+ * Node.use_custom_color
101170
+ * Node.color
101171
+ * Node.color_tag
101172
+ * Node.select
101173
+ * Node.show_options
101174
+ * Node.show_preview
101175
+ * Node.hide
101176
+ * Node.mute
101177
+ * Node.show_texture
101178
+ * Node.bl_idname
101179
+ * Node.bl_label
101180
+ * Node.bl_description
101181
+ * Node.bl_icon
101182
+ * Node.bl_static_type
101183
+ * Node.bl_width_default
101184
+ * Node.bl_width_min
101185
+ * Node.bl_width_max
101186
+ * Node.bl_height_default
101187
+ * Node.bl_height_min
101188
+ * Node.bl_height_max
101189
+
101190
+ :columns: 2
101191
+
101192
+
101193
+ --------------------
101194
+
101195
+ * bpy_struct.as_pointer
101196
+ * bpy_struct.driver_add
101197
+ * bpy_struct.driver_remove
101198
+ * bpy_struct.get
101199
+ * bpy_struct.id_properties_clear
101200
+ * bpy_struct.id_properties_ensure
101201
+ * bpy_struct.id_properties_ui
101202
+ * bpy_struct.is_property_hidden
101203
+ * bpy_struct.is_property_overridable_library
101204
+ * bpy_struct.is_property_readonly
101205
+ * bpy_struct.is_property_set
101206
+ * bpy_struct.items
101207
+ * bpy_struct.keyframe_delete
101208
+ * bpy_struct.keyframe_insert
101209
+ * bpy_struct.keys
101210
+ * bpy_struct.path_from_id
101211
+ * bpy_struct.path_resolve
101212
+ * bpy_struct.pop
101213
+ * bpy_struct.property_overridable_library_set
101214
+ * bpy_struct.property_unset
101215
+ * bpy_struct.rna_ancestors
101216
+ * bpy_struct.type_recast
101217
+ * bpy_struct.values
101218
+ * Node.socket_value_update
101219
+ * Node.is_registered_node_type
101220
+ * Node.poll
101221
+ * Node.poll_instance
101222
+ * Node.update
101223
+ * Node.insert_link
101224
+ * Node.init
101225
+ * Node.copy
101226
+ * Node.free
101227
+ * Node.draw_buttons
101228
+ * Node.draw_buttons_ext
101229
+ * Node.draw_label
101230
+ * Node.debug_zone_body_lazy_function_graph
101231
+ * Node.debug_zone_lazy_function_graph
101232
+ * Node.poll
101233
+ * Node.bl_rna_get_subclass
101234
+ * Node.bl_rna_get_subclass_py
101235
+ * NodeInternal.poll
101236
+ * NodeInternal.poll_instance
101237
+ * NodeInternal.update
101238
+ * NodeInternal.draw_buttons
101239
+ * NodeInternal.draw_buttons_ext
101240
+ * NodeInternal.bl_rna_get_subclass
101241
+ * NodeInternal.bl_rna_get_subclass_py
101242
+ * GeometryNode.poll
101243
+ * GeometryNode.bl_rna_get_subclass
101244
+ * GeometryNode.bl_rna_get_subclass_py
101245
+
101246
+ :columns: 2
101247
+
101248
+
101151
101249
  --------------------
101152
101250
 
101153
101251
  * bpy_struct.id_data
@@ -158180,6 +158278,59 @@ class GeometryNodeImportSTL(GeometryNode, NodeInternal, Node, bpy_struct):
158180
158278
  :rtype: typing.Any
158181
158279
  """
158182
158280
 
158281
+ class GeometryNodeImportText(GeometryNode, NodeInternal, Node, bpy_struct):
158282
+ """Import a string from a text file"""
158283
+
158284
+ @classmethod
158285
+ def is_registered_node_type(cls) -> bool:
158286
+ """True if a registered node type
158287
+
158288
+ :return: Result
158289
+ :rtype: bool
158290
+ """
158291
+
158292
+ @classmethod
158293
+ def input_template(cls, index: int | None) -> NodeInternalSocketTemplate:
158294
+ """Input socket template
158295
+
158296
+ :param index: Index
158297
+ :type index: int | None
158298
+ :return: result
158299
+ :rtype: NodeInternalSocketTemplate
158300
+ """
158301
+
158302
+ @classmethod
158303
+ def output_template(cls, index: int | None) -> NodeInternalSocketTemplate:
158304
+ """Output socket template
158305
+
158306
+ :param index: Index
158307
+ :type index: int | None
158308
+ :return: result
158309
+ :rtype: NodeInternalSocketTemplate
158310
+ """
158311
+
158312
+ @classmethod
158313
+ def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
158314
+ """
158315
+
158316
+ :param id: The RNA type identifier.
158317
+ :type id: str | None
158318
+ :param default:
158319
+ :return: The RNA type or default when not found.
158320
+ :rtype: Struct
158321
+ """
158322
+
158323
+ @classmethod
158324
+ def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
158325
+ """
158326
+
158327
+ :param id: The RNA type identifier.
158328
+ :type id: str | None
158329
+ :param default:
158330
+ :return: The class or default when not found.
158331
+ :rtype: typing.Any
158332
+ """
158333
+
158183
158334
  class GeometryNodeIndexOfNearest(GeometryNode, NodeInternal, Node, bpy_struct):
158184
158335
  """Find the nearest element in a group. Similar to the "Sample Nearest" node"""
158185
158336
 
@@ -183145,12 +183296,17 @@ class Mesh(ID, bpy_struct):
183145
183296
  """Calculate loop triangle tessellation (supports editmode too)"""
183146
183297
 
183147
183298
  def calc_smooth_groups(
183148
- self, *, use_bitflags: bool | None = False
183299
+ self,
183300
+ *,
183301
+ use_bitflags: bool | None = False,
183302
+ use_boundary_vertices_for_bitflags: bool | None = False,
183149
183303
  ) -> tuple[bpy_prop_array[int], int]:
183150
183304
  """Calculate smooth groups from sharp edges
183151
183305
 
183152
183306
  :param use_bitflags: Produce bitflags groups instead of simple numeric values
183153
183307
  :type use_bitflags: bool | None
183308
+ :param use_boundary_vertices_for_bitflags: Also consider different smoothgroups sharing only vertices (but without any common edge) as neighbors, preventing them from sharing the same bitflag value. Only effective when use_bitflags is set. WARNING: Will overflow (run out of available bits) easily with some types of topology, e.g. large fans of sharp edges
183309
+ :type use_boundary_vertices_for_bitflags: bool | None
183154
183310
  :return: poly_groups, Smooth Groups, int array of 1 items in [-inf, inf]
183155
183311
 
183156
183312
  groups, Total number of groups, int in [0, inf]
@@ -222875,7 +223031,7 @@ class SpaceSequenceEditor(Space, bpy_struct):
222875
223031
  """
222876
223032
 
222877
223033
  view_type: bpy._typing.rna_enums.SpaceSequencerViewTypeItems
222878
- """ Type of the Sequencer view (sequencer, preview or both)
223034
+ """ Type of the Sequencer view (blender::seq::SEQuencer, preview or both)
222879
223035
 
222880
223036
  :type: bpy._typing.rna_enums.SpaceSequencerViewTypeItems
222881
223037
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: fake-bge-module
3
- Version: 20250307
3
+ Version: 20250309
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
@@ -270,7 +270,7 @@ bpy/ops/material/__init__.pyi,sha256=8AhfpDXsCDLZI0UEESadmN8-zfNGEiDblmKobSJLcqA
270
270
  bpy/ops/mball/__init__.pyi,sha256=VRZZbMhoN6OWmsG-344hmoHQ-_qcjRuisuzJvLxGobI,4155
271
271
  bpy/ops/mesh/__init__.pyi,sha256=Gp2MK7c7qJtOinM72vvDDYV3wIAbFenIbej0hWcHj90,133710
272
272
  bpy/ops/nla/__init__.pyi,sha256=qWBmb8nOy9c6H_rKEjt3spO-TnwPaqJc1meOgDy5uaY,18145
273
- bpy/ops/node/__init__.pyi,sha256=_t4N9IV3nSDgScPxV3S0vXDzn5An55Gj1l3d-yaZsP8,54659
273
+ bpy/ops/node/__init__.pyi,sha256=LIxfaPkV2Wz7IJ4LGLiYe7GF1sqgsPLI09HFrmHKBTw,54910
274
274
  bpy/ops/object/__init__.pyi,sha256=n1R-03GbrfvRwsWn4H95PSYRNiAuRAGkJUjP7bpQovg,172604
275
275
  bpy/ops/outliner/__init__.pyi,sha256=la079qCOhk_Bf_FiEtjcNh0jP97X0sY5aPgnAxOT4x0,27743
276
276
  bpy/ops/paint/__init__.pyi,sha256=Q-EnWEXXc_RyYXxGY0x4zTQbmNwd4HOaPxashYEWwpk,37665
@@ -307,7 +307,7 @@ bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHC
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=oY7NO_zrQ8hg4HmMHnP6eiJ8TQP1Hi-Oby6AfYnQtKs,5709142
310
+ bpy/types/__init__.pyi,sha256=rErdhKhznvUr0nZ0lZS7GKbXRRRnNOk-l9M22OMqnYE,5713176
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
@@ -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-20250307.dist-info/METADATA,sha256=Nk9jtkJvbujB8UGY0go6eIKx2UmQal-VX6utXNxvBYA,4872
393
- fake_bge_module-20250307.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
394
- fake_bge_module-20250307.dist-info/top_level.txt,sha256=eE5ylpw84TnTp2h-RCfTJgCBykd4PsHdymQwBM_dVls,544
395
- fake_bge_module-20250307.dist-info/RECORD,,
392
+ fake_bge_module-20250309.dist-info/METADATA,sha256=DuwHAGacpxF02ULsWuoDWurkOzlNbbF5uv6MMj3Tw_E,4872
393
+ fake_bge_module-20250309.dist-info/WHEEL,sha256=EaM1zKIUYa7rQnxGiOCGhzJABRwy4WO57rWMR3_tj4I,91
394
+ fake_bge_module-20250309.dist-info/top_level.txt,sha256=eE5ylpw84TnTp2h-RCfTJgCBykd4PsHdymQwBM_dVls,544
395
+ fake_bge_module-20250309.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.2)
2
+ Generator: setuptools (75.9.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5