fake-bpy-module 20231204__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 +2 -2
- bl_i18n_utils/__init__.py +4 -4
- bl_keymap_utils/__init__.py +3 -3
- bl_operators/__init__.py +21 -21
- bl_ui/__init__.py +61 -61
- bpy/__init__.py +1 -1
- bpy/app/__init__.py +2 -2
- bpy/ops/__init__.py +62 -62
- bpy/ops/wm.py +3 -0
- bpy/types.py +113 -113
- bpy/utils/__init__.py +1 -1
- bpy_extras/__init__.py +1 -1
- bpy_extras/anim_utils.py +2 -2
- {fake_bpy_module-20231204.dist-info → fake_bpy_module-20231205.dist-info}/METADATA +1 -1
- {fake_bpy_module-20231204.dist-info → fake_bpy_module-20231205.dist-info}/RECORD +17 -17
- {fake_bpy_module-20231204.dist-info → fake_bpy_module-20231205.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20231204.dist-info → fake_bpy_module-20231205.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import
|
|
3
|
+
from . import complete_namespace
|
|
4
4
|
from . import intellisense
|
|
5
|
+
from . import complete_calltip
|
|
5
6
|
from . import complete_import
|
|
6
|
-
from . import complete_namespace
|
|
7
7
|
|
|
8
8
|
GenericType = typing.TypeVar("GenericType")
|
bl_i18n_utils/__init__.py
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import merge_po
|
|
4
|
-
from . import bl_extract_messages
|
|
5
3
|
from . import utils_cli
|
|
4
|
+
from . import settings
|
|
6
5
|
from . import utils_languages_menu
|
|
7
|
-
from . import
|
|
6
|
+
from . import bl_extract_messages
|
|
7
|
+
from . import merge_po
|
|
8
8
|
from . import utils_rtl
|
|
9
|
-
from . import
|
|
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 keymap_hierarchy
|
|
5
|
-
from . import versioning
|
|
6
3
|
from . import io
|
|
4
|
+
from . import keymap_hierarchy
|
|
5
|
+
from . import keymap_from_toolbar
|
|
7
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
|
|
4
|
-
from . import constraint
|
|
5
|
-
from . import anim
|
|
6
|
-
from . import uvcalc_lightmap
|
|
7
|
-
from . import geometry_nodes
|
|
8
|
-
from . import console
|
|
3
|
+
from . import bmesh
|
|
9
4
|
from . import node
|
|
10
|
-
from . import object_randomize_transform
|
|
11
|
-
from . import image
|
|
12
|
-
from . import sequencer
|
|
13
|
-
from . import add_mesh_torus
|
|
14
|
-
from . import userpref
|
|
15
|
-
from . import vertexpaint_dirt
|
|
16
5
|
from . import assets
|
|
6
|
+
from . import view3d
|
|
17
7
|
from . import uvcalc_transform
|
|
18
|
-
from . import
|
|
19
|
-
from . import
|
|
8
|
+
from . import object_align
|
|
9
|
+
from . import console
|
|
10
|
+
from . import userpref
|
|
11
|
+
from . import uvcalc_lightmap
|
|
12
|
+
from . import clip
|
|
13
|
+
from . import constraint
|
|
20
14
|
from . import rigidbody
|
|
21
|
-
from . import
|
|
15
|
+
from . import add_mesh_torus
|
|
16
|
+
from . import vertexpaint_dirt
|
|
22
17
|
from . import mesh
|
|
23
|
-
from . import
|
|
24
|
-
from . import view3d
|
|
25
|
-
from . import object_align
|
|
26
|
-
from . import freestyle
|
|
27
|
-
from . import screen_play_rendered_anim
|
|
28
|
-
from . import bmesh
|
|
18
|
+
from . import object_randomize_transform
|
|
29
19
|
from . import wm
|
|
20
|
+
from . import geometry_nodes
|
|
21
|
+
from . import screen_play_rendered_anim
|
|
30
22
|
from . import uvcalc_follow_active
|
|
31
23
|
from . import spreadsheet
|
|
24
|
+
from . import image
|
|
25
|
+
from . import file
|
|
26
|
+
from . import freestyle
|
|
27
|
+
from . import object_quick_effects
|
|
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
|
|
5
|
+
from . import properties_data_empty
|
|
6
|
+
from . import properties_material
|
|
6
7
|
from . import properties_data_speaker
|
|
7
|
-
from . import
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
10
|
-
from . import properties_data_curves
|
|
11
|
-
from . import properties_freestyle
|
|
12
|
-
from . import properties_mask_common
|
|
13
|
-
from . import space_view3d
|
|
14
|
-
from . import properties_physics_geometry_nodes
|
|
15
|
-
from . import space_topbar
|
|
16
|
-
from . import properties_data_curve
|
|
17
|
-
from . import properties_data_shaderfx
|
|
18
|
-
from . import properties_texture
|
|
19
|
-
from . import space_properties
|
|
20
|
-
from . import properties_workspace
|
|
21
|
-
from . import properties_data_bone
|
|
22
|
-
from . import space_toolsystem_common
|
|
8
|
+
from . import properties_data_metaball
|
|
9
|
+
from . import properties_data_lattice
|
|
10
|
+
from . import node_add_menu_geometry
|
|
23
11
|
from . import properties_scene
|
|
24
|
-
from . import space_spreadsheet
|
|
25
12
|
from . import space_text
|
|
26
|
-
from . import
|
|
27
|
-
from . import
|
|
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
|
|
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
|
|
28
23
|
from . import properties_grease_pencil_common
|
|
29
|
-
from . import
|
|
30
|
-
from . import
|
|
31
|
-
from . import
|
|
32
|
-
from . import
|
|
24
|
+
from . import space_filebrowser
|
|
25
|
+
from . import properties_collection
|
|
26
|
+
from . import properties_data_shaderfx
|
|
27
|
+
from . import space_properties
|
|
28
|
+
from . import space_userpref
|
|
29
|
+
from . import properties_paint_common
|
|
30
|
+
from . import space_view3d
|
|
33
31
|
from . import properties_animviz
|
|
34
|
-
from . import
|
|
35
|
-
from . import space_nla
|
|
36
|
-
from . import node_add_menu_geometry
|
|
37
|
-
from . import space_outliner
|
|
38
|
-
from . import space_node
|
|
32
|
+
from . import properties_physics_dynamicpaint
|
|
39
33
|
from . import properties_physics_rigidbody_constraint
|
|
40
|
-
from . import
|
|
41
|
-
from . import
|
|
42
|
-
from . import
|
|
43
|
-
from . import
|
|
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
|
|
44
39
|
from . import properties_particle
|
|
45
|
-
from . import
|
|
46
|
-
from . import
|
|
47
|
-
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
|
|
44
|
+
from . import space_toolsystem_toolbar
|
|
45
|
+
from . import properties_data_grease_pencil
|
|
46
|
+
from . import space_toolsystem_common
|
|
47
|
+
from . import properties_physics_fluid
|
|
48
48
|
from . import space_image
|
|
49
|
-
from . import properties_physics_field
|
|
50
|
-
from . import properties_data_camera
|
|
51
|
-
from . import properties_data_gpencil
|
|
52
|
-
from . import utils
|
|
53
|
-
from . import properties_data_metaball
|
|
54
|
-
from . import properties_physics_softbody
|
|
55
|
-
from . import properties_physics_rigidbody
|
|
56
|
-
from . import space_view3d_toolbar
|
|
57
49
|
from . import space_sequencer
|
|
58
|
-
from . import
|
|
59
|
-
from . import
|
|
60
|
-
from . import
|
|
50
|
+
from . import properties_data_armature
|
|
51
|
+
from . import properties_data_bone
|
|
52
|
+
from . import properties_data_lightprobe
|
|
53
|
+
from . import properties_mask_common
|
|
61
54
|
from . import properties_data_mesh
|
|
62
|
-
from . import
|
|
63
|
-
from . import
|
|
64
|
-
from . import
|
|
65
|
-
from . import
|
|
55
|
+
from . import space_info
|
|
56
|
+
from . import properties_physics_geometry_nodes
|
|
57
|
+
from . import properties_physics_common
|
|
58
|
+
from . import properties_data_volume
|
|
59
|
+
from . import space_topbar
|
|
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
|
|
66
68
|
from . import node_add_menu
|
|
67
|
-
from . import properties_material
|
|
68
|
-
from . import space_dopesheet
|
|
69
69
|
from . import space_time
|
|
70
|
+
from . import properties_data_gpencil
|
|
70
71
|
from . import asset_shelf
|
|
71
|
-
from . import
|
|
72
|
-
from . import
|
|
73
|
-
from . import
|
|
74
|
-
from . import
|
|
75
|
-
from . import
|
|
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
|
|
77
|
+
from . import node_add_menu_shader
|
|
76
78
|
from . import properties_object
|
|
77
|
-
from . import
|
|
78
|
-
from . import properties_data_pointcloud
|
|
79
|
-
from . import properties_data_light
|
|
79
|
+
from . import space_spreadsheet
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
|
82
82
|
|
bpy/__init__.py
CHANGED
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 ui
|
|
5
|
-
from . import texture
|
|
3
|
+
from . import image
|
|
6
4
|
from . import cachefile
|
|
7
|
-
from . import
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
10
|
-
from . import
|
|
11
|
-
from . import
|
|
5
|
+
from . import dpaint
|
|
6
|
+
from . import render
|
|
7
|
+
from . import rigidbody
|
|
8
|
+
from . import curve
|
|
9
|
+
from . import sound
|
|
10
|
+
from . import mesh
|
|
11
|
+
from . import wm
|
|
12
|
+
from . import ptcache
|
|
13
|
+
from . import view2d
|
|
14
|
+
from . import gpencil
|
|
15
|
+
from . import lattice
|
|
16
|
+
from . import text
|
|
17
|
+
from . import brush
|
|
18
|
+
from . import buttons
|
|
12
19
|
from . import camera
|
|
13
|
-
from . import
|
|
14
|
-
from . import graph
|
|
15
|
-
from . import view3d
|
|
20
|
+
from . import export_scene
|
|
16
21
|
from . import gizmogroup
|
|
17
|
-
from . import
|
|
18
|
-
from . import
|
|
19
|
-
from . import
|
|
22
|
+
from . import console
|
|
23
|
+
from . import sculpt_curves
|
|
24
|
+
from . import constraint
|
|
25
|
+
from . import grease_pencil
|
|
26
|
+
from . import preferences
|
|
20
27
|
from . import asset
|
|
21
|
-
from . import curves
|
|
22
28
|
from . import export_anim
|
|
23
|
-
from . import
|
|
24
|
-
from . import mask
|
|
25
|
-
from . import paintcurve
|
|
26
|
-
from . import brush
|
|
27
|
-
from . import ptcache
|
|
28
|
-
from . import text
|
|
29
|
-
from . import ed
|
|
30
|
-
from . import dpaint
|
|
31
|
-
from . import import_mesh
|
|
29
|
+
from . import transform
|
|
32
30
|
from . import nla
|
|
31
|
+
from . import object
|
|
32
|
+
from . import import_curve
|
|
33
|
+
from . import fluid
|
|
34
|
+
from . import graph
|
|
35
|
+
from . import boid
|
|
36
|
+
from . import clip
|
|
33
37
|
from . import import_scene
|
|
34
|
-
from . import palette
|
|
35
|
-
from . import geometry
|
|
36
|
-
from . import console
|
|
37
|
-
from . import buttons
|
|
38
|
-
from . import file
|
|
39
|
-
from . import workspace
|
|
40
|
-
from . import uilist
|
|
41
38
|
from . import material
|
|
42
|
-
from . import
|
|
43
|
-
from . import curve
|
|
39
|
+
from . import sequencer
|
|
44
40
|
from . import export_mesh
|
|
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
|
|
48
|
+
from . import particle
|
|
49
|
+
from . import action
|
|
45
50
|
from . import text_editor
|
|
46
|
-
from . import
|
|
47
|
-
from . import cycles
|
|
48
|
-
from . import lattice
|
|
49
|
-
from . import sculpt_curves
|
|
51
|
+
from . import geometry
|
|
50
52
|
from . import screen
|
|
51
|
-
from . import
|
|
52
|
-
from . import
|
|
53
|
-
from . import surface
|
|
54
|
-
from . import anim
|
|
55
|
-
from . import node
|
|
56
|
-
from . import render
|
|
57
|
-
from . import sculpt
|
|
58
|
-
from . import boid
|
|
59
|
-
from . import import_curve
|
|
60
|
-
from . import scene
|
|
61
|
-
from . import grease_pencil
|
|
62
|
-
from . import import_anim
|
|
53
|
+
from . import info
|
|
54
|
+
from . import mask
|
|
63
55
|
from . import armature
|
|
64
|
-
from . import
|
|
65
|
-
from . import
|
|
66
|
-
from . import
|
|
67
|
-
from . import
|
|
56
|
+
from . import script
|
|
57
|
+
from . import sculpt
|
|
58
|
+
from . import poselib
|
|
59
|
+
from . import paint
|
|
60
|
+
from . import anim
|
|
61
|
+
from . import cloth
|
|
62
|
+
from . import view3d
|
|
63
|
+
from . import surface
|
|
68
64
|
from . import pose
|
|
69
|
-
from . import
|
|
70
|
-
from . import
|
|
65
|
+
from . import world
|
|
66
|
+
from . import cycles
|
|
67
|
+
from . import file
|
|
68
|
+
from . import import_anim
|
|
69
|
+
from . import ed
|
|
70
|
+
from . import scene
|
|
71
|
+
from . import texture
|
|
71
72
|
from . import uv
|
|
72
|
-
from . import info
|
|
73
|
-
from . import mball
|
|
74
73
|
from . import font
|
|
75
|
-
from . import
|
|
76
|
-
from . import
|
|
77
|
-
from . import
|
|
78
|
-
from . import
|
|
79
|
-
from . import
|
|
74
|
+
from . import marker
|
|
75
|
+
from . import curves
|
|
76
|
+
from . import mball
|
|
77
|
+
from . import palette
|
|
78
|
+
from . import collection
|
|
79
|
+
from . import ui
|
|
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,93 +2,93 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import mathutils
|
|
4
4
|
import bpy
|
|
5
|
-
import bl_ui.
|
|
5
|
+
import bl_ui.properties_data_empty
|
|
6
|
+
import bl_ui.properties_material
|
|
6
7
|
import bl_ui.properties_data_speaker
|
|
7
|
-
import bl_ui.properties_material_gpencil
|
|
8
|
-
import bl_operators.clip
|
|
9
|
-
import bl_ui.node_add_menu_compositor
|
|
10
|
-
import bl_ui.generic_ui_list
|
|
11
|
-
import bl_ui.properties_data_curves
|
|
12
|
-
import bl_operators.constraint
|
|
13
|
-
import bl_ui.properties_freestyle
|
|
14
|
-
import bl_operators.anim
|
|
15
|
-
import bl_ui.properties_mask_common
|
|
16
|
-
import bl_ui.space_view3d
|
|
17
|
-
import bl_ui.properties_physics_geometry_nodes
|
|
18
|
-
import bl_ui.space_topbar
|
|
19
|
-
import bl_ui.properties_data_curve
|
|
20
8
|
import bl_operators.node
|
|
21
|
-
import
|
|
22
|
-
import bl_ui.
|
|
23
|
-
import bl_ui.
|
|
24
|
-
import bl_ui.
|
|
25
|
-
import bl_ui.properties_data_bone
|
|
26
|
-
import bl_ui.space_toolsystem_common
|
|
27
|
-
import bl_ui
|
|
9
|
+
import bl_operators.assets
|
|
10
|
+
import bl_ui.properties_data_metaball
|
|
11
|
+
import bl_ui.properties_data_lattice
|
|
12
|
+
import bl_ui.node_add_menu_geometry
|
|
28
13
|
import bl_ui.properties_scene
|
|
29
|
-
import
|
|
14
|
+
import bl_operators.view3d
|
|
30
15
|
import bl_ui.space_text
|
|
31
|
-
import bl_ui.
|
|
32
|
-
import bl_ui.
|
|
16
|
+
import bl_ui.space_clip
|
|
17
|
+
import bl_ui.properties_physics_field
|
|
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
|
|
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
|
|
33
27
|
import bl_ui.properties_grease_pencil_common
|
|
34
|
-
import bl_ui.properties_world
|
|
35
|
-
import bl_ui.properties_data_volume
|
|
36
|
-
import bl_ui.properties_physics_cloth
|
|
37
28
|
import bl_operators.userpref
|
|
29
|
+
import bl_ui.space_filebrowser
|
|
30
|
+
import bl_ui.properties_collection
|
|
31
|
+
import bl_ui.properties_data_shaderfx
|
|
32
|
+
import bl_operators.clip
|
|
33
|
+
import bl_ui.space_properties
|
|
34
|
+
import bl_ui.space_userpref
|
|
35
|
+
import bl_ui.properties_paint_common
|
|
36
|
+
import bl_ui.space_view3d
|
|
37
|
+
import bl_operators.constraint
|
|
38
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
39
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
38
40
|
import bl_ui.properties_render
|
|
39
|
-
import bl_ui.
|
|
40
|
-
import bl_ui.space_nla
|
|
41
|
-
import bl_ui.node_add_menu_geometry
|
|
42
|
-
import bl_ui.space_outliner
|
|
43
|
-
import bl_operators.assets
|
|
41
|
+
import bl_ui.properties_physics_cloth
|
|
44
42
|
import bl_ui.space_node
|
|
45
|
-
import bl_ui.
|
|
46
|
-
import bl_ui.properties_collection
|
|
47
|
-
import bl_ui.properties_data_empty
|
|
48
|
-
import bl_ui.properties_data_armature
|
|
49
|
-
import bl_ui.properties_data_grease_pencil
|
|
43
|
+
import bl_ui.properties_data_curves
|
|
50
44
|
import bl_ui.properties_particle
|
|
51
|
-
import bl_ui.
|
|
52
|
-
import bl_ui.
|
|
53
|
-
import
|
|
54
|
-
import bl_ui.
|
|
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
|
|
49
|
+
import bl_ui.space_toolsystem_toolbar
|
|
50
|
+
import bl_operators.wm
|
|
51
|
+
import bl_ui.properties_data_grease_pencil
|
|
52
|
+
import bl_ui.space_toolsystem_common
|
|
53
|
+
import bl_ui.properties_physics_fluid
|
|
55
54
|
import bl_ui.space_image
|
|
56
|
-
import bl_ui.properties_physics_field
|
|
57
|
-
import bl_operators.object
|
|
58
|
-
import bl_ui.properties_data_camera
|
|
59
|
-
import bl_ui.properties_data_gpencil
|
|
60
|
-
import bl_ui.properties_data_metaball
|
|
61
|
-
import bl_ui.properties_physics_softbody
|
|
62
|
-
import bl_ui.properties_physics_rigidbody
|
|
63
|
-
import bl_ui.space_view3d_toolbar
|
|
64
55
|
import bl_ui.space_sequencer
|
|
65
|
-
import
|
|
66
|
-
import bl_ui.
|
|
67
|
-
import
|
|
68
|
-
import bl_ui.
|
|
69
|
-
import bl_operators.freestyle
|
|
70
|
-
import bl_ui.properties_physics_common
|
|
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
|
|
71
60
|
import bl_ui.properties_data_mesh
|
|
72
|
-
import bl_ui.space_toolsystem_toolbar
|
|
73
|
-
import bl_ui.properties_data_modifier
|
|
74
|
-
import bl_ui.node_add_menu_texture
|
|
75
|
-
import bl_ui.properties_physics_dynamicpaint
|
|
76
|
-
import bl_ui.node_add_menu
|
|
77
|
-
import bl_ui.properties_material
|
|
78
|
-
import bl_ui.space_dopesheet
|
|
79
|
-
import bl_ui.space_time
|
|
80
|
-
import bl_ui.asset_shelf
|
|
81
|
-
import bl_ui.space_console
|
|
82
61
|
import bl_ui.space_info
|
|
83
|
-
import
|
|
84
|
-
import bl_ui.
|
|
85
|
-
import bl_ui.
|
|
86
|
-
import bl_ui.properties_constraint
|
|
62
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
63
|
+
import bl_ui.properties_physics_common
|
|
64
|
+
import bl_ui.properties_data_volume
|
|
87
65
|
import bl_operators.spreadsheet
|
|
88
|
-
import bl_ui.
|
|
66
|
+
import bl_ui.space_topbar
|
|
89
67
|
import bl_ui.properties_view_layer
|
|
68
|
+
import bl_ui.properties_material_gpencil
|
|
69
|
+
import bl_operators.file
|
|
70
|
+
import bl_operators.freestyle
|
|
90
71
|
import bl_ui.properties_data_pointcloud
|
|
91
|
-
import
|
|
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
|
|
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
|
|
|
@@ -6810,10 +6810,10 @@ class Context(bpy_struct):
|
|
|
6810
6810
|
:type: 'UIList'
|
|
6811
6811
|
'''
|
|
6812
6812
|
|
|
6813
|
-
property: typing.Union[
|
|
6813
|
+
property: typing.Union[str, int, 'ID'] = None
|
|
6814
6814
|
''' Get the property associated with a hovered button. Returns a tuple of the datablock, data path to the property, and array index.
|
|
6815
6815
|
|
|
6816
|
-
:type: typing.Union[
|
|
6816
|
+
:type: typing.Union[str, int, 'ID']
|
|
6817
6817
|
'''
|
|
6818
6818
|
|
|
6819
6819
|
edit_text: 'Text' = None
|
|
@@ -14788,7 +14788,7 @@ class Gizmo(bpy_struct):
|
|
|
14788
14788
|
|
|
14789
14789
|
def modal(self, context: 'Context', event: 'Event', tweak: typing.Optional[
|
|
14790
14790
|
typing.Union[typing.Set[str], typing.Set[int]]]
|
|
14791
|
-
) -> typing.Union[typing.Set[
|
|
14791
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
14792
14792
|
'''
|
|
14793
14793
|
|
|
14794
14794
|
:param context:
|
|
@@ -14797,7 +14797,7 @@ class Gizmo(bpy_struct):
|
|
|
14797
14797
|
:type event: 'Event'
|
|
14798
14798
|
:param tweak: Tweak
|
|
14799
14799
|
:type tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
14800
|
-
:rtype: typing.Union[typing.Set[
|
|
14800
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
14801
14801
|
:return: result
|
|
14802
14802
|
'''
|
|
14803
14803
|
pass
|
|
@@ -14809,14 +14809,14 @@ class Gizmo(bpy_struct):
|
|
|
14809
14809
|
pass
|
|
14810
14810
|
|
|
14811
14811
|
def invoke(self, context: 'Context', event: 'Event'
|
|
14812
|
-
) -> typing.Union[typing.Set[
|
|
14812
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
14813
14813
|
'''
|
|
14814
14814
|
|
|
14815
14815
|
:param context:
|
|
14816
14816
|
:type context: 'Context'
|
|
14817
14817
|
:param event:
|
|
14818
14818
|
:type event: 'Event'
|
|
14819
|
-
:rtype: typing.Union[typing.Set[
|
|
14819
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
14820
14820
|
:return: result
|
|
14821
14821
|
'''
|
|
14822
14822
|
pass
|
|
@@ -17326,10 +17326,10 @@ class KeyingSetInfo(bpy_struct):
|
|
|
17326
17326
|
:type: typing.Union[str, typing.Any]
|
|
17327
17327
|
'''
|
|
17328
17328
|
|
|
17329
|
-
bl_options: typing.Union[typing.Set[
|
|
17329
|
+
bl_options: typing.Union[typing.Set[str], typing.Set[int]] = None
|
|
17330
17330
|
''' Keying Set options to use when inserting keyframes
|
|
17331
17331
|
|
|
17332
|
-
:type: typing.Union[typing.Set[
|
|
17332
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
17333
17333
|
'''
|
|
17334
17334
|
|
|
17335
17335
|
def poll(self, context: typing.Optional['Context']) -> bool:
|
|
@@ -17778,10 +17778,10 @@ class Macro(bpy_struct):
|
|
|
17778
17778
|
:type: typing.Union[str, typing.Any]
|
|
17779
17779
|
'''
|
|
17780
17780
|
|
|
17781
|
-
bl_options: typing.Union[typing.Set[
|
|
17781
|
+
bl_options: typing.Union[typing.Set[str], typing.Set[int]] = None
|
|
17782
17782
|
''' Options for this operator type
|
|
17783
17783
|
|
|
17784
|
-
:type: typing.Union[typing.Set[
|
|
17784
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
17785
17785
|
'''
|
|
17786
17786
|
|
|
17787
17787
|
bl_translation_context: typing.Union[str, typing.Any] = None
|
|
@@ -17815,12 +17815,12 @@ class Macro(bpy_struct):
|
|
|
17815
17815
|
'''
|
|
17816
17816
|
|
|
17817
17817
|
def report(self, type: typing.Optional[
|
|
17818
|
-
typing.Union[typing.Set[
|
|
17818
|
+
typing.Union[typing.Set[str], typing.Set[int]]],
|
|
17819
17819
|
message: typing.Union[str, typing.Any]):
|
|
17820
17820
|
''' report
|
|
17821
17821
|
|
|
17822
17822
|
:param type: Type
|
|
17823
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
17823
|
+
:type type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
17824
17824
|
:param message: Report Message
|
|
17825
17825
|
:type message: typing.Union[str, typing.Any]
|
|
17826
17826
|
'''
|
|
@@ -22815,10 +22815,10 @@ class Operator(bpy_struct):
|
|
|
22815
22815
|
:type: typing.Union[str, typing.Any]
|
|
22816
22816
|
'''
|
|
22817
22817
|
|
|
22818
|
-
bl_options: typing.Union[typing.Set[
|
|
22818
|
+
bl_options: typing.Union[typing.Set[str], typing.Set[int]] = None
|
|
22819
22819
|
''' Options for this operator type
|
|
22820
22820
|
|
|
22821
|
-
:type: typing.Union[typing.Set[
|
|
22821
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
22822
22822
|
'''
|
|
22823
22823
|
|
|
22824
22824
|
bl_translation_context: typing.Union[str, typing.Any] = None
|
|
@@ -22876,12 +22876,12 @@ class Operator(bpy_struct):
|
|
|
22876
22876
|
'''
|
|
22877
22877
|
|
|
22878
22878
|
def report(self, type: typing.Optional[
|
|
22879
|
-
typing.Union[typing.Set[
|
|
22879
|
+
typing.Union[typing.Set[str], typing.Set[int]]],
|
|
22880
22880
|
message: typing.Union[str, typing.Any]):
|
|
22881
22881
|
''' report
|
|
22882
22882
|
|
|
22883
22883
|
:param type: Type
|
|
22884
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
22884
|
+
:type type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
22885
22885
|
:param message: Report Message
|
|
22886
22886
|
:type message: typing.Union[str, typing.Any]
|
|
22887
22887
|
'''
|
|
@@ -22906,12 +22906,12 @@ class Operator(bpy_struct):
|
|
|
22906
22906
|
pass
|
|
22907
22907
|
|
|
22908
22908
|
def execute(self, context: 'Context'
|
|
22909
|
-
) -> typing.Union[typing.Set[
|
|
22909
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
22910
22910
|
''' Execute the operator
|
|
22911
22911
|
|
|
22912
22912
|
:param context:
|
|
22913
22913
|
:type context: 'Context'
|
|
22914
|
-
:rtype: typing.Union[typing.Set[
|
|
22914
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
22915
22915
|
:return: result
|
|
22916
22916
|
'''
|
|
22917
22917
|
pass
|
|
@@ -22927,27 +22927,27 @@ class Operator(bpy_struct):
|
|
|
22927
22927
|
pass
|
|
22928
22928
|
|
|
22929
22929
|
def invoke(self, context: 'Context', event: 'Event'
|
|
22930
|
-
) -> typing.Union[typing.Set[
|
|
22930
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
22931
22931
|
''' Invoke the operator
|
|
22932
22932
|
|
|
22933
22933
|
:param context:
|
|
22934
22934
|
:type context: 'Context'
|
|
22935
22935
|
:param event:
|
|
22936
22936
|
:type event: 'Event'
|
|
22937
|
-
:rtype: typing.Union[typing.Set[
|
|
22937
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
22938
22938
|
:return: result
|
|
22939
22939
|
'''
|
|
22940
22940
|
pass
|
|
22941
22941
|
|
|
22942
22942
|
def modal(self, context: 'Context', event: 'Event'
|
|
22943
|
-
) -> typing.Union[typing.Set[
|
|
22943
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
22944
22944
|
''' Modal operator function
|
|
22945
22945
|
|
|
22946
22946
|
:param context:
|
|
22947
22947
|
:type context: 'Context'
|
|
22948
22948
|
:param event:
|
|
22949
22949
|
:type event: 'Event'
|
|
22950
|
-
:rtype: typing.Union[typing.Set[
|
|
22950
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
22951
22951
|
:return: result
|
|
22952
22952
|
'''
|
|
22953
22953
|
pass
|
|
@@ -28835,12 +28835,12 @@ class RenderEngine(bpy_struct):
|
|
|
28835
28835
|
pass
|
|
28836
28836
|
|
|
28837
28837
|
def report(self, type: typing.Optional[
|
|
28838
|
-
typing.Union[typing.Set[
|
|
28838
|
+
typing.Union[typing.Set[str], typing.Set[int]]],
|
|
28839
28839
|
message: typing.Union[str, typing.Any]):
|
|
28840
28840
|
''' Report info, warning or error messages
|
|
28841
28841
|
|
|
28842
28842
|
:param type: Type
|
|
28843
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
28843
|
+
:type type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
28844
28844
|
:param message: Report Message
|
|
28845
28845
|
:type message: typing.Union[str, typing.Any]
|
|
28846
28846
|
'''
|
|
@@ -40107,10 +40107,10 @@ class ToolSettings(bpy_struct):
|
|
|
40107
40107
|
:type: typing.Union[str, int]
|
|
40108
40108
|
'''
|
|
40109
40109
|
|
|
40110
|
-
snap_elements: typing.Union[typing.Set[
|
|
40110
|
+
snap_elements: typing.Union[typing.Set[str], typing.Set[int]] = None
|
|
40111
40111
|
''' Type of element to snap to
|
|
40112
40112
|
|
|
40113
|
-
:type: typing.Union[typing.Set[
|
|
40113
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
40114
40114
|
'''
|
|
40115
40115
|
|
|
40116
40116
|
snap_elements_base: typing.Union[typing.Set[str], typing.Set[int]] = None
|
|
@@ -65387,14 +65387,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65387
65387
|
@classmethod
|
|
65388
65388
|
def invoke_props_popup(cls, operator: typing.Optional['Operator'],
|
|
65389
65389
|
event: typing.Optional['Event']
|
|
65390
|
-
) -> typing.Union[typing.Set[
|
|
65390
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
65391
65391
|
''' Operator popup invoke (show operator properties and execute it automatically on changes)
|
|
65392
65392
|
|
|
65393
65393
|
:param operator: Operator to call
|
|
65394
65394
|
:type operator: typing.Optional['Operator']
|
|
65395
65395
|
:param event: Event
|
|
65396
65396
|
:type event: typing.Optional['Event']
|
|
65397
|
-
:rtype: typing.Union[typing.Set[
|
|
65397
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65398
65398
|
:return: result
|
|
65399
65399
|
'''
|
|
65400
65400
|
pass
|
|
@@ -65404,14 +65404,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65404
65404
|
cls,
|
|
65405
65405
|
operator: typing.Optional['Operator'],
|
|
65406
65406
|
width: typing.Optional[typing.Any] = 300
|
|
65407
|
-
) -> typing.Union[typing.Set[
|
|
65407
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
65408
65408
|
''' Operator dialog (non-autoexec popup) invoke (show operator properties and only execute it on click on OK button)
|
|
65409
65409
|
|
|
65410
65410
|
:param operator: Operator to call
|
|
65411
65411
|
:type operator: typing.Optional['Operator']
|
|
65412
65412
|
:param width: Width of the popup
|
|
65413
65413
|
:type width: typing.Optional[typing.Any]
|
|
65414
|
-
:rtype: typing.Union[typing.Set[
|
|
65414
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65415
65415
|
:return: result
|
|
65416
65416
|
'''
|
|
65417
65417
|
pass
|
|
@@ -65429,14 +65429,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65429
65429
|
def invoke_popup(cls,
|
|
65430
65430
|
operator: typing.Optional['Operator'],
|
|
65431
65431
|
width: typing.Optional[typing.Any] = 300
|
|
65432
|
-
) -> typing.Union[typing.Set[
|
|
65432
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
65433
65433
|
''' Operator popup invoke (only shows operator's properties, without executing it)
|
|
65434
65434
|
|
|
65435
65435
|
:param operator: Operator to call
|
|
65436
65436
|
:type operator: typing.Optional['Operator']
|
|
65437
65437
|
:param width: Width of the popup
|
|
65438
65438
|
:type width: typing.Optional[typing.Any]
|
|
65439
|
-
:rtype: typing.Union[typing.Set[
|
|
65439
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65440
65440
|
:return: result
|
|
65441
65441
|
'''
|
|
65442
65442
|
pass
|
|
@@ -65444,14 +65444,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65444
65444
|
@classmethod
|
|
65445
65445
|
def invoke_confirm(cls, operator: typing.Optional['Operator'],
|
|
65446
65446
|
event: typing.Optional['Event']
|
|
65447
|
-
) -> typing.Union[typing.Set[
|
|
65447
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
65448
65448
|
''' Operator confirmation popup (only to let user confirm the execution, no operator properties shown)
|
|
65449
65449
|
|
|
65450
65450
|
:param operator: Operator to call
|
|
65451
65451
|
:type operator: typing.Optional['Operator']
|
|
65452
65452
|
:param event: Event
|
|
65453
65453
|
:type event: typing.Optional['Event']
|
|
65454
|
-
:rtype: typing.Union[typing.Set[
|
|
65454
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65455
65455
|
:return: result
|
|
65456
65456
|
'''
|
|
65457
65457
|
pass
|
|
@@ -68576,10 +68576,10 @@ class DecimateModifier(Modifier, bpy_struct):
|
|
|
68576
68576
|
:type: typing.Union[str, int]
|
|
68577
68577
|
'''
|
|
68578
68578
|
|
|
68579
|
-
delimit: typing.Union[typing.Set[
|
|
68579
|
+
delimit: typing.Union[typing.Set[str], typing.Set[int]] = None
|
|
68580
68580
|
''' Limit merging geometry
|
|
68581
68581
|
|
|
68582
|
-
:type: typing.Union[typing.Set[
|
|
68582
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
68583
68583
|
'''
|
|
68584
68584
|
|
|
68585
68585
|
face_count: int = None
|
|
@@ -69414,10 +69414,10 @@ class MeshCacheModifier(Modifier, bpy_struct):
|
|
|
69414
69414
|
:type: typing.Union[str, typing.Any]
|
|
69415
69415
|
'''
|
|
69416
69416
|
|
|
69417
|
-
flip_axis: typing.Union[typing.Set[
|
|
69417
|
+
flip_axis: typing.Union[typing.Set[str], typing.Set[int]] = None
|
|
69418
69418
|
'''
|
|
69419
69419
|
|
|
69420
|
-
:type: typing.Union[typing.Set[
|
|
69420
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
69421
69421
|
'''
|
|
69422
69422
|
|
|
69423
69423
|
forward_axis: typing.Union[str, int] = None
|
|
@@ -108930,10 +108930,10 @@ class GeometryNodeCurveHandleTypeSelection(GeometryNode, NodeInternal, Node,
|
|
|
108930
108930
|
:type: typing.Union[str, int]
|
|
108931
108931
|
'''
|
|
108932
108932
|
|
|
108933
|
-
mode: typing.Union[typing.Set[
|
|
108933
|
+
mode: typing.Union[typing.Set[str], typing.Set[int]] = None
|
|
108934
108934
|
''' Whether to check the type of left and right handles
|
|
108935
108935
|
|
|
108936
|
-
:type: typing.Union[typing.Set[
|
|
108936
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
108937
108937
|
'''
|
|
108938
108938
|
|
|
108939
108939
|
@classmethod
|
|
@@ -109468,10 +109468,10 @@ class GeometryNodeCurveSetHandles(GeometryNode, NodeInternal, Node,
|
|
|
109468
109468
|
:type: typing.Union[str, int]
|
|
109469
109469
|
'''
|
|
109470
109470
|
|
|
109471
|
-
mode: typing.Union[typing.Set[
|
|
109471
|
+
mode: typing.Union[typing.Set[str], typing.Set[int]] = None
|
|
109472
109472
|
''' Whether to update left and right handles
|
|
109473
109473
|
|
|
109474
|
-
:type: typing.Union[typing.Set[
|
|
109474
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
109475
109475
|
'''
|
|
109476
109476
|
|
|
109477
109477
|
@classmethod
|
bpy/utils/__init__.py
CHANGED
bpy_extras/__init__.py
CHANGED
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
|
|
@@ -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
|