fake-bpy-module 20231215__py3-none-any.whl → 20231217__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.
@@ -1,8 +1,8 @@
1
1
  import sys
2
2
  import typing
3
- from . import intellisense
4
- from . import complete_namespace
5
3
  from . import complete_calltip
6
4
  from . import complete_import
5
+ from . import complete_namespace
6
+ from . import intellisense
7
7
 
8
8
  GenericType = typing.TypeVar("GenericType")
@@ -1,11 +1,11 @@
1
1
  import sys
2
2
  import typing
3
+ from . import utils
3
4
  from . import utils_languages_menu
5
+ from . import utils_rtl
6
+ from . import bl_extract_messages
4
7
  from . import settings
5
8
  from . import utils_cli
6
- from . import utils
7
- from . import utils_rtl
8
9
  from . import merge_po
9
- from . import bl_extract_messages
10
10
 
11
11
  GenericType = typing.TypeVar("GenericType")
@@ -1,9 +1,9 @@
1
1
  import sys
2
2
  import typing
3
- from . import versioning
4
- from . import platform_helpers
5
- from . import keymap_hierarchy
6
3
  from . import keymap_from_toolbar
4
+ from . import platform_helpers
7
5
  from . import io
6
+ from . import versioning
7
+ from . import keymap_hierarchy
8
8
 
9
9
  GenericType = typing.TypeVar("GenericType")
bl_operators/__init__.pyi CHANGED
@@ -1,34 +1,34 @@
1
1
  import sys
2
2
  import typing
3
+ from . import assets
4
+ from . import screen_play_rendered_anim
5
+ from . import uvcalc_lightmap
6
+ from . import view3d
7
+ from . import anim
8
+ from . import object_randomize_transform
9
+ from . import image
10
+ from . import uvcalc_follow_active
11
+ from . import node
3
12
  from . import bmesh
4
- from . import console
13
+ from . import geometry_nodes
14
+ from . import uvcalc_transform
15
+ from . import object_align
16
+ from . import vertexpaint_dirt
5
17
  from . import constraint
6
- from . import image
18
+ from . import object_quick_effects
19
+ from . import presets
20
+ from . import console
21
+ from . import freestyle
22
+ from . import wm
7
23
  from . import add_mesh_torus
24
+ from . import sequencer
25
+ from . import file
8
26
  from . import spreadsheet
9
- from . import anim
27
+ from . import rigidbody
10
28
  from . import object
11
- from . import uvcalc_follow_active
12
- from . import vertexpaint_dirt
13
29
  from . import userpref
14
- from . import screen_play_rendered_anim
15
- from . import presets
16
- from . import object_align
17
30
  from . import mesh
18
- from . import node
19
- from . import assets
20
- from . import uvcalc_transform
21
- from . import wm
22
- from . import file
23
- from . import geometry_nodes
24
31
  from . import clip
25
- from . import rigidbody
26
- from . import object_randomize_transform
27
- from . import sequencer
28
- from . import uvcalc_lightmap
29
- from . import freestyle
30
- from . import object_quick_effects
31
- from . import view3d
32
32
 
33
33
  GenericType = typing.TypeVar("GenericType")
34
34
 
bl_ui/__init__.pyi CHANGED
@@ -2,81 +2,81 @@ import sys
2
2
  import typing
3
3
  import bpy_types
4
4
 
5
- from . import space_statusbar
6
- from . import properties_data_modifier
7
- from . import space_text
8
- from . import properties_data_pointcloud
9
- from . import properties_physics_geometry_nodes
10
- from . import space_sequencer
11
- from . import space_properties
12
- from . import properties_data_lattice
13
- from . import generic_ui_list
14
- from . import properties_paint_common
15
- from . import space_spreadsheet
16
- from . import space_clip
17
- from . import properties_physics_cloth
5
+ from . import space_filebrowser
18
6
  from . import properties_data_light
19
- from . import node_add_menu_shader
20
- from . import space_time
21
- from . import properties_workspace
7
+ from . import properties_physics_dynamicpaint
22
8
  from . import properties_data_metaball
23
- from . import properties_world
24
- from . import properties_animviz
9
+ from . import space_outliner
25
10
  from . import properties_data_armature
11
+ from . import properties_render
12
+ from . import properties_physics_rigidbody
13
+ from . import properties_material_gpencil
14
+ from . import node_add_menu
15
+ from . import space_spreadsheet
26
16
  from . import properties_data_curve
27
- from . import properties_physics_dynamicpaint
28
- from . import space_outliner
29
- from . import properties_freestyle
17
+ from . import space_nla
18
+ from . import properties_data_camera
19
+ from . import node_add_menu_compositor
20
+ from . import properties_collection
21
+ from . import properties_particle
22
+ from . import space_properties
23
+ from . import node_add_menu_geometry
24
+ from . import space_toolsystem_common
25
+ from . import node_add_menu_shader
26
+ from . import asset_shelf
27
+ from . import properties_data_mesh
28
+ from . import properties_world
29
+ from . import properties_workspace
30
+ from . import node_add_menu_texture
31
+ from . import generic_ui_list
32
+ from . import properties_paint_common
30
33
  from . import properties_view_layer
31
- from . import properties_data_empty
32
- from . import space_image
33
- from . import properties_data_speaker
34
- from . import properties_data_shaderfx
35
- from . import properties_data_bone
36
- from . import space_userpref
37
34
  from . import properties_material
38
- from . import properties_physics_common
35
+ from . import properties_data_empty
36
+ from . import properties_physics_cloth
37
+ from . import space_console
39
38
  from . import space_view3d
40
- from . import properties_data_volume
41
- from . import utils
42
- from . import properties_data_mesh
43
- from . import node_add_menu_texture
44
- from . import properties_data_gpencil
45
- from . import properties_material_gpencil
39
+ from . import properties_physics_common
40
+ from . import space_time
41
+ from . import properties_data_speaker
46
42
  from . import space_toolsystem_toolbar
47
- from . import properties_texture
48
- from . import properties_physics_softbody
49
- from . import properties_constraint
50
- from . import space_view3d_toolbar
51
- from . import space_dopesheet
52
- from . import space_toolsystem_common
53
- from . import properties_data_curves
54
- from . import properties_particle
55
43
  from . import space_node
