fake-bge-module-latest 20241211__py3-none-any.whl → 20241212__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.
@@ -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
@@ -108,10 +108,10 @@ class UI_MT_button_context_menu(bpy.types.Menu):
108
108
  :rtype: typing.Any
109
109
  """
110
110
 
111
- def draw(self, context):
111
+ def draw(self, _context):
112
112
  """
113
113
 
114
- :param context:
114
+ :param _context:
115
115
  """
116
116
 
117
117
  class UI_MT_list_item_context_menu(bpy.types.Menu):
@@ -139,10 +139,10 @@ class UI_MT_list_item_context_menu(bpy.types.Menu):
139
139
  :rtype: typing.Any
140
140
  """
141
141
 
142
- def draw(self, context):
142
+ def draw(self, _context):
143
143
  """
144
144
 
145
- :param context:
145
+ :param _context:
146
146
  """
147
147
 
148
148
  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):
bpy/ops/file/__init__.pyi CHANGED
@@ -88,7 +88,7 @@ def cancel(
88
88
  execution_context: int | str | None = None,
89
89
  undo: bool | None = None,
90
90
  ):
91
- """Cancel loading of selected file
91
+ """Cancel file operation
92
92
 
93
93
  :type override_context: bpy.types.Context | dict[str, typing.Any] | None
94
94
  :type execution_context: int | str | None
bpy/types/__init__.pyi CHANGED
@@ -144903,10 +144903,10 @@ class FluidDomainSettings(bpy_struct):
144903
144903
  :type: float
144904
144904
  """
144905
144905
 
144906
- cache_data_format: typing.Literal["NONE"]
144906
+ cache_data_format: typing.Literal["UNI", "OPENVDB", "RAW"]
144907
144907
  """ Select the file format to be used for caching volumetric data
144908
144908
 
144909
- :type: typing.Literal['NONE']
144909
+ :type: typing.Literal['UNI','OPENVDB','RAW']
144910
144910
  """
144911
144911
 
144912
144912
  cache_directory: str
@@ -144963,22 +144963,22 @@ class FluidDomainSettings(bpy_struct):
144963
144963
  :type: int
144964
144964
  """
144965
144965
 
144966
- cache_mesh_format: typing.Literal["NONE"]
144966
+ cache_mesh_format: typing.Literal["UNI", "OPENVDB", "RAW"]
144967
144967
  """ Select the file format to be used for caching surface data
144968
144968
 
144969
- :type: typing.Literal['NONE']
144969
+ :type: typing.Literal['UNI','OPENVDB','RAW']
144970
144970
  """
144971
144971
 
144972
- cache_noise_format: typing.Literal["NONE"]
144972
+ cache_noise_format: typing.Literal["UNI", "OPENVDB", "RAW"]
144973
144973
  """ Select the file format to be used for caching noise data
144974
144974
 
144975
- :type: typing.Literal['NONE']
144975
+ :type: typing.Literal['UNI','OPENVDB','RAW']
144976
144976
  """
144977
144977
 
144978
- cache_particle_format: typing.Literal["NONE"]
144978
+ cache_particle_format: typing.Literal["UNI", "OPENVDB", "RAW"]
144979
144979
  """ Select the file format to be used for caching particle data
144980
144980
 
144981
- :type: typing.Literal['NONE']
144981
+ :type: typing.Literal['UNI','OPENVDB','RAW']
144982
144982
  """
144983
144983
 
144984
144984
  cache_resumable: bool
@@ -193725,18 +193725,26 @@ class POINTCLOUD_UL_attributes(UIList, bpy_struct):
193725
193725
 
193726
193726
  class POSE_UL_selection_set(UIList, bpy_struct):
193727
193727
  def draw_item(
193728
- self, context, layout, data, item, icon, active_data, active_propname, index
193728
+ self,
193729
+ _context,
193730
+ layout,
193731
+ _data,
193732
+ item,
193733
+ icon,
193734
+ _active_data,
193735
+ _active_propname,
193736
+ _index,
193729
193737
  ):
193730
193738
  """
193731
193739
 
193732
- :param context:
193740
+ :param _context:
193733
193741
  :param layout:
193734
- :param data:
193742
+ :param _data:
193735
193743
  :param item:
193736
193744
  :param icon:
193737
- :param active_data:
193738
- :param active_propname:
193739
- :param index:
193745
+ :param _active_data:
193746
+ :param _active_propname:
193747
+ :param _index:
193740
193748
  """
