fake-bpy-module 20241210__py3-none-any.whl → 20241211__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.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

@@ -93,11 +93,11 @@ class POSE_OT_selection_set_assign(_PoseModeOnlyMixin, bpy.types.Operator):
93
93
  :param context:
94
94
  """
95
95
 
96
- def invoke(self, context, event):
96
+ def invoke(self, context, _event):
97
97
  """
98
98
 
99
99
  :param context:
100
- :param event:
100
+ :param _event:
101
101
  """
102
102
 
103
103
  class POSE_OT_selection_set_copy(_NeedSelSetMixin, bpy.types.Operator):
@@ -82,7 +82,7 @@ class RandomizeUVTransform(bpy.types.Operator):
82
82
  """
83
83
 
84
84
  def align_uv_rotation(context, method, axis, correct_aspect): ...
85
- def align_uv_rotation_bmesh(mesh, bm, method, axis, aspect_y): ...
85
+ def align_uv_rotation_bmesh(bm, method, axis, aspect_y): ...
86
86
  def align_uv_rotation_island(bm, uv_layer, faces, method, axis, aspect_y): ...
87
87
  def find_rotation_auto(bm, uv_layer, faces, aspect_y): ...
88
88
  def find_rotation_edge(bm, uv_layer, faces, aspect_y): ...
bl_ui/__init__.pyi CHANGED
@@ -106,10 +106,10 @@ class UI_MT_button_context_menu(bpy.types.Menu):
106
106
  :rtype: typing.Any
107
107
  """
108
108
 
109
- def draw(self, context):
109
+ def draw(self, _context):
110
110
  """
111
111
 
112
- :param context:
112
+ :param _context:
113
113
  """
114
114
 
115
115
  class UI_MT_list_item_context_menu(bpy.types.Menu):
@@ -137,10 +137,10 @@ class UI_MT_list_item_context_menu(bpy.types.Menu):
137
137
  :rtype: typing.Any
138
138
  """
139
139
 
140
- def draw(self, context):
140
+ def draw(self, _context):
141
141
  """
142
142
 
143
- :param context:
143
+ :param _context:
144
144
  """
145
145
 
146
146
  class UI_UL_list(bpy.types.UIList):
bl_ui/anim/__init__.pyi CHANGED
@@ -22,8 +22,8 @@ class ANIM_MT_keyframe_insert_pie(bpy.types.Menu):
22
22
  :rtype: typing.Any
23
23
  """
24
24
 
25
- def draw(self, context):
25
+ def draw(self, _context):
26
26
  """
27
27
 
28
- :param context:
28
+ :param _context:
29
29
  """
@@ -456,10 +456,10 @@ class POSE_MT_selection_set_create(bpy.types.Menu):
456
456
  :rtype: typing.Any
457
457
  """
458
458
 
459
- def draw(self, context):
459
+ def draw(self, _context):
460
460
  """
461
461
 
462
- :param context:
462
+ :param _context:
463
463
  """
464
464
 
465
465
  class POSE_MT_selection_sets_context_menu(bpy.types.Menu):
@@ -574,16 +574,24 @@ class POSE_UL_selection_set(bpy.types.UIList):
574
574
  """
575
575
 
576
576
  def draw_item(
577
- self, context, layout, data, item, icon, active_data, active_propname, index
577
+ self,
578
+ _context,
579
+ layout,
580
+ _data,
581
+ item,
582
+ icon,
583
+ _active_data,
584
+ _active_propname,
585
+ _index,
578
586
  ):
579
587
  """
580
588
 
581
- :param context:
589
+ :param _context:
582
590
  :param layout:
583
- :param data:
591
+ :param _data:
584
592
  :param item:
585
593
  :param icon:
586
- :param active_data:
587
- :param active_propname:
588
- :param index:
594
+ :param _active_data:
595
+ :param _active_propname:
596
+ :param _index:
589
597
  """
@@ -23,11 +23,11 @@ class AddModifierMenu(bpy.types.Operator):
23
23
  :rtype: typing.Any
24
24
  """
25
25
 
