fake-bpy-module 20241001__py3-none-any.whl → 20241002__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/wm/__init__.pyi +28 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +33 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +48 -2
- bpy/ops/wm/__init__.pyi +40 -0
- bpy/types/__init__.pyi +28 -0
- {fake_bpy_module-20241001.dist-info → fake_bpy_module-20241002.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241001.dist-info → fake_bpy_module-20241002.dist-info}/RECORD +9 -9
- {fake_bpy_module-20241001.dist-info → fake_bpy_module-20241002.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241001.dist-info → fake_bpy_module-20241002.dist-info}/top_level.txt +0 -0
bl_operators/wm/__init__.pyi
CHANGED
|
@@ -1281,6 +1281,34 @@ class WM_OT_sysinfo(bpy.types.Operator):
|
|
|
1281
1281
|
:param _event:
|
|
1282
1282
|
"""
|
|
1283
1283
|
|
|
1284
|
+
class WM_OT_tool_set_by_brush_type(bpy.types.Operator):
|
|
1285
|
+
"""Look up the most appropriate tool for the given brush type and activate that"""
|
|
1286
|
+
|
|
1287
|
+
bl_idname: typing.Any
|
|
1288
|
+
bl_label: typing.Any
|
|
1289
|
+
bl_rna: typing.Any
|
|
1290
|
+
id_data: typing.Any
|
|
1291
|
+
|
|
1292
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1293
|
+
"""
|
|
1294
|
+
|
|
1295
|
+
:return: The RNA type or default when not found.
|
|
1296
|
+
:rtype: bpy.types.Struct
|
|
1297
|
+
"""
|
|
1298
|
+
|
|
1299
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1300
|
+
"""
|
|
1301
|
+
|
|
1302
|
+
:return: The class or default when not found.
|
|
1303
|
+
:rtype: typing.Any
|
|
1304
|
+
"""
|
|
1305
|
+
|
|
1306
|
+
def execute(self, context):
|
|
1307
|
+
"""
|
|
1308
|
+
|
|
1309
|
+
:param context:
|
|
1310
|
+
"""
|
|
1311
|
+
|
|
1284
1312
|
class WM_OT_tool_set_by_id(bpy.types.Operator):
|
|
1285
1313
|
"""Set the tool by name (for key-maps)"""
|
|
1286
1314
|
|
|
@@ -97,6 +97,32 @@ class DATA_PT_grease_pencil_custom_props(
|
|
|
97
97
|
:rtype: typing.Any
|
|
98
98
|
"""
|
|
99
99
|
|
|
100
|
+
class DATA_PT_grease_pencil_layer_adjustments(
|
|
101
|
+
GreasePencil_LayerAdjustmentsPanel, LayerDataButtonsPanel, bpy.types.Panel
|
|
102
|
+
):
|
|
103
|
+
bl_context: typing.Any
|
|
104
|
+
bl_label: typing.Any
|
|
105
|
+
bl_options: typing.Any
|
|
106
|
+
bl_parent_id: typing.Any
|
|
107
|
+
bl_region_type: typing.Any
|
|
108
|
+
bl_rna: typing.Any
|
|
109
|
+
bl_space_type: typing.Any
|
|
110
|
+
id_data: typing.Any
|
|
111
|
+
|
|
112
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
113
|
+
"""
|
|
114
|
+
|
|
115
|
+
:return: The RNA type or default when not found.
|
|
116
|
+
:rtype: bpy.types.Struct
|
|
117
|
+
"""
|
|
118
|
+
|
|
119
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
120
|
+
"""
|
|
121
|
+
|
|
122
|
+
:return: The class or default when not found.
|
|
123
|
+
:rtype: typing.Any
|
|
124
|
+
"""
|
|
125
|
+
|
|
100
126
|
class DATA_PT_grease_pencil_layer_masks(
|
|
101
127
|
GreasePencil_LayerMaskPanel, LayerDataButtonsPanel, bpy.types.Panel
|
|
102
128
|
):
|
|
@@ -470,6 +496,13 @@ class GreasPencil_LayerRelationsPanel:
|
|
|
470
496
|
:param context:
|
|
471
497
|
"""
|
|
472
498
|
|
|
499
|
+
class GreasePencil_LayerAdjustmentsPanel:
|
|
500
|
+
def draw(self, context):
|
|
501
|
+
"""
|
|
502
|
+
|
|
503
|
+
:param context:
|
|
504
|
+
"""
|
|
505
|
+
|
|
473
506
|
class GreasePencil_LayerMaskPanel:
|
|
474
507
|
def draw(self, context):
|
|
475
508
|
"""
|
|
@@ -114,7 +114,11 @@ class _defs_annotate:
|
|
|
114
114
|
:param tool:
|
|
115
115
|
"""
|
|
116
116
|
|
|
117
|
-
class _defs_curves_sculpt:
|
|
117
|
+
class _defs_curves_sculpt:
|
|
118
|
+
add: typing.Any
|
|
119
|
+
delete: typing.Any
|
|
120
|
+
density: typing.Any
|
|
121
|
+
select: typing.Any
|
|
118
122
|
|
|
119
123
|
class _defs_edit_armature:
|
|
120
124
|
bone_envelope: typing.Any
|
|
@@ -248,6 +252,8 @@ class _defs_grease_pencil_paint:
|
|
|
248
252
|
"""
|
|
249
253
|
|
|
250
254
|
class _defs_grease_pencil_sculpt:
|
|
255
|
+
clone: typing.Any
|
|
256
|
+
|
|
251
257
|
@staticmethod
|
|
252
258
|
def poll_select_mask(context):
|
|
253
259
|
"""
|
|
@@ -256,6 +262,11 @@ class _defs_grease_pencil_sculpt:
|
|
|
256
262
|
"""
|
|
257
263
|
|
|
258
264
|
class _defs_grease_pencil_vertex:
|
|
265
|
+
average: typing.Any
|
|
266
|
+
blur: typing.Any
|
|
267
|
+
replace: typing.Any
|
|
268
|
+
smear: typing.Any
|
|
269
|
+
|
|
259
270
|
@staticmethod
|
|
260
271
|
def poll_select_mask(context):
|
|
261
272
|
"""
|
|
@@ -263,7 +274,10 @@ class _defs_grease_pencil_vertex:
|
|
|
263
274
|
:param context:
|
|
264
275
|
"""
|
|
265
276
|
|
|
266
|
-
class _defs_grease_pencil_weight:
|
|
277
|
+
class _defs_grease_pencil_weight:
|
|
278
|
+
average: typing.Any
|
|
279
|
+
blur: typing.Any
|
|
280
|
+
smear: typing.Any
|
|
267
281
|
|
|
268
282
|
class _defs_image_generic:
|
|
269
283
|
cursor: typing.Any
|
|
@@ -321,6 +335,8 @@ class _defs_pose:
|
|
|
321
335
|
class _defs_sculpt:
|
|
322
336
|
cloth_filter: typing.Any
|
|
323
337
|
color_filter: typing.Any
|
|
338
|
+
draw_face_sets: typing.Any
|
|
339
|
+
dyntopo_density: typing.Any
|
|
324
340
|
face_set_box: typing.Any
|
|
325
341
|
face_set_edit: typing.Any
|
|
326
342
|
face_set_lasso: typing.Any
|
|
@@ -330,12 +346,16 @@ class _defs_sculpt:
|
|
|
330
346
|
hide_lasso: typing.Any
|
|
331
347
|
hide_line: typing.Any
|
|
332
348
|
hide_polyline: typing.Any
|
|
349
|
+
mask: typing.Any
|
|
333
350
|
mask_border: typing.Any
|
|
334
351
|
mask_by_color: typing.Any
|
|
335
352
|
mask_lasso: typing.Any
|
|
336
353
|
mask_line: typing.Any
|
|
337
354
|
mask_polyline: typing.Any
|
|
338
355
|
mesh_filter: typing.Any
|
|
356
|
+
multires_eraser: typing.Any
|
|
357
|
+
multires_smear: typing.Any
|
|
358
|
+
paint: typing.Any
|
|
339
359
|
project_line: typing.Any
|
|
340
360
|
trim_box: typing.Any
|
|
341
361
|
trim_lasso: typing.Any
|
|
@@ -352,6 +372,20 @@ class _defs_sculpt:
|
|
|
352
372
|
:param draw_popover:
|
|
353
373
|
"""
|
|
354
374
|
|
|
375
|
+
@staticmethod
|
|
376
|
+
def poll_dyntopo(context):
|
|
377
|
+
"""
|
|
378
|
+
|
|
379
|
+
:param context:
|
|
380
|
+
"""
|
|
381
|
+
|
|
382
|
+
@staticmethod
|
|
383
|
+
def poll_multires(context):
|
|
384
|
+
"""
|
|
385
|
+
|
|
386
|
+
:param context:
|
|
387
|
+
"""
|
|
388
|
+
|
|
355
389
|
class _defs_sequencer_generic:
|
|
356
390
|
blade: typing.Any
|
|
357
391
|
cursor: typing.Any
|
|
@@ -368,7 +402,12 @@ class _defs_sequencer_select:
|
|
|
368
402
|
select_timeline: typing.Any
|
|
369
403
|
|
|
370
404
|
class _defs_texture_paint:
|
|
405
|
+
blur: typing.Any
|
|
371
406
|
brush: typing.Any
|
|
407
|
+
clone: typing.Any
|
|
408
|
+
fill: typing.Any
|
|
409
|
+
mask: typing.Any
|
|
410
|
+
smear: typing.Any
|
|
372
411
|
|
|
373
412
|
@staticmethod
|
|
374
413
|
def poll_select_mask(context):
|
|
@@ -394,6 +433,10 @@ class _defs_transform:
|
|
|
394
433
|
"""
|
|
395
434
|
|
|
396
435
|
class _defs_vertex_paint:
|
|
436
|
+
average: typing.Any
|
|
437
|
+
blur: typing.Any
|
|
438
|
+
smear: typing.Any
|
|
439
|
+
|
|
397
440
|
@staticmethod
|
|
398
441
|
def poll_select_mask(context):
|
|
399
442
|
"""
|
|
@@ -440,9 +483,12 @@ class _defs_view3d_select:
|
|
|
440
483
|
select: typing.Any
|
|
441
484
|
|
|
442
485
|
class _defs_weight_paint:
|
|
486
|
+
average: typing.Any
|
|
487
|
+
blur: typing.Any
|
|
443
488
|
gradient: typing.Any
|
|
444
489
|
sample_weight: typing.Any
|
|
445
490
|
sample_weight_group: typing.Any
|
|
491
|
+
smear: typing.Any
|
|
446
492
|
|
|
447
493
|
@staticmethod
|
|
448
494
|
def poll_select_tools(context):
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -5133,6 +5133,46 @@ def sysinfo(
|
|
|
5133
5133
|
:type filepath: str
|
|
5134
5134
|
"""
|
|
5135
5135
|
|
|
5136
|
+
def tool_set_by_brush_type(
|
|
5137
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5138
|
+
execution_context: int | str | None = None,
|
|
5139
|
+
undo: bool | None = None,
|
|
5140
|
+
*,
|
|
5141
|
+
brush_type: str = "",
|
|
5142
|
+
space_type: typing.Literal[
|
|
5143
|
+
"EMPTY",
|
|
5144
|
+
"VIEW_3D",
|
|
5145
|
+
"IMAGE_EDITOR",
|
|
5146
|
+
"NODE_EDITOR",
|
|
5147
|
+
"SEQUENCE_EDITOR",
|
|
5148
|
+
"CLIP_EDITOR",
|
|
5149
|
+
"DOPESHEET_EDITOR",
|
|
5150
|
+
"GRAPH_EDITOR",
|
|
5151
|
+
"NLA_EDITOR",
|
|
5152
|
+
"TEXT_EDITOR",
|
|
5153
|
+
"CONSOLE",
|
|
5154
|
+
"INFO",
|
|
5155
|
+
"TOPBAR",
|
|
5156
|
+
"STATUSBAR",
|
|
5157
|
+
"OUTLINER",
|
|
5158
|
+
"PROPERTIES",
|
|
5159
|
+
"FILE_BROWSER",
|
|
5160
|
+
"SPREADSHEET",
|
|
5161
|
+
"PREFERENCES",
|
|
5162
|
+
]
|
|
5163
|
+
| None = "EMPTY",
|
|
5164
|
+
):
|
|
5165
|
+
"""Look up the most appropriate tool for the given brush type and activate that
|
|
5166
|
+
|
|
5167
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
5168
|
+
:type execution_context: int | str | None
|
|
5169
|
+
:type undo: bool | None
|
|
5170
|
+
:param brush_type: Brush Type, Brush type identifier for which the most appropriate tool will be looked up
|
|
5171
|
+
:type brush_type: str
|
|
5172
|
+
:param space_type: Type
|
|
5173
|
+
:type space_type: typing.Literal['EMPTY','VIEW_3D','IMAGE_EDITOR','NODE_EDITOR','SEQUENCE_EDITOR','CLIP_EDITOR','DOPESHEET_EDITOR','GRAPH_EDITOR','NLA_EDITOR','TEXT_EDITOR','CONSOLE','INFO','TOPBAR','STATUSBAR','OUTLINER','PROPERTIES','FILE_BROWSER','SPREADSHEET','PREFERENCES'] | None
|
|
5174
|
+
"""
|
|
5175
|
+
|
|
5136
5176
|
def tool_set_by_id(
|
|
5137
5177
|
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
5138
5178
|
execution_context: int | str | None = None,
|
bpy/types/__init__.pyi
CHANGED
|
@@ -157671,6 +157671,12 @@ class GreasePencilLayer(bpy_struct):
|
|
|
157671
157671
|
:type: int
|
|
157672
157672
|
"""
|
|
157673
157673
|
|
|
157674
|
+
radius_offset: float
|
|
157675
|
+
""" Radius change to apply to current strokes
|
|
157676
|
+
|
|
157677
|
+
:type: float
|
|
157678
|
+
"""
|
|
157679
|
+
|
|
157674
157680
|
rotation: mathutils.Euler
|
|
157675
157681
|
""" Euler rotation of the layer
|
|
157676
157682
|
|
|
@@ -157689,6 +157695,18 @@ class GreasePencilLayer(bpy_struct):
|
|
|
157689
157695
|
:type: bool
|
|
157690
157696
|
"""
|
|
157691
157697
|
|
|
157698
|
+
tint_color: mathutils.Color
|
|
157699
|
+
""" Color for tinting stroke colors
|
|
157700
|
+
|
|
157701
|
+
:type: mathutils.Color
|
|
157702
|
+
"""
|
|
157703
|
+
|
|
157704
|
+
tint_factor: float
|
|
157705
|
+
""" Factor of tinting color
|
|
157706
|
+
|
|
157707
|
+
:type: float
|
|
157708
|
+
"""
|
|
157709
|
+
|
|
157692
157710
|
translation: mathutils.Vector
|
|
157693
157711
|
""" Translation of the layer
|
|
157694
157712
|
|
|
@@ -182183,6 +182201,12 @@ class NodesModifier(Modifier, bpy_struct):
|
|
|
182183
182201
|
:type: bool
|
|
182184
182202
|
"""
|
|
182185
182203
|
|
|
182204
|
+
open_warnings_panel: bool
|
|
182205
|
+
"""
|
|
182206
|
+
|
|
182207
|
+
:type: bool
|
|
182208
|
+
"""
|
|
182209
|
+
|
|
182186
182210
|
panels: NodesModifierPanels
|
|
182187
182211
|
"""
|
|
182188
182212
|
|
|
@@ -230523,6 +230547,8 @@ DATA_PT_grease_pencil_animation: bl_ui.properties_data_grease_pencil.DATA_PT_gre
|
|
|
230523
230547
|
|
|
230524
230548
|
DATA_PT_grease_pencil_custom_props: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_custom_props
|
|
230525
230549
|
|
|
230550
|
+
DATA_PT_grease_pencil_layer_adjustments: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_adjustments
|
|
230551
|
+
|
|
230526
230552
|
DATA_PT_grease_pencil_layer_masks: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_masks
|
|
230527
230553
|
|
|
230528
230554
|
DATA_PT_grease_pencil_layer_relations: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_layer_relations
|
|
@@ -233609,6 +233635,8 @@ WM_OT_properties_remove: bl_operators.wm.WM_OT_properties_remove
|
|
|
233609
233635
|
|
|
233610
233636
|
WM_OT_sysinfo: bl_operators.wm.WM_OT_sysinfo
|
|
233611
233637
|
|
|
233638
|
+
WM_OT_tool_set_by_brush_type: bl_operators.wm.WM_OT_tool_set_by_brush_type
|
|
233639
|
+
|
|
233612
233640
|
WM_OT_tool_set_by_id: bl_operators.wm.WM_OT_tool_set_by_id
|
|
233613
233641
|
|
|
233614
233642
|
WM_OT_tool_set_by_index: bl_operators.wm.WM_OT_tool_set_by_index
|
|
@@ -87,7 +87,7 @@ bl_operators/uvcalc_lightmap/__init__.pyi,sha256=l_52iDWTIY9TZkX_HjYPaga3qVTyYxe
|
|
|
87
87
|
bl_operators/uvcalc_transform/__init__.pyi,sha256=4ePbkNZ-TOXjwqizGN50OMgjVSNpKegvOmY7FAYG6Xo,3658
|
|
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
|
-
bl_operators/wm/__init__.pyi,sha256=
|
|
90
|
+
bl_operators/wm/__init__.pyi,sha256=AO5_r2BWjctoYBMSC1pOcY7N8g9mOMW2DPCfRXWx_Sg,32928
|
|
91
91
|
bl_operators/world/__init__.pyi,sha256=PAjhTbWfWthFoarGfwddWO5lj2npeKB3lo1MxrcRGE0,926
|
|
92
92
|
bl_previews_utils/__init__.pyi,sha256=b-7Gim-0sAjACbjdBZagYroFF5GLo1ChUj1yf8tlaYc,117
|
|
93
93
|
bl_previews_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -118,7 +118,7 @@ bl_ui/properties_data_curve/__init__.pyi,sha256=BCk8kJKO0-SyER6jlDw2l7XtwD6Sc9-9
|
|
|
118
118
|
bl_ui/properties_data_curves/__init__.pyi,sha256=huauSiwT8GBVJrFzp3o6N6aA8ouxecfu6RgHBfc5rJg,5913
|
|
119
119
|
bl_ui/properties_data_empty/__init__.pyi,sha256=PrWD2bMI4AKOBXS1-GsHXFFeVc12p4siGDQJxdmn95A,1679
|
|
120
120
|
bl_ui/properties_data_gpencil/__init__.pyi,sha256=7FJCtytO9CmNvB_mQV2XJLrSakH19QITJr_dW2eMtXs,14269
|
|
121
|
-
bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=
|
|
121
|
+
bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=2SKSlxWrj1TmawVfyVwd-_wm3NGrqE8lZv8SW9GqMqk,12270
|
|
122
122
|
bl_ui/properties_data_lattice/__init__.pyi,sha256=sjJh19kVQpSQV_j_7dXO0OdvKAyRNVlkoyABdJIYsPw,3504
|
|
123
123
|
bl_ui/properties_data_light/__init__.pyi,sha256=4UpAkSBTbjH-SeUAb1_NLXqc_8_oqip_a0CZNb55jR4,10726
|
|
124
124
|
bl_ui/properties_data_lightprobe/__init__.pyi,sha256=micXmIresZ3nptUhIKrsUe7dMYQkTd-H2SMi-kkMysg,10705
|
|
@@ -170,7 +170,7 @@ bl_ui/space_statusbar/__init__.pyi,sha256=Kb64lM_S6RVATyQB1kQu-x7JSGceXsGqNyJ6AR
|
|
|
170
170
|
bl_ui/space_text/__init__.pyi,sha256=l5CwsrWjvBl_CQQQqfjH7SbRVeAkK7z9R8UAi7GY59c,8799
|
|
171
171
|
bl_ui/space_time/__init__.pyi,sha256=CsHClliVjg_FdPpaJzh2EgWkPTMZ0-_l0DCEXhx0fP8,4723
|
|
172
172
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=IFq4tTh_oM6-dQWMZbuRo6HhYinOLBFC8ORj0S5ZWcs,3185
|
|
173
|
-
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=
|
|
173
|
+
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=5CDL5ln5EuGRBoYIM8NTs5Ytyg902JXtavDM2MofTFQ,11051
|
|
174
174
|
bl_ui/space_topbar/__init__.pyi,sha256=nBXvsE4g5M25m_fVVXWAYRPGpJFq3p95K8W-hue91z4,16175
|
|
175
175
|
bl_ui/space_userpref/__init__.pyi,sha256=EGCdnPQ4iTmERhhzHcb3l-QZBQpZGoGjHMGeTlcyryY,79706
|
|
176
176
|
bl_ui/space_view3d/__init__.pyi,sha256=lbPA9fJIuYHrtd3fZC-bJa0hk6FhTDyIlJYGUZkhn-Y,168464
|
|
@@ -271,12 +271,12 @@ bpy/ops/uilist/__init__.pyi,sha256=L4xQFB8gZEK8eR2tymJBIVwALoVQLh9gwGkIjDzORyI,2
|
|
|
271
271
|
bpy/ops/uv/__init__.pyi,sha256=ociGOFaeH4aChcVFMtC167ZWtM4roFQveDgKiqbAK3c,52706
|
|
272
272
|
bpy/ops/view2d/__init__.pyi,sha256=UWYslz64I_HIULKVyiYd9bVK38ypxss_9EZySgQkyuI,9137
|
|
273
273
|
bpy/ops/view3d/__init__.pyi,sha256=2lr2OOlmYao1DxhG3UugV_WXB8IViYGBL5WXvxHUXOE,41228
|
|
274
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
274
|
+
bpy/ops/wm/__init__.pyi,sha256=Cjp7J0RoI4iNKvUJtGWGWlRPZktA4l3wTkWufquK6WU,243495
|
|
275
275
|
bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJY,3133
|
|
276
276
|
bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
|
|
277
277
|
bpy/path/__init__.pyi,sha256=lXSqQ4p4zukM_-6TaN4v7lNWFVY0xbYGMkOVLpkbpsI,5444
|
|
278
278
|
bpy/props/__init__.pyi,sha256=jUUCk6C-K0f8Qt8-ln9GB_IH0NteN6meCPjr2spyhq4,29439
|
|
279
|
-
bpy/types/__init__.pyi,sha256=
|
|
279
|
+
bpy/types/__init__.pyi,sha256=2szWxj5BDSBK05kSZA6rP28gF6r2LWErpRL2ZmKvwjE,5359451
|
|
280
280
|
bpy/typing/__init__.pyi,sha256=7jjNtrLEpp8FCObTBb-IvF1rzAzDIXa1vaDvS58s9yg,137984
|
|
281
281
|
bpy/utils/__init__.pyi,sha256=AEb3oVPPh_gqLyKORj6rsxDPWvXIHjqp_eME3z98GcM,13117
|
|
282
282
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
@@ -359,7 +359,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
359
359
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
360
360
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
361
361
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
|
-
fake_bpy_module-
|
|
363
|
-
fake_bpy_module-
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-
|
|
362
|
+
fake_bpy_module-20241002.dist-info/METADATA,sha256=nUAmBA5xfji7eljR0q_kXJsZasC-nFur8FKzMEEhKg8,7289
|
|
363
|
+
fake_bpy_module-20241002.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
364
|
+
fake_bpy_module-20241002.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
365
|
+
fake_bpy_module-20241002.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|