193741
193749
 
193742
193750
  @classmethod
@@ -238735,7 +238743,7 @@ class WORKSPACE_UL_addons_items(UIList, bpy_struct):
238735
238743
  layout,
238736
238744
  _data,
238737
238745
  addon,
238738
- icon,
238746
+ _icon,
238739
238747
  _active_data,
238740
238748
  _active_propname,
238741
238749
  _index,
@@ -238746,7 +238754,7 @@ class WORKSPACE_UL_addons_items(UIList, bpy_struct):
238746
238754
  :param layout:
238747
238755
  :param _data:
238748
238756
  :param addon:
238749
- :param icon:
238757
+ :param _icon:
238750
238758
  :param _active_data:
238751
238759
  :param _active_propname:
238752
238760
  :param _index:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bge-module-latest
3
- Version: 20241211
3
+ Version: 20241212
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
@@ -80,7 +80,7 @@ bl_operators/anim/__init__.pyi,sha256=W6mhq_J3TDb3_UspHA6qMqJwhHiOU8_9NQ2GkBxBQ5
80
80
  bl_operators/assets/__init__.pyi,sha256=Hj_fZw1hI1kvGIqVDYdGqpQA1asz71QpbAzlM7RFcUg,2693
81
81
  bl_operators/bmesh/__init__.pyi,sha256=VCZhc0MoAa9Gxg6ZHxmF6ySxu69u2V6psQtB9a8KeVI,107
82
82
  bl_operators/bmesh/find_adjacent/__init__.pyi,sha256=XzL9y8jPblWNhxvVCvw40pptDt0L1r_dSUKLkvDdwSM,590
83
- bl_operators/bone_selection_sets/__init__.pyi,sha256=SJfWaYnKz3_b2nsYwJ_6YfoHZkrCfx_WBE8UsJCf57o,10290
83
+ bl_operators/bone_selection_sets/__init__.pyi,sha256=D3yUtn12_ZoiT-c6_OK5x_5EcCy-nJHSiTRo-uIKTNo,10292
84
84
  bl_operators/clip/__init__.pyi,sha256=B8SiSfJJ6YgH9VylMtZi8qubAKzFnfmBmt0w72gzoe4,8104
85
85
  bl_operators/connect_to_output/__init__.pyi,sha256=rK7hRNmxd9OH2wws_YpS5sFqhPXdnbQJB9EjPfl9ihY,3436
86
86
  bl_operators/console/__init__.pyi,sha256=0ZoWmnsQlXPXVRm-BqtCLiZAeJlhXvq-gYGoG5Q-Z5c,3710
@@ -106,7 +106,7 @@ bl_operators/spreadsheet/__init__.pyi,sha256=kw9r5R4t4ZVd3vw6_wGyduPl8tLSNd4D7dn
106
106
  bl_operators/userpref/__init__.pyi,sha256=194yL3KMuzGVGDoWs-VY6o5i4wUQDuzQoRMmwX-01NY,17071
107
107
  bl_operators/uvcalc_follow_active/__init__.pyi,sha256=nGtrNBQpXdTFLLyVyS2HBTfRSR034RgxwpnscHa1IgI,1023
108
108
  bl_operators/uvcalc_lightmap/__init__.pyi,sha256=l_52iDWTIY9TZkX_HjYPaga3qVTyYxeVTUKsUg3UORs,1882
109
- bl_operators/uvcalc_transform/__init__.pyi,sha256=8y35znPhRojMYoD7MtGw-jeIMa2vQFjDMVHmzAbEamQ,2534
109
+ bl_operators/uvcalc_transform/__init__.pyi,sha256=0hvrL_yYVMX1lZCk7020_aSB_L_xXXb1djmaA5PHcpE,2528
110
110
  bl_operators/vertexpaint_dirt/__init__.pyi,sha256=BD2jGPGGWhyeBxxr61tBEU46W74yZE5RgLDACaUOgZs,969
111
111
  bl_operators/view3d/__init__.pyi,sha256=1QrgNf-8KKVaMRn_6CFVGUTJtcQMbA9A1xJ6_y61fmU,6514
112
112
  bl_operators/wm/__init__.pyi,sha256=iKHR_0R9i7HY1EVmNtbMX3uxQyNRmmGw5PvmZz3TFbA,33691