26
- def invoke(self, context, event):
26
+ def invoke(self, _context, _event):
27
27
  """
28
28
 
29
- :param context:
30
- :param event:
29
+ :param _context:
30
+ :param _event:
31
31
  """
32
32
 
33
33
  @classmethod
@@ -330,10 +330,10 @@ class GREASE_PENCIL_MT_stroke_simplify(bpy.types.Menu):
330
330
  :rtype: typing.Any
331
331
  """
332
332
 
333
- def draw(self, context):
333
+ def draw(self, _context):
334
334
  """
335
335
 
336
- :param context:
336
+ :param _context:
337
337
  """
338
338
 
339
339
  class GreasePencilBrushFalloff:
@@ -125,7 +125,7 @@ class WORKSPACE_UL_addons_items(bpy.types.UIList):
125
125
  layout,
126
126
  _data,
127
127
  addon,
128
- icon,
128
+ _icon,
129
129
  _active_data,
130
130
  _active_propname,
131
131
  _index,
@@ -136,7 +136,7 @@ class WORKSPACE_UL_addons_items(bpy.types.UIList):
136
136
  :param layout:
137
137
  :param _data:
138
138
  :param addon:
139
- :param icon:
139
+ :param _icon:
140
140
  :param _active_data:
141
141
  :param _active_propname:
142
142
  :param _index:
@@ -22,8 +22,8 @@ class STATUSBAR_HT_header(bpy.types.Header):
22
22
  :rtype: typing.Any
23
23
  """
24
24
 
25
- def draw(self, context):
25
+ def draw(self, _context):
26
26
  """
27
27
 
28
- :param context:
28
+ :param _context:
29
29
  """
