fake-bge-module 20250225__py3-none-any.whl → 20250227__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.
bpy/ops/anim/__init__.pyi CHANGED
@@ -9,6 +9,7 @@ def change_frame(
9
9
  *,
10
10
  frame: float | None = 0.0,
11
11
  snap: bool | None = False,
12
+ seq_solo_preview: bool | None = False,
12
13
  ):
13
14
  """Interactively change the current frame number
14
15
 
@@ -18,6 +19,8 @@ def change_frame(
18
19
  :type frame: float | None
19
20
  :param snap: Snap
20
21
  :type snap: bool | None
22
+ :param seq_solo_preview: Strip Preview
23
+ :type seq_solo_preview: bool | None
21
24
  """
22
25
 
23
26
  def channel_select_keys(
@@ -3,15 +3,6 @@ import collections.abc
3
3
  import typing_extensions
4
4
  import bpy.types
5
5
 
6
- def dummy_progress(
7
- execution_context: int | str | None = None, undo: bool | None = None
8
- ):
9
- """Undocumented, consider contributing.
10
-
11
- :type execution_context: int | str | None
12
- :type undo: bool | None
13
- """
14
-
15
6
  def package_disable(
16
7
  execution_context: int | str | None = None, undo: bool | None = None
17
8
  ):
@@ -21,15 +12,6 @@ def package_disable(
21
12
  :type undo: bool | None
22
13
  """
23
14
 
24
- def package_enable_not_installed(
25
- execution_context: int | str | None = None, undo: bool | None = None
26
- ):
27
- """Turn on this extension
28
-
29
- :type execution_context: int | str | None
30
- :type undo: bool | None
31
- """
32
-
33
15
  def package_install(
34
16
  execution_context: int | str | None = None,
35
17
  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(
@@ -5061,6 +5061,15 @@ def vertex_weight_set_active(
5061
5061
  :type weight_group: int | None
5062
5062
  """
5063
5063
 
5064
+ def visual_geometry_to_objects(
5065
+ execution_context: int | str | None = None, undo: bool | None = None
5066
+ ):
5067
+ """Convert geometry and instances into editable objects and collections
5068
+
5069
+ :type execution_context: int | str | None
5070
+ :type undo: bool | None
5071
+ """
5072
+
5064
5073
  def visual_transform_apply(
5065
5074
  execution_context: int | str | None = None, undo: bool | None = None
5066
5075
  ):
@@ -558,6 +558,7 @@ def mask_by_color(
558
558
  invert: bool | None = False,
559
559
  preserve_previous_mask: bool | None = False,
560
560
  threshold: float | None = 0.35,
561
+ location: collections.abc.Iterable[int] | None = (0, 0),
561
562
  ):
562
563
  """Creates a mask based on the active color attribute
563
564
 
@@ -571,6 +572,8 @@ def mask_by_color(
571
572
  :type preserve_previous_mask: bool | None
572
573
  :param threshold: Threshold, How much changes in color affect the mask generation
573
574
  :type threshold: float | None
575
+ :param location: Location, Region coordinates of sampling
576
+ :type location: collections.abc.Iterable[int] | None
574
577
  """
575
578
 
576
579
  def mask_filter(
bpy/types/__init__.pyi CHANGED
@@ -146987,11 +146987,8 @@ class FileSelectIDFilter(bpy_struct):
146987
146987
  class FileSelectParams(bpy_struct):
146988
146988
  """File Select Parameters"""
146989
146989
 
146990
- directory: str
146991
- """ Directory displayed in the file browser
146992
-
146993
- :type: str
146994
- """
146990
+ directory: typing.Any
146991
+ """ Directory displayed in the file browser"""
146995
146992
 
146996
146993
  display_size: int
146997
146994
  """ Change the size of thumbnails
@@ -173269,11 +173266,11 @@ class Image(ID, bpy_struct):
173269
173266
  :type save_copy: bool | None
173270
173267
  """
173271
173268
 
173272
- def pack(self, *, data: str = "", data_len: int | None = 0):
173269
+ def pack(self, *, data: typing.Any = "", data_len: int | None = 0):
173273
173270
  """Pack an image as embedded data into the .blend file
173274
173271
 
173275
173272
  :param data: data, Raw data (bytes, exact content of the embedded file)
173276
- :type data: str
173273
+ :type data: typing.Any
173277
173274
  :param data_len: data_len, length of given data (mandatory if data is provided)
173278
173275
  :type data_len: int | None
173279
173276
  """
@@ -181811,7 +181808,31 @@ class MaskSplinePoint(bpy_struct):
181811
181808
  """
181812
181809
 
181813
181810
  select: bool
181814
- """ Selection status
181811
+ """ Selection status of the control point. (Deprecated: use Select Control Point instead)
181812
+
181813
+ :type: bool
181814
+ """
181815
+
181816
+ select_control_point: bool
181817
+ """ Selection status of the control point
181818
+
181819
+ :type: bool
181820
+ """
181821
+
181822
+ select_left_handle: bool
181823
+ """ Selection status of the left handle
181824
+
181825
+ :type: bool
181826
+ """
181827
+
181828
+ select_right_handle: bool
181829
+ """ Selection status of the right handle
181830
+
181831
+ :type: bool
181832
+ """
181833
+
181834
+ select_single_handle: bool
181835
+ """ Selection status of the Aligned Single handle
181815
181836
 
181816
181837
  :type: bool
181817
181838
  """
@@ -196822,11 +196843,8 @@ class POSE_UL_selection_set(UIList, bpy_struct):
196822
196843
  class PackedFile(bpy_struct):
196823
196844
  """External file packed into the .blend file"""
196824
196845
 
196825
- data: str
196826
- """ Raw data (bytes, exact content of the embedded file)
196827
-
196828
- :type: str
196829
- """
196846
+ data: typing.Any
196847
+ """ Raw data (bytes, exact content of the embedded file)"""
196830
196848
 
196831
196849
  size: int
196832
196850
  """ Size of packed file in bytes
@@ -203069,11 +203087,7 @@ class PrimitiveInt(bpy_struct):
203069
203087
  class PrimitiveString(bpy_struct):
203070
203088
  """RNA wrapped string"""
203071
203089
 
203072
- value: str
203073
- """
203074
-
203075
- :type: str
203076
- """
203090
+ value: typing.Any
203077
203091
 
203078
203092
  @classmethod
203079
203093
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -225122,11 +225136,7 @@ class StringAttribute(Attribute, bpy_struct):
225122
225136
  class StringAttributeValue(bpy_struct):
225123
225137
  """String value in geometry attribute"""
225124
225138
 
225125
- value: str
225126
- """
225127
-
225128
- :type: str
225129
- """
225139
+ value: typing.Any
225130
225140
 
225131
225141
  @classmethod
225132
225142
  def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
@@ -242727,10 +242737,10 @@ class WindowManager(ID, bpy_struct):
242727
242737
  :type: bpy_prop_collection[Operator]
242728
242738
  """
242729
242739
 
242730
- poselib_previous_action: Action
242740
+ poselib_previous_action: Action | None
242731
242741
  """
242732
242742
 
242733
- :type: Action
242743
+ :type: Action | None
242734
242744
  """
242735
242745
 
242736
242746
  preset_name: str | typing.Any
@@ -245437,6 +245447,8 @@ DATA_PT_grease_pencil_layer_adjustments: bl_ui.properties_data_grease_pencil.DAT
245437
245447
 
245438
245448
  DATA_PT_grease_pencil_layer_display: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_display
245439
245449
 
245450
+ DATA_PT_grease_pencil_layer_group_display: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_group_display
245451
+
245440
245452
  DATA_PT_grease_pencil_layer_masks: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_masks
245441
245453
 
245442
245454
  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: 20250225
3
+ Version: 20250227
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
@@ -228,7 +228,7 @@ bpy/app/translations/__init__.pyi,sha256=rrUs88RJakTJ8IZzE7oRunD_HqLByX5tqmLSrQ_
228
228
  bpy/msgbus/__init__.pyi,sha256=e9cmp_Wq7FA5pDTQQJ2s0_I84bEJMu8J-5Lu5gNoClM,2954
229
229
  bpy/ops/__init__.pyi,sha256=K4x89H6Q5Beutgc98_dRWw-KTQ1Y_pQU-JaxSZ_6LvY,5627
230
230
  bpy/ops/action/__init__.pyi,sha256=LBNWtp-Nd2C-ae5OK4WTxg-ztiufJ4OLan-f6W7EJXo,18645
231
- bpy/ops/anim/__init__.pyi,sha256=VM6kJF9mPnpDINvcVqrf-fEHlSRzn-P1vmCPvK8KDwA,24980
231
+ bpy/ops/anim/__init__.pyi,sha256=Iql70C9NRNFzDStm3itprTuL-3VNWluVY175HqzCpso,25106
232
232
  bpy/ops/armature/__init__.pyi,sha256=k6XyBQsnS9j-7cKqfmN4qYVyhv9gQVwX45g-3DJ8jro,20909
233
233
  bpy/ops/asset/__init__.pyi,sha256=5rDsk6gBW_pI28yWQJMId5v0NOe7q42GAZaz198pnDQ,8694
234
234
  bpy/ops/boid/__init__.pyi,sha256=7ItnfUAiiN8vT6JtFCRLEwcXnFGQk0vy1ye12JO3PPM,1963
@@ -248,7 +248,7 @@ bpy/ops/dpaint/__init__.pyi,sha256=LhNcaKIZxU6RVVV3Am5d-0r3fVmTqc_UbXwM53yPFCQ,1
248
248
  bpy/ops/ed/__init__.pyi,sha256=XrnkDR-2DzjfrqGDmMjiI0ZoYJmnUdX6yGdtpePIAis,7102
249
249
  bpy/ops/export_anim/__init__.pyi,sha256=wyCP8IO0cjr0ixNFGfFblD8ASLG4tQ-l2v3a9UnHAlw,2027
250
250
  bpy/ops/export_scene/__init__.pyi,sha256=1mZzNHNdWBwIOyslTrxTQn9Z6BqNp0ZlVblvJmKBW8M,40066
251
- bpy/ops/extensions/__init__.pyi,sha256=yr_vbqofPPNDn86y_YoUYNOTOI5k2bowWti_1cUmAns,12730
251
+ bpy/ops/extensions/__init__.pyi,sha256=fLPj7TfQiLWZQM4mTjEVVLTa9mjV0U9zp4PYWD88dQ4,12282
252
252
  bpy/ops/file/__init__.pyi,sha256=EwxedztM5v4x6oQd7FV0VbAHAtRKChgHTMuhkHUDDQ8,19260
253
253
  bpy/ops/fluid/__init__.pyi,sha256=toNBTcKttDwaWx21Nzf2HNBWKT7vZh8IDcIR2nG_ad4,3191
254
254
  bpy/ops/font/__init__.pyi,sha256=7fLdMjcgT0AZb_pvWl59RXn5fuhqkrll7pKYPmYZD8w,15509
@@ -256,7 +256,7 @@ 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
262
  bpy/ops/import_curve/__init__.pyi,sha256=_sJtmKY0cDHPTt7jtKg0n8L0WPiI3iQUFyBAMTlAwYs,696
@@ -271,7 +271,7 @@ bpy/ops/mball/__init__.pyi,sha256=VRZZbMhoN6OWmsG-344hmoHQ-_qcjRuisuzJvLxGobI,41
271
271
  bpy/ops/mesh/__init__.pyi,sha256=Gp2MK7c7qJtOinM72vvDDYV3wIAbFenIbej0hWcHj90,133710
272
272
  bpy/ops/nla/__init__.pyi,sha256=qWBmb8nOy9c6H_rKEjt3spO-TnwPaqJc1meOgDy5uaY,18145
273
273
  bpy/ops/node/__init__.pyi,sha256=mgx5GCxParMhEU1sCirzN_0d-qqNG8tDXL-Z1YA2-Tg,54152
274
- bpy/ops/object/__init__.pyi,sha256=hLToMQ9U1aMoY5bWCHbpit9Hob-T-8ys7ezHK9E5hXo,172336
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
277
277
  bpy/ops/paintcurve/__init__.pyi,sha256=sJfa-6TohaHNlvBFZ5X2vhjeMCp91in2K6UqwIF3d80,2980
@@ -287,7 +287,7 @@ bpy/ops/rigidbody/__init__.pyi,sha256=WL-53YoWliMEFDB0TAbvSwE9RgqakWuJqaytrj5kPG
287
287
  bpy/ops/scene/__init__.pyi,sha256=tN5QUf93N8lktEnAiIjWHKA4LI-b09A6G0mEE5DhTQY,13732
288
288
  bpy/ops/screen/__init__.pyi,sha256=6WbfNAHRE24NwTHuUyk6pfZAROdMzIn5V_hjYq3rVLQ,19963
289
289
  bpy/ops/script/__init__.pyi,sha256=LPFPi3ovQdpV5IVlMnJpo9K3i88q1t6cFnoXnfiJ5HA,978
290
- bpy/ops/sculpt/__init__.pyi,sha256=VzEVUPbe_HnfrYblaeM7zvA45ocxqGiIQgyIigz9ja4,47060
290
+ bpy/ops/sculpt/__init__.pyi,sha256=z5_Ib79l42Mj4ouU-KcBuFz2jG52SxDFW2GRBcvE4H8,47240
291
291
  bpy/ops/sculpt_curves/__init__.pyi,sha256=jDglkug-tn6Esxo-_DrILnCkifpWfQ82x9JE_q0PW-c,2849
292
292
  bpy/ops/sequencer/__init__.pyi,sha256=UuFJ-EkUCro9cr6zlOAyxeauPpcRSRYx6746-yKETDk,78125
293
293
  bpy/ops/sound/__init__.pyi,sha256=kz9Sk9QCN0lUszJ6sShcwBSj7azOAne3SMADKG3i15c,16929
@@ -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=UutCxMx6KamnckAvFCEDZFOdo_2XHm-Cop-HXvnnPWg,5706095
310
+ bpy/types/__init__.pyi,sha256=lUVIZ89oC0RGSCjjOZl-ui5-yFFrubjdp8oB6qqlu2w,5706648
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=DdX3Qj2yTIu8jXdOAnf_9yKhJ5AQFnS_zVvSAdTfBpU,5108
345
+ freestyle/utils/__init__.pyi,sha256=lW5JWrilkFTvRmtYoS3hbmWfj2abo2hHsvp4eyGLbcQ,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
@@ -356,7 +356,7 @@ gpu/texture/__init__.pyi,sha256=NWixhD9M2vFrAIWlQDM0Co-CNRiU7BbL7imkSOloHHI,641
356
356
  gpu/types/__init__.pyi,sha256=Q8Gym2MsHoDFLW7snVIfPMUGCQns-XA2URYfeOV3nnk,27923
357
357
  gpu_extras/__init__.pyi,sha256=oNgtMNheClZ_iCmKSH63hBJ4U0huayOWKil-qPvYHds,213
358
358
  gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
359
- gpu_extras/batch/__init__.pyi,sha256=nbeZNWRKChMLBkKYc4mLF9abAffVyzEHp01yf64gZK8,1279
359
+ gpu_extras/batch/__init__.pyi,sha256=t-kFLEyZ0OABqt8VbtSwvo60S7vw15Tq5HRea-G3odE,1278
360
360
  gpu_extras/presets/__init__.pyi,sha256=pDhGELr5vKTZ9yDsLJ4Y836Kmh7cs95rDhSwd1i5e-s,1647
361
361
  graphviz_export/__init__.pyi,sha256=LBiepSfMSL7Qix8FZ6LYKmbPgu1AHRvRw3yHDDWYrEw,215
362
362
  graphviz_export/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-20250225.dist-info/METADATA,sha256=g7LV1cymBuQn8Qu2rra16P5DxoGIcg1F1uzJfxQZHVw,4872
393
- fake_bge_module-20250225.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
394
- fake_bge_module-20250225.dist-info/top_level.txt,sha256=eE5ylpw84TnTp2h-RCfTJgCBykd4PsHdymQwBM_dVls,544
395
- fake_bge_module-20250225.dist-info/RECORD,,
392
+ fake_bge_module-20250227.dist-info/METADATA,sha256=qJoJx0xngSwtqZnCBZnMvLqu4ynkNEplFm4PXW3oFnM,4872
393
+ fake_bge_module-20250227.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
394
+ fake_bge_module-20250227.dist-info/top_level.txt,sha256=eE5ylpw84TnTp2h-RCfTJgCBykd4PsHdymQwBM_dVls,544
395
+ fake_bge_module-20250227.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (75.8.2)
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={StrokeVertexIterator, Stroke}):
127
+ def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
128
128
  """Yields a tuple containing the previous and current object"""
129
129
 
130
130
  def rgb_to_bw(r, g, b):
@@ -1,6 +1,7 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
+ import bgl
4
5
  import gpu.types
5
6
 
6
7
  def batch_for_shader(
@@ -8,7 +9,7 @@ def batch_for_shader(
8
9
  type: str,
9
10
  content: dict[
10
11
  str,
11
- gpu.types.Buffer
12
+ bgl.Buffer
12
13
  | collections.abc.Sequence[float]
13
14
  | collections.abc.Sequence[int]
14
15
  | collections.abc.Sequence[collections.abc.Sequence[float]]
@@ -25,7 +26,7 @@ def batch_for_shader(
25
26
  :type type: str
26
27
  :param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
27
28
  For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
28
- :type content: dict[str, gpu.types.Buffer | collections.abc.Sequence[float] | collections.abc.Sequence[int] | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[collections.abc.Sequence[int]]]
29
+ :type content: dict[str, bgl.Buffer | collections.abc.Sequence[float] | collections.abc.Sequence[int] | collections.abc.Sequence[collections.abc.Sequence[float]] | collections.abc.Sequence[collections.abc.Sequence[int]]]
29
30
  :return: compatible batch
30
31
  :rtype: gpu.types.GPUBatch
31
32
  """