@@ -120,9 +120,9 @@ bl_rna_utils/data_path/__init__.pyi,sha256=2XAu8T2oXOqQ7JRfiZkKSvjxT1lvS7amuLEia
120
120
  bl_text_utils/__init__.pyi,sha256=jO0MH_cBcrGEbsYFgqqmrRroj_9MdgEzxL1RHBZhoEI,111
121
121
  bl_text_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
122
  bl_text_utils/external_editor/__init__.pyi,sha256=9i4t4dLw6lYydq8d5O-VCtghlkS1MuaypeDD0dNVodI,117
123
- bl_ui/__init__.pyi,sha256=anUIbh5zniXo7RihbUwA5ei-XL-jfSb3xCmaKHkF45o,6962
123
+ bl_ui/__init__.pyi,sha256=hLDP6c8OalK5BNPqV89vJ33dR12lup5dvokY0c-WfaQ,6966
124
124
  bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
- bl_ui/anim/__init__.pyi,sha256=jNu8PDEKaU_Ci5bNXh8afWc9gAHkNJp3rKbiqIVHBzU,612
125
+ bl_ui/anim/__init__.pyi,sha256=rfW-hFN0qy_jfivUrTMUZ7GIppMA5hycMUlWWj5wloo,614
126
126
  bl_ui/asset_shelf/__init__.pyi,sha256=t-xDmFic0fqVPdMcY7iFrprYEpNNmJeEN4XhPUx_m9w,763
127
127
  bl_ui/generic_ui_list/__init__.pyi,sha256=YBWfuVksjUKU50org3OCNIDojmyTHdWbRoc7iuMITTc,4219
128
128
  bl_ui/node_add_menu/__init__.pyi,sha256=47u8vW3h1ub07M_kPJfQ1pbEdHeckMek5HSTwfYR7f8,1148
@@ -133,7 +133,7 @@ bl_ui/node_add_menu_texture/__init__.pyi,sha256=sNBQZ2K5eXKcCbJKtBu2Ldx45Ds2jgyO
133
133
  bl_ui/properties_animviz/__init__.pyi,sha256=3qdld3djZH4LXWRv5bmBgA0tX3OnD1RNrwzxREPqFGc,662
134
134
  bl_ui/properties_collection/__init__.pyi,sha256=8RMhD3OoeJjNkOTDeQQ1ai-q1qrkI17ZeEaVHmC3XhE,4334
135
135
  bl_ui/properties_constraint/__init__.pyi,sha256=E_Fy1Al4ljQh9XTtwakcnllEqmyr3W2C-MzPXv5L30g,61806
136
- bl_ui/properties_data_armature/__init__.pyi,sha256=TIgqprf2fvvCAdFnlnbZ4wcvl2nQShEwL6VxSAYUS_o,13108
136
+ bl_ui/properties_data_armature/__init__.pyi,sha256=8LdOsnTPoSIf4f8HWJ2aWGdSSDg0ri4I8mpiN_of-tg,13185
137
137
  bl_ui/properties_data_bone/__init__.pyi,sha256=jG4ytf1UzXw0ajVB3X94zyNI3NCwNznsAcLJurr2uqU,7970
138
138
  bl_ui/properties_data_camera/__init__.pyi,sha256=W21ncvcxCUOEN_Xr2tCAXp_sK-keytLVoKCzcvVFdMU,13371
139
139
  bl_ui/properties_data_curve/__init__.pyi,sha256=D1xZkuCpaMwurWe-N7UAeEB8Ko8Egsw8fAhfOTQqXJU,12859
@@ -145,14 +145,14 @@ bl_ui/properties_data_light/__init__.pyi,sha256=Q4jh6kmNDqhw5u3An4gSPhlPnzMZMUb-
145
145
  bl_ui/properties_data_lightprobe/__init__.pyi,sha256=micXmIresZ3nptUhIKrsUe7dMYQkTd-H2SMi-kkMysg,10705
146
146
  bl_ui/properties_data_mesh/__init__.pyi,sha256=hWBZZPK5TqPdyBAfBdRHRyGNmPbHLDiYGpOpigonZDo,16244
147
147
  bl_ui/properties_data_metaball/__init__.pyi,sha256=GTLKKm2LsSSnLGT4axvIaxl6kfRumd5jEbstYckuVhE,4766