56
- from . import properties_data_lightprobe
57
- from . import properties_render
58
- from . import space_info
44
+ from . import properties_physics_rigidbody_constraint
59
45
  from . import properties_scene
46
+ from . import space_text
47
+ from . import properties_object
60
48
  from . import space_graph
61
- from . import properties_grease_pencil_common
49
+ from . import properties_data_shaderfx
50
+ from . import space_info
51
+ from . import space_view3d_toolbar
52
+ from . import space_sequencer
62
53
  from . import properties_physics_fluid
63
- from . import properties_mask_common
64
- from . import properties_object
65
- from . import space_console
66
- from . import properties_physics_rigidbody
67
- from . import node_add_menu_compositor
68
- from . import space_nla
69
- from . import properties_data_camera
70
- from . import space_filebrowser
71
- from . import asset_shelf
72
- from . import space_topbar
54
+ from . import properties_data_curves
55
+ from . import properties_data_lightprobe
56
+ from . import properties_physics_geometry_nodes
57
+ from . import space_image
58
+ from . import space_clip
59
+ from . import space_statusbar
60
+ from . import space_userpref
61
+ from . import properties_freestyle
62
+ from . import properties_texture
63
+ from . import properties_data_grease_pencil
64
+ from . import properties_data_modifier
65
+ from . import properties_data_bone
66
+ from . import properties_physics_softbody
73
67
  from . import properties_output
74
- from . import properties_collection
75
- from . import properties_physics_rigidbody_constraint
76
- from . import node_add_menu_geometry
68
+ from . import properties_mask_common
69
+ from . import properties_data_volume
70
+ from . import utils
71
+ from . import properties_grease_pencil_common
77
72
  from . import properties_physics_field
78
- from . import node_add_menu
79
- from . import properties_data_grease_pencil
73
+ from . import space_dopesheet
74
+ from . import properties_data_lattice
75
+ from . import properties_constraint
76
+ from . import properties_animviz
77
+ from . import space_topbar
78
+ from . import properties_data_pointcloud
79
+ from . import properties_data_gpencil
80
80
 
81
81
  GenericType = typing.TypeVar("GenericType")
82
82
 
bmesh/types/__init__.pyi CHANGED
@@ -278,13 +278,26 @@ class BMEdgeSeq:
278
278
  '''
279
279
  ...
280
280
 
281
- def __iter__(self):
281
+ def __getitem__(self, key: int) -> 'BMEdge':
282
282
  '''
283
283
 
284
+ :param key:
285
+ :type key: int
286
+ :rtype: 'BMEdge'
284
287
  '''
285
288
  ...
286
289
 
287
- def __getitem__(self, key: int) -> 'BMEdge':
290
+ def __setitem__(self, key: int, value: 'BMEdge'):
291
+ '''
292
+
293
+ :param key:
294
+ :type key: int
295
+ :param value:
296
+ :type value: 'BMEdge'
297
+ '''
298
+ ...
299
+
300
+ def __delitem__(self, key: int) -> 'BMEdge':
288
301
  '''
289
302
 
290
303
  :param key:
@@ -293,6 +306,27 @@ class BMEdgeSeq:
293
306
  '''
294
307
  ...
295
308
 
309
+ def __iter__(self) -> typing.Iterator['BMEdge']:
310
+ '''
311
+
312
+ :rtype: typing.Iterator['BMEdge']
313
+ '''
314
+ ...
315
+
316
+ def __next__(self) -> 'BMEdge':
317
+ '''
318
+
319
+ :rtype: 'BMEdge'
320
+ '''
321
+ ...
322
+
323
+ def __len__(self) -> int:
324
+ '''
325
+
326
+ :rtype: int
327
+ '''
328
+ ...
329
+
296
330
 
297
331
  class BMEditSelIter:
298
332
  ...
@@ -346,9 +380,52 @@ class BMElemSeq:
346
380
  '''
347
381
  ...
348
382
 
349
- def __iter__(self):
383
+ def __getitem__(self, key: int) -> 'GenericType':
384
+ '''
385
+
386
+ :param key:
387
+ :type key: int
388
+ :rtype: 'GenericType'
389
+ '''
390
+ ...
391
+
392
+ def __setitem__(self, key: int, value: 'GenericType'):
393
+ '''
394
+
395
+ :param key:
396
+ :type key: int
397
+ :param value:
398
+ :type value: 'GenericType'
399
+ '''
400
+ ...
401
+
402
+ def __delitem__(self, key: int) -> 'GenericType':
403
+ '''
404
+
405
+ :param key:
406
+ :type key: int
407
+ :rtype: 'GenericType'
408
+ '''
409
+ ...
410
+
411
+ def __iter__(self) -> typing.Iterator['GenericType']:
412
+ '''
413
+
414
+ :rtype: typing.Iterator['GenericType']
415
+ '''
416
+ ...
417
+
418
+ def __next__(self) -> 'GenericType':
350
419
  '''
351
420
 
421
+ :rtype: 'GenericType'
422
+ '''
423
+ ...
424
+
425
+ def __len__(self) -> int:
426
+ '''
427
+
428
+ :rtype: int
352
429
  '''
353
430
  ...
354
431
 
@@ -618,13 +695,26 @@ class BMFaceSeq:
618
695
  '''
619
696
  ...
620
697
 
621
- def __iter__(self):
698
+ def __getitem__(self, key: int) -> 'BMFace':
699
+ '''
700
+
701
+ :param key:
702
+ :type key: int
703
+ :rtype: 'BMFace'
704
+ '''
705
+ ...
706
+
707
+ def __setitem__(self, key: int, value: 'BMFace'):
622
708
  '''
623
709
 
710
+ :param key:
711
+ :type key: int
712
+ :param value:
713
+ :type value: 'BMFace'
624
714
  '''
625
715
  ...
626
716
 
627
- def __getitem__(self, key: int) -> 'BMFace':
717
+ def __delitem__(self, key: int) -> 'BMFace':
628
718
  '''
629
719
 
630
720
  :param key:
@@ -633,6 +723,27 @@ class BMFaceSeq:
633
723
  '''
634
724
  ...
635
725
 
726
+ def __iter__(self) -> typing.Iterator['BMFace']:
727
+ '''
728
+
729
+ :rtype: typing.Iterator['BMFace']
730
+ '''
731
+ ...
732
+
733
+ def __next__(self) -> 'BMFace':
734
+ '''
735
+
736
+ :rtype: 'BMFace'
737
+ '''
738
+ ...
739
+
740
+ def __len__(self) -> int:
741
+ '''
742
+
743
+ :rtype: int
744
+ '''
745
+ ...
746
+
636
747
 
637
748
  class BMIter:
638
749
  ''' Internal BMesh type for looping over verts/faces/edges, used for iterating over `BMElemSeq` types.
@@ -981,13 +1092,26 @@ class BMLoopSeq:
981
1092
  :type: 'BMLayerAccessLoop'
982
1093
  '''
983
1094
 
984
- def __iter__(self):
1095
+ def __getitem__(self, key: int) -> 'BMLoop':
1096
+ '''
1097
+
1098
+ :param key:
1099
+ :type key: int
1100
+ :rtype: 'BMLoop'
1101
+ '''
1102
+ ...
1103
+
1104
+ def __setitem__(self, key: int, value: 'BMLoop'):
985
1105
  '''
986
1106
 
1107
+ :param key:
1108
+ :type key: int
1109
+ :param value:
1110
+ :type value: 'BMLoop'
987
1111
  '''
988
1112
  ...
989
1113
 
990
- def __getitem__(self, key: int) -> 'BMLoop':
1114
+ def __delitem__(self, key: int) -> 'BMLoop':
991
1115
  '''
992
1116
 
993
1117
  :param key:
@@ -996,6 +1120,27 @@ class BMLoopSeq:
996
1120
  '''
997
1121
  ...
998
1122
 
1123
+ def __iter__(self) -> typing.Iterator['BMLoop']:
1124
+ '''
1125
+
1126
+ :rtype: typing.Iterator['BMLoop']
1127
+ '''
1128
+ ...
1129
+
1130
+ def __next__(self) -> 'BMLoop':
1131
+ '''
1132
+
1133
+ :rtype: 'BMLoop'
1134
+ '''
1135
+ ...
1136
+
1137
+ def __len__(self) -> int:
1138
+ '''
1139
+
1140
+ :rtype: int
1141
+ '''
1142
+ ...
1143
+
999
1144
 
1000
1145
  class BMLoopUV:
1001
1146
  pin_uv: bool
@@ -1218,13 +1363,26 @@ class BMVertSeq:
1218
1363
  '''
1219
1364
  ...
1220
1365
 
1221
- def __iter__(self):
1366
+ def __getitem__(self, key: int) -> 'BMVert':
1222
1367
  '''
1223
1368
 
1369
+ :param key:
1370
+ :type key: int
1371
+ :rtype: 'BMVert'
1224
1372
  '''
1225
1373
  ...
1226
1374
 
1227
- def __getitem__(self, key: int) -> 'BMVert':
1375
+ def __setitem__(self, key: int, value: 'BMVert'):
1376
+ '''
1377
+
1378
+ :param key:
1379
+ :type key: int
1380
+ :param value:
1381
+ :type value: 'BMVert'
1382
+ '''
1383
+ ...
1384
+
1385
+ def __delitem__(self, key: int) -> 'BMVert':
1228
1386
  '''
1229
1387
 
1230
1388
  :param key:
@@ -1233,6 +1391,27 @@ class BMVertSeq:
1233
1391
  '''
1234
1392
  ...
1235
1393
 
1394
+ def __iter__(self) -> typing.Iterator['BMVert']:
1395
+ '''
1396
+
1397
+ :rtype: typing.Iterator['BMVert']
1398
+ '''
1399
+ ...
1400
+
1401
+ def __next__(self) -> 'BMVert':
1402
+ '''
1403
+
1404
+ :rtype: 'BMVert'
1405
+ '''
1406
+ ...
1407
+
1408
+ def __len__(self) -> int:
1409
+ '''
1410
+
1411
+ :rtype: int
1412
+ '''
1413
+ ...
1414
+
1236
1415
 
1237
1416
  class BMesh:
1238
1417
  ''' The BMesh data structure
bpy/__init__.pyi CHANGED
@@ -4,10 +4,10 @@ import bpy.types
4
4
 
5
5
  from . import types
6
6
  from . import ops
7
+ from . import props
7
8
  from . import app
8
- from . import utils
9
9
  from . import msgbus
10
- from . import props
10
+ from . import utils
11
11
  from . import path
12
12
 
13
13
  GenericType = typing.TypeVar("GenericType")
bpy/app/__init__.pyi CHANGED
@@ -1,9 +1,9 @@
1
1
  import sys
2
2
  import typing
3
+ from . import icons
4
+ from . import handlers
3
5
  from . import translations
4
6
  from . import timers
5
- from . import handlers
6
- from . import icons
7
7
 
8
8
  GenericType = typing.TypeVar("GenericType")
9
9
 
bpy/ops/__init__.pyi CHANGED
@@ -1,81 +1,81 @@
1
1
  import sys
2
2
  import typing
3
- from . import render
4
- from . import script
5
- from . import rigidbody
6
- from . import armature
7
- from . import export_mesh
8
- from . import preferences
9
- from . import ptcache
10
3
  from . import dpaint
11
- from . import brush
12
- from . import palette
13
- from . import cachefile
14
- from . import lattice
15
- from . import material
16
- from . import view2d
17
- from . import view3d
18
- from . import import_mesh
19
- from . import clip
20
- from . import file
21
- from . import object
22
- from . import graph
23
- from . import world
24
- from . import texture
25
- from . import node
26
- from . import uilist
27
- from . import mball
28
- from . import curves
29
4
  from . import info
30
- from . import uv
31
- from . import action
5
+ from . import file
6
+ from . import text_editor
7
+ from . import ptcache
8
+ from . import outliner
9
+ from . import nla
10
+ from . import view2d
32
11
  from . import constraint
33
- from . import screen
34
- from . import boid
35
- from . import export_anim
36
- from . import import_scene
37
- from . import sculpt
12
+ from . import gizmogroup
13
+ from . import export_scene
14
+ from . import gpencil
15
+ from . import collection
16
+ from . import uv
17
+ from . import sculpt_curves
38
18
  from . import pose
39
- from . import nla
40
- from . import camera
19
+ from . import material
20
+ from . import rigidbody
21
+ from . import export_anim
41
22
  from . import buttons
42
- from . import grease_pencil
43
- from . import console
44
- from . import paint
45
- from . import text
46
- from . import paintcurve
47
- from . import mesh
48
- from . import import_curve
49
- from . import marker
50
- from . import sound
51
- from . import ui
52
- from . import font
53
- from . import cloth
54
- from . import gizmogroup
23
+ from . import screen
24
+ from . import wm
25
+ from . import view3d
26
+ from . import sequencer
27
+ from . import texture
55
28
  from . import particle
56
- from . import spreadsheet
57
- from . import sculpt_curves
29
+ from . import transform
58
30
  from . import image
59
- from . import outliner
60
- from . import sequencer
61
- from . import import_anim
31
+ from . import paint
32
+ from . import curve
33
+ from . import palette
62
34
  from . import anim
63
- from . import text_editor
64
- from . import mask
35
+ from . import object
36
+ from . import clip
37
+ from . import uilist
38
+ from . import text
39
+ from . import mesh
65
40
  from . import asset
66
- from . import gpencil
67
- from . import wm
68
- from . import fluid
69
- from . import workspace
70
- from . import export_scene
71
- from . import scene
72
- from . import collection
73
41
  from . import cycles
42
+ from . import font
43
+ from . import ui
44
+ from . import action
45
+ from . import sound
46
+ from . import armature
47
+ from . import mball
48
+ from . import marker
49
+ from . import world
50
+ from . import console
51
+ from . import sculpt
52
+ from . import camera
53
+ from . import script
54
+ from . import cachefile
55
+ from . import brush
56
+ from . import lattice
74
57
  from . import ed
58
+ from . import import_curve
59
+ from . import preferences
60
+ from . import import_mesh
61
+ from . import export_mesh
62
+ from . import render
63
+ from . import import_scene
64
+ from . import import_anim
65
+ from . import workspace
66
+ from . import node
67
+ from . import paintcurve
68
+ from . import geometry
69
+ from . import graph
75
70
  from . import surface
71
+ from . import mask
72
+ from . import spreadsheet
76
73
  from . import poselib
77
- from . import transform
78
- from . import geometry
79
- from . import curve
74
+ from . import curves
75
+ from . import grease_pencil
76
+ from . import scene
77
+ from . import fluid
78
+ from . import cloth
79
+ from . import boid
80
80
 
81
81
  GenericType = typing.TypeVar("GenericType")
@@ -334,3 +334,18 @@ def surface_set(
334
334
  '''
335
335
 
336
336
  ...
