fake-bge-module 20250224__py3-none-any.whl → 20250226__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.
@@ -178,6 +178,42 @@ class DATA_PT_grease_pencil_layer_display(
178
178
  :rtype: typing.Any
179
179
  """
180
180
 
181
+ class DATA_PT_grease_pencil_layer_group_display(bpy.types.Panel):
182
+ bl_context: typing.Any
183
+ bl_label: typing.Any
184
+ bl_options: typing.Any
185
+ bl_region_type: typing.Any
186
+ bl_rna: typing.Any
187
+ bl_space_type: typing.Any
188
+ id_data: typing.Any
189
+
190
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
191
+ """
192
+
193
+ :return: The RNA type or default when not found.
194
+ :rtype: bpy.types.Struct
195
+ """
196
+
197
+ def bl_rna_get_subclass_py(self) -> typing.Any:
198
+ """
199
+
200
+ :return: The class or default when not found.
201
+ :rtype: typing.Any
202
+ """
203
+
204
+ def draw(self, context):
205
+ """
206
+
207
+ :param context:
208
+ """
209
+
210
+ @classmethod
211
+ def poll(cls, context):
212
+ """
213
+
214
+ :param context:
215
+ """
216
+
181
217
  class DATA_PT_grease_pencil_layer_masks(
182
218
  GreasePencil_LayerMaskPanel, LayerDataButtonsPanel, bpy.types.Panel
183
219
  ):
@@ -234,10 +234,10 @@ class DOPESHEET_MT_key(bpy.types.Menu):
234
234
  :rtype: typing.Any
235
235
  """
236
236
 
237
- def draw(self, _context):
237
+ def draw(self, context):
238
238
  """
239
239
 
240
- :param _context:
240
+ :param context:
241
241
  """
242
242
 
243
243
  class DOPESHEET_MT_key_transform(bpy.types.Menu):
@@ -2415,8 +2415,7 @@ type ObjectTypeItems = typing.Literal[
2415
2415
  "CURVES", # Hair Curves.
2416
2416
  "POINTCLOUD", # Point Cloud.
2417
2417
  "VOLUME", # Volume.
2418
- "GPENCIL", # Grease Pencil.
2419
- "GREASEPENCIL", # Grease Pencil v3.
2418
+ "GREASEPENCIL", # Grease Pencil.
2420
2419
  "ARMATURE", # Armature.
2421
2420
  "LATTICE", # Lattice.
2422
2421
  "EMPTY", # Empty.
@@ -147,6 +147,7 @@ def file_browse(
147
147
  ]
148
148
  | None = "DEFAULT",
149
149
  sort_method: str | None = "",
150
+ filter_glob: str = "",
150
151
  ):
151
152
  """Open a file browser, hold Shift to open the file, Alt to browse containing directory
152
153
 
@@ -212,6 +213,8 @@ def file_browse(
212
213
  :type display_type: typing.Literal['DEFAULT','LIST_VERTICAL','LIST_HORIZONTAL','THUMBNAIL'] | None
213
214
  :param sort_method: File sorting mode
214
215
  :type sort_method: str | None
216
+ :param filter_glob: Glob Filter, Custom filter
217
+ :type filter_glob: str
215
218
  """
216
219
 
217
220
  def start_filter(execution_context: int | str | None = None, undo: bool | None = None):
@@ -436,6 +436,13 @@ def snap_curves_to_surface(
436
436
  :type attach_mode: typing.Literal['NEAREST','DEFORM'] | None
437
437
  """
438
438
 
439
+ def split(execution_context: int | str | None = None, undo: bool | None = None):
440
+ """Split selected points
441
+
442
+ :type execution_context: int | str | None
443
+ :type undo: bool | None
444
+ """
445
+
439
446
  def subdivide(
440
447
  execution_context: int | str | None = None,
441
448
  undo: bool | None = None,
@@ -1457,14 +1457,17 @@ def set_uniform_opacity(
1457
1457
  undo: bool | None = None,
1458
1458
  /,
1459
1459
  *,
1460
- opacity: float | None = 1.0,
1460
+ opacity_stroke: float | None = 1.0,
1461
+ opacity_fill: float | None = 0.5,
1461
1462
  ):
1462
1463
  """Set all stroke points to same opacity
1463
1464
 
1464
1465
  :type execution_context: int | str | None
1465
1466
  :type undo: bool | None
1466
- :param opacity: Opacity
1467
- :type opacity: float | None
1467
+ :param opacity_stroke: Stroke Opacity
1468
+ :type opacity_stroke: float | None
1469
+ :param opacity_fill: Fill Opacity
1470
+ :type opacity_fill: float | None
1468
1471
  """
1469
1472
 
1470
1473
  def set_uniform_thickness(
@@ -1,6 +1,7 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
+ import bpy.types
4
5
 
5
6
  def svg(
6
7
  execution_context: int | str | None = None,
@@ -9,6 +10,7 @@ def svg(
9
10
  *,
10
11
  filepath: str = "",
11
12
  filter_glob: str = "*.svg",
13
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] = None,
12
14
  ):
13
15
  """Load a SVG file
14
16
 
@@ -18,4 +20,6 @@ def svg(
18
20
  :type filepath: str
19
21
  :param filter_glob: filter_glob
20
22
  :type filter_glob: str
23
+ :param files: File Path
24
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
21
25
  """
bpy/ops/node/__init__.pyi CHANGED
@@ -252,6 +252,25 @@ def add_group_asset(
252
252
  :type relative_asset_identifier: str
253
253
  """
254
254
 
255
+ def add_import_node(
256
+ execution_context: int | str | None = None,
257
+ undo: bool | None = None,
258
+ /,
259
+ *,
260
+ directory: str = "",
261
+ files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement]
262
+ | None = None,
263
+ ):
264
+ """Add an import node to the node tree
265
+
266
+ :type execution_context: int | str | None
267
+ :type undo: bool | None
268
+ :param directory: Directory, Directory of the file
269
+ :type directory: str
270
+ :param files: Files
271
+ :type files: bpy.types.bpy_prop_collection[bpy.types.OperatorFileListElement] | None
272
+ """
273
+
255
274
  def add_mask(
256
275
  execution_context: int | str | None = None,
257
276
  undo: bool | None = None,
bpy/types/__init__.pyi CHANGED
@@ -39877,7 +39877,10 @@ of the scene and only show nodes of the renderer they are designed for.
39877
39877
  * KeyConfig.keymaps
39878
39878
  * KeyConfigurations.find_item_from_operator
39879
39879
  * KeyMap.active
39880
+ * KeyMapItems.find_match
39880
39881
  * KeyMaps.find
39882
+ * KeyMaps.find_match
39883
+ * KeyMaps.find_match
39881
39884
  * KeyMaps.find_modal
39882
39885
  * KeyMaps.new
39883
39886
  * KeyMaps.remove
@@ -95213,6 +95216,8 @@ example of how to create/use filtering/reordering callbacks.
95213
95216
  * KeyMap.restore_item_to_default
95214
95217
  * KeyMapItem.compare
95215
95218
  * KeyMapItems.find_from_operator
95219
+ * KeyMapItems.find_match
95220
+ * KeyMapItems.find_match
95216
95221
  * KeyMapItems.from_id
95217
95222
  * KeyMapItems.match_event
95218
95223
  * KeyMapItems.new
@@ -115596,6 +115601,17 @@ class KeyMapItems(bpy_prop_collection[KeyMapItem], bpy_struct):
115596
115601
  :rtype: KeyMapItem
115597
115602
  """
115598
115603
 
115604
+ def find_match(self, keymap: KeyMap | None, item: KeyMapItem | None) -> KeyMapItem:
115605
+ """find_match
115606
+
115607
+ :param keymap: The matching keymap
115608
+ :type keymap: KeyMap | None
115609
+ :param item: The matching keymap item
115610
+ :type item: KeyMapItem | None
115611
+ :return: The keymap item from this keymap which matches the keymap item from the arguments passed in
115612
+ :rtype: KeyMapItem
115613
+ """
115614
+
115599
115615
  def match_event(self, event: Event | None) -> KeyMapItem:
115600
115616
  """match_event
115601
115617
 
@@ -115684,6 +115700,15 @@ class KeyMaps(bpy_prop_collection[KeyMap], bpy_struct):
115684
115700
  :rtype: KeyMap
115685
115701
  """
115686
115702
 
115703
+ def find_match(self, keymap: KeyMap | None) -> KeyMap:
115704
+ """find_match
115705
+
115706
+ :param keymap: Key Map, The key map for comparison
115707
+ :type keymap: KeyMap | None
115708
+ :return: Key Map, Corresponding key map
115709
+ :rtype: KeyMap
115710
+ """
115711
+
115687
115712
  def find_modal(self, name: str) -> KeyMap:
115688
115713
  """find_modal
115689
115714
 
@@ -146962,11 +146987,8 @@ class FileSelectIDFilter(bpy_struct):
146962
146987
  class FileSelectParams(bpy_struct):
146963
146988
  """File Select Parameters"""
146964
146989
 
146965
- directory: str
146966
- """ Directory displayed in the file browser
146967
-
146968
- :type: str
146969
- """
146990
+ directory: typing.Any
146991
+ """ Directory displayed in the file browser"""
146970
146992
 
146971
146993
  display_size: int
146972
146994
  """ Change the size of thumbnails
@@ -173244,11 +173266,11 @@ class Image(ID, bpy_struct):
173244
173266
  :type save_copy: bool | None
173245
173267
  """
173246
173268
 
173247
- def pack(self, *, data: str = "", data_len: int | None = 0):
173269
+ def pack(self, *, data: typing.Any = "", data_len: int | None = 0):
173248
173270
  """Pack an image as embedded data into the .blend file
173249
173271
 
173250
173272
  :param data: data, Raw data (bytes, exact content of the embedded file)
173251
- :type data: str
173273
+ :type data: typing.Any
173252
173274
  :param data_len: data_len, length of given data (mandatory if data is provided)
173253
173275
  :type data_len: int | None
173254
173276
  """
@@ -196797,11 +196819,8 @@ class POSE_UL_selection_set(UIList, bpy_struct):
196797
196819
  class PackedFile(bpy_struct):
196798
196820
  """External file packed into the .blend file"""
196799
196821
 
196800
- data: str
196801
- """ Raw data (bytes, exact content of the embedded file)
196802
-
196803
- :type: str
196804
- """
196822
+ data: typing.Any
196823
+ """ Raw data (bytes, exact content of the embedded file)"""
196805
196824
 
196806
196825
  size: int
196807
196826
  """ Size of packed file in bytes
@@ -201563,7 +201582,7 @@ class PreferencesExperimental(bpy_struct):
201563
201582
  :type: bool
201564
201583
  """
201565
201584
 
201566
- use_new_point_cloud_type: bool
201585
+ use_new_pointcloud_type: bool
201567
201586
  """ Enable the new point cloud type in the ui
201568
201587
 
201569
201588
  :type: bool
@@ -203044,11 +203063,7 @@ class PrimitiveInt(bpy_struct):
203044
203063
  class PrimitiveString(bpy_struct):
203045
203064
  """RNA wrapped string"""
203046
203065
 
203047
- value: str
203048
- """
203049
-
203050
- :type: str
203051
- """
203066
+ value: typing.Any
203052
203067
 
203053
203068
  @classmethod
203054
203069
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -225097,11 +225112,7 @@ class StringAttribute(Attribute, bpy_struct):
225097
225112
  class StringAttributeValue(bpy_struct):
225098
225113
  """String value in geometry attribute"""
225099
225114
 
225100
- value: str
225101
- """
225102
-
225103
- :type: str
225104
- """
225115
+ value: typing.Any
225105
225116
 
225106
225117
  @classmethod
225107
225118
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -242702,10 +242713,10 @@ class WindowManager(ID, bpy_struct):
242702
242713
  :type: bpy_prop_collection[Operator]
242703
242714
  """
242704
242715
 
242705
- poselib_previous_action: Action
242716
+ poselib_previous_action: Action | None
242706
242717
  """
242707
242718
 
242708
- :type: Action
242719
+ :type: Action | None
242709
242720
  """
242710
242721
 
242711
242722
  preset_name: str | typing.Any
@@ -245412,6 +245423,8 @@ DATA_PT_grease_pencil_layer_adjustments: bl_ui.properties_data_grease_pencil.DAT
245412
245423
 
245413
245424
  DATA_PT_grease_pencil_layer_display: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_display
245414
245425
 
245426
+ DATA_PT_grease_pencil_layer_group_display: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_group_display
245427
+
245415
245428
  DATA_PT_grease_pencil_layer_masks: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_masks
245416
245429
 
245417
245430
  DATA_PT_grease_pencil_layer_relations: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_relations
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: fake-bge-module
3
- Version: 20250224
3
+ Version: 20250226
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
@@ -143,7 +143,7 @@ bl_ui/properties_data_camera/__init__.pyi,sha256=1aeV-JbZ-E72p6YY8ZREKEdNDgB07O4
143
143
  bl_ui/properties_data_curve/__init__.pyi,sha256=D1xZkuCpaMwurWe-N7UAeEB8Ko8Egsw8fAhfOTQqXJU,12859
144
144
  bl_ui/properties_data_curves/__init__.pyi,sha256=huauSiwT8GBVJrFzp3o6N6aA8ouxecfu6RgHBfc5rJg,5913
145
145
  bl_ui/properties_data_empty/__init__.pyi,sha256=PrWD2bMI4AKOBXS1-GsHXFFeVc12p4siGDQJxdmn95A,1679
146
- bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=XveIxVFSEQgJ4oRX9mlPkbZP1AeDwa5g_rQLzfjqRE8,14753
146
+ bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=-jPERUC5dnz4Wn97zBJvf2-Hk2g69m7t1N2fXWLJqVQ,15511
147
147
  bl_ui/properties_data_lattice/__init__.pyi,sha256=duUWwjGBzoTFbhB3BUruazK5qfddVxHJ1UJAtxSSkcs,3442
148
148
  bl_ui/properties_data_light/__init__.pyi,sha256=Q4jh6kmNDqhw5u3An4gSPhlPnzMZMUb-wH_1RrcPsNM,8137
149
149
  bl_ui/properties_data_lightprobe/__init__.pyi,sha256=micXmIresZ3nptUhIKrsUe7dMYQkTd-H2SMi-kkMysg,10705
@@ -181,7 +181,7 @@ bl_ui/properties_workspace/__init__.pyi,sha256=ssIg71Vro4yRSS2302fKnsWRhyjBZtSyY
181
181
  bl_ui/properties_world/__init__.pyi,sha256=2BvXUUUI6BdaA61DKNR3xNGGLSiK5kfeHW25x-s4p7w,9145
182
182
  bl_ui/space_clip/__init__.pyi,sha256=xWGyDkY-cqgl5TKk4r6Rf-cA79V1fWjFVfreeQVfUps,46259
183
183
  bl_ui/space_console/__init__.pyi,sha256=jHE-NegnXq5WiuRTy89jw6hkYwLAjwEJryGzPJ7GrZw,3273
184
- bl_ui/space_dopesheet/__init__.pyi,sha256=1VTtwpoxDb56GB8pt93MAhdybZbLzeWX7Im9VNYLwLg,18072
184
+ bl_ui/space_dopesheet/__init__.pyi,sha256=6YbLOa_d546yieBeHyvak3nzQvMS7EmbPO0P300fYdI,18070
185
185
  bl_ui/space_filebrowser/__init__.pyi,sha256=mFlZd3CLqrkdD-_nftH3A8f1hVHwHeGUvWBFEpIIoaM,19466
186
186
  bl_ui/space_graph/__init__.pyi,sha256=cO21vtPuhxnj57ylVGmpJFDbsPIttY0i7Hjep_kLTOo,10987
187
187
  bl_ui/space_image/__init__.pyi,sha256=23C8BkJeKsV3enUja85AYm0weN8I0RzQT3HsotbjHuE,45208
@@ -219,7 +219,7 @@ bmesh/utils/__init__.pyi,sha256=XNhFTqYQPL7ZUvljUTQkN0X_3YCS_RyrOgEzqrQZiDg,6235
219
219
  bpy/__init__.pyi,sha256=KeQc-X1TjhtunVxLDy0IK0cMmurLmAQm4fX_D__UPJo,464
220
220
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
221
221
  bpy/_typing/__init__.pyi,sha256=7bioadpQS-8UKR8TdY1m4MqUFqKVy8h13sPIt28ZUqs,99
222
- bpy/_typing/rna_enums/__init__.pyi,sha256=nNGo1tQHkeeoPg6eTXza0DSQ8JoUha15U4dsninFprs,139623
222
+ bpy/_typing/rna_enums/__init__.pyi,sha256=YnMNSLJfmv8AYd8tPwYZksykhxgDJYc6V6rQ7cW_ffE,139587
223
223
  bpy/app/__init__.pyi,sha256=ZV-MHGB04mBRjzisCtoIkQzNPQklZMRki-s0IQD9c8Q,8768
224
224
  bpy/app/handlers/__init__.pyi,sha256=paak3tw5Edrs_VfQUvgZNA6YsTeuBULkNe9mgo2TzI8,7116
225
225
  bpy/app/icons/__init__.pyi,sha256=w18Xn9y0T54WlpHyhC3_y8a3Lq9kuo3U72Bu7wOY41A,928
@@ -233,7 +233,7 @@ bpy/ops/armature/__init__.pyi,sha256=k6XyBQsnS9j-7cKqfmN4qYVyhv9gQVwX45g-3DJ8jro
233
233
  bpy/ops/asset/__init__.pyi,sha256=5rDsk6gBW_pI28yWQJMId5v0NOe7q42GAZaz198pnDQ,8694
234
234
  bpy/ops/boid/__init__.pyi,sha256=7ItnfUAiiN8vT6JtFCRLEwcXnFGQk0vy1ye12JO3PPM,1963
235
235
  bpy/ops/brush/__init__.pyi,sha256=uVoVLHxY1ZDpF8r4b5y376ymcs_u6vNmKZ0cJu-xAoA,9776
236
- bpy/ops/buttons/__init__.pyi,sha256=emCWcZQc0YEMm4L_qkoZBbjHpRbdaWbWP4GEkhj9S6A,8918
236
+ bpy/ops/buttons/__init__.pyi,sha256=PfQjdswtPORkYtrqg6U1l3yTdFHHii1m4KWeJzLz7qg,9031
237
237
  bpy/ops/cachefile/__init__.pyi,sha256=KFndyrBJnch4nxwe_SSoBPHV5n3nxjzQki8Wcgc_R4s,8874
238
238
  bpy/ops/camera/__init__.pyi,sha256=Il4dR95oos_zZb1wuj9gQ97Bfvq6rdWhf8oXBPPfc5M,1384
239
239
  bpy/ops/clip/__init__.pyi,sha256=7jjYI07dSDylZ8XXD_o_8g4BtirZExq9-T6YFr4EwmE,44815
@@ -242,7 +242,7 @@ bpy/ops/collection/__init__.pyi,sha256=z2rWoNxbdj4xFqPlItbIi2l57eHlarU6RnUM0zjI-
242
242
  bpy/ops/console/__init__.pyi,sha256=lgoYIWzf29q06AniBBiPYuI7zndNoc2aGyXYyINZbPI,7304
243
243
  bpy/ops/constraint/__init__.pyi,sha256=lb318xrvDTH1T_raLhoBKcDPTl4mVmYPfh5TxbnoGDU,11838
244
244
  bpy/ops/curve/__init__.pyi,sha256=eO5HeAhCijFOcq-V8WBJVig7VkKmt1QQqiuVijIfueQ,28585
245
- bpy/ops/curves/__init__.pyi,sha256=HebR1M-El_BvS9VTzahaqheg73uCju6XQgGAdzN4eDc,15294
245
+ bpy/ops/curves/__init__.pyi,sha256=95orCRz5UOuA-AlkSvX2wd7YuKomvYn0dZjkASFaaY0,15488
246
246
  bpy/ops/cycles/__init__.pyi,sha256=TzurmelE8U7FLjghhDWt-0HBU-cyTALEWTfG4taUCSI,1739
247
247
  bpy/ops/dpaint/__init__.pyi,sha256=LhNcaKIZxU6RVVV3Am5d-0r3fVmTqc_UbXwM53yPFCQ,1555
248
248
  bpy/ops/ed/__init__.pyi,sha256=XrnkDR-2DzjfrqGDmMjiI0ZoYJmnUdX6yGdtpePIAis,7102
@@ -256,10 +256,10 @@ bpy/ops/geometry/__init__.pyi,sha256=5E3W4rVQTQmgHc8p8Adr9EHk-VsTrhwYbCvchw4Ax7c
256
256
  bpy/ops/gizmogroup/__init__.pyi,sha256=lsDnIxuI4uIqJJEiLNmKUuMq2uqlc6HQAqDHY3T9tf8,1262
257
257
  bpy/ops/gpencil/__init__.pyi,sha256=cqeFGa_2tSDBDSWhsWVQVZx5BhHs08wiW4And1rhfVE,4832
258
258
  bpy/ops/graph/__init__.pyi,sha256=LxlhLzlxAjlrVyfx09PY74t15-khJK0tiasNQyYUqw4,41703
259
- bpy/ops/grease_pencil/__init__.pyi,sha256=-5jE8hJDQbMhbAYidVq_c6EmLLgRglboXrElJwlp6oU,62541
259
+ bpy/ops/grease_pencil/__init__.pyi,sha256=_EcNqS5pdpS1RMq1CuHdeZi4N8BqFebkXevGs_ETu4I,62682
260
260
  bpy/ops/image/__init__.pyi,sha256=ifILNvTm7UirNQzTa3sk9qpHCbinsmxUW4HSNWXF7B8,52430
261
261
  bpy/ops/import_anim/__init__.pyi,sha256=aE1pDcT6TlridpXwg7tF-E3tXLcm83n7j1vVgn_-g7A,3046
262
- bpy/ops/import_curve/__init__.pyi,sha256=sDhKpg3cI-y0NYuUo8ey3jb3h-KKergdPUDKlQ-C2iI,485
262
+ bpy/ops/import_curve/__init__.pyi,sha256=_sJtmKY0cDHPTt7jtKg0n8L0WPiI3iQUFyBAMTlAwYs,696
263
263
  bpy/ops/import_scene/__init__.pyi,sha256=hqNXwHQZlcEHpnVhsGhSBeOPndVzmopuH-tcKerEv34,10246
264
264
  bpy/ops/info/__init__.pyi,sha256=awrfSCgZOjERYahNCEfz80MLPSL1MLEzD2w1IVD_V9Y,3090
265
265
  bpy/ops/lattice/__init__.pyi,sha256=q9buSVqGTwv5woNjo5gvJ8Ymuad0kEXaNulBoOeGCBY,3579
@@ -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=m1fchmX8mU4_B_IA00VGljBqo_EFVHQ1wg6swSnxTdY,53596
273
+ bpy/ops/node/__init__.pyi,sha256=mgx5GCxParMhEU1sCirzN_0d-qqNG8tDXL-Z1YA2-Tg,54152
274
274
  bpy/ops/object/__init__.pyi,sha256=hLToMQ9U1aMoY5bWCHbpit9Hob-T-8ys7ezHK9E5hXo,172336
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=ggDVu_sYcB2AeA75n9OWMKVGTcCK6g789LaJfLruOmY,5705295
310
+ bpy/types/__init__.pyi,sha256=uev5BejE_HA-ZtzBnNorGvpz1w4tDgGxRG30XTg0idE,5706165
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
@@ -342,7 +342,7 @@ freestyle/functions/__init__.pyi,sha256=sEPnGHwZm8XBlfE7CKLros3CKJlAh1h1FI74nBTE
342
342
  freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
343
343
  freestyle/shaders/__init__.pyi,sha256=4a-rY8mkkIcsnIvYGcP8YgAULdJENDJnncju2CjhQVg,24014
344
344
  freestyle/types/__init__.pyi,sha256=Dmb8LokYlO2lCfmDwPX5MwwpnHHSRaXU2t6Nu37Rzjg,100200
345
- freestyle/utils/__init__.pyi,sha256=lW5JWrilkFTvRmtYoS3hbmWfj2abo2hHsvp4eyGLbcQ,5108
345
+ freestyle/utils/__init__.pyi,sha256=DdX3Qj2yTIu8jXdOAnf_9yKhJ5AQFnS_zVvSAdTfBpU,5108
346
346
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=fPDfiBEjpoqXQhBhmHJ6WxG9oLMItwQ32MxKQz_c9_I,3445
347
347
  gpu/__init__.pyi,sha256=Q-AbyJO85pPYcwXNWtvgAhFGGJ6OnnHrlsXQxur9jhs,7999
348
348
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -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-20250224.dist-info/METADATA,sha256=VTdSWI6H9npvLV2xKnxrlPQ1uoq5hgHRWVhJU3jPolk,4872
393
- fake_bge_module-20250224.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
394
- fake_bge_module-20250224.dist-info/top_level.txt,sha256=eE5ylpw84TnTp2h-RCfTJgCBykd4PsHdymQwBM_dVls,544
395
- fake_bge_module-20250224.dist-info/RECORD,,
392
+ fake_bge_module-20250226.dist-info/METADATA,sha256=Ft7tNa-s2sSZ31MowWdHxcGgh4Ma7MWo0G0IX_nHfm4,4872
393
+ fake_bge_module-20250226.dist-info/WHEEL,sha256=nn6H5-ilmfVryoAQl3ZQ2l8SH5imPWFpm1A5FgEuFV4,91
394
+ fake_bge_module-20250226.dist-info/top_level.txt,sha256=eE5ylpw84TnTp2h-RCfTJgCBykd4PsHdymQwBM_dVls,544
395
+ fake_bge_module-20250226.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (75.8.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
124
124
  """get the diffuse RGBA color from an FEdge"""
125
125
 
126
126
  def normal_at_I0D(it): ...
127
- def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
127
+ def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
128
128
  """Yields a tuple containing the previous and current object"""
129
129
 
130
130
  def rgb_to_bw(r, g, b):