148
- bl_ui/properties_data_modifier/__init__.pyi,sha256=HkKGz9mmfKPIwb4Bm_tQ9zMOZH_61S0mdyM4u3cb974,7640
148
+ bl_ui/properties_data_modifier/__init__.pyi,sha256=HqgCrPaTqXZAypGbeLujJh5bN79UyiR5ZyEVrk2ZArM,7644
149
149
  bl_ui/properties_data_pointcloud/__init__.pyi,sha256=k_kGJpcpz11D2Rhs_9kR-P4Rw4SRhi2iC-rau-DxagE,4239
150
150
  bl_ui/properties_data_shaderfx/__init__.pyi,sha256=qheRKCM-zgYYTypVdyJrjqgmD1yBXQVlsrlWUwoHsFg,859
151
151
  bl_ui/properties_data_speaker/__init__.pyi,sha256=YRayS4IxkfcvwOAJlqfSL4kjzBcaqo3gf-hmM0fcVeo,4857
152
152
  bl_ui/properties_data_volume/__init__.pyi,sha256=w6ct8kb74x8X0l1vLq6Ymq-fzezD387sQv-lBH7wohM,7115
153
153
  bl_ui/properties_freestyle/__init__.pyi,sha256=JxNJb9q2e8hRqNb7ynucmV5GKCG7y_HdQJgc9z9Th8w,22822
154
154
  bl_ui/properties_game/__init__.pyi,sha256=3Kpgw4Egf2JDBlfwa8DC_-oqhrPA7702FNQTW1qQcfk,13205
155
- bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=S4FyfAJvAfZgUT6l5pyFWAVkrr86autF-iy5FavDDTo,8857
155
+ bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=LQ6kY4XcaeHZdUr4Wr-vmQQerZ6VStZlX6mt8jltOc4,8859
156
156
  bl_ui/properties_mask_common/__init__.pyi,sha256=-Ae0CtS1OQZRwJ38l1xj-115MJo9xEQieAarliMc40s,5796
157
157
  bl_ui/properties_material/__init__.pyi,sha256=J3GrRdWFeh4p5w2qKtC5Dwz0XF301ATcsCPcV4kXWe0,13499
158
158
  bl_ui/properties_material_gpencil/__init__.pyi,sha256=xY7bZUCPnZdCODKxzvJLWJ6EyrRSs0jiyNNsNxsTahk,7917
@@ -173,7 +173,7 @@ bl_ui/properties_render/__init__.pyi,sha256=aFIbGqivnZIH2Ey_Or67Y_wSNsH91fLspYiE
173
173
  bl_ui/properties_scene/__init__.pyi,sha256=NaTdJK2mIrAwjp5sJFo98ipm4Uvk6C1pSFCofA_bF_c,12508
174
174
  bl_ui/properties_texture/__init__.pyi,sha256=8d7ZCVj0-wZLdtj3Fzan96sCP4p_TZg0C_NoQILGo-A,21060
175
175
  bl_ui/properties_view_layer/__init__.pyi,sha256=J7N_wlyCDA_Awz4SZ1LU9H03kbEncWsibqU5Ja7ZRt0,9204
176
- bl_ui/properties_workspace/__init__.pyi,sha256=H9ixaD-_K6YbmzvvzDqE8Ca1_jvGeOJ0S-RHiKXcwoE,3461
176
+ bl_ui/properties_workspace/__init__.pyi,sha256=ssIg71Vro4yRSS2302fKnsWRhyjBZtSyY59dOg71z1w,3463
177
177
  bl_ui/properties_world/__init__.pyi,sha256=2BvXUUUI6BdaA61DKNR3xNGGLSiK5kfeHW25x-s4p7w,9145
178
178
  bl_ui/space_clip/__init__.pyi,sha256=I9bHrnPSZnkPYGxKw3tlUqch3FnyL4fpyjIzG-rqpKk,45001
179
179
  bl_ui/space_console/__init__.pyi,sha256=jHE-NegnXq5WiuRTy89jw6hkYwLAjwEJryGzPJ7GrZw,3273
@@ -189,7 +189,7 @@ bl_ui/space_outliner/__init__.pyi,sha256=o_7H2lQtpKIncGyBU2lL7SHOp-emrqicrRoOBkj
189
189
  bl_ui/space_properties/__init__.pyi,sha256=U4lQ2UupgDfM0RBCSQrI-MlmNG2pOtBxwn5gED-7jzU,2708
190
190
  bl_ui/space_sequencer/__init__.pyi,sha256=DQWB0VpyjH7tdTM4-OBpVUgUXPZYqspBzPLEwd85H94,54686
