fake-bpy-module 20240101__py3-none-any.whl → 20240106__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.
- bl_console_utils/autocomplete/__init__.pyi +1 -1
- bl_i18n_utils/__init__.pyi +4 -4
- bl_keymap_utils/__init__.pyi +3 -3
- bl_operators/__init__.pyi +19 -19
- bl_ui/__init__.pyi +62 -62
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +60 -60
- bpy/ops/wm/__init__.pyi +28 -3
- bpy/types/__init__.pyi +105 -102
- bpy/utils/__init__.pyi +1 -1
- bpy_extras/__init__.pyi +2 -2
- bpy_extras/anim_utils/__init__.pyi +2 -2
- bpy_types/__init__.pyi +30 -0
- {fake_bpy_module-20240101.dist-info → fake_bpy_module-20240106.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240101.dist-info → fake_bpy_module-20240106.dist-info}/RECORD +18 -18
- {fake_bpy_module-20240101.dist-info → fake_bpy_module-20240106.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240101.dist-info → fake_bpy_module-20240106.dist-info}/top_level.txt +0 -0
bl_i18n_utils/__init__.pyi
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import
|
|
4
|
-
from . import utils_rtl
|
|
5
|
-
from . import utils_cli
|
|
3
|
+
from . import utils
|
|
6
4
|
from . import utils_languages_menu
|
|
7
5
|
from . import bl_extract_messages
|
|
6
|
+
from . import utils_cli
|
|
8
7
|
from . import merge_po
|
|
9
|
-
from . import
|
|
8
|
+
from . import settings
|
|
9
|
+
from . import utils_rtl
|
|
10
10
|
|
|
11
11
|
GenericType = typing.TypeVar("GenericType")
|
bl_keymap_utils/__init__.pyi
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import
|
|
3
|
+
from . import versioning
|
|
4
|
+
from . import keymap_from_toolbar
|
|
4
5
|
from . import platform_helpers
|
|
5
6
|
from . import io
|
|
6
|
-
from . import
|
|
7
|
-
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 uvcalc_transform
|
|
4
|
+
from . import add_mesh_torus
|
|
3
5
|
from . import mesh
|
|
4
6
|
from . import console
|
|
5
|
-
from . import
|
|
6
|
-
from . import
|
|
7
|
-
from . import
|
|
8
|
-
from . import image
|
|
7
|
+
from . import file
|
|
8
|
+
from . import object_randomize_transform
|
|
9
|
+
from . import node
|
|
9
10
|
from . import view3d
|
|
11
|
+
from . import bmesh
|
|
12
|
+
from . import screen_play_rendered_anim
|
|
13
|
+
from . import presets
|
|
14
|
+
from . import userpref
|
|
15
|
+
from . import freestyle
|
|
16
|
+
from . import image
|
|
10
17
|
from . import assets
|
|
11
|
-
from . import
|
|
12
|
-
from . import
|
|
18
|
+
from . import uvcalc_lightmap
|
|
19
|
+
from . import constraint
|
|
20
|
+
from . import object_align
|
|
13
21
|
from . import anim
|
|
14
|
-
from . import node
|
|
15
22
|
from . import object_quick_effects
|
|
16
|
-
from . import
|
|
17
|
-
from . import
|
|
18
|
-
from . import sequencer
|
|
23
|
+
from . import vertexpaint_dirt
|
|
24
|
+
from . import wm
|
|
19
25
|
from . import object
|
|
20
|
-
from . import
|
|
26
|
+
from . import rigidbody
|
|
27
|
+
from . import sequencer
|
|
21
28
|
from . import uvcalc_follow_active
|
|
22
|
-
from . import freestyle
|
|
23
|
-
from . import clip
|
|
24
|
-
from . import userpref
|
|
25
|
-
from . import wm
|
|
26
|
-
from . import add_mesh_torus
|
|
27
|
-
from . import presets
|
|
28
29
|
from . import geometry_nodes
|
|
29
|
-
from . import bmesh
|
|
30
30
|
from . import spreadsheet
|
|
31
|
-
from . import
|
|
31
|
+
from . import clip
|
|
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
|
|
6
|
-
from . import
|
|
7
|
-
from . import
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
10
|
-
from . import properties_data_curves
|
|
5
|
+
from . import properties_material
|
|
6
|
+
from . import generic_ui_list
|
|
7
|
+
from . import properties_data_metaball
|
|
8
|
+
from . import properties_data_empty
|
|
9
|
+
from . import properties_particle
|
|
11
10
|
from . import space_statusbar
|
|
12
|
-
from . import node_add_menu_shader
|
|
13
11
|
from . import properties_workspace
|
|
14
|
-
from . import
|
|
15
|
-
from . import
|
|
16
|
-
from . import
|
|
17
|
-
from . import
|
|
18
|
-
from . import
|
|
19
|
-
from . import
|
|
20
|
-
from . import
|
|
21
|
-
from . import
|
|
22
|
-
from . import
|
|
12
|
+
from . import node_add_menu_texture
|
|
13
|
+
from . import properties_view_layer
|
|
14
|
+
from . import space_dopesheet
|
|
15
|
+
from . import properties_animviz
|
|
16
|
+
from . import properties_data_lightprobe
|
|
17
|
+
from . import properties_physics_common
|
|
18
|
+
from . import utils
|
|
19
|
+
from . import properties_data_shaderfx
|
|
20
|
+
from . import space_properties
|
|
23
21
|
from . import properties_data_mesh
|
|
24
|
-
from . import
|
|
22
|
+
from . import properties_freestyle
|
|
23
|
+
from . import properties_mask_common
|
|
24
|
+
from . import space_outliner
|
|
25
|
+
from . import properties_physics_dynamicpaint
|
|
26
|
+
from . import properties_physics_cloth
|
|
27
|
+
from . import space_clip
|
|
28
|
+
from . import space_userpref
|
|
29
|
+
from . import properties_data_speaker
|
|
30
|
+
from . import properties_physics_geometry_nodes
|
|
31
|
+
from . import properties_render
|
|
32
|
+
from . import space_image
|
|
33
|
+
from . import node_add_menu_shader
|
|
25
34
|
from . import properties_constraint
|
|
26
35
|
from . import properties_data_gpencil
|
|
27
|
-
from . import
|
|
28
|
-
from . import properties_physics_geometry_nodes
|
|
29
|
-
from . import space_time
|
|
30
|
-
from . import properties_physics_rigidbody_constraint
|
|
31
|
-
from . import properties_data_lattice
|
|
32
|
-
from . import space_properties
|
|
33
|
-
from . import properties_data_metaball
|
|
34
|
-
from . import properties_object
|
|
35
|
-
from . import properties_data_curve
|
|
36
|
-
from . import properties_physics_fluid
|
|
37
|
-
from . import properties_physics_softbody
|
|
38
|
-
from . import space_nla
|
|
36
|
+
from . import properties_physics_field
|
|
39
37
|
from . import properties_data_modifier
|
|
38
|
+
from . import properties_output
|
|
39
|
+
from . import properties_paint_common
|
|
40
|
+
from . import space_toolsystem_common
|
|
41
|
+
from . import properties_data_curves
|
|
42
|
+
from . import properties_data_bone
|
|
43
|
+
from . import properties_physics_rigidbody
|
|
40
44
|
from . import properties_data_camera
|
|
41
|
-
from . import
|
|
42
|
-
from . import
|
|
43
|
-
from . import
|
|
44
|
-
from . import
|
|
45
|
-
from . import
|
|
46
|
-
from . import
|
|
47
|
-
from . import
|
|
45
|
+
from . import properties_grease_pencil_common
|
|
46
|
+
from . import space_view3d
|
|
47
|
+
from . import properties_physics_softbody
|
|
48
|
+
from . import space_node
|
|
49
|
+
from . import properties_data_curve
|
|
50
|
+
from . import space_toolsystem_toolbar
|
|
51
|
+
from . import node_add_menu_geometry
|
|
52
|
+
from . import properties_data_pointcloud
|
|
53
|
+
from . import properties_data_lattice
|
|
54
|
+
from . import properties_data_armature
|
|
55
|
+
from . import properties_material_gpencil
|
|
48
56
|
from . import node_add_menu_compositor
|
|
49
57
|
from . import properties_world
|
|
50
|
-
from . import
|
|
51
|
-
from . import
|
|
52
|
-
from . import properties_physics_common
|
|
53
|
-
from . import space_spreadsheet
|
|
54
|
-
from . import properties_data_shaderfx
|
|
55
|
-
from . import space_sequencer
|
|
56
|
-
from . import space_dopesheet
|
|
57
|
-
from . import properties_data_lightprobe
|
|
58
|
-
from . import properties_data_empty
|
|
59
|
-
from . import space_image
|
|
60
|
-
from . import space_view3d
|
|
58
|
+
from . import node_add_menu
|
|
59
|
+
from . import properties_physics_rigidbody_constraint
|
|
61
60
|
from . import space_console
|
|
62
|
-
from . import
|
|
63
|
-
from . import
|
|
64
|
-
from . import
|
|
65
|
-
from . import
|
|
66
|
-
from . import
|
|
67
|
-
from . import
|
|
68
|
-
from . import
|
|
69
|
-
from . import
|
|
70
|
-
from . import properties_scene
|
|
71
|
-
from . import properties_mask_common
|
|
72
|
-
from . import properties_grease_pencil_common
|
|
61
|
+
from . import space_graph
|
|
62
|
+
from . import space_filebrowser
|
|
63
|
+
from . import space_text
|
|
64
|
+
from . import space_topbar
|
|
65
|
+
from . import properties_object
|
|
66
|
+
from . import space_view3d_toolbar
|
|
67
|
+
from . import properties_data_light
|
|
68
|
+
from . import space_time
|
|
73
69
|
from . import properties_collection
|
|
74
|
-
from . import
|
|
70
|
+
from . import space_sequencer
|
|
71
|
+
from . import space_nla
|
|
72
|
+
from . import space_info
|
|
75
73
|
from . import properties_texture
|
|
74
|
+
from . import properties_scene
|
|
75
|
+
from . import asset_shelf
|
|
76
|
+
from . import space_spreadsheet
|
|
77
|
+
from . import properties_data_grease_pencil
|
|
78
|
+
from . import properties_physics_fluid
|
|
76
79
|
from . import properties_data_volume
|
|
77
|
-
from . import properties_freestyle
|
|
78
|
-
from . import node_add_menu_texture
|
|
79
|
-
from . import node_add_menu_geometry
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
|
82
82
|
|
bpy/__init__.pyi
CHANGED
bpy/app/__init__.pyi
CHANGED
bpy/ops/__init__.pyi
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import paintcurve
|
|
4
|
-
from . import font
|
|
5
|
-
from . import mball
|
|
6
|
-
from . import uilist
|
|
7
|
-
from . import mesh
|
|
8
|
-
from . import marker
|
|
9
|
-
from . import node
|
|
10
|
-
from . import render
|
|
11
|
-
from . import geometry
|
|
12
|
-
from . import asset
|
|
13
|
-
from . import ui
|
|
14
|
-
from . import scene
|
|
15
3
|
from . import console
|
|
16
|
-
from . import sculpt
|
|
17
|
-
from . import cachefile
|
|
18
|
-
from . import workspace
|
|
19
|
-
from . import dpaint
|
|
20
|
-
from . import armature
|
|
21
|
-
from . import constraint
|
|
22
|
-
from . import image
|
|
23
|
-
from . import object
|
|
24
|
-
from . import sequencer
|
|
25
4
|
from . import fluid
|
|
26
|
-
from . import pose
|
|
27
|
-
from . import import_curve
|
|
28
|
-
from . import import_mesh
|
|
29
|
-
from . import transform
|
|
30
|
-
from . import script
|
|
31
|
-
from . import preferences
|
|
32
|
-
from . import poselib
|
|
33
5
|
from . import ed
|
|
6
|
+
from . import render
|
|
7
|
+
from . import constraint
|
|
34
8
|
from . import cycles
|
|
35
|
-
from . import palette
|
|
36
|
-
from . import particle
|
|
37
|
-
from . import cloth
|
|
38
|
-
from . import sound
|
|
39
9
|
from . import rigidbody
|
|
40
|
-
from . import
|
|
41
|
-
from . import brush
|
|
42
|
-
from . import import_scene
|
|
43
|
-
from . import info
|
|
10
|
+
from . import buttons
|
|
44
11
|
from . import curves
|
|
45
|
-
from . import
|
|
46
|
-
from . import
|
|
12
|
+
from . import cachefile
|
|
13
|
+
from . import asset
|
|
47
14
|
from . import collection
|
|
48
|
-
from . import
|
|
49
|
-
from . import
|
|
50
|
-
from . import
|
|
51
|
-
from . import
|
|
52
|
-
from . import
|
|
53
|
-
from . import
|
|
54
|
-
from . import texture
|
|
15
|
+
from . import image
|
|
16
|
+
from . import gizmogroup
|
|
17
|
+
from . import script
|
|
18
|
+
from . import paintcurve
|
|
19
|
+
from . import nla
|
|
20
|
+
from . import uv
|
|
55
21
|
from . import clip
|
|
56
|
-
from . import
|
|
22
|
+
from . import ptcache
|
|
57
23
|
from . import graph
|
|
24
|
+
from . import sound
|
|
58
25
|
from . import paint
|
|
59
|
-
from . import
|
|
26
|
+
from . import cloth
|
|
27
|
+
from . import mask
|
|
28
|
+
from . import curve
|
|
29
|
+
from . import anim
|
|
30
|
+
from . import text_editor
|
|
31
|
+
from . import ui
|
|
32
|
+
from . import dpaint
|
|
33
|
+
from . import mball
|
|
34
|
+
from . import brush
|
|
35
|
+
from . import file
|
|
36
|
+
from . import poselib
|
|
37
|
+
from . import particle
|
|
38
|
+
from . import sculpt
|
|
39
|
+
from . import uilist
|
|
60
40
|
from . import action
|
|
61
|
-
from . import sculpt_curves
|
|
62
|
-
from . import screen
|
|
63
41
|
from . import grease_pencil
|
|
42
|
+
from . import texture
|
|
43
|
+
from . import object
|
|
44
|
+
from . import geometry
|
|
45
|
+
from . import view2d
|
|
46
|
+
from . import import_anim
|
|
64
47
|
from . import boid
|
|
65
|
-
from . import
|
|
66
|
-
from . import
|
|
67
|
-
from . import anim
|
|
68
|
-
from . import export_mesh
|
|
48
|
+
from . import screen
|
|
49
|
+
from . import info
|
|
69
50
|
from . import outliner
|
|
51
|
+
from . import lattice
|
|
70
52
|
from . import export_scene
|
|
53
|
+
from . import spreadsheet
|
|
54
|
+
from . import node
|
|
55
|
+
from . import surface
|
|
56
|
+
from . import sequencer
|
|
57
|
+
from . import preferences
|
|
58
|
+
from . import import_mesh
|
|
59
|
+
from . import export_anim
|
|
60
|
+
from . import sculpt_curves
|
|
61
|
+
from . import material
|
|
62
|
+
from . import world
|
|
63
|
+
from . import camera
|
|
64
|
+
from . import marker
|
|
71
65
|
from . import wm
|
|
72
|
-
from . import
|
|
73
|
-
from . import
|
|
74
|
-
from . import
|
|
75
|
-
from . import
|
|
76
|
-
from . import
|
|
77
|
-
from . import
|
|
78
|
-
from . import view3d
|
|
66
|
+
from . import pose
|
|
67
|
+
from . import workspace
|
|
68
|
+
from . import gpencil
|
|
69
|
+
from . import export_mesh
|
|
70
|
+
from . import scene
|
|
71
|
+
from . import mesh
|
|
79
72
|
from . import text
|
|
73
|
+
from . import view3d
|
|
74
|
+
from . import import_scene
|
|
75
|
+
from . import transform
|
|
76
|
+
from . import armature
|
|
77
|
+
from . import palette
|
|
78
|
+
from . import import_curve
|
|
79
|
+
from . import font
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -510,6 +510,22 @@ def call_panel(
|
|
|
510
510
|
|
|
511
511
|
...
|
|
512
512
|
|
|
513
|
+
def clear_recent_files(
|
|
514
|
+
override_context: typing.Optional[
|
|
515
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
516
|
+
] = None,
|
|
517
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
518
|
+
undo: typing.Optional[bool] = None,
|
|
519
|
+
):
|
|
520
|
+
"""Clear the Recent Files List
|
|
521
|
+
|
|
522
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
523
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
524
|
+
:type undo: typing.Optional[bool]
|
|
525
|
+
"""
|
|
526
|
+
|
|
527
|
+
...
|
|
528
|
+
|
|
513
529
|
def collada_export(
|
|
514
530
|
override_context: typing.Optional[
|
|
515
531
|
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
@@ -3272,7 +3288,7 @@ def read_factory_settings(
|
|
|
3272
3288
|
:param use_factory_startup_app_template_only: Factory Startup App-Template Only
|
|
3273
3289
|
:type use_factory_startup_app_template_only: typing.Optional[typing.Union[bool, typing.Any]]
|
|
3274
3290
|
:type app_template: typing.Union[str, typing.Any]
|
|
3275
|
-
:param use_empty: Empty
|
|
3291
|
+
:param use_empty: Empty, After loading, remove everything except scenes, windows, and workspaces. This makes it possible to load the startup file with its scene configuration and window layout intact, but no objects, materials, animations, ...
|
|
3276
3292
|
:type use_empty: typing.Optional[typing.Union[bool, typing.Any]]
|
|
3277
3293
|
"""
|
|
3278
3294
|
|
|
@@ -3344,12 +3360,12 @@ def read_homefile(
|
|
|
3344
3360
|
:type load_ui: typing.Optional[typing.Union[bool, typing.Any]]
|
|
3345
3361
|
:param use_splash: Splash
|
|
3346
3362
|
:type use_splash: typing.Optional[typing.Union[bool, typing.Any]]
|
|
3347
|
-
:param use_factory_startup: Factory Startup
|
|
3363
|
+
:param use_factory_startup: Factory Startup, Load the default ('factory startup') blend file. This is independent of the normal start-up file that the user can save
|
|
3348
3364
|
:type use_factory_startup: typing.Optional[typing.Union[bool, typing.Any]]
|
|
3349
3365
|
:param use_factory_startup_app_template_only: Factory Startup App-Template Only
|
|
3350
3366
|
:type use_factory_startup_app_template_only: typing.Optional[typing.Union[bool, typing.Any]]
|
|
3351
3367
|
:type app_template: typing.Union[str, typing.Any]
|
|
3352
|
-
:param use_empty: Empty
|
|
3368
|
+
:param use_empty: Empty, After loading, remove everything except scenes, windows, and workspaces. This makes it possible to load the startup file with its scene configuration and window layout intact, but no objects, materials, animations, ...
|
|
3353
3369
|
:type use_empty: typing.Optional[typing.Union[bool, typing.Any]]
|
|
3354
3370
|
"""
|
|
3355
3371
|
|
|
@@ -4303,6 +4319,9 @@ def usd_export(
|
|
|
4303
4319
|
export_normals: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
4304
4320
|
export_materials: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
4305
4321
|
export_subdivision: typing.Optional[typing.Any] = "BEST_MATCH",
|
|
4322
|
+
export_armatures: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
4323
|
+
only_deform_bones: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
4324
|
+
export_shapekeys: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
4306
4325
|
use_instancing: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
4307
4326
|
evaluation_mode: typing.Optional[typing.Any] = "RENDER",
|
|
4308
4327
|
generate_preview_surface: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -4379,6 +4398,12 @@ def usd_export(
|
|
|
4379
4398
|
:type export_materials: typing.Optional[typing.Union[bool, typing.Any]]
|
|
4380
4399
|
: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.
|
|
4381
4400
|
:type export_subdivision: typing.Optional[typing.Any]
|
|
4401
|
+
:param export_armatures: Armatures, Export armatures and meshes with armature modifiers as USD skeletons and skinned meshes
|
|
4402
|
+
:type export_armatures: typing.Optional[typing.Union[bool, typing.Any]]
|
|
4403
|
+
:param only_deform_bones: Only Deform Bones, Only export deform bones and their parents
|
|
4404
|
+
:type only_deform_bones: typing.Optional[typing.Union[bool, typing.Any]]
|
|
4405
|
+
:param export_shapekeys: Shape Keys, Export shape keys as USD blend shapes
|
|
4406
|
+
:type export_shapekeys: typing.Optional[typing.Union[bool, typing.Any]]
|
|
4382
4407
|
:param use_instancing: Instancing, Export instanced objects as references in USD rather than real objects
|
|
4383
4408
|
:type use_instancing: typing.Optional[typing.Union[bool, typing.Any]]
|
|
4384
4409
|
: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.
|
|
6
|
-
import bl_ui.
|
|
7
|
-
import bl_ui.
|
|
8
|
-
import bl_ui.
|
|
9
|
-
import
|
|
10
|
-
import bl_ui.
|
|
5
|
+
import bl_ui.properties_material
|
|
6
|
+
import bl_ui.generic_ui_list
|
|
7
|
+
import bl_ui.properties_data_metaball
|
|
8
|
+
import bl_ui.properties_data_empty
|
|
9
|
+
import bl_operators.file
|
|
10
|
+
import bl_ui.properties_particle
|
|
11
11
|
import bl_ui.space_statusbar
|
|
12
|
-
import bl_ui.node_add_menu_shader
|
|
13
12
|
import bl_ui.properties_workspace
|
|
13
|
+
import bl_ui.node_add_menu_texture
|
|
14
|
+
import bl_ui.properties_view_layer
|
|
15
|
+
import bl_ui.space_dopesheet
|
|
16
|
+
import bl_ui.properties_data_lightprobe
|
|
17
|
+
import bl_ui.properties_physics_common
|
|
18
|
+
import bl_operators.node
|
|
19
|
+
import bl_ui.properties_data_shaderfx
|
|
20
|
+
import bl_ui.space_properties
|
|
21
|
+
import bl_ui.properties_data_mesh
|
|
22
|
+
import bl_ui.properties_freestyle
|
|
23
|
+
import bl_ui.properties_mask_common
|
|
24
|
+
import bl_operators.view3d
|
|
25
|
+
import bl_ui.space_outliner
|
|
26
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
27
|
+
import bl_ui.properties_physics_cloth
|
|
28
|
+
import bl_ui.space_clip
|
|
29
|
+
import bl_ui.space_userpref
|
|
30
|
+
import bl_operators.presets
|
|
14
31
|
import bl_ui.properties_data_speaker
|
|
15
|
-
import bl_ui.
|
|
16
|
-
import
|
|
32
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
33
|
+
import bl_operators.userpref
|
|
34
|
+
import bl_ui.properties_render
|
|
35
|
+
import bl_ui.space_image
|
|
36
|
+
import bl_ui.node_add_menu_shader
|
|
37
|
+
import bl_ui
|
|
38
|
+
import bl_ui.properties_constraint
|
|
39
|
+
import bl_ui.properties_data_gpencil
|
|
40
|
+
import bl_ui.properties_physics_field
|
|
41
|
+
import bl_ui.properties_data_modifier
|
|
42
|
+
import bl_ui.properties_output
|
|
43
|
+
import bl_operators.freestyle
|
|
44
|
+
import bl_ui.properties_paint_common
|
|
45
|
+
import bl_ui.space_toolsystem_common
|
|
46
|
+
import bl_ui.properties_data_curves
|
|
17
47
|
import bl_ui.properties_data_bone
|
|
48
|
+
import bl_ui.properties_physics_rigidbody
|
|
49
|
+
import bl_ui.properties_data_camera
|
|
50
|
+
import bl_ui.properties_grease_pencil_common
|
|
51
|
+
import bl_ui.space_view3d
|
|
52
|
+
import bl_ui.properties_physics_softbody
|
|
53
|
+
import bl_ui.space_node
|
|
54
|
+
import bl_operators.assets
|
|
55
|
+
import bl_ui.properties_data_curve
|
|
56
|
+
import bl_ui.space_toolsystem_toolbar
|
|
57
|
+
import bl_ui.node_add_menu_geometry
|
|
18
58
|
import bl_operators.constraint
|
|
59
|
+
import bl_ui.properties_data_pointcloud
|
|
60
|
+
import bl_ui.properties_data_lattice
|
|
19
61
|
import bl_ui.properties_data_armature
|
|
20
|
-
import bl_ui.space_userpref
|
|
21
|
-
import bl_ui.properties_material
|
|
22
|
-
import bl_ui.properties_paint_common
|
|
23
|
-
import bl_ui.asset_shelf
|
|
24
|
-
import bl_operators.view3d
|
|
25
|
-
import bl_operators.assets
|
|
26
|
-
import bl_ui.properties_data_mesh
|
|
27
|
-
import bl_ui.space_topbar
|
|
28
|
-
import bl_operators.file
|
|
29
|
-
import bl_ui.properties_constraint
|
|
30
62
|
import bl_operators.anim
|
|
31
|
-
import bl_ui
|
|
32
|
-
import bl_ui.
|
|
33
|
-
import bl_ui.
|
|
34
|
-
import bl_ui.
|
|
35
|
-
import bl_ui.space_time
|
|
63
|
+
import bl_ui.properties_material_gpencil
|
|
64
|
+
import bl_ui.node_add_menu_compositor
|
|
65
|
+
import bl_ui.properties_world
|
|
66
|
+
import bl_ui.node_add_menu
|
|
36
67
|
import bl_ui.properties_physics_rigidbody_constraint
|
|
37
|
-
import bl_ui.
|
|
38
|
-
import bl_ui.
|
|
39
|
-
import bl_ui.
|
|
40
|
-
import
|
|
68
|
+
import bl_ui.space_console
|
|
69
|
+
import bl_ui.space_graph
|
|
70
|
+
import bl_ui.space_filebrowser
|
|
71
|
+
import bl_ui.space_text
|
|
72
|
+
import bl_ui.space_topbar
|
|
73
|
+
import bl_operators.wm
|
|
41
74
|
import bl_ui.properties_object
|
|
42
|
-
import bl_ui.
|
|
43
|
-
import bl_ui.properties_physics_fluid
|
|
44
|
-
import bl_ui.properties_physics_softbody
|
|
45
|
-
import bl_ui.space_nla
|
|
46
|
-
import bl_ui.properties_data_modifier
|
|
47
|
-
import bl_ui.properties_data_camera
|
|
48
|
-
import bl_ui.properties_physics_dynamicpaint
|
|
75
|
+
import bl_ui.space_view3d_toolbar
|
|
49
76
|
import bl_ui.properties_data_light
|
|
50
|
-
import bl_ui.space_filebrowser
|
|
51
77
|
import bl_operators.object
|
|
52
|
-
import bl_ui.
|
|
53
|
-
import bl_ui.
|
|
54
|
-
import bl_ui.properties_particle
|
|
55
|
-
import bl_ui.node_add_menu_compositor
|
|
56
|
-
import bl_ui.properties_world
|
|
57
|
-
import bl_ui.generic_ui_list
|
|
58
|
-
import bl_ui.space_outliner
|
|
59
|
-
import bl_operators.freestyle
|
|
60
|
-
import bl_ui.properties_physics_common
|
|
61
|
-
import bl_ui.space_spreadsheet
|
|
62
|
-
import bl_ui.properties_data_shaderfx
|
|
78
|
+
import bl_ui.space_time
|
|
79
|
+
import bl_ui.properties_collection
|
|
63
80
|
import bl_ui.space_sequencer
|
|
64
|
-
import
|
|
65
|
-
import
|
|
66
|
-
import
|
|
67
|
-
import bl_ui.space_dopesheet
|
|
68
|
-
import bl_ui.properties_data_lightprobe
|
|
69
|
-
import bl_ui.properties_data_empty
|
|
70
|
-
import bl_ui.space_image
|
|
71
|
-
import bl_ui.space_view3d
|
|
72
|
-
import bl_ui.space_console
|
|
73
|
-
import bl_ui.properties_data_grease_pencil
|
|
74
|
-
import bl_ui.properties_physics_rigidbody
|
|
75
|
-
import bl_ui.space_toolsystem_toolbar
|
|
76
|
-
import bl_ui.properties_physics_cloth
|
|
77
|
-
import bl_ui.properties_output
|
|
78
|
-
import bl_operators.presets
|
|
79
|
-
import bl_ui.space_clip
|
|
80
|
-
import bl_ui.properties_view_layer
|
|
81
|
+
import bl_ui.space_nla
|
|
82
|
+
import bl_ui.space_info
|
|
83
|
+
import bl_ui.properties_texture
|
|
81
84
|
import bl_ui.properties_scene
|
|
82
|
-
import bl_ui.
|
|
83
|
-
import bl_ui.
|
|
84
|
-
import bl_ui.properties_collection
|
|
85
|
-
import bl_ui.properties_render
|
|
85
|
+
import bl_ui.asset_shelf
|
|
86
|
+
import bl_ui.space_spreadsheet
|
|
86
87
|
import bl_operators.spreadsheet
|
|
87
|
-
import bl_ui.
|
|
88
|
+
import bl_ui.properties_data_grease_pencil
|
|
89
|
+
import bl_ui.properties_physics_fluid
|
|
90
|
+
import bl_operators.clip
|
|
88
91
|
import bl_ui.properties_data_volume
|
|
89
|
-
import bl_ui.properties_freestyle
|
|
90
|
-
import bl_ui.node_add_menu_texture
|
|
91
|
-
import bl_ui.node_add_menu_geometry
|
|
92
92
|
|
|
93
93
|
GenericType = typing.TypeVar("GenericType")
|
|
94
94
|
|
|
@@ -3066,12 +3066,24 @@ class BoneCollection(bpy_struct):
|
|
|
3066
3066
|
:type: bpy_prop_collection['Bone']
|
|
3067
3067
|
"""
|
|
3068
3068
|
|
|
3069
|
+
child_number: int
|
|
3070
|
+
""" Index of this collection into its parent's list of children. Note that finding this index requires a scan of all the bone collections, so do access this with care
|
|
3071
|
+
|
|
3072
|
+
:type: int
|
|
3073
|
+
"""
|
|
3074
|
+
|
|
3069
3075
|
children: bpy_prop_collection["BoneCollection"]
|
|
3070
3076
|
"""
|
|
3071
3077
|
|
|
3072
3078
|
:type: bpy_prop_collection['BoneCollection']
|
|
3073
3079
|
"""
|
|
3074
3080
|
|
|
3081
|
+
index: int
|
|
3082
|
+
""" Index of this bone collection in the armature.collections.all array. Note that finding this index requires a scan of all the bone collections, so do access this with care
|
|
3083
|
+
|
|
3084
|
+
:type: int
|
|
3085
|
+
"""
|
|
3086
|
+
|
|
3075
3087
|
is_editable: typing.Union[bool, typing.Any]
|
|
3076
3088
|
""" This collection is owned by a local Armature, or was added via a library override in the current blend file
|
|
3077
3089
|
|
|
@@ -3090,12 +3102,33 @@ class BoneCollection(bpy_struct):
|
|
|
3090
3102
|
:type: bool
|
|
3091
3103
|
"""
|
|
3092
3104
|
|
|
3105
|
+
is_visible_ancestors: typing.Union[bool, typing.Any]
|
|
3106
|
+
""" True when all of the ancestors of this bone collection are marked as visible; always True for root bone collections
|
|
3107
|
+
|
|
3108
|
+
:type: typing.Union[bool, typing.Any]
|
|
3109
|
+
"""
|
|
3110
|
+
|
|
3111
|
+
is_visible_effectively: typing.Union[bool, typing.Any]
|
|
3112
|
+
""" Whether this bone collection is effectively visible in the viewport. This is True when this bone collection and all of its ancestors are visible
|
|
3113
|
+
|
|
3114
|
+
:type: typing.Union[bool, typing.Any]
|
|
3115
|
+
"""
|
|
3116
|
+
|
|
3093
3117
|
name: typing.Union[str, typing.Any]
|
|
3094
3118
|
""" Unique within the Armature
|
|
3095
3119
|
|
|
3096
3120
|
:type: typing.Union[str, typing.Any]
|
|
3097
3121
|
"""
|
|
3098
3122
|
|
|
3123
|
+
parent: "BoneCollection"
|
|
3124
|
+
""" Parent bone collection. Note that accessing this requires a scan of all the bone collections to find the parent
|
|
3125
|
+
|
|
3126
|
+
:type: 'BoneCollection'
|
|
3127
|
+
"""
|
|
3128
|
+
|
|
3129
|
+
bones_recursive: typing.Any
|
|
3130
|
+
""" A set of all bones assigned to this bone collection and its child collections. (readonly)"""
|
|
3131
|
+
|
|
3099
3132
|
def assign(self, bone: typing.Optional[typing.Any]) -> bool:
|
|
3100
3133
|
"""Assign the given bone to this collection
|
|
3101
3134
|
|
|
@@ -3116,30 +3149,6 @@ class BoneCollection(bpy_struct):
|
|
|
3116
3149
|
"""
|
|
3117
3150
|
...
|
|
3118
3151
|
|
|
3119
|
-
def move_to_parent(
|
|
3120
|
-
self,
|
|
3121
|
-
to_parent: typing.Optional["BoneCollection"],
|
|
3122
|
-
to_child_num: typing.Optional[typing.Any] = -1,
|
|
3123
|
-
) -> int:
|
|
3124
|
-
"""Change the hierarchy, by moving this bone collection to become a child of a different parent. Use `parent=None` to make this collection a root collection
|
|
3125
|
-
|
|
3126
|
-
:param to_parent: Parent Collection, The bone collection becomes a child of this collection. If `None`, the bone collection becomes a root
|
|
3127
|
-
:type to_parent: typing.Optional['BoneCollection']
|
|
3128
|
-
:param to_child_num: Child Number, Place the bone collection before this child; `child_num=0` makes it the first child, `child_num=1` the second, etc. Both `child_num=-1` and `child_num=child_count` will move the bone collection to be the last child of the new parent
|
|
3129
|
-
:type to_child_num: typing.Optional[typing.Any]
|
|
3130
|
-
:rtype: int
|
|
3131
|
-
:return: New Index, Resulting index of the bone collection, after the move. This can be used for manipulating the active bone collection index
|
|
3132
|
-
"""
|
|
3133
|
-
...
|
|
3134
|
-
|
|
3135
|
-
def find_index(self) -> int:
|
|
3136
|
-
"""Find the index of this bone collection. This scans through all the Armature's bone collections
|
|
3137
|
-
|
|
3138
|
-
:rtype: int
|
|
3139
|
-
:return: Index, Index of the bone collection
|
|
3140
|
-
"""
|
|
3141
|
-
...
|
|
3142
|
-
|
|
3143
3152
|
@classmethod
|
|
3144
3153
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
3145
3154
|
"""
|
|
@@ -43396,12 +43405,6 @@ class View3DCursor(bpy_struct):
|
|
|
43396
43405
|
class View3DOverlay(bpy_struct):
|
|
43397
43406
|
"""Settings for display of overlays in the 3D viewport"""
|
|
43398
43407
|
|
|
43399
|
-
backwire_opacity: float
|
|
43400
|
-
""" Opacity when rendering transparent wires
|
|
43401
|
-
|
|
43402
|
-
:type: float
|
|
43403
|
-
"""
|
|
43404
|
-
|
|
43405
43408
|
bone_wire_alpha: float
|
|
43406
43409
|
""" Maximum opacity of bones in wireframe display mode
|
|
43407
43410
|
|
bpy/utils/__init__.pyi
CHANGED
bpy_extras/__init__.pyi
CHANGED
|
@@ -11,8 +11,8 @@ from . import asset_utils
|
|
|
11
11
|
from . import object_utils
|
|
12
12
|
from . import anim_utils
|
|
13
13
|
from . import wm_utils
|
|
14
|
-
from . import bmesh_utils
|
|
15
|
-
from . import extensions
|
|
16
14
|
from . import node_shader_utils
|
|
15
|
+
from . import extensions
|
|
16
|
+
from . import bmesh_utils
|
|
17
17
|
|
|
18
18
|
GenericType = typing.TypeVar("GenericType")
|
|
@@ -72,14 +72,14 @@ def bake_action_objects(
|
|
|
72
72
|
|
|
73
73
|
def bake_action_objects_iter(
|
|
74
74
|
object_action_pairs: typing.Union[
|
|
75
|
-
"bpy.types.
|
|
75
|
+
"bpy.types.Action", "bpy.types.Object", "bpy.types.Sequence"
|
|
76
76
|
],
|
|
77
77
|
bake_o,
|
|
78
78
|
):
|
|
79
79
|
"""An coroutine that bakes actions for multiple objects.
|
|
80
80
|
|
|
81
81
|
:param object_action_pairs: Sequence of object action tuples, action is the destination for the baked data. When None a new action will be created.
|
|
82
|
-
:type object_action_pairs: typing.Union['bpy.types.
|
|
82
|
+
:type object_action_pairs: typing.Union['bpy.types.Action', 'bpy.types.Object', 'bpy.types.Sequence']
|
|
83
83
|
"""
|
|
84
84
|
|
|
85
85
|
...
|
bpy_types/__init__.pyi
CHANGED
|
@@ -61,6 +61,36 @@ class AssetShelf:
|
|
|
61
61
|
def type_recast(self): ...
|
|
62
62
|
def values(self): ...
|
|
63
63
|
|
|
64
|
+
class BoneCollection:
|
|
65
|
+
bl_rna: typing.Any
|
|
66
|
+
bones_recursive: typing.Any
|
|
67
|
+
id_data: typing.Any
|
|
68
|
+
|
|
69
|
+
def as_pointer(self): ...
|
|
70
|
+
def bl_rna_get_subclass(self): ...
|
|
71
|
+
def bl_rna_get_subclass_py(self): ...
|
|
72
|
+
def driver_add(self): ...
|
|
73
|
+
def driver_remove(self): ...
|
|
74
|
+
def get(self): ...
|
|
75
|
+
def id_properties_clear(self): ...
|
|
76
|
+
def id_properties_ensure(self): ...
|
|
77
|
+
def id_properties_ui(self): ...
|
|
78
|
+
def is_property_hidden(self): ...
|
|
79
|
+
def is_property_overridable_library(self): ...
|
|
80
|
+
def is_property_readonly(self): ...
|
|
81
|
+
def is_property_set(self): ...
|
|
82
|
+
def items(self): ...
|
|
83
|
+
def keyframe_delete(self): ...
|
|
84
|
+
def keyframe_insert(self): ...
|
|
85
|
+
def keys(self): ...
|
|
86
|
+
def path_from_id(self): ...
|
|
87
|
+
def path_resolve(self): ...
|
|
88
|
+
def pop(self): ...
|
|
89
|
+
def property_overridable_library_set(self): ...
|
|
90
|
+
def property_unset(self): ...
|
|
91
|
+
def type_recast(self): ...
|
|
92
|
+
def values(self): ...
|
|
93
|
+
|
|
64
94
|
class Context:
|
|
65
95
|
bl_rna: typing.Any
|
|
66
96
|
id_data: typing.Any
|
|
@@ -13,12 +13,12 @@ bl_app_template_utils/__init__.pyi,sha256=CIMnHqA76dh_d9RIIrG_IsrdYCZuvJklshbxtJ
|
|
|
13
13
|
bl_app_template_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
bl_console_utils/__init__.pyi,sha256=qOGRa_N1-VEAf9cr60mvvxQMYSKNNSzuSQ0_TuSEq1I,97
|
|
15
15
|
bl_console_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
bl_console_utils/autocomplete/__init__.pyi,sha256=
|
|
16
|
+
bl_console_utils/autocomplete/__init__.pyi,sha256=TQJ_TfRkhf8QqbJJcwh-RvRTL2M-saX4-bRv7wbKXNQ,191
|
|
17
17
|
bl_console_utils/autocomplete/complete_calltip/__init__.pyi,sha256=Rw2uA3ktL5R--lwMMz3I9lc-AmStNYlqYIj7oz8ZlW0,248
|
|
18
18
|
bl_console_utils/autocomplete/complete_import/__init__.pyi,sha256=REypgPPnMFPk4NzervlwOI3Gy44Txi4U7aM4gLhi3Hg,150
|
|
19
19
|
bl_console_utils/autocomplete/complete_namespace/__init__.pyi,sha256=JtKAEFyeT4zFjwoxdXSMZQ1YAaf1SJBOd69ysxTxhJ8,260
|
|
20
20
|
bl_console_utils/autocomplete/intellisense/__init__.pyi,sha256=BfJ5CLfwmTB3gE37-Vog8xnj8wYKU3ao5qJOaebyn1k,173
|
|
21
|
-
bl_i18n_utils/__init__.pyi,sha256=
|
|
21
|
+
bl_i18n_utils/__init__.pyi,sha256=SoPE87qka6B41aHEKjm1-9nC67bfPgOy46OOsRiNicQ,253
|
|
22
22
|
bl_i18n_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
23
|
bl_i18n_utils/bl_extract_messages/__init__.pyi,sha256=4aYWWUVvaRBkbASoVVQgdDMg2QB2orMMJF0BNmvNFoc,902
|
|
24
24
|
bl_i18n_utils/merge_po/__init__.pyi,sha256=kRw3brEQfj6eyDjU--MA-Sg3AS74IzmDHY_gcjZCUlo,87
|
|
@@ -27,7 +27,7 @@ bl_i18n_utils/utils/__init__.pyi,sha256=-JGWf-VUGY4dW7UW_9RkzerOKCBi_q3hWlwpQ4HT
|
|
|
27
27
|
bl_i18n_utils/utils_cli/__init__.pyi,sha256=8T0Yiqb_eYkLx12tzzsfH2M07OZ9vp0gkmI_faVcNPU,271
|
|
28
28
|
bl_i18n_utils/utils_languages_menu/__init__.pyi,sha256=HAr8hMUsOj7mXh6zCpoa_BUsHIO5NnU4MrQSZ0IhnfE,111
|
|
29
29
|
bl_i18n_utils/utils_rtl/__init__.pyi,sha256=COZKFsnJ_CkL-rm2NEN59xLdU5bIG7TSAQVZFGj3v3c,137
|
|
30
|
-
bl_keymap_utils/__init__.pyi,sha256=
|
|
30
|
+
bl_keymap_utils/__init__.pyi,sha256=EcvqQBm6SULB5HniNRB8VT4CHRmg-5yzp3UpsoRQiFs,208
|
|
31
31
|
bl_keymap_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
32
|
bl_keymap_utils/io/__init__.pyi,sha256=gOCf5YjCIhV6sLhBGUOIG4-ws2L30ikPar2BMfImI5A,460
|
|
33
33
|
bl_keymap_utils/keymap_from_toolbar/__init__.pyi,sha256=L66W6RPUIKPwstCeXn2-DL99aV13E0KWLPf2rnD_t9E,140
|
|
@@ -36,7 +36,7 @@ bl_keymap_utils/platform_helpers/__init__.pyi,sha256=3Yx0ye83ae8XTdtALcy8MBrOCWg
|
|
|
36
36
|
bl_keymap_utils/versioning/__init__.pyi,sha256=bp1g6HijeBeJbCCodpi5U2RoFRZPd0zdAQqz6Vwczhs,132
|
|
37
37
|
bl_math/__init__.pyi,sha256=huOF-N07-NDNRWnF5OZ53dQ1IZxd5MtxHgIqfaLFpfM,1591
|
|
38
38
|
bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
-
bl_operators/__init__.pyi,sha256=
|
|
39
|
+
bl_operators/__init__.pyi,sha256=DRlNmPbd6CU4EY_aNPbI2BCXX0mDDSdo5hy2a2HA0jc,846
|
|
40
40
|
bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
41
|
bl_operators/add_mesh_torus/__init__.pyi,sha256=Ou1PpWNJ_J5KuJ7eZ3OrHl4LfUqXLJBl3U9jUIKpOhk,1578
|
|
42
42
|
bl_operators/anim/__init__.pyi,sha256=hbA_IsNk4G0o2daj-SYDU2Z1Dj0UEkq5tzq2uG4HM7s,8113
|
|
@@ -77,7 +77,7 @@ bl_rna_utils/data_path/__init__.pyi,sha256=by0GTuwldwKDernceXM_MTRgJQKEWWdEkx20-
|
|
|
77
77
|
bl_text_utils/__init__.pyi,sha256=mA4rhlhHGbhXjawE0_uzcLQZhw4Rj4xm5DsFzDaoR0I,100
|
|
78
78
|
bl_text_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
79
|
bl_text_utils/external_editor/__init__.pyi,sha256=AFtCr2YnVkJgbiliZpvZYFuxzLRJeBO581yb5a1L_D4,125
|
|
80
|
-
bl_ui/__init__.pyi,sha256=
|
|
80
|
+
bl_ui/__init__.pyi,sha256=p_DC6ftDuy9rM7fNf_Ha3YB6Stl-EWoplAzX9mZcn44,6988
|
|
81
81
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
82
|
bl_ui/asset_shelf/__init__.pyi,sha256=JU2O4XsUUuGxQ5VLcMT4bsU85uNrAd2f4xAPIzC3mjE,1324
|
|
83
83
|
bl_ui/generic_ui_list/__init__.pyi,sha256=Z2JnBFJVHJIS2G9jLltczjAk5hXJ2kw3amar1XHZHjw,4282
|
|
@@ -168,15 +168,15 @@ bmesh/geometry/__init__.pyi,sha256=ZNWeqa8UPLoM04_2CG-PGREKg6-HPXRj2oUXyq9KSF0,6
|
|
|
168
168
|
bmesh/ops/__init__.pyi,sha256=x2blm_G6g91m3soq-ReQpgxN25XAZfPyI_UlgoM6je8,72886
|
|
169
169
|
bmesh/types/__init__.pyi,sha256=2bcXNXMZoq7n8NmmvXVYxKSqZS03s6tw26OgckAsKOY,39624
|
|
170
170
|
bmesh/utils/__init__.pyi,sha256=7UUZtyw2frpxddxB8ehl6Au0w2lPb63q6A96r2YVMJk,6332
|
|
171
|
-
bpy/__init__.pyi,sha256=
|
|
171
|
+
bpy/__init__.pyi,sha256=wAFq8Va3NRULToC3Oy1lhtfCPdwE3tzCLx3jhziaLWM,324
|
|
172
172
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
|
-
bpy/app/__init__.pyi,sha256=
|
|
173
|
+
bpy/app/__init__.pyi,sha256=OixcgPD3aCA1u17MT3SwlMbpplf-p9Vz9JIftiY2y5w,9473
|
|
174
174
|
bpy/app/handlers/__init__.pyi,sha256=PQi-_xUuD0Uskg1NnNCaK7boB7yujYHpNKksDY7te8A,5278
|
|
175
175
|
bpy/app/icons/__init__.pyi,sha256=tOC3c9N_BLT3G0viXxPhMook_lPDGJoUmTYHjg_NOZw,1121
|
|
176
176
|
bpy/app/timers/__init__.pyi,sha256=Zuw20JvFn0Vnd0fmMMagiMYB7ECYgvDZOctgT0V6zYw,1456
|
|
177
177
|
bpy/app/translations/__init__.pyi,sha256=yLfPZMUNk7-K4SKiq7FRkw7rdWtnu-W7seJOSJYsJJg,4423
|
|
178
178
|
bpy/msgbus/__init__.pyi,sha256=RvHE7HXTy24U9DljsS4I6Q3stXfqoTlgKM_MjaT0wGQ,1605
|
|
179
|
-
bpy/ops/__init__.pyi,sha256
|
|
179
|
+
bpy/ops/__init__.pyi,sha256=1maikfD01kRjktZS76wIMS3qqs4TbZ-Hbj2N6idTmo4,1751
|
|
180
180
|
bpy/ops/action/__init__.pyi,sha256=fp2H1MFKyRdirKHtXlum1OWndPG2cvHWPr7uohovMXw,28955
|
|
181
181
|
bpy/ops/anim/__init__.pyi,sha256=cCqYTsgttcZdPt8nEGNtIPa3xOfXKd-ElF--MRkQKiM,39230
|
|
182
182
|
bpy/ops/armature/__init__.pyi,sha256=_VrIOucyMbPz9yN1l6Ov8P4Nc4jMXcsdop8XCpbEic8,35006
|
|
@@ -251,18 +251,18 @@ bpy/ops/uilist/__init__.pyi,sha256=3WX1_iB6DM2qTyWR_KmaYOYYNQSGsxt6K0xrvW_3Sg0,3
|
|
|
251
251
|
bpy/ops/uv/__init__.pyi,sha256=qkSTqxOtwV6v7tzbxsItP0ExzjRKDAeCKh6OCJyCsXE,60055
|
|
252
252
|
bpy/ops/view2d/__init__.pyi,sha256=43YtDCc0us5-3PviP6vRwglLiZhnErjSacZyPmSA1YM,12252
|
|
253
253
|
bpy/ops/view3d/__init__.pyi,sha256=4JJeY5JiQv4sB91KrKKBsSStht80-inApCk8Cco7HsI,57220
|
|
254
|
-
bpy/ops/wm/__init__.pyi,sha256
|
|
254
|
+
bpy/ops/wm/__init__.pyi,sha256=-8lu2fmcbVq9pP01C-jN8migs10E2cQq2zjTF6tYGCw,274618
|
|
255
255
|
bpy/ops/workspace/__init__.pyi,sha256=qMybRMnxonzKlIe1vscg5ASBuXWrC3hv_2eqRTilRWk,4078
|
|
256
256
|
bpy/ops/world/__init__.pyi,sha256=nPUTiumoo6f727F6tFUU8L4kyxAEbKISld9WfPCDjSk,573
|
|
257
257
|
bpy/path/__init__.pyi,sha256=pdIIUh8bu1ueGuu1QJ0Lu5MsGBlauirt1qthSXsV1RA,6143
|
|
258
258
|
bpy/props/__init__.pyi,sha256=GIygMkjryh8FAbR-QRGy7-EmMu4FA0xttWks5CIeXao,27520
|
|
259
|
-
bpy/types/__init__.pyi,sha256=
|
|
260
|
-
bpy/utils/__init__.pyi,sha256=
|
|
259
|
+
bpy/types/__init__.pyi,sha256=eezWa9ZRiaJVthcBkhAs_S4I7q14beDXmk5rNXjxvLw,3389663
|
|
260
|
+
bpy/utils/__init__.pyi,sha256=3AYqHxztMNlrnbmNmpvhmvD6VYxkl_limTSymB2ZfRQ,10513
|
|
261
261
|
bpy/utils/previews/__init__.pyi,sha256=D_Cigr8LKjOgYULJYKEYxeOXpiZ5zvtaWS0UYXCS-0o,2254
|
|
262
262
|
bpy/utils/units/__init__.pyi,sha256=dfh3KCRDrjv9FQoJ-YAitl5DIwJ3cJbC1rRkHz_QM6Y,2718
|
|
263
|
-
bpy_extras/__init__.pyi,sha256=
|
|
263
|
+
bpy_extras/__init__.pyi,sha256=aITiQrUxXc744bWvLGgxhDNVNpY7DRebqzvgN5kyuKI,437
|
|
264
264
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
265
|
-
bpy_extras/anim_utils/__init__.pyi,sha256=
|
|
265
|
+
bpy_extras/anim_utils/__init__.pyi,sha256=5h9KEqzr_swBXJVGKQSIOtI4Rai5QvLupXLDKTvEq3g,2629
|
|
266
266
|
bpy_extras/asset_utils/__init__.pyi,sha256=ugLnZGwgepm58mWHS4cS_bmum9v9La2a1wKpg5VShHY,362
|
|
267
267
|
bpy_extras/bmesh_utils/__init__.pyi,sha256=OmimPHBCsqCSKIbo4dLetnfgEiDapXJJ6Ys-G_d9cwQ,162
|
|
268
268
|
bpy_extras/extensions/__init__.pyi,sha256=bdsIrb_l0d2w4d7-VdYRHrY1iSferwAUc8qAkJTmdtM,100
|
|
@@ -280,7 +280,7 @@ bpy_extras/wm_utils/__init__.pyi,sha256=DW9DeIMC3fdLn7M9-PndWQSe2eT-mB5rhr8au0xj
|
|
|
280
280
|
bpy_extras/wm_utils/progress_report/__init__.pyi,sha256=TSAbXLYIc2g3dMsiVq4_gam98zIo0YfbCjNUmxBTjCM,708
|
|
281
281
|
bpy_restrict_state/__init__.pyi,sha256=gf2H4vB0Syh-ThKOewUkDdR-w4Fo8rf7h7ztlcfnADs,247
|
|
282
282
|
bpy_restrict_state/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
283
|
-
bpy_types/__init__.pyi,sha256=
|
|
283
|
+
bpy_types/__init__.pyi,sha256=RZtG8i7ozOcdJtqfd-k8ol4Qrti3lBLbk13dHXtbjIE,33268
|
|
284
284
|
bpy_types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
285
285
|
console_python/__init__.pyi,sha256=NFp-T2SCOOLR-N7V4zWJ9Er7N6nD3NYSYIFQiLKAPrM,420
|
|
286
286
|
console_python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -342,7 +342,7 @@ rna_xml/__init__.pyi,sha256=FBeu5sXsynEVp7-RejFGDQxQWa5tyMGJhpeeVvKSOuI,482
|
|
|
342
342
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
343
343
|
sys_info/__init__.pyi,sha256=RN6EcA0WmaY1U3j8SxCoXsOSCV6iYCA6E0qFwZ0x63s,104
|
|
344
344
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
|
-
fake_bpy_module-
|
|
346
|
-
fake_bpy_module-
|
|
347
|
-
fake_bpy_module-
|
|
348
|
-
fake_bpy_module-
|
|
345
|
+
fake_bpy_module-20240106.dist-info/METADATA,sha256=WQWwqIQ_i3wQ1iRJ2jGwqOxF9irwQgw02xLMjsS6dLA,7008
|
|
346
|
+
fake_bpy_module-20240106.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
347
|
+
fake_bpy_module-20240106.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
348
|
+
fake_bpy_module-20240106.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|