337
+
338
+
339
+ def tilt_clear(
340
+ override_context: typing.Optional[
341
+ typing.Union[typing.Dict, 'bpy.types.Context']] = None,
342
+ execution_context: typing.Optional[typing.Union[str, int]] = None,
343
+ undo: typing.Optional[bool] = None):
344
+ ''' Clear the tilt of selected control points
345
+
346
+ :type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
347
+ :type execution_context: typing.Optional[typing.Union[str, int]]
348
+ :type undo: typing.Optional[bool]
349
+ '''
350
+
351
+ ...
bpy/ops/wm/__init__.pyi CHANGED
@@ -4312,6 +4312,7 @@ def usd_export(
4312
4312
  export_normals: typing.Optional[typing.Union[bool, typing.Any]] = True,
4313
4313
  export_materials: typing.Optional[typing.Union[bool, typing.
4314
4314
  Any]] = True,
4315
+ export_subdivision: typing.Optional[typing.Any] = 'BEST_MATCH',
4315
4316
  use_instancing: typing.Optional[typing.Union[bool, typing.
4316
4317
  Any]] = False,
4317
4318
  evaluation_mode: typing.Optional[typing.Any] = 'RENDER',
@@ -4389,6 +4390,8 @@ def usd_export(
4389
4390
  :type export_normals: typing.Optional[typing.Union[bool, typing.Any]]
4390
4391
  :param export_materials: Materials, Export viewport settings of materials as USD preview materials, and export material assignments as geometry subsets
4391
4392
  :type export_materials: typing.Optional[typing.Union[bool, typing.Any]]
4393
+ :param export_subdivision: Subdivision Scheme, Choose how subdivision modifiers will be mapped to the USD subdivision scheme during export * ``IGNORE`` Ignore -- Subdivision scheme = None, export base mesh without subdivision. * ``TESSELLATE`` Tessellate -- Subdivision scheme = None, export subdivided mesh. * ``BEST_MATCH`` Best Match -- Subdivision scheme = Catmull-Clark, when possible. Reverts to exporting the subdivided mesh for the Simple subdivision type.
4394
+ :type export_subdivision: typing.Optional[typing.Any]
4392
4395
  :param use_instancing: Instancing, Export instanced objects as references in USD rather than real objects
4393
4396
  :type use_instancing: typing.Optional[typing.Union[bool, typing.Any]]
4394
4397
  :param evaluation_mode: Use Settings for, Determines visibility of objects, modifier settings, and other areas where there are different settings for viewport and rendering * ``RENDER`` Render -- Use Render settings for object visibility, modifier settings, etc. * ``VIEWPORT`` Viewport -- Use Viewport settings for object visibility, modifier settings, etc.
bpy/types/__init__.pyi CHANGED
@@ -2,93 +2,93 @@ import sys
2
2
  import typing
3
3
  import mathutils
4
4
  import bpy
5
- import bl_ui.space_statusbar
6
- import bl_ui.properties_data_modifier
7
- import bl_ui.space_text
8
- import bl_ui.properties_data_pointcloud
9
- import bl_ui.properties_physics_geometry_nodes
10
- import bl_ui
11
- import bl_ui.space_sequencer
12
- import bl_ui.space_properties
13
- import bl_ui.properties_data_lattice
14
- import bl_ui.generic_ui_list
15
- import bl_ui.properties_paint_common
16
- import bl_ui.space_spreadsheet
17
- import bl_ui.space_clip
18
- import bl_operators.constraint
19
- import bl_ui.properties_physics_cloth
5
+ import bl_operators.assets
6
+ import bl_ui.space_filebrowser
20
7
  import bl_ui.properties_data_light
21
- import bl_ui.node_add_menu_shader
22
- import bl_ui.space_time
23
- import bl_ui.properties_workspace
8
+ import bl_ui.properties_physics_dynamicpaint
24
9
  import bl_ui.properties_data_metaball
25
- import bl_operators.spreadsheet
26
- import bl_ui.properties_world
10
+ import bl_operators.view3d
11
+ import bl_ui.space_outliner
27
12
  import bl_ui.properties_data_armature
13
+ import bl_operators.anim
14
+ import bl_ui.properties_render
15
+ import bl_ui.properties_physics_rigidbody
16
+ import bl_ui.properties_material_gpencil
17
+ import bl_ui.node_add_menu
18
+ import bl_ui.space_spreadsheet
28
19
  import bl_ui.properties_data_curve
29
- import bl_ui.properties_physics_dynamicpaint
30
- import bl_ui.space_outliner
31
- import bl_ui.properties_freestyle
20
+ import bl_ui.space_nla
21
+ import bl_ui.properties_data_camera
22
+ import bl_ui.node_add_menu_compositor
23
+ import bl_ui.properties_collection
24
+ import bl_operators.node
25
+ import bl_ui.properties_particle
26
+ import bl_ui.space_properties
27
+ import bl_ui.node_add_menu_geometry
28
+ import bl_ui.space_toolsystem_common
29
+ import bl_ui.node_add_menu_shader
30
+ import bl_ui.asset_shelf
31
+ import bl_ui.properties_data_mesh
32
+ import bl_ui.properties_world
33
+ import bl_ui.properties_workspace
34
+ import bl_ui.node_add_menu_texture
35
+ import bl_ui.generic_ui_list
36
+ import bl_ui.properties_paint_common
32
37
  import bl_ui.properties_view_layer
33
- import bl_ui.properties_data_empty
34
- import bl_operators.anim
35
- import bl_operators.object
36
- import bl_ui.space_image
37
- import bl_ui.properties_data_speaker
38
- import bl_ui.properties_data_shaderfx
39
- import bl_ui.properties_data_bone
40
- import bl_ui.space_userpref
41
38
  import bl_ui.properties_material
42
- import bl_ui.properties_physics_common
39
+ import bl_ui.properties_data_empty
40
+ import bl_ui.properties_physics_cloth
41
+ import bl_ui
42
+ import bl_operators.constraint
43
+ import bl_ui.space_console
43
44
  import bl_ui.space_view3d
44
- import bl_ui.properties_data_volume
45
- import bl_ui.properties_data_mesh
46
- import bl_ui.node_add_menu_texture
47
- import bl_ui.properties_data_gpencil
48
- import bl_operators.userpref
49
- import bl_ui.properties_material_gpencil
45
+ import bl_ui.properties_physics_common
46
+ import bl_ui.space_time
47
+ import bl_ui.properties_data_speaker
50
48
  import bl_ui.space_toolsystem_toolbar
51
- import bl_ui.properties_texture
52
- import bl_ui.properties_physics_softbody
53
- import bl_ui.properties_constraint
49
+ import bl_ui.space_node
50
+ import bl_ui.properties_physics_rigidbody_constraint
51
+ import bl_ui.properties_scene
54
52
  import bl_operators.presets
53
+ import bl_ui.space_text
54
+ import bl_ui.properties_object
55
+ import bl_operators.freestyle
56
+ import bl_ui.space_graph
57
+ import bl_ui.properties_data_shaderfx
58
+ import bl_ui.space_info
55
59
  import bl_ui.space_view3d_toolbar
56
- import bl_ui.space_dopesheet
57
- import bl_ui.space_toolsystem_common
60
+ import bl_operators.wm
61
+ import bl_ui.space_sequencer
62
+ import bl_ui.properties_physics_fluid
58
63
  import bl_ui.properties_data_curves
59
- import bl_operators.node
60
- import bl_ui.properties_particle
61
- import bl_ui.space_node
62
- import bl_operators.assets
63
64
  import bl_ui.properties_data_lightprobe
64
- import bl_ui.properties_render
65
- import bl_ui.space_info
66
- import bl_operators.wm
67
- import bl_ui.properties_scene
68
- import bl_ui.space_graph
69
65
  import bl_operators.file
70
- import bl_ui.properties_grease_pencil_common
71
- import bl_ui.properties_physics_fluid
72
- import bl_ui.properties_mask_common
73
- import bl_ui.properties_object
74
- import bl_operators.clip
75
- import bl_ui.space_console
76
- import bl_ui.properties_physics_rigidbody
77
- import bl_ui.node_add_menu_compositor
78
- import bl_ui.space_nla
79
- import bl_ui.properties_data_camera
80
- import bl_ui.space_filebrowser
81
- import bl_ui.asset_shelf
82
- import bl_ui.space_topbar
66
+ import bl_ui.properties_physics_geometry_nodes
67
+ import bl_ui.space_image
68
+ import bl_ui.space_clip
69
+ import bl_operators.spreadsheet
70
+ import bl_ui.space_statusbar
71
+ import bl_ui.space_userpref
72
+ import bl_ui.properties_freestyle
73
+ import bl_ui.properties_texture
74
+ import bl_ui.properties_data_grease_pencil
75
+ import bl_ui.properties_data_modifier
76
+ import bl_ui.properties_data_bone
77
+ import bl_ui.properties_physics_softbody
83
78
  import bl_ui.properties_output
84
- import bl_ui.properties_collection
85
- import bl_ui.properties_physics_rigidbody_constraint
86
- import bl_ui.node_add_menu_geometry
87
- import bl_operators.freestyle
79
+ import bl_ui.properties_mask_common
80
+ import bl_ui.properties_data_volume
81
+ import bl_ui.properties_grease_pencil_common
88
82
  import bl_ui.properties_physics_field
89
- import bl_ui.node_add_menu
90
- import bl_ui.properties_data_grease_pencil
91
- import bl_operators.view3d
83
+ import bl_ui.space_dopesheet
84
+ import bl_operators.object
85
+ import bl_operators.userpref
86
+ import bl_ui.properties_data_lattice
87
+ import bl_ui.properties_constraint
88
+ import bl_ui.space_topbar
89
+ import bl_operators.clip
90
+ import bl_ui.properties_data_pointcloud
91
+ import bl_ui.properties_data_gpencil
92
92
 
93
93
  GenericType = typing.TypeVar("GenericType")
94
94
 
@@ -9651,7 +9651,7 @@ class Event(bpy_struct):
9651
9651
  '''
9652
9652
 
9653
9653
  is_consecutive: typing.Union[bool, typing.Any]
9654
- ''' Part of a track-pad or NDOF motion, interrupted by cursor motion, button or key press events
9654
+ ''' Part of a trackpad or NDOF motion, interrupted by cursor motion, button or key press events
9655
9655
 
9656
9656
  :type: typing.Union[bool, typing.Any]
9657
9657
  '''
@@ -26578,7 +26578,7 @@ class PreferencesInput(bpy_struct):
26578
26578
  '''
26579
26579
 
26580
26580
  drag_threshold_mouse: int
26581
- ''' Number of pixels to drag before a drag event is triggered for mouse/track-pad input (otherwise click events are detected)
26581
+ ''' Number of pixels to drag before a drag event is triggered for mouse/trackpad input (otherwise click events are detected)
26582
26582
 
26583
26583
  :type: int
26584
26584
  '''
@@ -27936,6 +27936,12 @@ class PropertyGroupItem(bpy_struct):
27936
27936
  :type: bpy_prop_array[float]
27937
27937
  '''
27938
27938
 
27939
+ enum: typing.Union[str, int]
27940
+ '''
27941
+
27942
+ :type: typing.Union[str, int]
27943
+ '''
27944
+
27939
27945
  float: float
27940
27946
  '''
27941
27947
 
@@ -29851,6 +29857,12 @@ class RenderSettings(bpy_struct):
29851
29857
  :type: bool
29852
29858
  '''
29853
29859
 
29860
+ use_simplify_normals: bool
29861
+ ''' Skip computing custom normals and face corner normals for displaying meshes in the viewport
29862
+
29863
+ :type: bool
29864
+ '''
29865
+
29854
29866
  use_single_layer: bool
29855
29867
  ''' Only render the active layer. Only affects rendering from the interface, ignored for rendering from command line
29856
29868
 
@@ -45566,7 +45578,7 @@ class XrActionMapItem(bpy_struct):
45566
45578
  '''
45567
45579
 
45568
45580
  type: typing.Union[str, int]
45569
- ''' Action type * ``FLOAT`` Float -- Float action, representing either a digital or analog button. * ``VECTOR2D`` Vector2D -- 2D float vector action, representing a thumb-stick or track-pad. * ``POSE`` Pose -- 3D pose action, representing a controller's location and rotation. * ``VIBRATION`` Vibration -- Haptic vibration output action, to be applied with a duration, frequency, and amplitude.
45581
+ ''' Action type * ``FLOAT`` Float -- Float action, representing either a digital or analog button. * ``VECTOR2D`` Vector2D -- 2D float vector action, representing a thumbstick or trackpad. * ``POSE`` Pose -- 3D pose action, representing a controller's location and rotation. * ``VIBRATION`` Vibration -- Haptic vibration output action, to be applied with a duration, frequency, and amplitude.
45570
45582
 
45571
45583
  :type: typing.Union[str, int]
45572
45584
  '''
@@ -45707,7 +45719,7 @@ class XrEventData(bpy_struct):
45707
45719
  '''
45708
45720
 
45709
45721
  type: typing.Union[str, int]
45710
- ''' XR action type * ``FLOAT`` Float -- Float action, representing either a digital or analog button. * ``VECTOR2D`` Vector2D -- 2D float vector action, representing a thumb-stick or track-pad. * ``POSE`` Pose -- 3D pose action, representing a controller's location and rotation. * ``VIBRATION`` Vibration -- Haptic vibration output action, to be applied with a duration, frequency, and amplitude.
45722
+ ''' XR action type * ``FLOAT`` Float -- Float action, representing either a digital or analog button. * ``VECTOR2D`` Vector2D -- 2D float vector action, representing a thumbstick or trackpad. * ``POSE`` Pose -- 3D pose action, representing a controller's location and rotation. * ``VIBRATION`` Vibration -- Haptic vibration output action, to be applied with a duration, frequency, and amplitude.
45711
45723
 
45712
45724
  :type: typing.Union[str, int]
45713
45725
  '''
bpy/utils/__init__.pyi CHANGED
@@ -2,8 +2,8 @@ import sys
2
2
  import typing
3
3
  import bpy.types
4
4
 
5
- from . import units
6
5
  from . import previews
6
+ from . import units
7
7
 
8
8
  GenericType = typing.TypeVar("GenericType")
9
9
 
bpy_extras/__init__.pyi CHANGED
@@ -10,9 +10,9 @@ from . import id_map_utils
10
10
  from . import asset_utils
11
11
  from . import object_utils
12
12
  from . import anim_utils
13
- from . import node_shader_utils
14
- from . import wm_utils
15
13
  from . import bmesh_utils
14
+ from . import wm_utils
16
15
  from . import extensions
16
+ from . import node_shader_utils
17
17
 
18
18
  GenericType = typing.TypeVar("GenericType")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20231215
3
+ Version: 20231217
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
@@ -14,7 +14,7 @@ bl_app_template_utils/__init__.pyi,sha256=Zn4Q5_vPUQV4SnQqSvTsOlNYEHEoZr1rx1DZvc
14
14
  bl_app_template_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
15
  bl_console_utils/__init__.pyi,sha256=qOGRa_N1-VEAf9cr60mvvxQMYSKNNSzuSQ0_TuSEq1I,97
16
16
  bl_console_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- bl_console_utils/autocomplete/__init__.pyi,sha256=WgO-NrPxdzx_MmWaHnV_iKASeiq0hSODnZHe2ibxK0M,191
17
+ bl_console_utils/autocomplete/__init__.pyi,sha256=TQJ_TfRkhf8QqbJJcwh-RvRTL2M-saX4-bRv7wbKXNQ,191
18
18
  bl_console_utils/autocomplete/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
19
  bl_console_utils/autocomplete/complete_calltip/__init__.pyi,sha256=AW7fGzddfUeEKYRROS2ktvB95v8xBv2xfNQHZ-UZtmk,372
20
20
  bl_console_utils/autocomplete/complete_calltip/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -24,7 +24,7 @@ bl_console_utils/autocomplete/complete_namespace/__init__.pyi,sha256=7_ctcFmQsIW
24
24
  bl_console_utils/autocomplete/complete_namespace/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
25
  bl_console_utils/autocomplete/intellisense/__init__.pyi,sha256=b60v0t56txcAZ4R9cW60VMqooCXj07PF4Q6rcYGvVJs,222
26
26
  bl_console_utils/autocomplete/intellisense/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
- bl_i18n_utils/__init__.pyi,sha256=RZbBJ3f2U1cFeNpnN58fiO4ZXp3bzEAsv3F9KxxjHhQ,253
27
+ bl_i18n_utils/__init__.pyi,sha256=VaTpWSxB_XZu7oFsq105fOtViZ6FtekeVRqoQVWoRXc,253
28
28
  bl_i18n_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
29
  bl_i18n_utils/bl_extract_messages/__init__.pyi,sha256=kaVfcFpWiEy1RnI7UtUJrkMk4uLWZegVUHR8uYBzpdM,1276
30
30
  bl_i18n_utils/bl_extract_messages/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -40,7 +40,7 @@ bl_i18n_utils/utils_languages_menu/__init__.pyi,sha256=_gqX_O3eE0AiLLCw9rz_A6q_L
40
40
  bl_i18n_utils/utils_languages_menu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
41
  bl_i18n_utils/utils_rtl/__init__.pyi,sha256=U3u2cgQIuLogSl25uhiHs2s9DFK9UYMeXGg3_R1sQ0c,186
42
42
  bl_i18n_utils/utils_rtl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
- bl_keymap_utils/__init__.pyi,sha256=jGOd1VcKXvR1NrIEU6KPK2CeTY7GIQqBEj4dnoPcD4M,208
43
+ bl_keymap_utils/__init__.pyi,sha256=uEGFJwP5EIWJYhNbk1VlZEoPhUnZ0bedIwAiZStbgIo,208
44
44
  bl_keymap_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
45
  bl_keymap_utils/io/__init__.pyi,sha256=y4yZFHq6xL9t52t5oUsUqb31Qe1kJUOOfCuM5A5LOQU,684
46
46
  bl_keymap_utils/io/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -54,7 +54,7 @@ bl_keymap_utils/versioning/__init__.pyi,sha256=3yw6oHUQGFejTCnrsOY6IL9y78-EJz1VP
54
54
  bl_keymap_utils/versioning/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
55
  bl_math/__init__.pyi,sha256=jFSKwCJVEo3O0yrPDTeKwSWMJ3bAiKcMcS_7wm-ZusI,1597
56
56
  bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
- bl_operators/__init__.pyi,sha256=0AzazrMBlBzZ3eFdK25369QqT71gf4EGZudN1HNaWgA,895
57
+ bl_operators/__init__.pyi,sha256=mljvIbp6CHk5srdfG38fYjQTWRJ5qh_m9D5SX7h9j-8,895
58
58
  bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
59
  bl_operators/add_mesh_torus/__init__.pyi,sha256=sW6-uVCW2WoTcOdAcc8RAfqx07MECvLNyNcrtoKXZOI,2811
60
60
  bl_operators/add_mesh_torus/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -128,7 +128,7 @@ bl_text_utils/__init__.pyi,sha256=mA4rhlhHGbhXjawE0_uzcLQZhw4Rj4xm5DsFzDaoR0I,10
128
128
  bl_text_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
129
  bl_text_utils/external_editor/__init__.pyi,sha256=5Nuo8o17p8djL8yMnRuDIvFEXGPlvPddQrWlkZD6IBs,149
130
130
  bl_text_utils/external_editor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
- bl_ui/__init__.pyi,sha256=h111wCAJnYuxOOaVQWiUxHtPRnXLEkUcp4nvfFK3-1Y,10382
131
+ bl_ui/__init__.pyi,sha256=YYn3JzffZZXn1MppJf-iXk2fRwvlEVQ_2BOecdd16ac,10382
132
132
  bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
133
  bl_ui/asset_shelf/__init__.pyi,sha256=4uzMddV5uYdHeGzUgUra82g7RrfPXJmzqdC5-Re_ebQ,2438
134
134
  bl_ui/asset_shelf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -296,13 +296,13 @@ bmesh/geometry/__init__.pyi,sha256=YCriOMjIVXs9POelcPyph6GMFG3KQaGg67qnApzGAZc,6
296
296
  bmesh/geometry/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
297
297
  bmesh/ops/__init__.pyi,sha256=mE1AFU2B5gmH3XGNpnlOncXCcd2w_WexCnAjtG-ISd8,77279
298
298
  bmesh/ops/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
- bmesh/types/__init__.pyi,sha256=Jy5AV8xe4_4o9J7Y6I1QPsrXve41naWKWdC4cweSMCs,37065
299
+ bmesh/types/__init__.pyi,sha256=zO5ilLwp6S2PjWE_un7fFvhQFJn1Zj2c5fy-oW4hZ7A,40307
300
300
  bmesh/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
301
301
  bmesh/utils/__init__.pyi,sha256=Zq-n06AUnuxrVpT9RQGaGyY4E16UesGsNeePnhik57w,6543
302
302
  bmesh/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
303
- bpy/__init__.pyi,sha256=m-r-QLtyp8avMFNyyd7mw2OsetYe-oZvJpizt3TEA6Q,324
303
+ bpy/__init__.pyi,sha256=l1NX-LjlLS6KkZ4nafmOCevXvosVC1y_uTv5gqJKvL8,324
304
304
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
- bpy/app/__init__.pyi,sha256=lZaewEkSlYt_-a2KcFZZFv0RLF95ZRuCf4u1Qqd0XaU,9478
305
+ bpy/app/__init__.pyi,sha256=ZygEt2k9DxByE97eGs4b7qzhl5GqmVqE_h1VdP74KIA,9478
306
306
  bpy/app/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
307
307
  bpy/app/handlers/__init__.pyi,sha256=w-3lbeY4grEb-CpZtk5nMQ45aneqMLUn27P7UchPT2Y,5400
308
308
  bpy/app/handlers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -314,7 +314,7 @@ bpy/app/translations/__init__.pyi,sha256=sufofHqcHY64ZzC8sDeTV6USzOrJINAbxNeFSgk
314
314
  bpy/app/translations/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
315
315
  bpy/msgbus/__init__.pyi,sha256=_Wjy3pK_1bSGLACcS6i9nw4zR7BAEjjwRiaKu2mhj_k,1666
316
316
  bpy/msgbus/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
317
- bpy/ops/__init__.pyi,sha256=gy-QCwco30CGUShfh80IIdpvNSb2b5wZwATzLo41WV8,1751
317
+ bpy/ops/__init__.pyi,sha256=kkKJIW65PvhGBgGKNl-BBNkg9co4rGmcgI9-6SQoF-M,1751
318
318
  bpy/ops/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
319
319
  bpy/ops/action/__init__.pyi,sha256=8YFm2Fmch8zMUmLNqXcws6S3S4v33OQre5yulSOkbvo,29657
320
320
  bpy/ops/action/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -346,7 +346,7 @@ bpy/ops/constraint/__init__.pyi,sha256=CVsgll2E-0kWOOXsHATSzcPfLrHuP2MfinBnm2TUB
346
346
  bpy/ops/constraint/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
347
347
  bpy/ops/curve/__init__.pyi,sha256=smOKyWV0ew2kShTc7T11X24QOe-YK6K8sLCJCU_M-3k,43928
348
348
  bpy/ops/curve/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
349
- bpy/ops/curves/__init__.pyi,sha256=SSy5P1t386qQOPYbCSaNZHV8bAcSxrqzuwNA9Od6sJw,13579
349
+ bpy/ops/curves/__init__.pyi,sha256=WmZizqZUHqiZ5dHAHq9weUReMvfn3ldxi9OF6_N9dm8,14095
350
350
  bpy/ops/curves/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
351
351
  bpy/ops/cycles/__init__.pyi,sha256=9L_spU4y9ri4fyFpLURh-trT0FbPIGPvnGpA_17ZpAw,3284
352
352
  bpy/ops/cycles/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -464,7 +464,7 @@ bpy/ops/view2d/__init__.pyi,sha256=Cp_YPhOJnWyETljbEkVFgbDiM0fNLGpq0HP5aAI4pgI,1
464
464
  bpy/ops/view2d/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
465
465
  bpy/ops/view3d/__init__.pyi,sha256=AMcJodTPF4u-dMdIa1Jw91OrhQkKB2j42S22p9b-2Tg,59685
466
466
  bpy/ops/view3d/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
467
- bpy/ops/wm/__init__.pyi,sha256=ghDo8mepdhNyfChmqv7rWi6TWArXHk3t_zn7xcym4Vo,290428
467
+ bpy/ops/wm/__init__.pyi,sha256=sMoY59KDxAW8eNiADrysfzQXBvNUcHISqZrmor41hos,291027
468
468
  bpy/ops/wm/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
469
469
  bpy/ops/workspace/__init__.pyi,sha256=_JxYjl8AuSUtwEmKHUR-EswIAhN-jSu_XnPAFqxTqMQ,4147
470
470
  bpy/ops/workspace/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -474,15 +474,15 @@ bpy/path/__init__.pyi,sha256=UCfQ6H7g5j9jwGjKPxd2eYMJwzQ5-Vr3Kd6hXH3thiw,6314
474
474
  bpy/path/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
475
475
  bpy/props/__init__.pyi,sha256=ei-_J5SH-qKnDgtnMrvXkr0DofgLtDtjXgNB-1c8Ldk,29317
476
476
  bpy/props/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
477
- bpy/types/__init__.pyi,sha256=6wglsqzIuZ_bXLEahUK9q5FeLF_g0uj6DeM5zbmmphw,3488938
477
+ bpy/types/__init__.pyi,sha256=N0VbuxGMpsuHDNXOQrQWl76qEfAl8F8npY0uZ2cJ89s,3489175
478
478
  bpy/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
479
- bpy/utils/__init__.pyi,sha256=oZjhiaoYQLBCWOES5GRUgjlaa9cIEuwgYpKAPKJagB8,11228
479
+ bpy/utils/__init__.pyi,sha256=CVM4ltJPFVTnSYPPtClc91Ig-SR22wPIYfHRh_DpPSs,11228
480
480
  bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
481
481
  bpy/utils/previews/__init__.pyi,sha256=QUL94heIKlOmcCIBSYgpWFG75uqAW0YPzRTsIbtA1rA,2308
482
482
  bpy/utils/previews/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
483
483
  bpy/utils/units/__init__.pyi,sha256=Htz1Vbpcp-YbtdqyvJyv-rsNAVHZVahWNi6Xy2qHUco,2786
484
484
  bpy/utils/units/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
485
- bpy_extras/__init__.pyi,sha256=A73locsYyJiUd5p7J4QXYaD8s7qhBSyBRaKNv0DQ6No,437
485
+ bpy_extras/__init__.pyi,sha256=mVH7RClXLxQM78fKi48n5XOqjjKOlUH6ztpEf05oWQ4,437
486
486
  bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
487
487
  bpy_extras/anim_utils/__init__.pyi,sha256=0PhUE2FPvrK732r_FQ_tKHhuHfpgMyE_cOlPU6yNJKo,2919
488
488
  bpy_extras/anim_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -604,7 +604,7 @@ rna_xml/__init__.pyi,sha256=yyeBzQX0dO3yqIOD1PhXcgaE9jkEU7oyIOAfzZw8IVA,600
604
604
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
605
605
  sys_info/__init__.pyi,sha256=o_UqpdlmDE4phA9Oyj4GV1u4zjo_rXndzej-ZUYFB7o,128
606
606
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
607
- fake_bpy_module-20231215.dist-info/METADATA,sha256=gYySZ_ZhbDJCYdN9ezgY_swZard-jlqY_Epbwao-mSA,7008
608
- fake_bpy_module-20231215.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
609
- fake_bpy_module-20231215.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
610
- fake_bpy_module-20231215.dist-info/RECORD,,
607
+ fake_bpy_module-20231217.dist-info/METADATA,sha256=GR8C1nraFBOv5DGfkE8Jtbn_pShhKM4_gLeWdyxF408,7008
608
+ fake_bpy_module-20231217.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
609
+ fake_bpy_module-20231217.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
610
+ fake_bpy_module-20231217.dist-info/RECORD,,