191
191
  bl_ui/space_spreadsheet/__init__.pyi,sha256=FcAaZ7hZHyyk9EmM8YuVaDZhFFafRUPbrnXftJ74xMY,1450
192
- bl_ui/space_statusbar/__init__.pyi,sha256=Kb64lM_S6RVATyQB1kQu-x7JSGceXsGqNyJ6AReq3-Y,611
192
+ bl_ui/space_statusbar/__init__.pyi,sha256=uz_efXSX0cK9jOf_V-GCveZ1JWid8rae4wYEvLZ3QkY,613
193
193
  bl_ui/space_text/__init__.pyi,sha256=1aSfU5sGr_d229bH1QMwLPCcrTpGjWIpvPzb4Tu7ueY,9868
194
194
  bl_ui/space_time/__init__.pyi,sha256=CsHClliVjg_FdPpaJzh2EgWkPTMZ0-_l0DCEXhx0fP8,4723
195
195
  bl_ui/space_toolsystem_common/__init__.pyi,sha256=IFq4tTh_oM6-dQWMZbuRo6HhYinOLBFC8ORj0S5ZWcs,3185
@@ -197,7 +197,7 @@ bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=FSYElbb_hnP0urIqymcVuHIJEaA4o
197
197
  bl_ui/space_topbar/__init__.pyi,sha256=tVupsHc6IdA1o_axDcB1Cbf0o8ARZzgLncMXgguQnWY,15316
198
198
  bl_ui/space_userpref/__init__.pyi,sha256=iLYc94VUBgP3dE6whoVFktEjvqAE-oLGDbtey9Y4L0E,79675
199
199
  bl_ui/space_view3d/__init__.pyi,sha256=rEdRAL_GqVB9ZENgJZg8GgfZUJbn66MJ8juZuLyOBb4,155552
200
- bl_ui/space_view3d_toolbar/__init__.pyi,sha256=h2PDlE_56tCymRzbSaAf7mu7TIKoSghVjswczMjIG48,76293
200
+ bl_ui/space_view3d_toolbar/__init__.pyi,sha256=EG6IIG6nSOJAvIRRxU3TyjEQNWZ_n2tFEB6FlwjIhuw,76295
201
201
  bl_ui/utils/__init__.pyi,sha256=qkgl-AlZI3QD4UUITGIvN9PbifOI4BPkZBpu7WyxMBw,483
202
202
  bl_ui_utils/__init__.pyi,sha256=ZOo9_bgn1c9NiCNalhTplCD2IChG67rU_V3BeG0k4pE,93
203
203
  bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -243,7 +243,7 @@ bpy/ops/ed/__init__.pyi,sha256=eCvshg5UshWukVfIBIFZ71KL1q1faZSIOt1kC1s1Nu8,8817
243
243
  bpy/ops/export_anim/__init__.pyi,sha256=MdpU1cY6FvYpVacztZz0uIbQDYHgLx3vs9WLpG9ftKE,2197
244
244
  bpy/ops/export_scene/__init__.pyi,sha256=AFGsAxd8ul9L2xIxsOaImCd294A6MOrNRsI9X-u5O90,39211
245
245
  bpy/ops/extensions/__init__.pyi,sha256=zCW9mLu3EIwz3Rrkc1vhQ7zn6zIB72BsLCYfgkMv574,18048
246
- bpy/ops/file/__init__.pyi,sha256=JTtbrNEORTNtuauMTwOQkQX1C2JHjQL-bubGccj14rw,25681
246
+ bpy/ops/file/__init__.pyi,sha256=Ki_toRdJ7C0OSq3rmwWZ_0nP2gJa_jR6PtURd3i53oE,25671
247
247
  bpy/ops/fluid/__init__.pyi,sha256=PM7jfvEosHmKpWcBTNwUgExKC5GpPHczHl82bvgTnWs,5516
248
248
  bpy/ops/font/__init__.pyi,sha256=cVNVWyyoUAeuHvbrQLNfZbatFnhweBGwh7rS-Zxuc-g,19135
249
249
  bpy/ops/geometry/__init__.pyi,sha256=Ix8MGXa5gZBQT3aWGmDfrKPx-MTtmloRflfwiHicuTU,8987
@@ -300,7 +300,7 @@ bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJ
300
300
  bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
301
301
  bpy/path/__init__.pyi,sha256=b_M-IUy-VEWMDZJH0bP9P-HHcLLcQo59S1dARRQrP9E,5064
