fake-bpy-module 20231203__py3-none-any.whl → 20231205__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__.py +1 -1
- bl_i18n_utils/__init__.py +4 -4
- bl_keymap_utils/__init__.py +3 -3
- bl_operators/__init__.py +19 -19
- bl_ui/__init__.py +60 -60
- bl_ui_utils/__init__.py +1 -1
- bpy/__init__.py +3 -3
- bpy/app/__init__.py +1 -1
- bpy/ops/__init__.py +64 -64
- bpy/ops/wm.py +3 -0
- bpy/types.py +186 -187
- bpy/utils/__init__.py +1 -1
- bpy_extras/__init__.py +1 -1
- bpy_extras/anim_utils.py +2 -2
- {fake_bpy_module-20231203.dist-info → fake_bpy_module-20231205.dist-info}/METADATA +1 -1
- {fake_bpy_module-20231203.dist-info → fake_bpy_module-20231205.dist-info}/RECORD +18 -18
- {fake_bpy_module-20231203.dist-info → fake_bpy_module-20231205.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20231203.dist-info → fake_bpy_module-20231205.dist-info}/top_level.txt +0 -0
bl_i18n_utils/__init__.py
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import utils_rtl
|
|
4
3
|
from . import utils_cli
|
|
5
|
-
from . import utils
|
|
6
|
-
from . import merge_po
|
|
7
|
-
from . import utils_languages_menu
|
|
8
4
|
from . import settings
|
|
5
|
+
from . import utils_languages_menu
|
|
9
6
|
from . import bl_extract_messages
|
|
7
|
+
from . import merge_po
|
|
8
|
+
from . import utils_rtl
|
|
9
|
+
from . import utils
|
|
10
10
|
|
|
11
11
|
GenericType = typing.TypeVar("GenericType")
|
bl_keymap_utils/__init__.py
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import keymap_from_toolbar
|
|
4
|
-
from . import versioning
|
|
5
|
-
from . import platform_helpers
|
|
6
3
|
from . import io
|
|
7
4
|
from . import keymap_hierarchy
|
|
5
|
+
from . import keymap_from_toolbar
|
|
6
|
+
from . import platform_helpers
|
|
7
|
+
from . import versioning
|
|
8
8
|
|
|
9
9
|
GenericType = typing.TypeVar("GenericType")
|
bl_operators/__init__.py
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import console
|
|
4
|
-
from . import uvcalc_transform
|
|
5
|
-
from . import add_mesh_torus
|
|
6
|
-
from . import anim
|
|
7
|
-
from . import constraint
|
|
8
|
-
from . import image
|
|
9
|
-
from . import presets
|
|
10
|
-
from . import wm
|
|
11
3
|
from . import bmesh
|
|
12
|
-
from . import
|
|
4
|
+
from . import node
|
|
5
|
+
from . import assets
|
|
13
6
|
from . import view3d
|
|
7
|
+
from . import uvcalc_transform
|
|
8
|
+
from . import object_align
|
|
9
|
+
from . import console
|
|
10
|
+
from . import userpref
|
|
14
11
|
from . import uvcalc_lightmap
|
|
15
|
-
from . import sequencer
|
|
16
|
-
from . import object_randomize_transform
|
|
17
|
-
from . import assets
|
|
18
12
|
from . import clip
|
|
19
|
-
from . import
|
|
13
|
+
from . import constraint
|
|
20
14
|
from . import rigidbody
|
|
21
|
-
from . import
|
|
22
|
-
from . import
|
|
15
|
+
from . import add_mesh_torus
|
|
16
|
+
from . import vertexpaint_dirt
|
|
23
17
|
from . import mesh
|
|
18
|
+
from . import object_randomize_transform
|
|
19
|
+
from . import wm
|
|
24
20
|
from . import geometry_nodes
|
|
21
|
+
from . import screen_play_rendered_anim
|
|
22
|
+
from . import uvcalc_follow_active
|
|
23
|
+
from . import spreadsheet
|
|
24
|
+
from . import image
|
|
25
25
|
from . import file
|
|
26
26
|
from . import freestyle
|
|
27
|
-
from . import object
|
|
28
|
-
from . import object_align
|
|
29
27
|
from . import object_quick_effects
|
|
30
|
-
from . import
|
|
31
|
-
from . import
|
|
28
|
+
from . import anim
|
|
29
|
+
from . import presets
|
|
30
|
+
from . import object
|
|
31
|
+
from . import sequencer
|
|
32
32
|
|
|
33
33
|
GenericType = typing.TypeVar("GenericType")
|
|
34
34
|
|
bl_ui/__init__.py
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 node_add_menu_compositor
|
|
11
|
-
from . import properties_data_curve
|
|
12
|
-
from . import space_time
|
|
13
|
-
from . import properties_workspace
|
|
14
|
-
from . import properties_data_bone
|
|
15
|
-
from . import properties_physics_cloth
|
|
16
|
-
from . import properties_physics_common
|
|
17
|
-
from . import properties_physics_rigidbody
|
|
18
|
-
from . import properties_data_pointcloud
|
|
19
|
-
from . import properties_object
|
|
20
|
-
from . import properties_data_armature
|
|
21
|
-
from . import properties_output
|
|
5
|
+
from . import properties_data_empty
|
|
6
|
+
from . import properties_material
|
|
7
|
+
from . import properties_data_speaker
|
|
8
|
+
from . import properties_data_metaball
|
|
9
|
+
from . import properties_data_lattice
|
|
22
10
|
from . import node_add_menu_geometry
|
|
23
|
-
from . import
|
|
24
|
-
from . import
|
|
25
|
-
from . import
|
|
11
|
+
from . import properties_scene
|
|
12
|
+
from . import space_text
|
|
13
|
+
from . import space_clip
|
|
14
|
+
from . import properties_physics_field
|
|
15
|
+
from . import space_nla
|
|
16
|
+
from . import node_add_menu_texture
|
|
17
|
+
from . import properties_physics_softbody
|
|
26
18
|
from . import properties_data_light
|
|
19
|
+
from . import space_graph
|
|
20
|
+
from . import properties_freestyle
|
|
21
|
+
from . import properties_data_camera
|
|
22
|
+
from . import space_console
|
|
23
|
+
from . import properties_grease_pencil_common
|
|
27
24
|
from . import space_filebrowser
|
|
28
|
-
from . import
|
|
29
|
-
from . import properties_data_grease_pencil
|
|
30
|
-
from . import generic_ui_list
|
|
25
|
+
from . import properties_collection
|
|
31
26
|
from . import properties_data_shaderfx
|
|
32
|
-
from . import utils
|
|
33
|
-
from . import space_clip
|
|
34
27
|
from . import space_properties
|
|
35
|
-
from . import
|
|
36
|
-
from . import space_statusbar
|
|
37
|
-
from . import node_add_menu
|
|
38
|
-
from . import properties_data_metaball
|
|
39
|
-
from . import properties_data_empty
|
|
40
|
-
from . import properties_scene
|
|
41
|
-
from . import properties_data_mesh
|
|
42
|
-
from . import space_view3d_toolbar
|
|
43
|
-
from . import properties_data_lightprobe
|
|
44
|
-
from . import space_image
|
|
45
|
-
from . import properties_grease_pencil_common
|
|
28
|
+
from . import space_userpref
|
|
46
29
|
from . import properties_paint_common
|
|
30
|
+
from . import space_view3d
|
|
31
|
+
from . import properties_animviz
|
|
47
32
|
from . import properties_physics_dynamicpaint
|
|
48
|
-
from . import properties_physics_field
|
|
49
|
-
from . import properties_material_gpencil
|
|
50
|
-
from . import properties_data_curves
|
|
51
33
|
from . import properties_physics_rigidbody_constraint
|
|
52
|
-
from . import
|
|
53
|
-
from . import
|
|
54
|
-
from . import
|
|
55
|
-
from . import
|
|
56
|
-
from . import
|
|
57
|
-
from . import space_dopesheet
|
|
34
|
+
from . import utils
|
|
35
|
+
from . import properties_render
|
|
36
|
+
from . import properties_physics_cloth
|
|
37
|
+
from . import space_node
|
|
38
|
+
from . import properties_data_curves
|
|
58
39
|
from . import properties_particle
|
|
59
|
-
from . import
|
|
60
|
-
from . import
|
|
61
|
-
from . import
|
|
40
|
+
from . import node_add_menu_compositor
|
|
41
|
+
from . import properties_data_modifier
|
|
42
|
+
from . import properties_world
|
|
43
|
+
from . import properties_texture
|
|
62
44
|
from . import space_toolsystem_toolbar
|
|
63
|
-
from . import
|
|
45
|
+
from . import properties_data_grease_pencil
|
|
64
46
|
from . import space_toolsystem_common
|
|
65
|
-
from . import properties_render
|
|
66
|
-
from . import space_graph
|
|
67
47
|
from . import properties_physics_fluid
|
|
68
|
-
from . import
|
|
69
|
-
from . import
|
|
70
|
-
from . import
|
|
71
|
-
from . import
|
|
72
|
-
from . import
|
|
73
|
-
from . import
|
|
74
|
-
from . import
|
|
75
|
-
from . import
|
|
48
|
+
from . import space_image
|
|
49
|
+
from . import space_sequencer
|
|
50
|
+
from . import properties_data_armature
|
|
51
|
+
from . import properties_data_bone
|
|
52
|
+
from . import properties_data_lightprobe
|
|
53
|
+
from . import properties_mask_common
|
|
54
|
+
from . import properties_data_mesh
|
|
55
|
+
from . import space_info
|
|
76
56
|
from . import properties_physics_geometry_nodes
|
|
57
|
+
from . import properties_physics_common
|
|
58
|
+
from . import properties_data_volume
|
|
77
59
|
from . import space_topbar
|
|
78
|
-
from . import
|
|
60
|
+
from . import properties_view_layer
|
|
61
|
+
from . import properties_material_gpencil
|
|
62
|
+
from . import properties_data_pointcloud
|
|
63
|
+
from . import space_statusbar
|
|
64
|
+
from . import properties_constraint
|
|
65
|
+
from . import space_outliner
|
|
66
|
+
from . import properties_physics_rigidbody
|
|
67
|
+
from . import generic_ui_list
|
|
68
|
+
from . import node_add_menu
|
|
69
|
+
from . import space_time
|
|
70
|
+
from . import properties_data_gpencil
|
|
71
|
+
from . import asset_shelf
|
|
72
|
+
from . import properties_workspace
|
|
73
|
+
from . import space_view3d_toolbar
|
|
74
|
+
from . import properties_data_curve
|
|
75
|
+
from . import space_dopesheet
|
|
76
|
+
from . import properties_output
|
|
79
77
|
from . import node_add_menu_shader
|
|
78
|
+
from . import properties_object
|
|
79
|
+
from . import space_spreadsheet
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
|
82
82
|
|
bl_ui_utils/__init__.py
CHANGED
bpy/__init__.py
CHANGED
|
@@ -3,12 +3,12 @@ import typing
|
|
|
3
3
|
import bpy.types
|
|
4
4
|
|
|
5
5
|
from . import types
|
|
6
|
-
from . import msgbus
|
|
7
6
|
from . import ops
|
|
7
|
+
from . import app
|
|
8
|
+
from . import props
|
|
8
9
|
from . import utils
|
|
10
|
+
from . import msgbus
|
|
9
11
|
from . import path
|
|
10
|
-
from . import props
|
|
11
|
-
from . import app
|
|
12
12
|
|
|
13
13
|
GenericType = typing.TypeVar("GenericType")
|
|
14
14
|
context: 'bpy.types.Context' = None
|
bpy/app/__init__.py
CHANGED
bpy/ops/__init__.py
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import
|
|
4
|
-
from . import
|
|
5
|
-
from . import
|
|
3
|
+
from . import image
|
|
4
|
+
from . import cachefile
|
|
5
|
+
from . import dpaint
|
|
6
|
+
from . import render
|
|
7
|
+
from . import rigidbody
|
|
8
|
+
from . import curve
|
|
6
9
|
from . import sound
|
|
7
|
-
from . import
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
10
|
-
from . import
|
|
11
|
-
from . import
|
|
12
|
-
from . import uilist
|
|
13
|
-
from . import preferences
|
|
10
|
+
from . import mesh
|
|
11
|
+
from . import wm
|
|
12
|
+
from . import ptcache
|
|
13
|
+
from . import view2d
|
|
14
|
+
from . import gpencil
|
|
14
15
|
from . import lattice
|
|
15
|
-
from . import
|
|
16
|
-
from . import mball
|
|
17
|
-
from . import import_scene
|
|
18
|
-
from . import palette
|
|
19
|
-
from . import render
|
|
16
|
+
from . import text
|
|
20
17
|
from . import brush
|
|
21
|
-
from . import
|
|
22
|
-
from . import view2d
|
|
23
|
-
from . import font
|
|
24
|
-
from . import boid
|
|
25
|
-
from . import spreadsheet
|
|
26
|
-
from . import nla
|
|
27
|
-
from . import import_anim
|
|
28
|
-
from . import cachefile
|
|
29
|
-
from . import curve
|
|
30
|
-
from . import action
|
|
18
|
+
from . import buttons
|
|
31
19
|
from . import camera
|
|
32
|
-
from . import
|
|
33
|
-
from . import
|
|
34
|
-
from . import
|
|
35
|
-
from . import
|
|
36
|
-
from . import
|
|
37
|
-
from . import
|
|
20
|
+
from . import export_scene
|
|
21
|
+
from . import gizmogroup
|
|
22
|
+
from . import console
|
|
23
|
+
from . import sculpt_curves
|
|
24
|
+
from . import constraint
|
|
25
|
+
from . import grease_pencil
|
|
26
|
+
from . import preferences
|
|
27
|
+
from . import asset
|
|
38
28
|
from . import export_anim
|
|
39
|
-
from . import
|
|
40
|
-
from . import
|
|
41
|
-
from . import
|
|
29
|
+
from . import transform
|
|
30
|
+
from . import nla
|
|
31
|
+
from . import object
|
|
32
|
+
from . import import_curve
|
|
33
|
+
from . import fluid
|
|
42
34
|
from . import graph
|
|
43
|
-
from . import
|
|
35
|
+
from . import boid
|
|
36
|
+
from . import clip
|
|
37
|
+
from . import import_scene
|
|
44
38
|
from . import material
|
|
45
|
-
from . import
|
|
46
|
-
from . import cycles
|
|
47
|
-
from . import dpaint
|
|
48
|
-
from . import pose
|
|
49
|
-
from . import mask
|
|
50
|
-
from . import import_curve
|
|
51
|
-
from . import paintcurve
|
|
52
|
-
from . import screen
|
|
53
|
-
from . import wm
|
|
54
|
-
from . import mesh
|
|
39
|
+
from . import sequencer
|
|
55
40
|
from . import export_mesh
|
|
56
|
-
from . import
|
|
57
|
-
from . import
|
|
41
|
+
from . import workspace
|
|
42
|
+
from . import paintcurve
|
|
43
|
+
from . import outliner
|
|
44
|
+
from . import node
|
|
45
|
+
from . import uilist
|
|
46
|
+
from . import spreadsheet
|
|
47
|
+
from . import import_mesh
|
|
58
48
|
from . import particle
|
|
59
|
-
from . import
|
|
60
|
-
from . import
|
|
61
|
-
from . import
|
|
49
|
+
from . import action
|
|
50
|
+
from . import text_editor
|
|
51
|
+
from . import geometry
|
|
52
|
+
from . import screen
|
|
53
|
+
from . import info
|
|
54
|
+
from . import mask
|
|
55
|
+
from . import armature
|
|
62
56
|
from . import script
|
|
63
|
-
from . import surface
|
|
64
|
-
from . import asset
|
|
65
|
-
from . import anim
|
|
66
57
|
from . import sculpt
|
|
67
|
-
from . import
|
|
68
|
-
from . import
|
|
69
|
-
from . import
|
|
70
|
-
from . import
|
|
71
|
-
from . import
|
|
72
|
-
from . import
|
|
73
|
-
from . import
|
|
58
|
+
from . import poselib
|
|
59
|
+
from . import paint
|
|
60
|
+
from . import anim
|
|
61
|
+
from . import cloth
|
|
62
|
+
from . import view3d
|
|
63
|
+
from . import surface
|
|
64
|
+
from . import pose
|
|
65
|
+
from . import world
|
|
66
|
+
from . import cycles
|
|
74
67
|
from . import file
|
|
75
|
-
from . import
|
|
68
|
+
from . import import_anim
|
|
69
|
+
from . import ed
|
|
70
|
+
from . import scene
|
|
71
|
+
from . import texture
|
|
72
|
+
from . import uv
|
|
73
|
+
from . import font
|
|
74
|
+
from . import marker
|
|
75
|
+
from . import curves
|
|
76
|
+
from . import mball
|
|
77
|
+
from . import palette
|
|
78
|
+
from . import collection
|
|
76
79
|
from . import ui
|
|
77
|
-
from . import node
|
|
78
|
-
from . import gizmogroup
|
|
79
|
-
from . import info
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
bpy/ops/wm.py
CHANGED
|
@@ -2289,6 +2289,7 @@ def obj_import(
|
|
|
2289
2289
|
Any]] = False,
|
|
2290
2290
|
validate_meshes: typing.Optional[typing.Union[bool, typing.
|
|
2291
2291
|
Any]] = False,
|
|
2292
|
+
collection_separator: typing.Union[str, typing.Any] = "",
|
|
2292
2293
|
filter_glob: typing.Union[str, typing.Any] = "*.obj;*.mtl"):
|
|
2293
2294
|
''' Load a Wavefront OBJ scene
|
|
2294
2295
|
|
|
@@ -2359,6 +2360,8 @@ def obj_import(
|
|
|
2359
2360
|
:type import_vertex_groups: typing.Optional[typing.Union[bool, typing.Any]]
|
|
2360
2361
|
:param validate_meshes: Validate Meshes, Check imported mesh objects for invalid data (slow)
|
|
2361
2362
|
:type validate_meshes: typing.Optional[typing.Union[bool, typing.Any]]
|
|
2363
|
+
:param collection_separator: Path Separator, Character used to separate objects name into hierarchical structure
|
|
2364
|
+
:type collection_separator: typing.Union[str, typing.Any]
|
|
2362
2365
|
:param filter_glob: Extension Filter
|
|
2363
2366
|
:type filter_glob: typing.Union[str, typing.Any]
|
|
2364
2367
|
'''
|
bpy/types.py
CHANGED
|
@@ -2,212 +2,97 @@ 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
|
|
9
|
-
import bl_operators.
|
|
10
|
-
import bl_ui.
|
|
11
|
-
import bl_ui.
|
|
12
|
-
import bl_ui.properties_data_curve
|
|
13
|
-
import bl_ui.space_time
|
|
14
|
-
import bl_operators.constraint
|
|
15
|
-
import bl_operators.presets
|
|
16
|
-
import bl_ui.properties_workspace
|
|
17
|
-
import bl_ui.properties_data_bone
|
|
18
|
-
import bl_ui.properties_physics_cloth
|
|
19
|
-
import bl_ui.properties_physics_common
|
|
20
|
-
import bl_ui.properties_physics_rigidbody
|
|
21
|
-
import bl_ui.properties_data_pointcloud
|
|
22
|
-
import bl_ui.properties_object
|
|
23
|
-
import bl_ui.properties_data_armature
|
|
24
|
-
import bl_operators.wm
|
|
25
|
-
import bl_ui.properties_output
|
|
5
|
+
import bl_ui.properties_data_empty
|
|
6
|
+
import bl_ui.properties_material
|
|
7
|
+
import bl_ui.properties_data_speaker
|
|
8
|
+
import bl_operators.node
|
|
9
|
+
import bl_operators.assets
|
|
10
|
+
import bl_ui.properties_data_metaball
|
|
11
|
+
import bl_ui.properties_data_lattice
|
|
26
12
|
import bl_ui.node_add_menu_geometry
|
|
27
|
-
import bl_ui.
|
|
28
|
-
import
|
|
29
|
-
import bl_ui.
|
|
13
|
+
import bl_ui.properties_scene
|
|
14
|
+
import bl_operators.view3d
|
|
15
|
+
import bl_ui.space_text
|
|
16
|
+
import bl_ui.space_clip
|
|
17
|
+
import bl_ui.properties_physics_field
|
|
30
18
|
import bl_ui
|
|
19
|
+
import bl_ui.space_nla
|
|
20
|
+
import bl_ui.node_add_menu_texture
|
|
21
|
+
import bl_ui.properties_physics_softbody
|
|
31
22
|
import bl_ui.properties_data_light
|
|
23
|
+
import bl_ui.space_graph
|
|
24
|
+
import bl_ui.properties_freestyle
|
|
25
|
+
import bl_ui.properties_data_camera
|
|
26
|
+
import bl_ui.space_console
|
|
27
|
+
import bl_ui.properties_grease_pencil_common
|
|
32
28
|
import bl_operators.userpref
|
|
33
|
-
import bl_operators.view3d
|
|
34
29
|
import bl_ui.space_filebrowser
|
|
35
|
-
import bl_ui.
|
|
36
|
-
import bl_ui.properties_data_grease_pencil
|
|
37
|
-
import bl_ui.generic_ui_list
|
|
30
|
+
import bl_ui.properties_collection
|
|
38
31
|
import bl_ui.properties_data_shaderfx
|
|
39
|
-
import bl_ui.space_clip
|
|
40
|
-
import bl_ui.space_properties
|
|
41
|
-
import bl_ui.properties_physics_softbody
|
|
42
|
-
import bl_ui.space_statusbar
|
|
43
|
-
import bl_ui.node_add_menu
|
|
44
|
-
import bl_operators.assets
|
|
45
|
-
import bl_ui.properties_data_metaball
|
|
46
32
|
import bl_operators.clip
|
|
47
|
-
import bl_ui.
|
|
48
|
-
import bl_ui.
|
|
49
|
-
import bl_ui.properties_data_mesh
|
|
50
|
-
import bl_ui.space_view3d_toolbar
|
|
51
|
-
import bl_ui.properties_data_lightprobe
|
|
52
|
-
import bl_ui.space_image
|
|
53
|
-
import bl_operators.spreadsheet
|
|
54
|
-
import bl_ui.properties_grease_pencil_common
|
|
33
|
+
import bl_ui.space_properties
|
|
34
|
+
import bl_ui.space_userpref
|
|
55
35
|
import bl_ui.properties_paint_common
|
|
36
|
+
import bl_ui.space_view3d
|
|
37
|
+
import bl_operators.constraint
|
|
56
38
|
import bl_ui.properties_physics_dynamicpaint
|
|
57
|
-
import bl_ui.properties_physics_field
|
|
58
|
-
import bl_ui.properties_material_gpencil
|
|
59
|
-
import bl_ui.properties_data_curves
|
|
60
39
|
import bl_ui.properties_physics_rigidbody_constraint
|
|
61
|
-
import bl_ui.
|
|
62
|
-
import bl_ui.
|
|
63
|
-
import bl_ui.
|
|
64
|
-
import bl_ui.
|
|
65
|
-
import bl_ui.properties_collection
|
|
66
|
-
import bl_ui.space_dopesheet
|
|
40
|
+
import bl_ui.properties_render
|
|
41
|
+
import bl_ui.properties_physics_cloth
|
|
42
|
+
import bl_ui.space_node
|
|
43
|
+
import bl_ui.properties_data_curves
|
|
67
44
|
import bl_ui.properties_particle
|
|
68
|
-
import bl_ui.
|
|
69
|
-
import bl_ui.
|
|
70
|
-
import
|
|
45
|
+
import bl_ui.node_add_menu_compositor
|
|
46
|
+
import bl_ui.properties_data_modifier
|
|
47
|
+
import bl_ui.properties_world
|
|
48
|
+
import bl_ui.properties_texture
|
|
71
49
|
import bl_ui.space_toolsystem_toolbar
|
|
72
|
-
import
|
|
50
|
+
import bl_operators.wm
|
|
51
|
+
import bl_ui.properties_data_grease_pencil
|
|
73
52
|
import bl_ui.space_toolsystem_common
|
|
74
|
-
import bl_ui.properties_render
|
|
75
|
-
import bl_ui.space_graph
|
|
76
53
|
import bl_ui.properties_physics_fluid
|
|
77
|
-
import bl_ui.
|
|
78
|
-
import bl_ui.
|
|
79
|
-
import bl_ui.
|
|
80
|
-
import
|
|
81
|
-
import bl_ui.
|
|
82
|
-
import
|
|
83
|
-
import bl_ui.
|
|
84
|
-
import bl_ui.
|
|
85
|
-
import bl_ui.properties_material
|
|
86
|
-
import bl_ui.space_node
|
|
54
|
+
import bl_ui.space_image
|
|
55
|
+
import bl_ui.space_sequencer
|
|
56
|
+
import bl_ui.properties_data_armature
|
|
57
|
+
import bl_ui.properties_data_bone
|
|
58
|
+
import bl_ui.properties_data_lightprobe
|
|
59
|
+
import bl_ui.properties_mask_common
|
|
60
|
+
import bl_ui.properties_data_mesh
|
|
61
|
+
import bl_ui.space_info
|
|
87
62
|
import bl_ui.properties_physics_geometry_nodes
|
|
63
|
+
import bl_ui.properties_physics_common
|
|
64
|
+
import bl_ui.properties_data_volume
|
|
65
|
+
import bl_operators.spreadsheet
|
|
88
66
|
import bl_ui.space_topbar
|
|
89
|
-
import bl_ui.
|
|
90
|
-
import
|
|
67
|
+
import bl_ui.properties_view_layer
|
|
68
|
+
import bl_ui.properties_material_gpencil
|
|
69
|
+
import bl_operators.file
|
|
70
|
+
import bl_operators.freestyle
|
|
71
|
+
import bl_ui.properties_data_pointcloud
|
|
72
|
+
import bl_operators.anim
|
|
73
|
+
import bl_ui.space_statusbar
|
|
74
|
+
import bl_operators.presets
|
|
75
|
+
import bl_ui.properties_constraint
|
|
76
|
+
import bl_operators.object
|
|
77
|
+
import bl_ui.space_outliner
|
|
78
|
+
import bl_ui.properties_physics_rigidbody
|
|
79
|
+
import bl_ui.generic_ui_list
|
|
80
|
+
import bl_ui.node_add_menu
|
|
81
|
+
import bl_ui.space_time
|
|
82
|
+
import bl_ui.properties_data_gpencil
|
|
83
|
+
import bl_ui.asset_shelf
|
|
84
|
+
import bl_ui.properties_workspace
|
|
85
|
+
import bl_ui.space_view3d_toolbar
|
|
86
|
+
import bl_ui.properties_data_curve
|
|
87
|
+
import bl_ui.space_dopesheet
|
|
88
|
+
import bl_ui.properties_output
|
|
91
89
|
import bl_ui.node_add_menu_shader
|
|
90
|
+
import bl_ui.properties_object
|
|
91
|
+
import bl_ui.space_spreadsheet
|
|
92
92
|
|
|
93
93
|
GenericType = typing.TypeVar("GenericType")
|
|
94
94
|
|
|
95
95
|
|
|
96
|
-
class bpy_prop_collection(typing.Generic[GenericType]):
|
|
97
|
-
''' built-in class used for all collections.
|
|
98
|
-
'''
|
|
99
|
-
|
|
100
|
-
def find(self, key: typing.Optional[str]) -> int:
|
|
101
|
-
''' Returns the index of a key in a collection or -1 when not found (matches Python's string find function of the same name).
|
|
102
|
-
|
|
103
|
-
:param key: The identifier for the collection member.
|
|
104
|
-
:type key: typing.Optional[str]
|
|
105
|
-
:rtype: int
|
|
106
|
-
:return: index of the key.
|
|
107
|
-
'''
|
|
108
|
-
pass
|
|
109
|
-
|
|
110
|
-
def foreach_get(self, attr, seq):
|
|
111
|
-
''' This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! Multi-dimensional arrays (like array of vectors) will be flattened into seq.
|
|
112
|
-
|
|
113
|
-
'''
|
|
114
|
-
pass
|
|
115
|
-
|
|
116
|
-
def foreach_set(self, attr, seq):
|
|
117
|
-
''' This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
|
|
118
|
-
|
|
119
|
-
'''
|
|
120
|
-
pass
|
|
121
|
-
|
|
122
|
-
def get(self,
|
|
123
|
-
key: typing.Optional[str],
|
|
124
|
-
default: typing.Optional[typing.Any] = None):
|
|
125
|
-
''' Returns the value of the item assigned to key or default when not found (matches Python's dictionary function of the same name).
|
|
126
|
-
|
|
127
|
-
:param key: The identifier for the collection member.
|
|
128
|
-
:type key: typing.Optional[str]
|
|
129
|
-
:param default: Optional argument for the value to return if *key* is not found.
|
|
130
|
-
:type default: typing.Optional[typing.Any]
|
|
131
|
-
'''
|
|
132
|
-
pass
|
|
133
|
-
|
|
134
|
-
def items(self) -> typing.List:
|
|
135
|
-
''' Return the identifiers of collection members (matching Python's dict.items() functionality).
|
|
136
|
-
|
|
137
|
-
:rtype: typing.List
|
|
138
|
-
:return: (key, value) pairs for each member of this collection.
|
|
139
|
-
'''
|
|
140
|
-
pass
|
|
141
|
-
|
|
142
|
-
def keys(self) -> typing.List[str]:
|
|
143
|
-
''' Return the identifiers of collection members (matching Python's dict.keys() functionality).
|
|
144
|
-
|
|
145
|
-
:rtype: typing.List[str]
|
|
146
|
-
:return: the identifiers for each member of this collection.
|
|
147
|
-
'''
|
|
148
|
-
pass
|
|
149
|
-
|
|
150
|
-
def values(self) -> typing.List:
|
|
151
|
-
''' Return the values of collection (matching Python's dict.values() functionality).
|
|
152
|
-
|
|
153
|
-
:rtype: typing.List
|
|
154
|
-
:return: the members of this collection.
|
|
155
|
-
'''
|
|
156
|
-
pass
|
|
157
|
-
|
|
158
|
-
def __getitem__(self, key: typing.Optional[typing.Union[int, str]]
|
|
159
|
-
) -> 'GenericType':
|
|
160
|
-
'''
|
|
161
|
-
|
|
162
|
-
:param key:
|
|
163
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
164
|
-
:rtype: 'GenericType'
|
|
165
|
-
'''
|
|
166
|
-
pass
|
|
167
|
-
|
|
168
|
-
def __setitem__(self, key: typing.Optional[typing.Union[int, str]],
|
|
169
|
-
value: 'GenericType'):
|
|
170
|
-
'''
|
|
171
|
-
|
|
172
|
-
:param key:
|
|
173
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
174
|
-
:param value:
|
|
175
|
-
:type value: 'GenericType'
|
|
176
|
-
'''
|
|
177
|
-
pass
|
|
178
|
-
|
|
179
|
-
def __delitem__(self, key: typing.Optional[typing.Union[int, str]]
|
|
180
|
-
) -> 'GenericType':
|
|
181
|
-
'''
|
|
182
|
-
|
|
183
|
-
:param key:
|
|
184
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
185
|
-
:rtype: 'GenericType'
|
|
186
|
-
'''
|
|
187
|
-
pass
|
|
188
|
-
|
|
189
|
-
def __iter__(self) -> typing.Iterator['GenericType']:
|
|
190
|
-
'''
|
|
191
|
-
|
|
192
|
-
:rtype: typing.Iterator['GenericType']
|
|
193
|
-
'''
|
|
194
|
-
pass
|
|
195
|
-
|
|
196
|
-
def __next__(self) -> 'GenericType':
|
|
197
|
-
'''
|
|
198
|
-
|
|
199
|
-
:rtype: 'GenericType'
|
|
200
|
-
'''
|
|
201
|
-
pass
|
|
202
|
-
|
|
203
|
-
def __len__(self) -> int:
|
|
204
|
-
'''
|
|
205
|
-
|
|
206
|
-
:rtype: int
|
|
207
|
-
'''
|
|
208
|
-
pass
|
|
209
|
-
|
|
210
|
-
|
|
211
96
|
class bpy_struct:
|
|
212
97
|
''' built-in base class for all classes in bpy.types.
|
|
213
98
|
'''
|
|
@@ -481,6 +366,121 @@ class bpy_struct:
|
|
|
481
366
|
pass
|
|
482
367
|
|
|
483
368
|
|
|
369
|
+
class bpy_prop_collection(typing.Generic[GenericType]):
|
|
370
|
+
''' built-in class used for all collections.
|
|
371
|
+
'''
|
|
372
|
+
|
|
373
|
+
def find(self, key: typing.Optional[str]) -> int:
|
|
374
|
+
''' Returns the index of a key in a collection or -1 when not found (matches Python's string find function of the same name).
|
|
375
|
+
|
|
376
|
+
:param key: The identifier for the collection member.
|
|
377
|
+
:type key: typing.Optional[str]
|
|
378
|
+
:rtype: int
|
|
379
|
+
:return: index of the key.
|
|
380
|
+
'''
|
|
381
|
+
pass
|
|
382
|
+
|
|
383
|
+
def foreach_get(self, attr, seq):
|
|
384
|
+
''' This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! Multi-dimensional arrays (like array of vectors) will be flattened into seq.
|
|
385
|
+
|
|
386
|
+
'''
|
|
387
|
+
pass
|
|
388
|
+
|
|
389
|
+
def foreach_set(self, attr, seq):
|
|
390
|
+
''' This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
|
|
391
|
+
|
|
392
|
+
'''
|
|
393
|
+
pass
|
|
394
|
+
|
|
395
|
+
def get(self,
|
|
396
|
+
key: typing.Optional[str],
|
|
397
|
+
default: typing.Optional[typing.Any] = None):
|
|
398
|
+
''' Returns the value of the item assigned to key or default when not found (matches Python's dictionary function of the same name).
|
|
399
|
+
|
|
400
|
+
:param key: The identifier for the collection member.
|
|
401
|
+
:type key: typing.Optional[str]
|
|
402
|
+
:param default: Optional argument for the value to return if *key* is not found.
|
|
403
|
+
:type default: typing.Optional[typing.Any]
|
|
404
|
+
'''
|
|
405
|
+
pass
|
|
406
|
+
|
|
407
|
+
def items(self) -> typing.List:
|
|
408
|
+
''' Return the identifiers of collection members (matching Python's dict.items() functionality).
|
|
409
|
+
|
|
410
|
+
:rtype: typing.List
|
|
411
|
+
:return: (key, value) pairs for each member of this collection.
|
|
412
|
+
'''
|
|
413
|
+
pass
|
|
414
|
+
|
|
415
|
+
def keys(self) -> typing.List[str]:
|
|
416
|
+
''' Return the identifiers of collection members (matching Python's dict.keys() functionality).
|
|
417
|
+
|
|
418
|
+
:rtype: typing.List[str]
|
|
419
|
+
:return: the identifiers for each member of this collection.
|
|
420
|
+
'''
|
|
421
|
+
pass
|
|
422
|
+
|
|
423
|
+
def values(self) -> typing.List:
|
|
424
|
+
''' Return the values of collection (matching Python's dict.values() functionality).
|
|
425
|
+
|
|
426
|
+
:rtype: typing.List
|
|
427
|
+
:return: the members of this collection.
|
|
428
|
+
'''
|
|
429
|
+
pass
|
|
430
|
+
|
|
431
|
+
def __getitem__(self, key: typing.Optional[typing.Union[int, str]]
|
|
432
|
+
) -> 'GenericType':
|
|
433
|
+
'''
|
|
434
|
+
|
|
435
|
+
:param key:
|
|
436
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
437
|
+
:rtype: 'GenericType'
|
|
438
|
+
'''
|
|
439
|
+
pass
|
|
440
|
+
|
|
441
|
+
def __setitem__(self, key: typing.Optional[typing.Union[int, str]],
|
|
442
|
+
value: 'GenericType'):
|
|
443
|
+
'''
|
|
444
|
+
|
|
445
|
+
:param key:
|
|
446
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
447
|
+
:param value:
|
|
448
|
+
:type value: 'GenericType'
|
|
449
|
+
'''
|
|
450
|
+
pass
|
|
451
|
+
|
|
452
|
+
def __delitem__(self, key: typing.Optional[typing.Union[int, str]]
|
|
453
|
+
) -> 'GenericType':
|
|
454
|
+
'''
|
|
455
|
+
|
|
456
|
+
:param key:
|
|
457
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
458
|
+
:rtype: 'GenericType'
|
|
459
|
+
'''
|
|
460
|
+
pass
|
|
461
|
+
|
|
462
|
+
def __iter__(self) -> typing.Iterator['GenericType']:
|
|
463
|
+
'''
|
|
464
|
+
|
|
465
|
+
:rtype: typing.Iterator['GenericType']
|
|
466
|
+
'''
|
|
467
|
+
pass
|
|
468
|
+
|
|
469
|
+
def __next__(self) -> 'GenericType':
|
|
470
|
+
'''
|
|
471
|
+
|
|
472
|
+
:rtype: 'GenericType'
|
|
473
|
+
'''
|
|
474
|
+
pass
|
|
475
|
+
|
|
476
|
+
def __len__(self) -> int:
|
|
477
|
+
'''
|
|
478
|
+
|
|
479
|
+
:rtype: int
|
|
480
|
+
'''
|
|
481
|
+
pass
|
|
482
|
+
|
|
483
|
+
|
|
484
484
|
class bpy_prop_array(typing.Generic[GenericType]):
|
|
485
485
|
def foreach_get(self, attr, seq):
|
|
486
486
|
'''
|
|
@@ -105116,8 +105116,7 @@ class CompositorNodeSetAlpha(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
105116
105116
|
pass
|
|
105117
105117
|
|
|
105118
105118
|
|
|
105119
|
-
class
|
|
105120
|
-
bpy_struct):
|
|
105119
|
+
class CompositorNodeSplit(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
105121
105120
|
axis: typing.Union[str, int] = None
|
|
105122
105121
|
'''
|
|
105123
105122
|
|
bpy/utils/__init__.py
CHANGED
bpy_extras/__init__.py
CHANGED
|
@@ -11,8 +11,8 @@ from . import mesh_utils
|
|
|
11
11
|
from . import io_utils
|
|
12
12
|
from . import anim_utils
|
|
13
13
|
from . import bmesh_utils
|
|
14
|
-
from . import wm_utils
|
|
15
14
|
from . import extensions
|
|
15
|
+
from . import wm_utils
|
|
16
16
|
from . import node_shader_utils
|
|
17
17
|
|
|
18
18
|
GenericType = typing.TypeVar("GenericType")
|
bpy_extras/anim_utils.py
CHANGED
|
@@ -97,12 +97,12 @@ def bake_action_objects(object_action_pairs, *, frames: int,
|
|
|
97
97
|
|
|
98
98
|
def bake_action_objects_iter(
|
|
99
99
|
object_action_pairs: typing.
|
|
100
|
-
Union['bpy.types.
|
|
100
|
+
Union['bpy.types.Object', 'bpy.types.Action', 'bpy.types.Sequence'],
|
|
101
101
|
bake_o):
|
|
102
102
|
''' An coroutine that bakes actions for multiple objects.
|
|
103
103
|
|
|
104
104
|
: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.
|
|
105
|
-
:type object_action_pairs: typing.Union['bpy.types.
|
|
105
|
+
:type object_action_pairs: typing.Union['bpy.types.Object', 'bpy.types.Action', 'bpy.types.Sequence']
|
|
106
106
|
'''
|
|
107
107
|
|
|
108
108
|
pass
|
|
@@ -13,13 +13,13 @@ bl_app_template_utils/__init__.py,sha256=8b1qin_xdAWCAcKumw0RyJhFZ6Lxs9Obbn-uhsE
|
|
|
13
13
|
bl_app_template_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
bl_console_utils/__init__.py,sha256=qOGRa_N1-VEAf9cr60mvvxQMYSKNNSzuSQ0_TuSEq1I,97
|
|
15
15
|
bl_console_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
bl_console_utils/autocomplete/__init__.py,sha256=
|
|
16
|
+
bl_console_utils/autocomplete/__init__.py,sha256=u42XMuxeB9SmwNak1aZDHhxMEIR539Q6GyhR7HisRi0,191
|
|
17
17
|
bl_console_utils/autocomplete/complete_calltip.py,sha256=MPKfExCeGGQ8_4N_Tlc0jmW-fds90pQev9SL117BsUM,377
|
|
18
18
|
bl_console_utils/autocomplete/complete_import.py,sha256=siEo09By6i0XXG93NuA8a-BjPDm86vKAfZWNhv_l8CE,227
|
|
19
19
|
bl_console_utils/autocomplete/complete_namespace.py,sha256=pgGkpgraV9HpeoCYrvkyfZPMy-gjZ7Ycs2NQpEiQJwA,389
|
|
20
20
|
bl_console_utils/autocomplete/intellisense.py,sha256=xDJSSliCSB7zLfprMv3fhJ_8v9nDIbNjh4iWsPBSXGc,224
|
|
21
21
|
bl_console_utils/autocomplete/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
-
bl_i18n_utils/__init__.py,sha256=
|
|
22
|
+
bl_i18n_utils/__init__.py,sha256=Zf-v6s6BmS2qcMgYUXiSeSl42kW9km9thQYvsaq02Rc,253
|
|
23
23
|
bl_i18n_utils/bl_extract_messages.py,sha256=CGDo_zEECIRqL9T2KH2uEmyQwWqvrhMaufHB14eLDDI,1291
|
|
24
24
|
bl_i18n_utils/merge_po.py,sha256=OhoBaW8ucVvvFHfvVDdnb9lu-tcSqunHBLNNjqWeVVM,112
|
|
25
25
|
bl_i18n_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -28,7 +28,7 @@ bl_i18n_utils/utils.py,sha256=aryTDpTgcQzkslzcFjd7EQ2vQdZ0Zlk9Xoaq2hml4hM,4191
|
|
|
28
28
|
bl_i18n_utils/utils_cli.py,sha256=QyGeAstQg58HmOKJOtTxDF_ivivu_qTj2Ey8hg7VbPQ,426
|
|
29
29
|
bl_i18n_utils/utils_languages_menu.py,sha256=vYKm7amC2CLWXpESzyfocyMBViVGgaSx4Gq0R4pTZSs,136
|
|
30
30
|
bl_i18n_utils/utils_rtl.py,sha256=cK223AOBjHT-a48D0bG4CXB-tK8_qk_iLULn8HHDEV0,188
|
|
31
|
-
bl_keymap_utils/__init__.py,sha256=
|
|
31
|
+
bl_keymap_utils/__init__.py,sha256=y_lKFreojfR2LuF1_vaEtqharHWMX0qqxtN00LbzgHw,208
|
|
32
32
|
bl_keymap_utils/io.py,sha256=zm4iPaSKw6oJHcuKExt3N8CQYV6863JmJWmKw1vUyLk,693
|
|
33
33
|
bl_keymap_utils/keymap_from_toolbar.py,sha256=wAg-NRqvXTB8kAe04RSWX2HA2IIdLcvX_3K3QwoH9aE,165
|
|
34
34
|
bl_keymap_utils/keymap_hierarchy.py,sha256=1aHezC2A-HiVlALoJhZToL-Ptr7Su_kTzd1EmZ7TfkI,116
|
|
@@ -37,7 +37,7 @@ bl_keymap_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
37
37
|
bl_keymap_utils/versioning.py,sha256=i_F1unt1E48PkK8cHkyuyXyOVGYjtPSSuB0H7IeNm5s,157
|
|
38
38
|
bl_math/__init__.py,sha256=HuKBzISCORSFYStQOmmSfZkoEp7P1yYqulWMh4DlLFo,1600
|
|
39
39
|
bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
-
bl_operators/__init__.py,sha256=
|
|
40
|
+
bl_operators/__init__.py,sha256=7BIsOtT6Wvgf1sEJko9UZMdzqIo9HHR3TUdyuLVL5bA,897
|
|
41
41
|
bl_operators/add_mesh_torus.py,sha256=ESE7JqYi0GJiPj89LmgjiAiSiJV943agNEB8Xewj5rI,2820
|
|
42
42
|
bl_operators/anim.py,sha256=Ku3AxXxJg-4vjomBVfHKqQZ8myzagRH0DQXeXNK32KM,15398
|
|
43
43
|
bl_operators/assets.py,sha256=6DaFpg0vV4LK97GqGfqnbgI54rFgw8PzwglU3yZ2kzY,7069
|
|
@@ -79,7 +79,7 @@ bl_rna_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
79
79
|
bl_text_utils/__init__.py,sha256=mA4rhlhHGbhXjawE0_uzcLQZhw4Rj4xm5DsFzDaoR0I,100
|
|
80
80
|
bl_text_utils/external_editor.py,sha256=uZ85B8RMbHYByZgDttYvq1HvYw96djWRTBOOBdYz3a4,150
|
|
81
81
|
bl_text_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
|
-
bl_ui/__init__.py,sha256=
|
|
82
|
+
bl_ui/__init__.py,sha256=_XzPCJSOc-g-EruZWvN2cq2rLRJK4h8FUKIwXRLFT9k,10429
|
|
83
83
|
bl_ui/asset_shelf.py,sha256=vsUJdmc6qMwSUw6LG0DdvfBnGU_9XzGf8aM6JSgxTSU,2443
|
|
84
84
|
bl_ui/generic_ui_list.py,sha256=qVS6kLVZIfhxSIlkEvdD6VtJ_p32nD_MUzeK2Jpf2KU,7770
|
|
85
85
|
bl_ui/node_add_menu.py,sha256=BaGnC0A1Dgtch576n-2KloP1kd22lYY2lnd2c9vP4PQ,3123
|
|
@@ -156,7 +156,7 @@ bl_ui/space_userpref.py,sha256=ykwSG8SmzmeeFJPi7HciqhARflIJYVd7hrhZNPzfRUY,22000
|
|
|
156
156
|
bl_ui/space_view3d.py,sha256=s2lhe0nBI927tcqSlnveeyNEBfCCu26T3kxhn0uo8v8,647269
|
|
157
157
|
bl_ui/space_view3d_toolbar.py,sha256=-4AzEHAdL9xj-P_AAaGMcpwEl7qb4ovrnpJkNJKMhFc,243469
|
|
158
158
|
bl_ui/utils.py,sha256=K5yqT-IaUcR3sNZqrpwJUphTNa1MdLiaLR1uwirv2q0,618
|
|
159
|
-
bl_ui_utils/__init__.py,sha256=
|
|
159
|
+
bl_ui_utils/__init__.py,sha256=09VcD0Qr5ySzpITMc17GRGqGUrN-qjyG6qBeq0jgIFk,120
|
|
160
160
|
bl_ui_utils/bug_report_url.py,sha256=M51wZHtWA958vDu6plUC7IUcSWPVAZbp802cD40Pe7s,142
|
|
161
161
|
bl_ui_utils/layout.py,sha256=b7jcmjKLkH_2T8APBi-x_Mq87uYb3SHcSet6vVQ8UQQ,142
|
|
162
162
|
bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -170,19 +170,19 @@ bmesh/ops.py,sha256=C852Zt3wgC-2F9ucuEIOlpq7YLro8lZMPZsg8SKQTjo,77359
|
|
|
170
170
|
bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
171
171
|
bmesh/types.py,sha256=oYEC1mdFyB4xuouSZ81BykLlOcfQf3TIzwi3KEM2_Kg,37528
|
|
172
172
|
bmesh/utils.py,sha256=xljVJDVm-7bKplQoobdKQOeWHwINjMMe-Azb274XOz4,6556
|
|
173
|
-
bpy/__init__.py,sha256=
|
|
173
|
+
bpy/__init__.py,sha256=v-Mt-IHTcT1Ws3-JjCAf6zAPap0Q2Mjs8NsxcMaT5x4,338
|
|
174
174
|
bpy/msgbus.py,sha256=iU7oyEPGqk30JvYfwUTx89kfSPmxLXmzo92Xgc9mmhg,1669
|
|
175
175
|
bpy/path.py,sha256=y_nSzvITDZDD5L45io2KmiOJDOWIRm6LPMZT14surqg,6327
|
|
176
176
|
bpy/props.py,sha256=FhZ7Ne0nnqoYjeNENCm2c99RpOvPDmaBsXEA4HReUaQ,29328
|
|
177
177
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
178
|
-
bpy/types.py,sha256=
|
|
179
|
-
bpy/app/__init__.py,sha256=
|
|
178
|
+
bpy/types.py,sha256=b2ab8a4vz5oaPmXpDBptudaE42ZKqX3ow0J9yKS14Qw,3578951
|
|
179
|
+
bpy/app/__init__.py,sha256=yNrEMGmq2Z0zZzbVGaP2glIMFSRbYaq840Ib1STucHI,9210
|
|
180
180
|
bpy/app/handlers.py,sha256=7DaM8QZ79D5nHstZ4ZDM6yBZCde38yDUQ9BbNy6UK4E,5838
|
|
181
181
|
bpy/app/icons.py,sha256=L1J2n6QE3FEDrzSvf8jdmHr2SkMoY-ejZq1sS1o0UgY,1157
|
|
182
182
|
bpy/app/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
183
183
|
bpy/app/timers.py,sha256=XaSmMpe33D0yHdkOrYBGOJb6KA7fM2ciQiWCrAQhNUg,1476
|
|
184
184
|
bpy/app/translations.py,sha256=WPGkHLCBiSBZnxrl2nFNUjX9llLi-CKZfBqoCvw0yq4,4499
|
|
185
|
-
bpy/ops/__init__.py,sha256=
|
|
185
|
+
bpy/ops/__init__.py,sha256=03TVSYnSnJu1xtCaXV6A2jn0fYcTchV8qI1F4yB8As0,1751
|
|
186
186
|
bpy/ops/action.py,sha256=DmRPlY_eVfSEsmaSzvL1oQe5pDi8Thtcc5pOke1_Btc,29695
|
|
187
187
|
bpy/ops/anim.py,sha256=woPbB120Wo54gaVjzAnnHbnZAv7A1x3YWrZt2SC9e0w,38872
|
|
188
188
|
bpy/ops/armature.py,sha256=-4Guf6-QVitqY0RvcbjfAYQqJx1PrWvjGxpdE7PVAmI,34409
|
|
@@ -258,15 +258,15 @@ bpy/ops/uilist.py,sha256=CvKQWaIkvk35QZNJ4JYrxDLmoq6HEq06a1wJY3Nqh3E,3256
|
|
|
258
258
|
bpy/ops/uv.py,sha256=YpOgyzNq9dQv6TF0JiMhujDcuiPOPRlAeW8PI5zV51g,62478
|
|
259
259
|
bpy/ops/view2d.py,sha256=_GBefdie6MtPgihbLXWUxdwxmzbQ3y3pMoy5Ieng2Ns,12729
|
|
260
260
|
bpy/ops/view3d.py,sha256=zwPEfpDKR9qR-XQdQ-J-_NGP9jCq8kJgBWUZdO8lzq0,59752
|
|
261
|
-
bpy/ops/wm.py,sha256=
|
|
261
|
+
bpy/ops/wm.py,sha256=vvrZb_VRFHt9xJWnwkHEgtcVFnv4iAfw-hP1XDLsWK4,290533
|
|
262
262
|
bpy/ops/workspace.py,sha256=PJnVkwoIojMxPW81k5iVz752k_ED1NG76S0IO2KbOUw,4154
|
|
263
263
|
bpy/ops/world.py,sha256=gVKvKri-E8mwwU3ZZXc09h_nwoe7XE3YVOH8boBUogM,572
|
|
264
|
-
bpy/utils/__init__.py,sha256=
|
|
264
|
+
bpy/utils/__init__.py,sha256=R0mT4Z0kdkd651Xd1QOxHdfQi9jJvd2u_Wa7zlzoodw,11238
|
|
265
265
|
bpy/utils/previews.py,sha256=oGOL8p-TJh7jHzflLSQCT2WwrUGPLQBLUh8Dh2Gav7M,2314
|
|
266
266
|
bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
267
267
|
bpy/utils/units.py,sha256=lwJazbcrjfb-4hR-hpZFdZzaxhNJ6lYyIvwQOHI2lm4,2778
|
|
268
|
-
bpy_extras/__init__.py,sha256=
|
|
269
|
-
bpy_extras/anim_utils.py,sha256=
|
|
268
|
+
bpy_extras/__init__.py,sha256=H3KyRqzMR_0g_Dz4coyi8hIy6N_YhKKpCz-vCJixUF8,437
|
|
269
|
+
bpy_extras/anim_utils.py,sha256=gC1KEbCJEMIoDv9Cah9P56lGXyq_a2MxP-RbHuOaMCw,2924
|
|
270
270
|
bpy_extras/asset_utils.py,sha256=RtVNNGlGVc6K5QsRiVGdiQGtDuhZN39ijuJcAkp9F8o,498
|
|
271
271
|
bpy_extras/bmesh_utils.py,sha256=0x8qtsw1GfeTEuBemF6-YgNs7oG3cEkpX6_z_QInIpg,213
|
|
272
272
|
bpy_extras/id_map_utils.py,sha256=VzlLilMdf4ceZrZtjUOTKPpCA_yvv-GzottxjRLsX-0,447
|
|
@@ -350,7 +350,7 @@ rna_xml/__init__.py,sha256=gVXdeZEyySdOsTsovZP6-COW4AShgF0ow2wSnF_a-TQ,606
|
|
|
350
350
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
351
351
|
sys_info/__init__.py,sha256=R6zN_jJrhmc_QgS9X_BQrknsTTUotqadk1HGwEnhwEg,129
|
|
352
352
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
353
|
-
fake_bpy_module-
|
|
354
|
-
fake_bpy_module-
|
|
355
|
-
fake_bpy_module-
|
|
356
|
-
fake_bpy_module-
|
|
353
|
+
fake_bpy_module-20231205.dist-info/METADATA,sha256=mjrI0Eagp_lNOLi7IXbT3yKGfJi4bieOiUbT4tC5W-o,7008
|
|
354
|
+
fake_bpy_module-20231205.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
355
|
+
fake_bpy_module-20231205.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
356
|
+
fake_bpy_module-20231205.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|