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.
- bl_operators/bone_selection_sets/__init__.pyi +2 -2
- bl_operators/uvcalc_transform/__init__.pyi +1 -1
- bl_ui/__init__.pyi +4 -4
- bl_ui/anim/__init__.pyi +2 -2
- bl_ui/properties_data_armature/__init__.pyi +16 -8
- bl_ui/properties_data_modifier/__init__.pyi +3 -3
- bl_ui/properties_grease_pencil_common/__init__.pyi +2 -2
- bl_ui/properties_workspace/__init__.pyi +2 -2
- bl_ui/space_statusbar/__init__.pyi +2 -2
- bl_ui/space_view3d_toolbar/__init__.pyi +2 -2
- bpy/ops/grease_pencil/__init__.pyi +51 -0
- bpy/types/__init__.pyi +18 -10
- {fake_bpy_module-20241210.dist-info → fake_bpy_module-20241211.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241210.dist-info → fake_bpy_module-20241211.dist-info}/RECORD +17 -17
- gpu_extras/batch/__init__.pyi +3 -2
- {fake_bpy_module-20241210.dist-info → fake_bpy_module-20241211.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241210.dist-info → fake_bpy_module-20241211.dist-info}/top_level.txt +0 -0
|
@@ -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,
|
|
96
|
+
def invoke(self, context, _event):
|
|
97
97
|
"""
|
|
98
98
|
|
|
99
99
|
:param context:
|
|
100
|
-
:param
|
|
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(
|
|
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,
|
|
109
|
+
def draw(self, _context):
|
|
110
110
|
"""
|
|
111
111
|
|
|
112
|
-
:param
|
|
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,
|
|
140
|
+
def draw(self, _context):
|
|
141
141
|
"""
|
|
142
142
|
|
|
143
|
-
:param
|
|
143
|
+
:param _context:
|
|
144
144
|
"""
|
|
145
145
|
|
|
146
146
|
class UI_UL_list(bpy.types.UIList):
|
bl_ui/anim/__init__.pyi
CHANGED
|
@@ -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,
|
|
459
|
+
def draw(self, _context):
|
|
460
460
|
"""
|
|
461
461
|
|
|
462
|
-
:param
|
|
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,
|
|
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
|
|
589
|
+
:param _context:
|
|
582
590
|
:param layout:
|
|
583
|
-
:param
|
|
591
|
+
:param _data:
|
|
584
592
|
:param item:
|
|
585
593
|
:param icon:
|
|
586
|
-
:param
|
|
587
|
-
:param
|
|
588
|
-
:param
|
|
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,
|
|
26
|
+
def invoke(self, _context, _event):
|
|
27
27
|
"""
|
|
28
28
|
|
|
29
|
-
:param
|
|
30
|
-
:param
|
|
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,
|
|
333
|
+
def draw(self, _context):
|
|
334
334
|
"""
|
|
335
335
|
|
|
336
|
-
:param
|
|
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
|
-
|
|
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
|
|
139
|
+
:param _icon:
|
|
140
140
|
:param _active_data:
|
|
141
141
|
:param _active_propname:
|
|
142
142
|
:param _index:
|
|
@@ -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, **
|
|
354
|
+
def draw_image_interpolation(self, **_kwargs):
|
|
355
355
|
"""
|
|
356
356
|
|
|
357
|
-
:param
|
|
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,
|
|
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
|
|
186476
|
+
:param _context:
|
|
186469
186477
|
:param layout:
|
|
186470
|
-
:param
|
|
186478
|
+
:param _data:
|
|
186471
186479
|
:param item:
|
|
186472
186480
|
:param icon:
|
|
186473
|
-
:param
|
|
186474
|
-
:param
|
|
186475
|
-
:param
|
|
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
|
-
|
|
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
|
|
228519
|
+
:param _icon:
|
|
228512
228520
|
:param _active_data:
|
|
228513
228521
|
:param _active_propname:
|
|
228514
228522
|
:param _index:
|
|
@@ -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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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-
|
|
362
|
-
fake_bpy_module-
|
|
363
|
-
fake_bpy_module-
|
|
364
|
-
fake_bpy_module-
|
|
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,,
|
gpu_extras/batch/__init__.pyi
CHANGED
|
@@ -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,
|
|
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,
|
|
22
|
+
:type content: dict[str, bgl.Buffer]
|
|
22
23
|
:return: compatible batch
|
|
23
24
|
:rtype: gpu.types.GPUBatch
|
|
24
25
|
"""
|
|
File without changes
|
|
File without changes
|