302
302
  bpy/props/__init__.pyi,sha256=TfulJGBHgbMIc1aadTzLWiL6Q2NQdeO9Q4_ePasNesU,30717
303
- bpy/types/__init__.pyi,sha256=Qd1DZxcXnGHbYuzDSaP4RFi5ecSHiS6cHFfrpirf3-k,5615655
303
+ bpy/types/__init__.pyi,sha256=wEdt-oC9n518owiU9GgjeOV149BKaJOI9AO8sktT9pI,5615860
304
304
  bpy/typing/__init__.pyi,sha256=3KI4vqpVn5OlaoxmsWH9LYKDmNxRYltoP_Jid2cSOnE,139452
305
305
  bpy/utils/__init__.pyi,sha256=XXoE6J8aW13NQ-2FvnFORXyNVUFfO8hSno-xfgJ6ZNI,13078
306
306
  bpy/utils/previews/__init__.pyi,sha256=XEThA7jxMWet1sPTJ3mmngM6LdAdKiIVSZOKbCsbvzw,2217
@@ -347,7 +347,7 @@ gpu/select/__init__.pyi,sha256=piRQyAtE8YnDjLSqF8S_SSttxzZTickDlbHRONYYdV8,207
347
347
  gpu/shader/__init__.pyi,sha256=JsSm0Zagw7GAVxeaLK4cUAa1oyjSckfNwpweWfepUQg,2138
348
348
  gpu/state/__init__.pyi,sha256=leYzxw4fK1piFODBnpxCce3qqQN61CIV-dJO7bALhaY,4266
349
349
  gpu/texture/__init__.pyi,sha256=NWixhD9M2vFrAIWlQDM0Co-CNRiU7BbL7imkSOloHHI,641
350
- gpu/types/__init__.pyi,sha256=uuUwD-LoXTb3WpnklSX7SZJQ8Lul8wS7BWuCXnwKY-8,26704
350
+ gpu/types/__init__.pyi,sha256=8Va2Xz3zy06KIabGM_DEMammC9rUJ6DTX9z8fvGpef4,26631
351
351
  gpu_extras/__init__.pyi,sha256=oNgtMNheClZ_iCmKSH63hBJ4U0huayOWKil-qPvYHds,213
352
352
  gpu_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
353
353
  gpu_extras/batch/__init__.pyi,sha256=ku028fXUbcLhqJQVUqYBINwJ7ptBrWlth_opQT6OgWg,759
@@ -383,7 +383,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
383
383
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
384
384
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
385
385
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
386
- fake_bge_module_latest-20241211.dist-info/METADATA,sha256=aH7TKpBvQ2mdunxW4U4QXXHb4B46H5WqM7TtjsIUJqc,4794
387
- fake_bge_module_latest-20241211.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
388
- fake_bge_module_latest-20241211.dist-info/top_level.txt,sha256=G2g8DM6N1EXHQhWiW_lc0Dp7Tmqpop00oo_f2rdLQOU,520
389
- fake_bge_module_latest-20241211.dist-info/RECORD,,
386
+ fake_bge_module_latest-20241212.dist-info/METADATA,sha256=4210ctwQRvTozR5I7FgRk73mbSb0_ZKGrqi8Lktk9mA,4794
387
+ fake_bge_module_latest-20241212.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
388
+ fake_bge_module_latest-20241212.dist-info/top_level.txt,sha256=G2g8DM6N1EXHQhWiW_lc0Dp7Tmqpop00oo_f2rdLQOU,520
389
+ fake_bge_module_latest-20241212.dist-info/RECORD,,
gpu/types/__init__.pyi CHANGED
@@ -13,12 +13,11 @@ class Buffer:
13
13
  class GPUBatch:
14
14
  """Reusable container for drawable geometry."""
15
15
 
16
- def draw(self, program: GPUShader | None = None):
17
- """Run the drawing program with the parameters assigned to the batch.
16
+ def draw(self, shader=None):
17
+ """Run the drawing shader with the parameters assigned to the batch.
18
18
 
19
- :param program: Program that performs the drawing operations.
20
- If None is passed, the last program set to this batch will run.
21
- :type program: GPUShader | None
19
+ :param shader: Shader that performs the drawing operations.
20
+ If None is passed, the last shader set to this batch will run.
22
21
  """
23
22
 
24
23
  def draw_instanced(