@@ -351,10 +351,10 @@ class VIEW3D_PT_slots_paint_canvas(View3DPanel, SelectPaintSlotHelper, bpy.types
351
351
  :param context:
352
352
  """
353
353
 
354
- def draw_image_interpolation(self, **kwargs):
354
+ def draw_image_interpolation(self, **_kwargs):
355
355
  """
356
356
 
357
- :param kwargs:
357
+ :param _kwargs:
358
358
  """
359
359
 
360
360
  def get_mode_settings(self, context):
@@ -244,6 +244,57 @@ def duplicate_move(
244
244
  :type TRANSFORM_OT_translate: bpy.ops.transform.translate | None
245
245
  """
246
246
 
247
+ def erase_box(
248
+ execution_context: int | str | None = None,
249
+ undo: bool | None = None,
250
+ /,
251
+ *,
252
+ xmin: int | None = 0,
253
+ xmax: int | None = 0,
254
+ ymin: int | None = 0,
255
+ ymax: int | None = 0,
256
+ wait_for_input: bool | None = True,
257
+ ):
258
+ """Erase points in the box region
259
+
260
+ :type execution_context: int | str | None
261
+ :type undo: bool | None
262
+ :param xmin: X Min
263
+ :type xmin: int | None
264
+ :param xmax: X Max
265
+ :type xmax: int | None
266
+ :param ymin: Y Min
267
+ :type ymin: int | None
268
+ :param ymax: Y Max
269
+ :type ymax: int | None
270
+ :param wait_for_input: Wait for Input
271
+ :type wait_for_input: bool | None
272
+ """
273
+
274
+ def erase_lasso(
275
+ execution_context: int | str | None = None,
276
+ undo: bool | None = None,
277
+ /,
278
+ *,
279
+ path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None = None,
280
+ use_smooth_stroke: bool | None = False,
281
+ smooth_stroke_factor: float | None = 0.75,
282
+ smooth_stroke_radius: int | None = 35,
283
+ ):
284
+ """Erase points in the lasso region
285
+
286
+ :type execution_context: int | str | None
287
+ :type undo: bool | None
288
+ :param path: Path
289
+ :type path: bpy.types.bpy_prop_collection[bpy.types.OperatorMousePath] | None
290
+ :param use_smooth_stroke: Stabilize Stroke, Selection lags behind mouse and follows a smoother path
291
+ :type use_smooth_stroke: bool | None
292
+ :param smooth_stroke_factor: Smooth Stroke Factor, Higher values gives a smoother stroke
293
+ :type smooth_stroke_factor: float | None
294
+ :param smooth_stroke_radius: Smooth Stroke Radius, Minimum distance from last point before selection continues
295
+ :type smooth_stroke_radius: int | None
296
+ """
297
+
247
298
  def extrude(execution_context: int | str | None = None, undo: bool | None = None):
248
299
  """Extrude the selected points
249
300
 
bpy/types/__init__.pyi CHANGED
@@ -155362,7 +155362,7 @@ class GeometryNodeStringToCurves(GeometryNode, NodeInternal, Node, bpy_struct):
155362
155362
  """Generate a paragraph of text with a specific font, using a curve instance to store each character"""
155363
155363
 
155364
155364
  align_x: typing.Literal["LEFT", "CENTER", "RIGHT", "JUSTIFY", "FLUSH"]
155365
- """ Text horizontal alignment from the object center
155365
+ """ Text horizontal alignment from the object or text box center
155366
155366
 
155367
155367
  :type: typing.Literal['LEFT','CENTER','RIGHT','JUSTIFY','FLUSH']
155368
155368
  """
@@ -186461,18 +186461,26 @@ class POINTCLOUD_UL_attributes(UIList, bpy_struct):
186461
186461
 
186462
186462
  class POSE_UL_selection_set(UIList, bpy_struct):
186463
186463
  def draw_item(
186464
- self, context, layout, data, item, icon, active_data, active_propname, index
186464
+ self,
186465
+ _context,
186466
+ layout,
186467
+ _data,
186468
+ item,
186469
+ icon,
186470
+ _active_data,
186471
+ _active_propname,
186472
+ _index,
186465
186473
  ):
186466
186474
  """
186467
186475
 
186468
- :param context:
186476
+ :param _context:
186469
186477
  :param layout:
186470
- :param data:
186478
+ :param _data:
186471
186479
  :param item:
186472
186480
  :param icon:
186473
- :param active_data:
186474
- :param active_propname:
186475
- :param index:
186481
+ :param _active_data:
186482
+ :param _active_propname:
186483
+ :param _index:
186476
186484
  """
186477
186485
 
186478
186486
  @classmethod
@@ -213830,7 +213838,7 @@ class TextCurve(Curve, ID, bpy_struct):
213830
213838
  """
213831
213839
 
213832
213840
  align_x: typing.Literal["LEFT", "CENTER", "RIGHT", "JUSTIFY", "FLUSH"]
213833
- """ Text horizontal alignment from the object center
213841
+ """ Text horizontal alignment from the object or text box center
213834
213842
 
213835
213843
  :type: typing.Literal['LEFT','CENTER','RIGHT','JUSTIFY','FLUSH']
213836
213844
  """
@@ -228497,7 +228505,7 @@ class WORKSPACE_UL_addons_items(UIList, bpy_struct):
228497
228505
  layout,
228498
228506
  _data,
228499
228507
  addon,
228500
- icon,
228508
+ _icon,
228501
228509
  _active_data,
228502
228510
  _active_propname,
228503
228511
  _index,
@@ -228508,7 +228516,7 @@ class WORKSPACE_UL_addons_items(UIList, bpy_struct):
228508
228516
  :param layout:
228509
228517
  :param _data:
228510
228518
  :param addon:
228511
- :param icon:
228519
+ :param _icon:
228512
228520
  :param _active_data:
228513
228521
  :param _active_propname:
228514
228522
  :param _index:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20241210
3
+ Version: 20241211
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -58,7 +58,7 @@ bl_operators/anim/__init__.pyi,sha256=W6mhq_J3TDb3_UspHA6qMqJwhHiOU8_9NQ2GkBxBQ5
58
58
  bl_operators/assets/__init__.pyi,sha256=Hj_fZw1hI1kvGIqVDYdGqpQA1asz71QpbAzlM7RFcUg,2693
59
59
  bl_operators/bmesh/__init__.pyi,sha256=VCZhc0MoAa9Gxg6ZHxmF6ySxu69u2V6psQtB9a8KeVI,107
60
60
  bl_operators/bmesh/find_adjacent/__init__.pyi,sha256=XzL9y8jPblWNhxvVCvw40pptDt0L1r_dSUKLkvDdwSM,590
61
- bl_operators/bone_selection_sets/__init__.pyi,sha256=SJfWaYnKz3_b2nsYwJ_6YfoHZkrCfx_WBE8UsJCf57o,10290
61
+ bl_operators/bone_selection_sets/__init__.pyi,sha256=D3yUtn12_ZoiT-c6_OK5x_5EcCy-nJHSiTRo-uIKTNo,10292
62
62
  bl_operators/clip/__init__.pyi,sha256=B8SiSfJJ6YgH9VylMtZi8qubAKzFnfmBmt0w72gzoe4,8104
63
63
  bl_operators/connect_to_output/__init__.pyi,sha256=rK7hRNmxd9OH2wws_YpS5sFqhPXdnbQJB9EjPfl9ihY,3436
64
64
  bl_operators/console/__init__.pyi,sha256=0ZoWmnsQlXPXVRm-BqtCLiZAeJlhXvq-gYGoG5Q-Z5c,3710
@@ -84,7 +84,7 @@ bl_operators/spreadsheet/__init__.pyi,sha256=kw9r5R4t4ZVd3vw6_wGyduPl8tLSNd4D7dn
84
84
  bl_operators/userpref/__init__.pyi,sha256=194yL3KMuzGVGDoWs-VY6o5i4wUQDuzQoRMmwX-01NY,17071
85
85
  bl_operators/uvcalc_follow_active/__init__.pyi,sha256=nGtrNBQpXdTFLLyVyS2HBTfRSR034RgxwpnscHa1IgI,1023
86
86
  bl_operators/uvcalc_lightmap/__init__.pyi,sha256=l_52iDWTIY9TZkX_HjYPaga3qVTyYxeVTUKsUg3UORs,1882
87
- bl_operators/uvcalc_transform/__init__.pyi,sha256=8y35znPhRojMYoD7MtGw-jeIMa2vQFjDMVHmzAbEamQ,2534
87
+ bl_operators/uvcalc_transform/__init__.pyi,sha256=0hvrL_yYVMX1lZCk7020_aSB_L_xXXb1djmaA5PHcpE,2528
88
88
  bl_operators/vertexpaint_dirt/__init__.pyi,sha256=BD2jGPGGWhyeBxxr61tBEU46W74yZE5RgLDACaUOgZs,969
89
89
  bl_operators/view3d/__init__.pyi,sha256=1QrgNf-8KKVaMRn_6CFVGUTJtcQMbA9A1xJ6_y61fmU,6514
90
90
  bl_operators/wm/__init__.pyi,sha256=XLbvwJSvlkbOVYz48IrGh8LoI5aiHkPgD0SYOWPzRA0,33062
@@ -98,9 +98,9 @@ bl_rna_utils/data_path/__init__.pyi,sha256=2XAu8T2oXOqQ7JRfiZkKSvjxT1lvS7amuLEia
98
98
  bl_text_utils/__init__.pyi,sha256=jO0MH_cBcrGEbsYFgqqmrRroj_9MdgEzxL1RHBZhoEI,111
99
99
  bl_text_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
100
  bl_text_utils/external_editor/__init__.pyi,sha256=9i4t4dLw6lYydq8d5O-VCtghlkS1MuaypeDD0dNVodI,117
101
- bl_ui/__init__.pyi,sha256=Yjizc3Lo0Yy4LVjDKBNR9fczswkQH6NYTONx6E5W0iw,6872
101
+ bl_ui/__init__.pyi,sha256=1r51D8PicbD-QVUctmIy1-HlvGww8Neh3VIkKpkM5b4,6876
102
102
  bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
- bl_ui/anim/__init__.pyi,sha256=jNu8PDEKaU_Ci5bNXh8afWc9gAHkNJp3rKbiqIVHBzU,612
103
+ bl_ui/anim/__init__.pyi,sha256=rfW-hFN0qy_jfivUrTMUZ7GIppMA5hycMUlWWj5wloo,614
104
104
  bl_ui/asset_shelf/__init__.pyi,sha256=t-xDmFic0fqVPdMcY7iFrprYEpNNmJeEN4XhPUx_m9w,763
105
105
  bl_ui/generic_ui_list/__init__.pyi,sha256=YBWfuVksjUKU50org3OCNIDojmyTHdWbRoc7iuMITTc,4219
106
106
  bl_ui/node_add_menu/__init__.pyi,sha256=47u8vW3h1ub07M_kPJfQ1pbEdHeckMek5HSTwfYR7f8,1148
@@ -111,7 +111,7 @@ bl_ui/node_add_menu_texture/__init__.pyi,sha256=sNBQZ2K5eXKcCbJKtBu2Ldx45Ds2jgyO
111
111
  bl_ui/properties_animviz/__init__.pyi,sha256=3qdld3djZH4LXWRv5bmBgA0tX3OnD1RNrwzxREPqFGc,662
112
112
  bl_ui/properties_collection/__init__.pyi,sha256=8RMhD3OoeJjNkOTDeQQ1ai-q1qrkI17ZeEaVHmC3XhE,4334
113
113
  bl_ui/properties_constraint/__init__.pyi,sha256=JljYpXi7gn8TkUMS2ZTdDK-RVsHCnN1gQpS7j-TPbtw,61000
114
- bl_ui/properties_data_armature/__init__.pyi,sha256=TIgqprf2fvvCAdFnlnbZ4wcvl2nQShEwL6VxSAYUS_o,13108
114
+ bl_ui/properties_data_armature/__init__.pyi,sha256=8LdOsnTPoSIf4f8HWJ2aWGdSSDg0ri4I8mpiN_of-tg,13185
115
115
  bl_ui/properties_data_bone/__init__.pyi,sha256=jG4ytf1UzXw0ajVB3X94zyNI3NCwNznsAcLJurr2uqU,7970
116
116
  bl_ui/properties_data_camera/__init__.pyi,sha256=voA4pSpiwEB0_CY454oPQfpwY2Il-wkjpNWgMxKPjKg,11905
117
117
  bl_ui/properties_data_curve/__init__.pyi,sha256=D1xZkuCpaMwurWe-N7UAeEB8Ko8Egsw8fAhfOTQqXJU,12859
@@ -123,13 +123,13 @@ bl_ui/properties_data_light/__init__.pyi,sha256=Q4jh6kmNDqhw5u3An4gSPhlPnzMZMUb-
123
123
  bl_ui/properties_data_lightprobe/__init__.pyi,sha256=micXmIresZ3nptUhIKrsUe7dMYQkTd-H2SMi-kkMysg,10705
124
124
  bl_ui/properties_data_mesh/__init__.pyi,sha256=hWBZZPK5TqPdyBAfBdRHRyGNmPbHLDiYGpOpigonZDo,16244
125
125
  bl_ui/properties_data_metaball/__init__.pyi,sha256=GTLKKm2LsSSnLGT4axvIaxl6kfRumd5jEbstYckuVhE,4766
126
- bl_ui/properties_data_modifier/__init__.pyi,sha256=HkKGz9mmfKPIwb4Bm_tQ9zMOZH_61S0mdyM4u3cb974,7640
126
+ bl_ui/properties_data_modifier/__init__.pyi,sha256=HqgCrPaTqXZAypGbeLujJh5bN79UyiR5ZyEVrk2ZArM,7644
127
127
  bl_ui/properties_data_pointcloud/__init__.pyi,sha256=k_kGJpcpz11D2Rhs_9kR-P4Rw4SRhi2iC-rau-DxagE,4239
128
128
  bl_ui/properties_data_shaderfx/__init__.pyi,sha256=qheRKCM-zgYYTypVdyJrjqgmD1yBXQVlsrlWUwoHsFg,859
129
129
  bl_ui/properties_data_speaker/__init__.pyi,sha256=YRayS4IxkfcvwOAJlqfSL4kjzBcaqo3gf-hmM0fcVeo,4857
130
130
  bl_ui/properties_data_volume/__init__.pyi,sha256=w6ct8kb74x8X0l1vLq6Ymq-fzezD387sQv-lBH7wohM,7115
131
131
  bl_ui/properties_freestyle/__init__.pyi,sha256=JxNJb9q2e8hRqNb7ynucmV5GKCG7y_HdQJgc9z9Th8w,22822
132
- bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=S4FyfAJvAfZgUT6l5pyFWAVkrr86autF-iy5FavDDTo,8857
132
+ bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=LQ6kY4XcaeHZdUr4Wr-vmQQerZ6VStZlX6mt8jltOc4,8859
133
133
  bl_ui/properties_mask_common/__init__.pyi,sha256=-Ae0CtS1OQZRwJ38l1xj-115MJo9xEQieAarliMc40s,5796
134
134
  bl_ui/properties_material/__init__.pyi,sha256=J3GrRdWFeh4p5w2qKtC5Dwz0XF301ATcsCPcV4kXWe0,13499
135
135
  bl_ui/properties_material_gpencil/__init__.pyi,sha256=xY7bZUCPnZdCODKxzvJLWJ6EyrRSs0jiyNNsNxsTahk,7917
@@ -150,7 +150,7 @@ bl_ui/properties_render/__init__.pyi,sha256=fi9dZH2IoM4dtFvo5YopOtsOVdVcO3jdv9ZJ
150
150
  bl_ui/properties_scene/__init__.pyi,sha256=NaTdJK2mIrAwjp5sJFo98ipm4Uvk6C1pSFCofA_bF_c,12508
151
151
  bl_ui/properties_texture/__init__.pyi,sha256=8d7ZCVj0-wZLdtj3Fzan96sCP4p_TZg0C_NoQILGo-A,21060
152
152
  bl_ui/properties_view_layer/__init__.pyi,sha256=J7N_wlyCDA_Awz4SZ1LU9H03kbEncWsibqU5Ja7ZRt0,9204
153
- bl_ui/properties_workspace/__init__.pyi,sha256=H9ixaD-_K6YbmzvvzDqE8Ca1_jvGeOJ0S-RHiKXcwoE,3461
153
+ bl_ui/properties_workspace/__init__.pyi,sha256=ssIg71Vro4yRSS2302fKnsWRhyjBZtSyY59dOg71z1w,3463
154
154
  bl_ui/properties_world/__init__.pyi,sha256=2BvXUUUI6BdaA61DKNR3xNGGLSiK5kfeHW25x-s4p7w,9145
155
155
  bl_ui/space_clip/__init__.pyi,sha256=I9bHrnPSZnkPYGxKw3tlUqch3FnyL4fpyjIzG-rqpKk,45001
156
156
  bl_ui/space_console/__init__.pyi,sha256=jHE-NegnXq5WiuRTy89jw6hkYwLAjwEJryGzPJ7GrZw,3273
@@ -165,7 +165,7 @@ bl_ui/space_outliner/__init__.pyi,sha256=o_7H2lQtpKIncGyBU2lL7SHOp-emrqicrRoOBkj
165
165
  bl_ui/space_properties/__init__.pyi,sha256=U4lQ2UupgDfM0RBCSQrI-MlmNG2pOtBxwn5gED-7jzU,2708
166
166
  bl_ui/space_sequencer/__init__.pyi,sha256=DQWB0VpyjH7tdTM4-OBpVUgUXPZYqspBzPLEwd85H94,54686
167
167
  bl_ui/space_spreadsheet/__init__.pyi,sha256=FcAaZ7hZHyyk9EmM8YuVaDZhFFafRUPbrnXftJ74xMY,1450
168
- bl_ui/space_statusbar/__init__.pyi,sha256=Kb64lM_S6RVATyQB1kQu-x7JSGceXsGqNyJ6AReq3-Y,611
168
+ bl_ui/space_statusbar/__init__.pyi,sha256=uz_efXSX0cK9jOf_V-GCveZ1JWid8rae4wYEvLZ3QkY,613
169
169
  bl_ui/space_text/__init__.pyi,sha256=l5CwsrWjvBl_CQQQqfjH7SbRVeAkK7z9R8UAi7GY59c,8799
170
170
  bl_ui/space_time/__init__.pyi,sha256=CsHClliVjg_FdPpaJzh2EgWkPTMZ0-_l0DCEXhx0fP8,4723
171
171
  bl_ui/space_toolsystem_common/__init__.pyi,sha256=IFq4tTh_oM6-dQWMZbuRo6HhYinOLBFC8ORj0S5ZWcs,3185
@@ -173,7 +173,7 @@ bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=FSYElbb_hnP0urIqymcVuHIJEaA4o
173
173
  bl_ui/space_topbar/__init__.pyi,sha256=tVupsHc6IdA1o_axDcB1Cbf0o8ARZzgLncMXgguQnWY,15316
174
174
  bl_ui/space_userpref/__init__.pyi,sha256=iLYc94VUBgP3dE6whoVFktEjvqAE-oLGDbtey9Y4L0E,79675
175
175
  bl_ui/space_view3d/__init__.pyi,sha256=HyTTm0awNZtEwDNkDYINCyklRpnXy0Rfr07ki5TGt3A,155025
176
- bl_ui/space_view3d_toolbar/__init__.pyi,sha256=h2PDlE_56tCymRzbSaAf7mu7TIKoSghVjswczMjIG48,76293
176
+ bl_ui/space_view3d_toolbar/__init__.pyi,sha256=EG6IIG6nSOJAvIRRxU3TyjEQNWZ_n2tFEB6FlwjIhuw,76295
177
177
  bl_ui/utils/__init__.pyi,sha256=qkgl-AlZI3QD4UUITGIvN9PbifOI4BPkZBpu7WyxMBw,483
178
178
  bl_ui_utils/__init__.pyi,sha256=ZOo9_bgn1c9NiCNalhTplCD2IChG67rU_V3BeG0k4pE,93
179
179
  bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -226,7 +226,7 @@ bpy/ops/geometry/__init__.pyi,sha256=vdyhoH2IMzQoryHYxNDxCbSqUJe5PpdakV79koEqJ3g
226
226
  bpy/ops/gizmogroup/__init__.pyi,sha256=lsDnIxuI4uIqJJEiLNmKUuMq2uqlc6HQAqDHY3T9tf8,1262
227
227
  bpy/ops/gpencil/__init__.pyi,sha256=cqeFGa_2tSDBDSWhsWVQVZx5BhHs08wiW4And1rhfVE,4832
228
228
  bpy/ops/graph/__init__.pyi,sha256=3-hSpqGgzSvdUCEfQErcZP3s88fIpcpK0olzKZ9BO0Q,41516
229
- bpy/ops/grease_pencil/__init__.pyi,sha256=Yd07YsHOAD4Ip7rss4pBvlh1-HMv4ABN-IDawIf9Iy0,60077
229
+ bpy/ops/grease_pencil/__init__.pyi,sha256=nGxqV16WXQmxf4fL3xC0ntiHWytChUVyvk4gTQp4954,61732
230
230
  bpy/ops/image/__init__.pyi,sha256=yedlD6hfJWo0OyDkPOvmnQ0dR7dvIG0IryRKplP2HrM,52227
231
231
  bpy/ops/import_anim/__init__.pyi,sha256=aE1pDcT6TlridpXwg7tF-E3tXLcm83n7j1vVgn_-g7A,3046
232
232
  bpy/ops/import_curve/__init__.pyi,sha256=sDhKpg3cI-y0NYuUo8ey3jb3h-KKergdPUDKlQ-C2iI,485
@@ -275,7 +275,7 @@ bpy/ops/workspace/__init__.pyi,sha256=BHvDV5CcVBnuKaL8akhm-Es7VcGUjf3jGFTbfx5YHC
275
275
  bpy/ops/world/__init__.pyi,sha256=pBV8EDA8HoWovDSul6mxkF7Mt6N3PQWuukRhkw3dBr8,601
276
276
  bpy/path/__init__.pyi,sha256=N-QNSw3piTmrzrydYRyWab7GFGOh3BsdaS91x4Kf-Cc,5403
277
277
  bpy/props/__init__.pyi,sha256=eHzPsDSyDTa92O5TvPpi1yflmxv7vVGW_ZocCqudgw4,31027
278
- bpy/types/__init__.pyi,sha256=Ox6fZK6-1fk6DrwwUtWv-yXo98fkLtVkifmCSLkpSg0,5388200
278
+ bpy/types/__init__.pyi,sha256=cbltnFqblm5Iu-LRf7a_rZ7XDNU54GiuQOR6rpVwvR4,5388301
279
279
  bpy/typing/__init__.pyi,sha256=u2XKjd6ZB1Wjt7JwabxexZdswEZLYR2jQpxzzp6AThg,138679
280
280
  bpy/utils/__init__.pyi,sha256=wvjdEDEtBn5bR5pZG7HnW1ZdL_J-IQYvmB7e4AwTW0s,13537
281
281
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
@@ -325,7 +325,7 @@ gpu/texture/__init__.pyi,sha256=NWixhD9M2vFrAIWlQDM0Co-CNRiU7BbL7imkSOloHHI,641
325
325
  gpu/types/__init__.pyi,sha256=o04T9r5Qy_GE5taf3nZvaONLn0ZeP15_nnQSE8qFdzQ,26919
326
326
  gpu_extras/__init__.pyi,sha256=oNgtMNheClZ_iCmKSH63hBJ4U0huayOWKil-qPvYHds,213
327
327
  gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
328
- gpu_extras/batch/__init__.pyi,sha256=WiNyGZ_ivr5sKh_DePTwqR4ue9QHd8YjBdJwUHHXMkk,856
328
+ gpu_extras/batch/__init__.pyi,sha256=tgSLHYF1sb3LZuu6iJ6l6tNmLCknXid9wy3_L7xp2j8,855
329
329
  gpu_extras/presets/__init__.pyi,sha256=XARWkuQ0koiQPC3Cjh2l7D2f9n3IgHRf5Ymd9xKkjBg,1435
330
330
  graphviz_export/__init__.pyi,sha256=LBiepSfMSL7Qix8FZ6LYKmbPgu1AHRvRw3yHDDWYrEw,215
331
331
  graphviz_export/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -358,7 +358,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
358
358
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
359
359
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
360
360
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
- fake_bpy_module-20241210.dist-info/METADATA,sha256=Ge247aXf_0Qhy2pNwwRe1QrLe2Qdli8Se-qizoXrbu8,7289
362
- fake_bpy_module-20241210.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
363
- fake_bpy_module-20241210.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
364
- fake_bpy_module-20241210.dist-info/RECORD,,
361
+ fake_bpy_module-20241211.dist-info/METADATA,sha256=WWU3hpygd5NdugXpVAaeDRwlSfS3-4PBKo-85M0GS5U,7289
362
+ fake_bpy_module-20241211.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
363
+ fake_bpy_module-20241211.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
364
+ fake_bpy_module-20241211.dist-info/RECORD,,
@@ -1,12 +1,13 @@
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(
7
8
  shader: gpu.types.GPUShader,
8
9
  type: str,
9
- content: dict[str, gpu.types.Buffer],
10
+ content: dict[str, bgl.Buffer],
10
11
  *,
11
12
  indices=None,
12
13
  ) -> gpu.types.GPUBatch:
@@ -18,7 +19,7 @@ def batch_for_shader(
18
19
  :type type: str
19
20
  :param content: Maps the name of the shader attribute with the data to fill the vertex buffer.
20
21
  For the dictionary values see documentation for `gpu.types.GPUVertBuf.attr_fill` data argument.
21
- :type content: dict[str, gpu.types.Buffer]
22
+ :type content: dict[str, bgl.Buffer]
22
23
  :return: compatible batch
23
24
  :rtype: gpu.types.GPUBatch
24
25
  """