fake-bpy-module 20240106__py3-none-any.whl → 20240107__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 +2 -2
- bl_i18n_utils/__init__.pyi +4 -4
- bl_keymap_utils/__init__.pyi +3 -3
- bl_operators/__init__.pyi +18 -18
- bl_ui/__init__.pyi +60 -60
- bl_ui_utils/__init__.pyi +1 -1
- bpy/__init__.pyi +3 -3
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +63 -63
- bpy/ops/wm/__init__.pyi +25 -0
- bpy/types/__init__.pyi +112 -112
- bpy_extras/__init__.pyi +1 -1
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20240106.dist-info → fake_bpy_module-20240107.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240106.dist-info → fake_bpy_module-20240107.dist-info}/RECORD +17 -17
- {fake_bpy_module-20240106.dist-info → fake_bpy_module-20240107.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240106.dist-info → fake_bpy_module-20240107.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
3
|
from . import complete_calltip
|
|
4
|
-
from . import complete_import
|
|
5
|
-
from . import complete_namespace
|
|
6
4
|
from . import intellisense
|
|
5
|
+
from . import complete_namespace
|
|
6
|
+
from . import complete_import
|
|
7
7
|
|
|
8
8
|
GenericType = typing.TypeVar("GenericType")
|
bl_i18n_utils/__init__.pyi
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import utils
|
|
4
|
-
from . import utils_languages_menu
|
|
5
|
-
from . import bl_extract_messages
|
|
6
3
|
from . import utils_cli
|
|
4
|
+
from . import utils_rtl
|
|
5
|
+
from . import bl_extract_messages
|
|
6
|
+
from . import utils
|
|
7
7
|
from . import merge_po
|
|
8
8
|
from . import settings
|
|
9
|
-
from . import
|
|
9
|
+
from . import utils_languages_menu
|
|
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 versioning
|
|
4
|
-
from . import keymap_from_toolbar
|
|
5
|
-
from . import platform_helpers
|
|
6
3
|
from . import io
|
|
4
|
+
from . import platform_helpers
|
|
7
5
|
from . import keymap_hierarchy
|
|
6
|
+
from . import keymap_from_toolbar
|
|
7
|
+
from . import versioning
|
|
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
|
|
3
|
+
from . import assets
|
|
4
|
+
from . import image
|
|
5
|
+
from . import anim
|
|
6
|
+
from . import view3d
|
|
4
7
|
from . import add_mesh_torus
|
|
5
|
-
from . import
|
|
8
|
+
from . import node
|
|
6
9
|
from . import console
|
|
7
10
|
from . import file
|
|
8
|
-
from . import
|
|
9
|
-
from . import node
|
|
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
|
|
17
|
-
from . import assets
|
|
11
|
+
from . import uvcalc_follow_active
|
|
18
12
|
from . import uvcalc_lightmap
|
|
19
13
|
from . import constraint
|
|
14
|
+
from . import bmesh
|
|
15
|
+
from . import uvcalc_transform
|
|
16
|
+
from . import clip
|
|
20
17
|
from . import object_align
|
|
21
|
-
from . import
|
|
22
|
-
from . import
|
|
18
|
+
from . import sequencer
|
|
19
|
+
from . import userpref
|
|
23
20
|
from . import vertexpaint_dirt
|
|
21
|
+
from . import freestyle
|
|
22
|
+
from . import geometry_nodes
|
|
23
|
+
from . import object_quick_effects
|
|
24
24
|
from . import wm
|
|
25
25
|
from . import object
|
|
26
26
|
from . import rigidbody
|
|
27
|
-
from . import
|
|
28
|
-
from . import
|
|
29
|
-
from . import
|
|
27
|
+
from . import screen_play_rendered_anim
|
|
28
|
+
from . import mesh
|
|
29
|
+
from . import object_randomize_transform
|
|
30
30
|
from . import spreadsheet
|
|
31
|
-
from . import
|
|
31
|
+
from . import presets
|
|
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 properties_output
|
|
6
|
+
from . import properties_data_camera
|
|
7
|
+
from . import properties_material_gpencil
|
|
8
|
+
from . import properties_physics_field
|
|
9
|
+
from . import properties_data_curve
|
|
10
|
+
from . import space_dopesheet
|
|
11
|
+
from . import space_info
|
|
12
|
+
from . import properties_workspace
|
|
13
|
+
from . import properties_grease_pencil_common
|
|
14
|
+
from . import space_view3d
|
|
15
|
+
from . import space_properties
|
|
16
|
+
from . import properties_data_light
|
|
17
|
+
from . import properties_paint_common
|
|
5
18
|
from . import properties_material
|
|
6
|
-
from . import generic_ui_list
|
|
7
19
|
from . import properties_data_metaball
|
|
8
|
-
from . import
|
|
9
|
-
from . import properties_particle
|
|
10
|
-
from . import space_statusbar
|
|
11
|
-
from . import properties_workspace
|
|
20
|
+
from . import properties_data_speaker
|
|
12
21
|
from . import node_add_menu_texture
|
|
13
|
-
from . import
|
|
14
|
-
from . import
|
|
15
|
-
from . import
|
|
16
|
-
from . import
|
|
17
|
-
from . import
|
|
18
|
-
from . import
|
|
22
|
+
from . import space_node
|
|
23
|
+
from . import properties_collection
|
|
24
|
+
from . import space_statusbar
|
|
25
|
+
from . import space_userpref
|
|
26
|
+
from . import space_outliner
|
|
27
|
+
from . import generic_ui_list
|
|
28
|
+
from . import space_image
|
|
29
|
+
from . import node_add_menu_compositor
|
|
30
|
+
from . import properties_scene
|
|
31
|
+
from . import asset_shelf
|
|
19
32
|
from . import properties_data_shaderfx
|
|
20
|
-
from . import
|
|
33
|
+
from . import space_console
|
|
34
|
+
from . import properties_data_volume
|
|
35
|
+
from . import properties_object
|
|
36
|
+
from . import properties_data_bone
|
|
37
|
+
from . import space_clip
|
|
21
38
|
from . import properties_data_mesh
|
|
22
|
-
from . import
|
|
39
|
+
from . import properties_data_armature
|
|
40
|
+
from . import node_add_menu_geometry
|
|
41
|
+
from . import properties_data_pointcloud
|
|
42
|
+
from . import properties_physics_rigidbody_constraint
|
|
43
|
+
from . import space_sequencer
|
|
23
44
|
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
45
|
from . import properties_render
|
|
32
|
-
from . import space_image
|
|
33
|
-
from . import node_add_menu_shader
|
|
34
|
-
from . import properties_constraint
|
|
35
|
-
from . import properties_data_gpencil
|
|
36
|
-
from . import properties_physics_field
|
|
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
46
|
from . import properties_physics_rigidbody
|
|
44
|
-
from . import
|
|
45
|
-
from . import properties_grease_pencil_common
|
|
46
|
-
from . import space_view3d
|
|
47
|
+
from . import properties_view_layer
|
|
47
48
|
from . import properties_physics_softbody
|
|
48
|
-
from . import
|
|
49
|
-
from . import
|
|
50
|
-
from . import
|
|
51
|
-
from . import node_add_menu_geometry
|
|
52
|
-
from . import properties_data_pointcloud
|
|
49
|
+
from . import properties_physics_common
|
|
50
|
+
from . import space_toolsystem_common
|
|
51
|
+
from . import properties_physics_dynamicpaint
|
|
53
52
|
from . import properties_data_lattice
|
|
54
|
-
from . import
|
|
55
|
-
from . import
|
|
56
|
-
from . import
|
|
53
|
+
from . import node_add_menu_shader
|
|
54
|
+
from . import properties_particle
|
|
55
|
+
from . import properties_physics_geometry_nodes
|
|
56
|
+
from . import space_text
|
|
57
|
+
from . import utils
|
|
58
|
+
from . import properties_data_lightprobe
|
|
57
59
|
from . import properties_world
|
|
58
|
-
from . import
|
|
59
|
-
from . import properties_physics_rigidbody_constraint
|
|
60
|
-
from . import space_console
|
|
60
|
+
from . import properties_data_gpencil
|
|
61
61
|
from . import space_graph
|
|
62
|
-
from . import
|
|
63
|
-
from . import space_text
|
|
62
|
+
from . import properties_freestyle
|
|
64
63
|
from . import space_topbar
|
|
65
|
-
from . import
|
|
66
|
-
from . import
|
|
67
|
-
from . import
|
|
68
|
-
from . import
|
|
69
|
-
from . import
|
|
70
|
-
from . import
|
|
64
|
+
from . import properties_data_modifier
|
|
65
|
+
from . import space_toolsystem_toolbar
|
|
66
|
+
from . import properties_physics_cloth
|
|
67
|
+
from . import node_add_menu
|
|
68
|
+
from . import properties_physics_fluid
|
|
69
|
+
from . import properties_data_curves
|
|
71
70
|
from . import space_nla
|
|
72
|
-
from . import
|
|
73
|
-
from . import
|
|
74
|
-
from . import
|
|
75
|
-
from . import
|
|
76
|
-
from . import space_spreadsheet
|
|
71
|
+
from . import space_filebrowser
|
|
72
|
+
from . import space_time
|
|
73
|
+
from . import properties_data_empty
|
|
74
|
+
from . import properties_constraint
|
|
77
75
|
from . import properties_data_grease_pencil
|
|
78
|
-
from . import
|
|
79
|
-
from . import
|
|
76
|
+
from . import properties_animviz
|
|
77
|
+
from . import space_spreadsheet
|
|
78
|
+
from . import space_view3d_toolbar
|
|
79
|
+
from . import properties_texture
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
|
82
82
|
|
bl_ui_utils/__init__.pyi
CHANGED
bpy/__init__.pyi
CHANGED
|
@@ -3,12 +3,12 @@ import typing
|
|
|
3
3
|
import bpy.types
|
|
4
4
|
|
|
5
5
|
from . import types
|
|
6
|
+
from . import msgbus
|
|
6
7
|
from . import ops
|
|
7
|
-
from . import
|
|
8
|
+
from . import path
|
|
8
9
|
from . import app
|
|
10
|
+
from . import utils
|
|
9
11
|
from . import props
|
|
10
|
-
from . import path
|
|
11
|
-
from . import msgbus
|
|
12
12
|
|
|
13
13
|
GenericType = typing.TypeVar("GenericType")
|
|
14
14
|
context: "bpy.types.Context"
|
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 pose
|
|
4
|
+
from . import geometry
|
|
5
|
+
from . import mask
|
|
6
|
+
from . import poselib
|
|
7
|
+
from . import script
|
|
8
|
+
from . import screen
|
|
9
|
+
from . import action
|
|
10
|
+
from . import text_editor
|
|
11
|
+
from . import text
|
|
12
|
+
from . import nla
|
|
13
|
+
from . import collection
|
|
14
|
+
from . import uilist
|
|
15
|
+
from . import particle
|
|
16
|
+
from . import view3d
|
|
17
|
+
from . import gizmogroup
|
|
18
|
+
from . import buttons
|
|
3
19
|
from . import console
|
|
4
|
-
from . import
|
|
5
|
-
from . import
|
|
6
|
-
from . import
|
|
7
|
-
from . import
|
|
20
|
+
from . import surface
|
|
21
|
+
from . import sequencer
|
|
22
|
+
from . import wm
|
|
23
|
+
from . import export_anim
|
|
24
|
+
from . import paintcurve
|
|
25
|
+
from . import view2d
|
|
26
|
+
from . import workspace
|
|
27
|
+
from . import spreadsheet
|
|
8
28
|
from . import cycles
|
|
29
|
+
from . import export_mesh
|
|
30
|
+
from . import sculpt
|
|
31
|
+
from . import graph
|
|
32
|
+
from . import world
|
|
9
33
|
from . import rigidbody
|
|
10
|
-
from . import
|
|
34
|
+
from . import fluid
|
|
35
|
+
from . import sculpt_curves
|
|
36
|
+
from . import uv
|
|
37
|
+
from . import lattice
|
|
38
|
+
from . import render
|
|
39
|
+
from . import brush
|
|
40
|
+
from . import info
|
|
41
|
+
from . import armature
|
|
42
|
+
from . import ed
|
|
43
|
+
from . import transform
|
|
44
|
+
from . import object
|
|
45
|
+
from . import boid
|
|
46
|
+
from . import dpaint
|
|
11
47
|
from . import curves
|
|
12
|
-
from . import
|
|
48
|
+
from . import import_anim
|
|
49
|
+
from . import material
|
|
13
50
|
from . import asset
|
|
14
|
-
from . import collection
|
|
15
|
-
from . import image
|
|
16
|
-
from . import gizmogroup
|
|
17
|
-
from . import script
|
|
18
|
-
from . import paintcurve
|
|
19
|
-
from . import nla
|
|
20
|
-
from . import uv
|
|
21
51
|
from . import clip
|
|
22
|
-
from . import
|
|
23
|
-
from . import graph
|
|
24
|
-
from . import sound
|
|
25
|
-
from . import paint
|
|
26
|
-
from . import cloth
|
|
27
|
-
from . import mask
|
|
28
|
-
from . import curve
|
|
29
|
-
from . import anim
|
|
30
|
-
from . import text_editor
|
|
52
|
+
from . import import_scene
|
|
31
53
|
from . import ui
|
|
32
|
-
from . import
|
|
33
|
-
from . import
|
|
34
|
-
from . import
|
|
54
|
+
from . import scene
|
|
55
|
+
from . import texture
|
|
56
|
+
from . import mesh
|
|
57
|
+
from . import import_curve
|
|
58
|
+
from . import marker
|
|
59
|
+
from . import curve
|
|
60
|
+
from . import paint
|
|
35
61
|
from . import file
|
|
36
|
-
from . import
|
|
37
|
-
from . import
|
|
38
|
-
from . import sculpt
|
|
39
|
-
from . import uilist
|
|
40
|
-
from . import action
|
|
62
|
+
from . import camera
|
|
63
|
+
from . import cachefile
|
|
41
64
|
from . import grease_pencil
|
|
42
|
-
from . import
|
|
43
|
-
from . import object
|
|
44
|
-
from . import geometry
|
|
45
|
-
from . import view2d
|
|
46
|
-
from . import import_anim
|
|
47
|
-
from . import boid
|
|
48
|
-
from . import screen
|
|
49
|
-
from . import info
|
|
50
|
-
from . import outliner
|
|
51
|
-
from . import lattice
|
|
65
|
+
from . import preferences
|
|
52
66
|
from . import export_scene
|
|
53
|
-
from . import
|
|
67
|
+
from . import sound
|
|
54
68
|
from . import node
|
|
55
|
-
from . import
|
|
56
|
-
from . import
|
|
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
|
|
65
|
-
from . import wm
|
|
66
|
-
from . import pose
|
|
67
|
-
from . import workspace
|
|
69
|
+
from . import anim
|
|
70
|
+
from . import image
|
|
68
71
|
from . import gpencil
|
|
69
|
-
from . import export_mesh
|
|
70
|
-
from . import scene
|
|
71
|
-
from . import mesh
|
|
72
|
-
from . import text
|
|
73
|
-
from . import view3d
|
|
74
|
-
from . import import_scene
|
|
75
|
-
from . import transform
|
|
76
|
-
from . import armature
|
|
77
72
|
from . import palette
|
|
78
|
-
from . import
|
|
73
|
+
from . import cloth
|
|
79
74
|
from . import font
|
|
75
|
+
from . import constraint
|
|
76
|
+
from . import import_mesh
|
|
77
|
+
from . import ptcache
|
|
78
|
+
from . import mball
|
|
79
|
+
from . import outliner
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -1352,6 +1352,31 @@ def drop_blend_file(
|
|
|
1352
1352
|
|
|
1353
1353
|
...
|
|
1354
1354
|
|
|
1355
|
+
def drop_import_file(
|
|
1356
|
+
override_context: typing.Optional[
|
|
1357
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
1358
|
+
] = None,
|
|
1359
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1360
|
+
undo: typing.Optional[bool] = None,
|
|
1361
|
+
*,
|
|
1362
|
+
directory: typing.Union[str, typing.Any] = "",
|
|
1363
|
+
files: typing.Optional[
|
|
1364
|
+
bpy.types.bpy_prop_collection["bpy.types.OperatorFileListElement"]
|
|
1365
|
+
] = None,
|
|
1366
|
+
):
|
|
1367
|
+
"""Operator that allows file handlers to receive file drops
|
|
1368
|
+
|
|
1369
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
1370
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
1371
|
+
:type undo: typing.Optional[bool]
|
|
1372
|
+
:param directory: Directory, Directory of the file
|
|
1373
|
+
:type directory: typing.Union[str, typing.Any]
|
|
1374
|
+
:param files: Files
|
|
1375
|
+
:type files: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorFileListElement']]
|
|
1376
|
+
"""
|
|
1377
|
+
|
|
1378
|
+
...
|
|
1379
|
+
|
|
1355
1380
|
def gpencil_export_pdf(
|
|
1356
1381
|
override_context: typing.Optional[
|
|
1357
1382
|
typing.Union[typing.Dict, "bpy.types.Context"]
|
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_operators.assets
|
|
6
|
+
import bl_ui.properties_output
|
|
7
|
+
import bl_ui.properties_data_camera
|
|
8
|
+
import bl_operators.anim
|
|
9
|
+
import bl_ui.properties_material_gpencil
|
|
10
|
+
import bl_operators.view3d
|
|
11
|
+
import bl_ui.properties_physics_field
|
|
12
|
+
import bl_ui.properties_data_curve
|
|
13
|
+
import bl_ui.space_dopesheet
|
|
14
|
+
import bl_ui.space_info
|
|
15
|
+
import bl_ui.properties_workspace
|
|
16
|
+
import bl_ui.properties_grease_pencil_common
|
|
17
|
+
import bl_ui.space_view3d
|
|
18
|
+
import bl_ui.space_properties
|
|
19
|
+
import bl_ui.properties_data_light
|
|
20
|
+
import bl_ui.properties_paint_common
|
|
5
21
|
import bl_ui.properties_material
|
|
6
|
-
import bl_ui.generic_ui_list
|
|
7
22
|
import bl_ui.properties_data_metaball
|
|
8
|
-
import bl_ui.
|
|
9
|
-
import bl_operators.file
|
|
10
|
-
import bl_ui.properties_particle
|
|
11
|
-
import bl_ui.space_statusbar
|
|
12
|
-
import bl_ui.properties_workspace
|
|
23
|
+
import bl_ui.properties_data_speaker
|
|
13
24
|
import bl_ui.node_add_menu_texture
|
|
14
|
-
import bl_ui.
|
|
15
|
-
import bl_ui.
|
|
16
|
-
import bl_ui.
|
|
17
|
-
import bl_ui.
|
|
25
|
+
import bl_ui.space_node
|
|
26
|
+
import bl_ui.properties_collection
|
|
27
|
+
import bl_ui.space_statusbar
|
|
28
|
+
import bl_ui.space_userpref
|
|
29
|
+
import bl_ui.space_outliner
|
|
30
|
+
import bl_ui.generic_ui_list
|
|
31
|
+
import bl_ui.space_image
|
|
32
|
+
import bl_ui.node_add_menu_compositor
|
|
33
|
+
import bl_ui.properties_scene
|
|
18
34
|
import bl_operators.node
|
|
35
|
+
import bl_ui.asset_shelf
|
|
19
36
|
import bl_ui.properties_data_shaderfx
|
|
20
|
-
import bl_ui.
|
|
37
|
+
import bl_ui.space_console
|
|
38
|
+
import bl_ui.properties_data_volume
|
|
39
|
+
import bl_ui.properties_object
|
|
40
|
+
import bl_ui.properties_data_bone
|
|
41
|
+
import bl_ui.space_clip
|
|
21
42
|
import bl_ui.properties_data_mesh
|
|
22
|
-
import bl_ui
|
|
43
|
+
import bl_ui
|
|
44
|
+
import bl_ui.properties_data_armature
|
|
45
|
+
import bl_ui.node_add_menu_geometry
|
|
46
|
+
import bl_ui.properties_data_pointcloud
|
|
47
|
+
import bl_operators.file
|
|
48
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
49
|
+
import bl_ui.space_sequencer
|
|
23
50
|
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
|
|
31
|
-
import bl_ui.properties_data_speaker
|
|
32
|
-
import bl_ui.properties_physics_geometry_nodes
|
|
33
|
-
import bl_operators.userpref
|
|
34
51
|
import bl_ui.properties_render
|
|
35
|
-
import
|
|
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
|
|
47
|
-
import bl_ui.properties_data_bone
|
|
52
|
+
import bl_operators.constraint
|
|
48
53
|
import bl_ui.properties_physics_rigidbody
|
|
49
|
-
import bl_ui.
|
|
50
|
-
import bl_ui.properties_grease_pencil_common
|
|
51
|
-
import bl_ui.space_view3d
|
|
54
|
+
import bl_ui.properties_view_layer
|
|
52
55
|
import bl_ui.properties_physics_softbody
|
|
53
|
-
import
|
|
54
|
-
import
|
|
55
|
-
import bl_ui.
|
|
56
|
-
import bl_ui.
|
|
57
|
-
import bl_ui.node_add_menu_geometry
|
|
58
|
-
import bl_operators.constraint
|
|
59
|
-
import bl_ui.properties_data_pointcloud
|
|
56
|
+
import bl_operators.clip
|
|
57
|
+
import bl_ui.properties_physics_common
|
|
58
|
+
import bl_ui.space_toolsystem_common
|
|
59
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
60
60
|
import bl_ui.properties_data_lattice
|
|
61
|
-
import bl_ui.
|
|
62
|
-
import
|
|
63
|
-
import bl_ui.
|
|
64
|
-
import bl_ui.
|
|
61
|
+
import bl_ui.node_add_menu_shader
|
|
62
|
+
import bl_ui.properties_particle
|
|
63
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
64
|
+
import bl_ui.space_text
|
|
65
|
+
import bl_ui.properties_data_lightprobe
|
|
65
66
|
import bl_ui.properties_world
|
|
66
|
-
import
|
|
67
|
-
import bl_ui.
|
|
68
|
-
import bl_ui.space_console
|
|
67
|
+
import bl_operators.userpref
|
|
68
|
+
import bl_ui.properties_data_gpencil
|
|
69
69
|
import bl_ui.space_graph
|
|
70
|
-
import bl_ui.
|
|
71
|
-
import
|
|
70
|
+
import bl_ui.properties_freestyle
|
|
71
|
+
import bl_operators.freestyle
|
|
72
72
|
import bl_ui.space_topbar
|
|
73
|
+
import bl_ui.properties_data_modifier
|
|
74
|
+
import bl_ui.space_toolsystem_toolbar
|
|
75
|
+
import bl_ui.properties_physics_cloth
|
|
76
|
+
import bl_ui.node_add_menu
|
|
77
|
+
import bl_ui.properties_physics_fluid
|
|
73
78
|
import bl_operators.wm
|
|
74
|
-
import bl_ui.
|
|
75
|
-
import bl_ui.space_view3d_toolbar
|
|
76
|
-
import bl_ui.properties_data_light
|
|
77
|
-
import bl_operators.object
|
|
78
|
-
import bl_ui.space_time
|
|
79
|
-
import bl_ui.properties_collection
|
|
80
|
-
import bl_ui.space_sequencer
|
|
79
|
+
import bl_ui.properties_data_curves
|
|
81
80
|
import bl_ui.space_nla
|
|
82
|
-
import bl_ui.
|
|
83
|
-
import bl_ui.
|
|
84
|
-
import
|
|
85
|
-
import bl_ui.
|
|
86
|
-
import bl_ui.
|
|
87
|
-
import bl_operators.spreadsheet
|
|
81
|
+
import bl_ui.space_filebrowser
|
|
82
|
+
import bl_ui.space_time
|
|
83
|
+
import bl_operators.object
|
|
84
|
+
import bl_ui.properties_data_empty
|
|
85
|
+
import bl_ui.properties_constraint
|
|
88
86
|
import bl_ui.properties_data_grease_pencil
|
|
89
|
-
import
|
|
90
|
-
import bl_operators.
|
|
91
|
-
import bl_ui.
|
|
87
|
+
import bl_operators.spreadsheet
|
|
88
|
+
import bl_operators.presets
|
|
89
|
+
import bl_ui.space_spreadsheet
|
|
90
|
+
import bl_ui.space_view3d_toolbar
|
|
91
|
+
import bl_ui.properties_texture
|
|
92
92
|
|
|
93
93
|
GenericType = typing.TypeVar("GenericType")
|
|
94
94
|
|
|
@@ -6832,10 +6832,10 @@ class Context(bpy_struct):
|
|
|
6832
6832
|
:type: 'UIList'
|
|
6833
6833
|
"""
|
|
6834
6834
|
|
|
6835
|
-
property: typing.Union[
|
|
6835
|
+
property: typing.Union[str, int, "ID"]
|
|
6836
6836
|
""" Get the property associated with a hovered button. Returns a tuple of the datablock, data path to the property, and array index.
|
|
6837
6837
|
|
|
6838
|
-
:type: typing.Union[
|
|
6838
|
+
:type: typing.Union[str, int, 'ID']
|
|
6839
6839
|
"""
|
|
6840
6840
|
|
|
6841
6841
|
edit_text: "Text"
|
|
@@ -14801,7 +14801,7 @@ class Gizmo(bpy_struct):
|
|
|
14801
14801
|
context: "Context",
|
|
14802
14802
|
event: "Event",
|
|
14803
14803
|
tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]],
|
|
14804
|
-
) -> typing.Union[typing.Set[
|
|
14804
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
14805
14805
|
"""
|
|
14806
14806
|
|
|
14807
14807
|
:param context:
|
|
@@ -14810,7 +14810,7 @@ class Gizmo(bpy_struct):
|
|
|
14810
14810
|
:type event: 'Event'
|
|
14811
14811
|
:param tweak: Tweak
|
|
14812
14812
|
:type tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
14813
|
-
:rtype: typing.Union[typing.Set[
|
|
14813
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
14814
14814
|
:return: result
|
|
14815
14815
|
"""
|
|
14816
14816
|
...
|
|
@@ -14818,14 +14818,14 @@ class Gizmo(bpy_struct):
|
|
|
14818
14818
|
def setup(self): ...
|
|
14819
14819
|
def invoke(
|
|
14820
14820
|
self, context: "Context", event: "Event"
|
|
14821
|
-
) -> typing.Union[typing.Set[
|
|
14821
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
14822
14822
|
"""
|
|
14823
14823
|
|
|
14824
14824
|
:param context:
|
|
14825
14825
|
:type context: 'Context'
|
|
14826
14826
|
:param event:
|
|
14827
14827
|
:type event: 'Event'
|
|
14828
|
-
:rtype: typing.Union[typing.Set[
|
|
14828
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
14829
14829
|
:return: result
|
|
14830
14830
|
"""
|
|
14831
14831
|
...
|
|
@@ -17280,10 +17280,10 @@ class KeyingSetInfo(bpy_struct):
|
|
|
17280
17280
|
:type: typing.Union[str, typing.Any]
|
|
17281
17281
|
"""
|
|
17282
17282
|
|
|
17283
|
-
bl_options: typing.Union[typing.Set[
|
|
17283
|
+
bl_options: typing.Union[typing.Set[str], typing.Set[int]]
|
|
17284
17284
|
""" Keying Set options to use when inserting keyframes
|
|
17285
17285
|
|
|
17286
|
-
:type: typing.Union[typing.Set[
|
|
17286
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
17287
17287
|
"""
|
|
17288
17288
|
|
|
17289
17289
|
def poll(self, context: typing.Optional["Context"]) -> bool:
|
|
@@ -17724,10 +17724,10 @@ class Macro(bpy_struct):
|
|
|
17724
17724
|
:type: typing.Union[str, typing.Any]
|
|
17725
17725
|
"""
|
|
17726
17726
|
|
|
17727
|
-
bl_options: typing.Union[typing.Set[
|
|
17727
|
+
bl_options: typing.Union[typing.Set[str], typing.Set[int]]
|
|
17728
17728
|
""" Options for this operator type
|
|
17729
17729
|
|
|
17730
|
-
:type: typing.Union[typing.Set[
|
|
17730
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
17731
17731
|
"""
|
|
17732
17732
|
|
|
17733
17733
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -17762,13 +17762,13 @@ class Macro(bpy_struct):
|
|
|
17762
17762
|
|
|
17763
17763
|
def report(
|
|
17764
17764
|
self,
|
|
17765
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
17765
|
+
type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]],
|
|
17766
17766
|
message: typing.Union[str, typing.Any],
|
|
17767
17767
|
):
|
|
17768
17768
|
"""report
|
|
17769
17769
|
|
|
17770
17770
|
:param type: Type
|
|
17771
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
17771
|
+
:type type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
17772
17772
|
:param message: Report Message
|
|
17773
17773
|
:type message: typing.Union[str, typing.Any]
|
|
17774
17774
|
"""
|
|
@@ -22763,10 +22763,10 @@ class Operator(bpy_struct):
|
|
|
22763
22763
|
:type: typing.Union[str, typing.Any]
|
|
22764
22764
|
"""
|
|
22765
22765
|
|
|
22766
|
-
bl_options: typing.Union[typing.Set[
|
|
22766
|
+
bl_options: typing.Union[typing.Set[str], typing.Set[int]]
|
|
22767
22767
|
""" Options for this operator type
|
|
22768
22768
|
|
|
22769
|
-
:type: typing.Union[typing.Set[
|
|
22769
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
22770
22770
|
"""
|
|
22771
22771
|
|
|
22772
22772
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -22825,13 +22825,13 @@ class Operator(bpy_struct):
|
|
|
22825
22825
|
|
|
22826
22826
|
def report(
|
|
22827
22827
|
self,
|
|
22828
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
22828
|
+
type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]],
|
|
22829
22829
|
message: typing.Union[str, typing.Any],
|
|
22830
22830
|
):
|
|
22831
22831
|
"""report
|
|
22832
22832
|
|
|
22833
22833
|
:param type: Type
|
|
22834
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
22834
|
+
:type type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
22835
22835
|
:param message: Report Message
|
|
22836
22836
|
:type message: typing.Union[str, typing.Any]
|
|
22837
22837
|
"""
|
|
@@ -22857,12 +22857,12 @@ class Operator(bpy_struct):
|
|
|
22857
22857
|
|
|
22858
22858
|
def execute(
|
|
22859
22859
|
self, context: "Context"
|
|
22860
|
-
) -> typing.Union[typing.Set[
|
|
22860
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
22861
22861
|
"""Execute the operator
|
|
22862
22862
|
|
|
22863
22863
|
:param context:
|
|
22864
22864
|
:type context: 'Context'
|
|
22865
|
-
:rtype: typing.Union[typing.Set[
|
|
22865
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
22866
22866
|
:return: result
|
|
22867
22867
|
"""
|
|
22868
22868
|
...
|
|
@@ -22879,28 +22879,28 @@ class Operator(bpy_struct):
|
|
|
22879
22879
|
|
|
22880
22880
|
def invoke(
|
|
22881
22881
|
self, context: "Context", event: "Event"
|
|
22882
|
-
) -> typing.Union[typing.Set[
|
|
22882
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
22883
22883
|
"""Invoke the operator
|
|
22884
22884
|
|
|
22885
22885
|
:param context:
|
|
22886
22886
|
:type context: 'Context'
|
|
22887
22887
|
:param event:
|
|
22888
22888
|
:type event: 'Event'
|
|
22889
|
-
:rtype: typing.Union[typing.Set[
|
|
22889
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
22890
22890
|
:return: result
|
|
22891
22891
|
"""
|
|
22892
22892
|
...
|
|
22893
22893
|
|
|
22894
22894
|
def modal(
|
|
22895
22895
|
self, context: "Context", event: "Event"
|
|
22896
|
-
) -> typing.Union[typing.Set[
|
|
22896
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
22897
22897
|
"""Modal operator function
|
|
22898
22898
|
|
|
22899
22899
|
:param context:
|
|
22900
22900
|
:type context: 'Context'
|
|
22901
22901
|
:param event:
|
|
22902
22902
|
:type event: 'Event'
|
|
22903
|
-
:rtype: typing.Union[typing.Set[
|
|
22903
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
22904
22904
|
:return: result
|
|
22905
22905
|
"""
|
|
22906
22906
|
...
|
|
@@ -28788,13 +28788,13 @@ class RenderEngine(bpy_struct):
|
|
|
28788
28788
|
|
|
28789
28789
|
def report(
|
|
28790
28790
|
self,
|
|
28791
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
28791
|
+
type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]],
|
|
28792
28792
|
message: typing.Union[str, typing.Any],
|
|
28793
28793
|
):
|
|
28794
28794
|
"""Report info, warning or error messages
|
|
28795
28795
|
|
|
28796
28796
|
:param type: Type
|
|
28797
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
28797
|
+
:type type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
28798
28798
|
:param message: Report Message
|
|
28799
28799
|
:type message: typing.Union[str, typing.Any]
|
|
28800
28800
|
"""
|
|
@@ -39949,10 +39949,10 @@ class ToolSettings(bpy_struct):
|
|
|
39949
39949
|
:type: typing.Union[str, int]
|
|
39950
39950
|
"""
|
|
39951
39951
|
|
|
39952
|
-
snap_elements: typing.Union[typing.Set[
|
|
39952
|
+
snap_elements: typing.Union[typing.Set[str], typing.Set[int]]
|
|
39953
39953
|
""" Type of element to snap to
|
|
39954
39954
|
|
|
39955
|
-
:type: typing.Union[typing.Set[
|
|
39955
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
39956
39956
|
"""
|
|
39957
39957
|
|
|
39958
39958
|
snap_elements_base: typing.Union[typing.Set[str], typing.Set[int]]
|
|
@@ -64932,14 +64932,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
64932
64932
|
@classmethod
|
|
64933
64933
|
def invoke_props_popup(
|
|
64934
64934
|
cls, operator: typing.Optional["Operator"], event: typing.Optional["Event"]
|
|
64935
|
-
) -> typing.Union[typing.Set[
|
|
64935
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
64936
64936
|
"""Operator popup invoke (show operator properties and execute it automatically on changes)
|
|
64937
64937
|
|
|
64938
64938
|
:param operator: Operator to call
|
|
64939
64939
|
:type operator: typing.Optional['Operator']
|
|
64940
64940
|
:param event: Event
|
|
64941
64941
|
:type event: typing.Optional['Event']
|
|
64942
|
-
:rtype: typing.Union[typing.Set[
|
|
64942
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
64943
64943
|
:return: result
|
|
64944
64944
|
"""
|
|
64945
64945
|
...
|
|
@@ -64949,14 +64949,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
64949
64949
|
cls,
|
|
64950
64950
|
operator: typing.Optional["Operator"],
|
|
64951
64951
|
width: typing.Optional[typing.Any] = 300,
|
|
64952
|
-
) -> typing.Union[typing.Set[
|
|
64952
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
64953
64953
|
"""Operator dialog (non-autoexec popup) invoke (show operator properties and only execute it on click on OK button)
|
|
64954
64954
|
|
|
64955
64955
|
:param operator: Operator to call
|
|
64956
64956
|
:type operator: typing.Optional['Operator']
|
|
64957
64957
|
:param width: Width of the popup
|
|
64958
64958
|
:type width: typing.Optional[typing.Any]
|
|
64959
|
-
:rtype: typing.Union[typing.Set[
|
|
64959
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
64960
64960
|
:return: result
|
|
64961
64961
|
"""
|
|
64962
64962
|
...
|
|
@@ -64975,14 +64975,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
64975
64975
|
cls,
|
|
64976
64976
|
operator: typing.Optional["Operator"],
|
|
64977
64977
|
width: typing.Optional[typing.Any] = 300,
|
|
64978
|
-
) -> typing.Union[typing.Set[
|
|
64978
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
64979
64979
|
"""Operator popup invoke (only shows operator's properties, without executing it)
|
|
64980
64980
|
|
|
64981
64981
|
:param operator: Operator to call
|
|
64982
64982
|
:type operator: typing.Optional['Operator']
|
|
64983
64983
|
:param width: Width of the popup
|
|
64984
64984
|
:type width: typing.Optional[typing.Any]
|
|
64985
|
-
:rtype: typing.Union[typing.Set[
|
|
64985
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
64986
64986
|
:return: result
|
|
64987
64987
|
"""
|
|
64988
64988
|
...
|
|
@@ -64990,14 +64990,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
64990
64990
|
@classmethod
|
|
64991
64991
|
def invoke_confirm(
|
|
64992
64992
|
cls, operator: typing.Optional["Operator"], event: typing.Optional["Event"]
|
|
64993
|
-
) -> typing.Union[typing.Set[
|
|
64993
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
64994
64994
|
"""Operator confirmation popup (only to let user confirm the execution, no operator properties shown)
|
|
64995
64995
|
|
|
64996
64996
|
:param operator: Operator to call
|
|
64997
64997
|
:type operator: typing.Optional['Operator']
|
|
64998
64998
|
:param event: Event
|
|
64999
64999
|
:type event: typing.Optional['Event']
|
|
65000
|
-
:rtype: typing.Union[typing.Set[
|
|
65000
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65001
65001
|
:return: result
|
|
65002
65002
|
"""
|
|
65003
65003
|
...
|
|
@@ -68026,10 +68026,10 @@ class DecimateModifier(Modifier, bpy_struct):
|
|
|
68026
68026
|
:type: typing.Union[str, int]
|
|
68027
68027
|
"""
|
|
68028
68028
|
|
|
68029
|
-
delimit: typing.Union[typing.Set[
|
|
68029
|
+
delimit: typing.Union[typing.Set[str], typing.Set[int]]
|
|
68030
68030
|
""" Limit merging geometry
|
|
68031
68031
|
|
|
68032
|
-
:type: typing.Union[typing.Set[
|
|
68032
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
68033
68033
|
"""
|
|
68034
68034
|
|
|
68035
68035
|
face_count: int
|
|
@@ -68846,10 +68846,10 @@ class MeshCacheModifier(Modifier, bpy_struct):
|
|
|
68846
68846
|
:type: typing.Union[str, typing.Any]
|
|
68847
68847
|
"""
|
|
68848
68848
|
|
|
68849
|
-
flip_axis: typing.Union[typing.Set[
|
|
68849
|
+
flip_axis: typing.Union[typing.Set[str], typing.Set[int]]
|
|
68850
68850
|
"""
|
|
68851
68851
|
|
|
68852
|
-
:type: typing.Union[typing.Set[
|
|
68852
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
68853
68853
|
"""
|
|
68854
68854
|
|
|
68855
68855
|
forward_axis: typing.Union[str, int]
|
|
@@ -107839,10 +107839,10 @@ class GeometryNodeCurveHandleTypeSelection(
|
|
|
107839
107839
|
:type: typing.Union[str, int]
|
|
107840
107840
|
"""
|
|
107841
107841
|
|
|
107842
|
-
mode: typing.Union[typing.Set[
|
|
107842
|
+
mode: typing.Union[typing.Set[str], typing.Set[int]]
|
|
107843
107843
|
""" Whether to check the type of left and right handles
|
|
107844
107844
|
|
|
107845
|
-
:type: typing.Union[typing.Set[
|
|
107845
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
107846
107846
|
"""
|
|
107847
107847
|
|
|
107848
107848
|
@classmethod
|
|
@@ -108375,10 +108375,10 @@ class GeometryNodeCurveSetHandles(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
108375
108375
|
:type: typing.Union[str, int]
|
|
108376
108376
|
"""
|
|
108377
108377
|
|
|
108378
|
-
mode: typing.Union[typing.Set[
|
|
108378
|
+
mode: typing.Union[typing.Set[str], typing.Set[int]]
|
|
108379
108379
|
""" Whether to update left and right handles
|
|
108380
108380
|
|
|
108381
|
-
:type: typing.Union[typing.Set[
|
|
108381
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
108382
108382
|
"""
|
|
108383
108383
|
|
|
108384
108384
|
@classmethod
|
bpy_extras/__init__.pyi
CHANGED
|
@@ -10,9 +10,9 @@ from . import id_map_utils
|
|
|
10
10
|
from . import asset_utils
|
|
11
11
|
from . import object_utils
|
|
12
12
|
from . import anim_utils
|
|
13
|
+
from . import extensions
|
|
13
14
|
from . import wm_utils
|
|
14
15
|
from . import node_shader_utils
|
|
15
|
-
from . import extensions
|
|
16
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.Object", "bpy.types.Sequence", "bpy.types.Action"
|
|
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.Object', 'bpy.types.Sequence', 'bpy.types.Action']
|
|
83
83
|
"""
|
|
84
84
|
|
|
85
85
|
...
|
|
@@ -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=UcqY_Tq_NKj6VwzZO2wdHS5-UdyRbpyZhQNF9bf6sE8,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=cZbMnkSga_ik3lYww4cKbRJVO6ZSY2iAeKfqxTWLQ5U,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=ezkI-VzPfjyJaeSEcatS_Us7ltAEms9HdeiFZ1wcE3k,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=x__g1IGqJ9Y5_3qUsS4Jy04NbN3dbnqcLUYKjvDlhTQ,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=dVwpbimgwANTB24HXq0zuPCUqKH_Dn-8dPXeapvy4LU,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
|
|
@@ -154,7 +154,7 @@ bl_ui/space_userpref/__init__.pyi,sha256=GUoWsY2JBsi8O2PHf1Z2RRDED7Xvqa0Q6giau15
|
|
|
154
154
|
bl_ui/space_view3d/__init__.pyi,sha256=NPQ-3fCFhHu5Pz3YBDsNF8z83WPuRgw-A4KpUaY7dKo,363360
|
|
155
155
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=lNh1jWZdaMsYa9LhTOhAYPBoqMkB1-iUiuz1fITMrnY,140287
|
|
156
156
|
bl_ui/utils/__init__.pyi,sha256=jqC_UaM1SsHFfGoA1A1vwLDS54npPcPBphavDXfYuao,512
|
|
157
|
-
bl_ui_utils/__init__.pyi,sha256=
|
|
157
|
+
bl_ui_utils/__init__.pyi,sha256=NueTVhcSnz7Cgzo_iG7uvCHf8HbOarIj8-uz79zg-LA,120
|
|
158
158
|
bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
159
159
|
bl_ui_utils/bug_report_url/__init__.pyi,sha256=TvDEtwviwh9KFx6H7OBbpADFvLId01fMx4TXoGRanPo,117
|
|
160
160
|
bl_ui_utils/layout/__init__.pyi,sha256=KsdnwCJlAHD4CSC0RY2Rb2sPcuK5Xt7D7M5lKq1SnB0,117
|
|
@@ -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=-BxAnb58vvhcauzT2y2IbWRPynDKChUKlAXdfIYUaSc,324
|
|
172
172
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
|
-
bpy/app/__init__.pyi,sha256=
|
|
173
|
+
bpy/app/__init__.pyi,sha256=M5GcIUXcPtJVa6gQVwJEBdh8re4_ahShgHxIdq1B4W4,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=DZfPHAUG_vtqIUgViGCUofErjls6cbe1u_kegUq839E,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=6t-6INhZvQErYbHzk7VVrwpJKqzK7MPKJxSj6fzYJdc,275550
|
|
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=
|
|
259
|
+
bpy/types/__init__.pyi,sha256=3W7nP3QSSzNIltZjqLKLbCB83hAA4I-FB5nKWsg8594,3389663
|
|
260
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=_cef6KlpdK0ezkJkyEjK3us4QduJ75gaHIUOK1d_ebM,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=Ms-aP3AV0bPfAAc53e3kzWdjcdcXSufpGCXCch2jFUA,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
|
|
@@ -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-20240107.dist-info/METADATA,sha256=vsrFcdtXLOEEhq8m6xNC0pcvd2_oK9yB4F_cawaA3NQ,7008
|
|
346
|
+
fake_bpy_module-20240107.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
347
|
+
fake_bpy_module-20240107.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
348
|
+
fake_bpy_module-20240107.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|