fake-bpy-module 20231211__py3-none-any.whl → 20231212__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 +3 -3
- bl_keymap_utils/__init__.pyi +2 -2
- bl_operators/__init__.pyi +19 -19
- bl_ui/__init__.pyi +58 -58
- bl_ui/space_toolsystem_toolbar/__init__.pyi +13 -0
- bpy/__init__.pyi +3 -3
- bpy/app/__init__.pyi +1 -1
- bpy/ops/__init__.pyi +64 -64
- bpy/ops/curves/__init__.pyi +77 -0
- bpy/types/__init__.pyi +68 -68
- bpy_extras/__init__.pyi +1 -1
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20231211.dist-info → fake_bpy_module-20231212.dist-info}/METADATA +1 -1
- {fake_bpy_module-20231211.dist-info → fake_bpy_module-20231212.dist-info}/RECORD +17 -17
- {fake_bpy_module-20231211.dist-info → fake_bpy_module-20231212.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20231211.dist-info → fake_bpy_module-20231212.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import complete_calltip
|
|
4
|
-
from . import complete_import
|
|
5
3
|
from . import intellisense
|
|
4
|
+
from . import complete_import
|
|
6
5
|
from . import complete_namespace
|
|
6
|
+
from . import complete_calltip
|
|
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_rtl
|
|
3
4
|
from . import bl_extract_messages
|
|
4
|
-
from . import
|
|
5
|
+
from . import utils
|
|
5
6
|
from . import utils_cli
|
|
6
|
-
from . import utils_rtl
|
|
7
7
|
from . import settings
|
|
8
|
-
from . import
|
|
8
|
+
from . import utils_languages_menu
|
|
9
9
|
from . import merge_po
|
|
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 platform_helpers
|
|
4
3
|
from . import keymap_from_toolbar
|
|
5
4
|
from . import versioning
|
|
6
|
-
from . import
|
|
5
|
+
from . import platform_helpers
|
|
7
6
|
from . import keymap_hierarchy
|
|
7
|
+
from . import io
|
|
8
8
|
|
|
9
9
|
GenericType = typing.TypeVar("GenericType")
|
bl_operators/__init__.pyi
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
+
from . import uvcalc_lightmap
|
|
4
|
+
from . import geometry_nodes
|
|
5
|
+
from . import clip
|
|
6
|
+
from . import image
|
|
3
7
|
from . import wm
|
|
8
|
+
from . import userpref
|
|
9
|
+
from . import anim
|
|
10
|
+
from . import assets
|
|
11
|
+
from . import constraint
|
|
12
|
+
from . import file
|
|
13
|
+
from . import node
|
|
4
14
|
from . import object_align
|
|
5
|
-
from . import mesh
|
|
6
|
-
from . import geometry_nodes
|
|
7
15
|
from . import freestyle
|
|
8
16
|
from . import object
|
|
9
|
-
from . import presets
|
|
10
|
-
from . import constraint
|
|
11
17
|
from . import uvcalc_follow_active
|
|
12
|
-
from . import
|
|
13
|
-
from . import
|
|
14
|
-
from . import
|
|
15
|
-
from . import anim
|
|
16
|
-
from . import bmesh
|
|
17
|
-
from . import file
|
|
18
|
-
from . import userpref
|
|
19
|
-
from . import object_randomize_transform
|
|
20
|
-
from . import screen_play_rendered_anim
|
|
18
|
+
from . import vertexpaint_dirt
|
|
19
|
+
from . import uvcalc_transform
|
|
20
|
+
from . import presets
|
|
21
21
|
from . import view3d
|
|
22
|
+
from . import rigidbody
|
|
23
|
+
from . import mesh
|
|
22
24
|
from . import add_mesh_torus
|
|
23
|
-
from . import
|
|
24
|
-
from . import uvcalc_lightmap
|
|
25
|
+
from . import screen_play_rendered_anim
|
|
25
26
|
from . import console
|
|
26
|
-
from . import node
|
|
27
|
-
from . import uvcalc_transform
|
|
28
27
|
from . import object_quick_effects
|
|
29
|
-
from . import
|
|
30
|
-
from . import
|
|
28
|
+
from . import sequencer
|
|
29
|
+
from . import bmesh
|
|
31
30
|
from . import spreadsheet
|
|
31
|
+
from . import object_randomize_transform
|
|
32
32
|
|
|
33
33
|
GenericType = typing.TypeVar("GenericType")
|
|
34
34
|
|
bl_ui/__init__.pyi
CHANGED
|
@@ -2,81 +2,81 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import bpy_types
|
|
4
4
|
|
|
5
|
-
from . import
|
|
6
|
-
from . import
|
|
7
|
-
from . import
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
10
|
-
from . import
|
|
11
|
-
from . import space_text
|
|
12
|
-
from . import properties_data_curves
|
|
13
|
-
from . import space_info
|
|
5
|
+
from . import properties_material
|
|
6
|
+
from . import space_toolsystem_common
|
|
7
|
+
from . import space_toolsystem_toolbar
|
|
8
|
+
from . import properties_constraint
|
|
9
|
+
from . import properties_data_armature
|
|
10
|
+
from . import properties_render
|
|
14
11
|
from . import properties_data_speaker
|
|
15
|
-
from . import
|
|
16
|
-
from . import
|
|
17
|
-
from . import
|
|
12
|
+
from . import properties_animviz
|
|
13
|
+
from . import properties_data_volume
|
|
14
|
+
from . import properties_particle
|
|
15
|
+
from . import properties_scene
|
|
16
|
+
from . import properties_grease_pencil_common
|
|
18
17
|
from . import space_image
|
|
19
|
-
from . import properties_collection
|
|
20
|
-
from . import properties_mask_common
|
|
21
18
|
from . import properties_physics_field
|
|
22
|
-
from . import
|
|
19
|
+
from . import node_add_menu_texture
|
|
20
|
+
from . import properties_workspace
|
|
21
|
+
from . import properties_physics_rigidbody_constraint
|
|
22
|
+
from . import properties_view_layer
|
|
23
|
+
from . import space_dopesheet
|
|
24
|
+
from . import properties_physics_geometry_nodes
|
|
25
|
+
from . import space_info
|
|
26
|
+
from . import properties_data_light
|
|
27
|
+
from . import space_spreadsheet
|
|
28
|
+
from . import properties_paint_common
|
|
23
29
|
from . import properties_data_metaball
|
|
24
|
-
from . import
|
|
30
|
+
from . import properties_data_gpencil
|
|
31
|
+
from . import utils
|
|
25
32
|
from . import space_nla
|
|
26
|
-
from . import
|
|
33
|
+
from . import properties_data_lattice
|
|
34
|
+
from . import properties_object
|
|
35
|
+
from . import properties_physics_dynamicpaint
|
|
36
|
+
from . import properties_physics_common
|
|
27
37
|
from . import space_sequencer
|
|
28
|
-
from . import
|
|
29
|
-
from . import
|
|
30
|
-
from . import
|
|
31
|
-
from . import
|
|
38
|
+
from . import properties_texture
|
|
39
|
+
from . import properties_world
|
|
40
|
+
from . import space_console
|
|
41
|
+
from . import properties_data_modifier
|
|
42
|
+
from . import properties_data_lightprobe
|
|
32
43
|
from . import properties_material_gpencil
|
|
33
|
-
from . import
|
|
34
|
-
from . import
|
|
44
|
+
from . import properties_data_curves
|
|
45
|
+
from . import properties_data_mesh
|
|
46
|
+
from . import space_userpref
|
|
47
|
+
from . import space_time
|
|
48
|
+
from . import space_outliner
|
|
49
|
+
from . import properties_collection
|
|
35
50
|
from . import properties_data_pointcloud
|
|
36
|
-
from . import
|
|
37
|
-
from . import properties_texture
|
|
51
|
+
from . import asset_shelf
|
|
38
52
|
from . import properties_physics_cloth
|
|
39
|
-
from . import space_userpref
|
|
40
53
|
from . import space_properties
|
|
54
|
+
from . import space_view3d_toolbar
|
|
41
55
|
from . import properties_data_bone
|
|
42
|
-
from . import
|
|
43
|
-
from . import space_statusbar
|
|
44
|
-
from . import utils
|
|
45
|
-
from . import properties_world
|
|
46
|
-
from . import properties_data_lattice
|
|
47
|
-
from . import properties_paint_common
|
|
48
|
-
from . import space_dopesheet
|
|
49
|
-
from . import properties_scene
|
|
50
|
-
from . import space_toolsystem_toolbar
|
|
51
|
-
from . import properties_data_armature
|
|
52
|
-
from . import properties_physics_dynamicpaint
|
|
53
|
-
from . import properties_data_mesh
|
|
54
|
-
from . import asset_shelf
|
|
55
|
-
from . import properties_output
|
|
56
|
-
from . import properties_object
|
|
57
|
-
from . import properties_view_layer
|
|
56
|
+
from . import properties_data_shaderfx
|
|
58
57
|
from . import properties_data_curve
|
|
59
|
-
from . import node_add_menu
|
|
60
|
-
from . import properties_data_light
|
|
61
58
|
from . import generic_ui_list
|
|
62
|
-
from . import
|
|
63
|
-
from . import space_console
|
|
64
|
-
from . import properties_data_grease_pencil
|
|
65
|
-
from . import properties_physics_geometry_nodes
|
|
59
|
+
from . import properties_data_empty
|
|
66
60
|
from . import properties_physics_rigidbody
|
|
67
|
-
from . import
|
|
68
|
-
from . import
|
|
69
|
-
from . import
|
|
70
|
-
from . import
|
|
61
|
+
from . import properties_freestyle
|
|
62
|
+
from . import node_add_menu
|
|
63
|
+
from . import space_statusbar
|
|
64
|
+
from . import space_view3d
|
|
65
|
+
from . import space_text
|
|
66
|
+
from . import node_add_menu_shader
|
|
67
|
+
from . import properties_data_camera
|
|
68
|
+
from . import space_node
|
|
69
|
+
from . import properties_output
|
|
71
70
|
from . import properties_physics_fluid
|
|
72
71
|
from . import node_add_menu_compositor
|
|
73
|
-
from . import
|
|
74
|
-
from . import
|
|
75
|
-
from . import
|
|
76
|
-
from . import properties_data_gpencil
|
|
77
|
-
from . import properties_data_lightprobe
|
|
72
|
+
from . import node_add_menu_geometry
|
|
73
|
+
from . import space_filebrowser
|
|
74
|
+
from . import properties_physics_softbody
|
|
78
75
|
from . import space_graph
|
|
79
|
-
from . import
|
|
76
|
+
from . import properties_mask_common
|
|
77
|
+
from . import space_topbar
|
|
78
|
+
from . import properties_data_grease_pencil
|
|
79
|
+
from . import space_clip
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
|
82
82
|
|
|
@@ -1129,6 +1129,11 @@ class _defs_edit_curve:
|
|
|
1129
1129
|
''' '''
|
|
1130
1130
|
|
|
1131
1131
|
|
|
1132
|
+
class _defs_edit_curves:
|
|
1133
|
+
draw: typing.Any
|
|
1134
|
+
''' '''
|
|
1135
|
+
|
|
1136
|
+
|
|
1132
1137
|
class _defs_edit_mesh:
|
|
1133
1138
|
bevel: typing.Any
|
|
1134
1139
|
''' '''
|
|
@@ -1654,6 +1659,14 @@ class _template_widget:
|
|
|
1654
1659
|
...
|
|
1655
1660
|
|
|
1656
1661
|
|
|
1662
|
+
def curve_draw_settings(context, layout, _tool, extra):
|
|
1663
|
+
'''
|
|
1664
|
+
|
|
1665
|
+
'''
|
|
1666
|
+
|
|
1667
|
+
...
|
|
1668
|
+
|
|
1669
|
+
|
|
1657
1670
|
def generate_from_enum_ex(_context, idname_prefix, icon_prefix, type, attr,
|
|
1658
1671
|
cursor, tooldef_keywords, icon_map, use_separators):
|
|
1659
1672
|
'''
|
bpy/__init__.pyi
CHANGED
|
@@ -4,11 +4,11 @@ import bpy.types
|
|
|
4
4
|
|
|
5
5
|
from . import types
|
|
6
6
|
from . import ops
|
|
7
|
-
from . import app
|
|
8
|
-
from . import msgbus
|
|
9
|
-
from . import path
|
|
10
7
|
from . import utils
|
|
8
|
+
from . import app
|
|
11
9
|
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
|
|
4
|
-
from . import
|
|
5
|
-
from . import
|
|
6
|
-
from . import armature
|
|
7
|
-
from . import outliner
|
|
8
|
-
from . import transform
|
|
9
|
-
from . import sculpt
|
|
10
|
-
from . import mesh
|
|
3
|
+
from . import camera
|
|
4
|
+
from . import fluid
|
|
5
|
+
from . import marker
|
|
11
6
|
from . import sequencer
|
|
12
|
-
from . import
|
|
13
|
-
from . import
|
|
14
|
-
from . import material
|
|
15
|
-
from . import screen
|
|
7
|
+
from . import transform
|
|
8
|
+
from . import text_editor
|
|
16
9
|
from . import ed
|
|
17
|
-
from . import
|
|
18
|
-
from . import
|
|
19
|
-
from . import
|
|
20
|
-
from . import
|
|
21
|
-
from . import pose
|
|
10
|
+
from . import action
|
|
11
|
+
from . import object
|
|
12
|
+
from . import wm
|
|
13
|
+
from . import nla
|
|
22
14
|
from . import text
|
|
23
|
-
from . import
|
|
24
|
-
from . import
|
|
25
|
-
from . import
|
|
26
|
-
from . import
|
|
27
|
-
from . import
|
|
28
|
-
from . import
|
|
15
|
+
from . import node
|
|
16
|
+
from . import script
|
|
17
|
+
from . import lattice
|
|
18
|
+
from . import armature
|
|
19
|
+
from . import grease_pencil
|
|
20
|
+
from . import mask
|
|
21
|
+
from . import import_curve
|
|
22
|
+
from . import rigidbody
|
|
23
|
+
from . import sculpt
|
|
24
|
+
from . import buttons
|
|
25
|
+
from . import gpencil
|
|
26
|
+
from . import ui
|
|
27
|
+
from . import view2d
|
|
28
|
+
from . import outliner
|
|
29
29
|
from . import world
|
|
30
|
-
from . import
|
|
31
|
-
from . import
|
|
30
|
+
from . import font
|
|
31
|
+
from . import export_mesh
|
|
32
32
|
from . import import_scene
|
|
33
|
-
from . import
|
|
33
|
+
from . import material
|
|
34
|
+
from . import cachefile
|
|
34
35
|
from . import boid
|
|
35
|
-
from . import
|
|
36
|
-
from . import import_curve
|
|
37
|
-
from . import asset
|
|
38
|
-
from . import node
|
|
39
|
-
from . import preferences
|
|
36
|
+
from . import paintcurve
|
|
40
37
|
from . import surface
|
|
41
|
-
from . import nla
|
|
42
|
-
from . import brush
|
|
43
|
-
from . import curves
|
|
44
|
-
from . import graph
|
|
45
|
-
from . import gpencil
|
|
46
|
-
from . import texture
|
|
47
38
|
from . import export_anim
|
|
48
|
-
from . import mask
|
|
49
|
-
from . import paintcurve
|
|
50
|
-
from . import fluid
|
|
51
|
-
from . import constraint
|
|
52
|
-
from . import info
|
|
53
|
-
from . import spreadsheet
|
|
54
|
-
from . import export_mesh
|
|
55
|
-
from . import file
|
|
56
|
-
from . import action
|
|
57
|
-
from . import particle
|
|
58
|
-
from . import object
|
|
59
|
-
from . import curve
|
|
60
|
-
from . import palette
|
|
61
|
-
from . import marker
|
|
62
|
-
from . import export_scene
|
|
63
39
|
from . import import_mesh
|
|
64
|
-
from . import
|
|
65
|
-
from . import ui
|
|
40
|
+
from . import gizmogroup
|
|
66
41
|
from . import render
|
|
67
|
-
from . import
|
|
42
|
+
from . import brush
|
|
43
|
+
from . import curve
|
|
44
|
+
from . import sculpt_curves
|
|
45
|
+
from . import collection
|
|
46
|
+
from . import cloth
|
|
47
|
+
from . import asset
|
|
48
|
+
from . import texture
|
|
49
|
+
from . import dpaint
|
|
68
50
|
from . import workspace
|
|
69
|
-
from . import
|
|
70
|
-
from . import
|
|
71
|
-
from . import
|
|
72
|
-
from . import
|
|
51
|
+
from . import paint
|
|
52
|
+
from . import particle
|
|
53
|
+
from . import spreadsheet
|
|
54
|
+
from . import curves
|
|
55
|
+
from . import clip
|
|
73
56
|
from . import uv
|
|
74
|
-
from . import
|
|
75
|
-
from . import
|
|
76
|
-
from . import
|
|
77
|
-
from . import
|
|
57
|
+
from . import file
|
|
58
|
+
from . import scene
|
|
59
|
+
from . import mball
|
|
60
|
+
from . import cycles
|
|
61
|
+
from . import view3d
|
|
62
|
+
from . import info
|
|
63
|
+
from . import poselib
|
|
64
|
+
from . import sound
|
|
65
|
+
from . import graph
|
|
66
|
+
from . import anim
|
|
67
|
+
from . import constraint
|
|
68
|
+
from . import preferences
|
|
69
|
+
from . import pose
|
|
70
|
+
from . import geometry
|
|
71
|
+
from . import export_scene
|
|
78
72
|
from . import uilist
|
|
79
|
-
from . import
|
|
73
|
+
from . import palette
|
|
74
|
+
from . import mesh
|
|
75
|
+
from . import screen
|
|
76
|
+
from . import import_anim
|
|
77
|
+
from . import console
|
|
78
|
+
from . import image
|
|
79
|
+
from . import ptcache
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
bpy/ops/curves/__init__.pyi
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
3
|
import bpy.types
|
|
4
|
+
import bpy.ops.transform
|
|
4
5
|
|
|
5
6
|
GenericType = typing.TypeVar("GenericType")
|
|
6
7
|
|
|
@@ -83,6 +84,82 @@ def delete(override_context: typing.Optional[
|
|
|
83
84
|
...
|
|
84
85
|
|
|
85
86
|
|
|
87
|
+
def draw(
|
|
88
|
+
override_context: typing.Optional[
|
|
89
|
+
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
90
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
91
|
+
undo: typing.Optional[bool] = None,
|
|
92
|
+
*,
|
|
93
|
+
error_threshold: typing.Optional[typing.Any] = 0.0,
|
|
94
|
+
fit_method: typing.Optional[typing.Union[str, int]] = 'REFIT',
|
|
95
|
+
corner_angle: typing.Optional[typing.Any] = 1.22173,
|
|
96
|
+
use_cyclic: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
97
|
+
stroke: typing.Optional[bpy.types.bpy_prop_collection[
|
|
98
|
+
'bpy.types.OperatorStrokeElement']] = None,
|
|
99
|
+
wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
100
|
+
is_curve_2d: typing.Optional[typing.Union[bool, typing.Any]] = False):
|
|
101
|
+
''' Draw a freehand curve
|
|
102
|
+
|
|
103
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
104
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
105
|
+
:type undo: typing.Optional[bool]
|
|
106
|
+
:param error_threshold: Error, Error distance threshold (in object units)
|
|
107
|
+
:type error_threshold: typing.Optional[typing.Any]
|
|
108
|
+
:param fit_method: Fit Method
|
|
109
|
+
:type fit_method: typing.Optional[typing.Union[str, int]]
|
|
110
|
+
:param corner_angle: Corner Angle
|
|
111
|
+
:type corner_angle: typing.Optional[typing.Any]
|
|
112
|
+
:param use_cyclic: Cyclic
|
|
113
|
+
:type use_cyclic: typing.Optional[typing.Union[bool, typing.Any]]
|
|
114
|
+
:param stroke: Stroke
|
|
115
|
+
:type stroke: typing.Optional[bpy.types.bpy_prop_collection['bpy.types.OperatorStrokeElement']]
|
|
116
|
+
:param wait_for_input: Wait for Input
|
|
117
|
+
:type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
|
|
118
|
+
:param is_curve_2d: Curve 2D
|
|
119
|
+
:type is_curve_2d: typing.Optional[typing.Union[bool, typing.Any]]
|
|
120
|
+
'''
|
|
121
|
+
|
|
122
|
+
...
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
def duplicate(
|
|
126
|
+
override_context: typing.Optional[
|
|
127
|
+
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
128
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
129
|
+
undo: typing.Optional[bool] = None):
|
|
130
|
+
''' Copy selected points or curves
|
|
131
|
+
|
|
132
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
133
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
134
|
+
:type undo: typing.Optional[bool]
|
|
135
|
+
'''
|
|
136
|
+
|
|
137
|
+
...
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
def duplicate_move(
|
|
141
|
+
override_context: typing.Optional[
|
|
142
|
+
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
143
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
144
|
+
undo: typing.Optional[bool] = None,
|
|
145
|
+
*,
|
|
146
|
+
CURVES_OT_duplicate: typing.Optional['duplicate'] = None,
|
|
147
|
+
TRANSFORM_OT_translate: typing.
|
|
148
|
+
Optional['bpy.ops.transform.translate'] = None):
|
|
149
|
+
''' Make copies of selected elements and move them
|
|
150
|
+
|
|
151
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
152
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
153
|
+
:type undo: typing.Optional[bool]
|
|
154
|
+
:param CURVES_OT_duplicate: Duplicate, Copy selected points or curves
|
|
155
|
+
:type CURVES_OT_duplicate: typing.Optional['duplicate']
|
|
156
|
+
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
157
|
+
:type TRANSFORM_OT_translate: typing.Optional['bpy.ops.transform.translate']
|
|
158
|
+
'''
|
|
159
|
+
|
|
160
|
+
...
|
|
161
|
+
|
|
162
|
+
|
|
86
163
|
def sculptmode_toggle(
|
|
87
164
|
override_context: typing.Optional[
|
|
88
165
|
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
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
|
|
6
|
-
import bl_ui.
|
|
7
|
-
import
|
|
8
|
-
import bl_ui.
|
|
9
|
-
import bl_ui.
|
|
10
|
-
import bl_ui.
|
|
11
|
-
import bl_ui.
|
|
12
|
-
import bl_ui.properties_data_curves
|
|
13
|
-
import bl_ui.space_info
|
|
5
|
+
import bl_ui.properties_material
|
|
6
|
+
import bl_ui.space_toolsystem_common
|
|
7
|
+
import bl_operators.clip
|
|
8
|
+
import bl_ui.space_toolsystem_toolbar
|
|
9
|
+
import bl_ui.properties_constraint
|
|
10
|
+
import bl_ui.properties_data_armature
|
|
11
|
+
import bl_ui.properties_render
|
|
14
12
|
import bl_ui.properties_data_speaker
|
|
15
|
-
import
|
|
16
|
-
import bl_ui.
|
|
17
|
-
import bl_ui.
|
|
18
|
-
import
|
|
13
|
+
import bl_operators.wm
|
|
14
|
+
import bl_ui.properties_data_volume
|
|
15
|
+
import bl_ui.properties_particle
|
|
16
|
+
import bl_ui.properties_scene
|
|
17
|
+
import bl_ui.properties_grease_pencil_common
|
|
19
18
|
import bl_ui.space_image
|
|
20
|
-
import bl_ui.properties_collection
|
|
21
|
-
import bl_ui.properties_mask_common
|
|
22
|
-
import bl_operators.object
|
|
23
19
|
import bl_ui.properties_physics_field
|
|
24
|
-
import bl_ui.
|
|
25
|
-
import
|
|
20
|
+
import bl_ui.node_add_menu_texture
|
|
21
|
+
import bl_ui.properties_workspace
|
|
22
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
23
|
+
import bl_operators.userpref
|
|
24
|
+
import bl_operators.anim
|
|
25
|
+
import bl_ui.properties_view_layer
|
|
26
|
+
import bl_ui.space_dopesheet
|
|
27
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
28
|
+
import bl_ui.space_info
|
|
29
|
+
import bl_ui.properties_data_light
|
|
30
|
+
import bl_ui.space_spreadsheet
|
|
31
|
+
import bl_operators.assets
|
|
32
|
+
import bl_ui.properties_paint_common
|
|
26
33
|
import bl_ui.properties_data_metaball
|
|
27
|
-
import bl_ui.
|
|
34
|
+
import bl_ui.properties_data_gpencil
|
|
35
|
+
import bl_operators.constraint
|
|
28
36
|
import bl_ui.space_nla
|
|
29
|
-
import bl_ui.
|
|
37
|
+
import bl_ui.properties_data_lattice
|
|
38
|
+
import bl_ui.properties_object
|
|
39
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
40
|
+
import bl_operators.file
|
|
41
|
+
import bl_ui.properties_physics_common
|
|
30
42
|
import bl_ui.space_sequencer
|
|
31
|
-
import bl_ui.
|
|
32
|
-
import
|
|
33
|
-
import
|
|
34
|
-
import bl_ui.
|
|
35
|
-
import bl_ui.
|
|
43
|
+
import bl_ui.properties_texture
|
|
44
|
+
import bl_operators.node
|
|
45
|
+
import bl_ui.properties_world
|
|
46
|
+
import bl_ui.space_console
|
|
47
|
+
import bl_ui.properties_data_modifier
|
|
48
|
+
import bl_ui.properties_data_lightprobe
|
|
36
49
|
import bl_ui.properties_material_gpencil
|
|
37
|
-
import bl_ui.
|
|
38
|
-
import bl_ui.
|
|
50
|
+
import bl_ui.properties_data_curves
|
|
51
|
+
import bl_ui.properties_data_mesh
|
|
52
|
+
import bl_ui.space_userpref
|
|
53
|
+
import bl_ui.space_time
|
|
54
|
+
import bl_operators.freestyle
|
|
55
|
+
import bl_ui.space_outliner
|
|
56
|
+
import bl_operators.object
|
|
57
|
+
import bl_ui.properties_collection
|
|
39
58
|
import bl_ui.properties_data_pointcloud
|
|
40
|
-
import bl_ui.
|
|
41
|
-
import bl_ui.properties_texture
|
|
42
|
-
import bl_operators.assets
|
|
59
|
+
import bl_ui.asset_shelf
|
|
43
60
|
import bl_ui.properties_physics_cloth
|
|
44
|
-
import bl_operators.anim
|
|
45
|
-
import bl_ui.space_userpref
|
|
46
61
|
import bl_ui.space_properties
|
|
62
|
+
import bl_ui.space_view3d_toolbar
|
|
47
63
|
import bl_ui.properties_data_bone
|
|
48
|
-
import
|
|
49
|
-
import bl_ui.space_statusbar
|
|
50
|
-
import bl_ui.properties_world
|
|
51
|
-
import bl_ui.properties_data_lattice
|
|
52
|
-
import bl_ui.properties_paint_common
|
|
53
|
-
import bl_ui.space_dopesheet
|
|
54
|
-
import bl_ui.properties_scene
|
|
55
|
-
import bl_ui.space_toolsystem_toolbar
|
|
56
|
-
import bl_ui.properties_data_armature
|
|
57
|
-
import bl_operators.file
|
|
58
|
-
import bl_operators.userpref
|
|
59
|
-
import bl_ui
|
|
60
|
-
import bl_ui.properties_physics_dynamicpaint
|
|
61
|
-
import bl_ui.properties_data_mesh
|
|
62
|
-
import bl_ui.asset_shelf
|
|
63
|
-
import bl_ui.properties_output
|
|
64
|
+
import bl_operators.presets
|
|
64
65
|
import bl_operators.view3d
|
|
65
|
-
import bl_ui.
|
|
66
|
-
import bl_ui.properties_view_layer
|
|
66
|
+
import bl_ui.properties_data_shaderfx
|
|
67
67
|
import bl_ui.properties_data_curve
|
|
68
|
-
import bl_ui.node_add_menu
|
|
69
|
-
import bl_ui.properties_data_light
|
|
70
68
|
import bl_ui.generic_ui_list
|
|
71
|
-
import bl_ui.
|
|
72
|
-
import bl_ui.space_console
|
|
73
|
-
import bl_ui.properties_data_grease_pencil
|
|
74
|
-
import bl_ui.properties_physics_geometry_nodes
|
|
69
|
+
import bl_ui.properties_data_empty
|
|
75
70
|
import bl_ui.properties_physics_rigidbody
|
|
76
|
-
import bl_ui.
|
|
77
|
-
import bl_ui.
|
|
78
|
-
import bl_ui.
|
|
79
|
-
import bl_ui.
|
|
71
|
+
import bl_ui.properties_freestyle
|
|
72
|
+
import bl_ui.node_add_menu
|
|
73
|
+
import bl_ui.space_statusbar
|
|
74
|
+
import bl_ui.space_view3d
|
|
75
|
+
import bl_ui.space_text
|
|
76
|
+
import bl_ui.node_add_menu_shader
|
|
77
|
+
import bl_ui.properties_data_camera
|
|
78
|
+
import bl_ui.space_node
|
|
79
|
+
import bl_ui.properties_output
|
|
80
80
|
import bl_ui.properties_physics_fluid
|
|
81
81
|
import bl_ui.node_add_menu_compositor
|
|
82
|
-
import
|
|
83
|
-
import bl_ui.
|
|
84
|
-
import bl_ui.
|
|
85
|
-
import bl_ui.node_add_menu_shader
|
|
86
|
-
import bl_operators.clip
|
|
87
|
-
import bl_ui.properties_data_gpencil
|
|
88
|
-
import bl_ui.properties_data_lightprobe
|
|
82
|
+
import bl_ui.node_add_menu_geometry
|
|
83
|
+
import bl_ui.space_filebrowser
|
|
84
|
+
import bl_ui.properties_physics_softbody
|
|
89
85
|
import bl_ui.space_graph
|
|
86
|
+
import bl_ui.properties_mask_common
|
|
87
|
+
import bl_ui.space_topbar
|
|
88
|
+
import bl_ui
|
|
90
89
|
import bl_operators.spreadsheet
|
|
91
|
-
import bl_ui.
|
|
90
|
+
import bl_ui.properties_data_grease_pencil
|
|
91
|
+
import bl_ui.space_clip
|
|
92
92
|
|
|
93
93
|
GenericType = typing.TypeVar("GenericType")
|
|
94
94
|
|
bpy_extras/__init__.pyi
CHANGED
|
@@ -10,9 +10,9 @@ from . import object_utils
|
|
|
10
10
|
from . import anim_utils
|
|
11
11
|
from . import id_map_utils
|
|
12
12
|
from . import mesh_utils
|
|
13
|
+
from . import wm_utils
|
|
13
14
|
from . import extensions
|
|
14
15
|
from . import node_shader_utils
|
|
15
16
|
from . import bmesh_utils
|
|
16
|
-
from . import wm_utils
|
|
17
17
|
|
|
18
18
|
GenericType = typing.TypeVar("GenericType")
|
|
@@ -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.Sequence', 'bpy.types.Action', 'bpy.types.Object'],
|
|
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.Sequence', 'bpy.types.Action', 'bpy.types.Object']
|
|
106
106
|
'''
|
|
107
107
|
|
|
108
108
|
...
|
|
@@ -14,7 +14,7 @@ bl_app_template_utils/__init__.pyi,sha256=Zn4Q5_vPUQV4SnQqSvTsOlNYEHEoZr1rx1DZvc
|
|
|
14
14
|
bl_app_template_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
bl_console_utils/__init__.pyi,sha256=qOGRa_N1-VEAf9cr60mvvxQMYSKNNSzuSQ0_TuSEq1I,97
|
|
16
16
|
bl_console_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
bl_console_utils/autocomplete/__init__.pyi,sha256=
|
|
17
|
+
bl_console_utils/autocomplete/__init__.pyi,sha256=562X75V0Fm7o54YGqhBqE-SVgMYbuY4dBlI0noBGuZE,191
|
|
18
18
|
bl_console_utils/autocomplete/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
bl_console_utils/autocomplete/complete_calltip/__init__.pyi,sha256=AW7fGzddfUeEKYRROS2ktvB95v8xBv2xfNQHZ-UZtmk,372
|
|
20
20
|
bl_console_utils/autocomplete/complete_calltip/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -24,7 +24,7 @@ bl_console_utils/autocomplete/complete_namespace/__init__.pyi,sha256=7_ctcFmQsIW
|
|
|
24
24
|
bl_console_utils/autocomplete/complete_namespace/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
25
|
bl_console_utils/autocomplete/intellisense/__init__.pyi,sha256=b60v0t56txcAZ4R9cW60VMqooCXj07PF4Q6rcYGvVJs,222
|
|
26
26
|
bl_console_utils/autocomplete/intellisense/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
-
bl_i18n_utils/__init__.pyi,sha256=
|
|
27
|
+
bl_i18n_utils/__init__.pyi,sha256=zNUYdZj06H1LuPsH3UagL1BItrLuq5YoAY2V80m0N4Y,253
|
|
28
28
|
bl_i18n_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
29
|
bl_i18n_utils/bl_extract_messages/__init__.pyi,sha256=kaVfcFpWiEy1RnI7UtUJrkMk4uLWZegVUHR8uYBzpdM,1276
|
|
30
30
|
bl_i18n_utils/bl_extract_messages/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -40,7 +40,7 @@ bl_i18n_utils/utils_languages_menu/__init__.pyi,sha256=_gqX_O3eE0AiLLCw9rz_A6q_L
|
|
|
40
40
|
bl_i18n_utils/utils_languages_menu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
41
|
bl_i18n_utils/utils_rtl/__init__.pyi,sha256=U3u2cgQIuLogSl25uhiHs2s9DFK9UYMeXGg3_R1sQ0c,186
|
|
42
42
|
bl_i18n_utils/utils_rtl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
-
bl_keymap_utils/__init__.pyi,sha256=
|
|
43
|
+
bl_keymap_utils/__init__.pyi,sha256=ZyS2rrKgcm6-Iv1jM_YOhRZktbdHI44tqz5yPBUNGbc,208
|
|
44
44
|
bl_keymap_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
45
|
bl_keymap_utils/io/__init__.pyi,sha256=y4yZFHq6xL9t52t5oUsUqb31Qe1kJUOOfCuM5A5LOQU,684
|
|
46
46
|
bl_keymap_utils/io/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -54,7 +54,7 @@ bl_keymap_utils/versioning/__init__.pyi,sha256=3yw6oHUQGFejTCnrsOY6IL9y78-EJz1VP
|
|
|
54
54
|
bl_keymap_utils/versioning/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
55
|
bl_math/__init__.pyi,sha256=jFSKwCJVEo3O0yrPDTeKwSWMJ3bAiKcMcS_7wm-ZusI,1597
|
|
56
56
|
bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
-
bl_operators/__init__.pyi,sha256=
|
|
57
|
+
bl_operators/__init__.pyi,sha256=wjFOHlwKVnzoyuN0BL6qGcPp9tyevpQuJe0b1uP-Vi8,895
|
|
58
58
|
bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
59
|
bl_operators/add_mesh_torus/__init__.pyi,sha256=sW6-uVCW2WoTcOdAcc8RAfqx07MECvLNyNcrtoKXZOI,2811
|
|
60
60
|
bl_operators/add_mesh_torus/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -128,7 +128,7 @@ bl_text_utils/__init__.pyi,sha256=mA4rhlhHGbhXjawE0_uzcLQZhw4Rj4xm5DsFzDaoR0I,10
|
|
|
128
128
|
bl_text_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
129
|
bl_text_utils/external_editor/__init__.pyi,sha256=5Nuo8o17p8djL8yMnRuDIvFEXGPlvPddQrWlkZD6IBs,149
|
|
130
130
|
bl_text_utils/external_editor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
|
-
bl_ui/__init__.pyi,sha256=
|
|
131
|
+
bl_ui/__init__.pyi,sha256=9KMf0jSSCs_P3SBMV7DS3ywW0KjEBw3WQC2wmM4Aw8Q,10382
|
|
132
132
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
133
133
|
bl_ui/asset_shelf/__init__.pyi,sha256=4uzMddV5uYdHeGzUgUra82g7RrfPXJmzqdC5-Re_ebQ,2438
|
|
134
134
|
bl_ui/asset_shelf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -268,7 +268,7 @@ bl_ui/space_time/__init__.pyi,sha256=y9Ib2V3_2ke_1rPmR-_jKnTsR0efNjuzb71eo97RZoU
|
|
|
268
268
|
bl_ui/space_time/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
269
269
|
bl_ui/space_toolsystem_common/__init__.pyi,sha256=8UbViBtm9GAVYzPPHnrlZ-AameCS8nJmrYI1YNV0bH8,5577
|
|
270
270
|
bl_ui/space_toolsystem_common/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
271
|
-
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=
|
|
271
|
+
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=QBzGuowS2SkCyDxABCbJkJVn-ERwMbYCQhXBWDxQ8Vw,22480
|
|
272
272
|
bl_ui/space_toolsystem_toolbar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
273
273
|
bl_ui/space_topbar/__init__.pyi,sha256=VBCgWvIud2YSJ_bnYXJIx1lLuzmEDfX22UHkg4-Y65Y,65543
|
|
274
274
|
bl_ui/space_topbar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -300,9 +300,9 @@ bmesh/types/__init__.pyi,sha256=Jy5AV8xe4_4o9J7Y6I1QPsrXve41naWKWdC4cweSMCs,3706
|
|
|
300
300
|
bmesh/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
301
|
bmesh/utils/__init__.pyi,sha256=Zq-n06AUnuxrVpT9RQGaGyY4E16UesGsNeePnhik57w,6543
|
|
302
302
|
bmesh/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
303
|
-
bpy/__init__.pyi,sha256=
|
|
303
|
+
bpy/__init__.pyi,sha256=oX5jNYwcVZDRvWba2AAFZsnCUf3fJf8-3OonruERTPQ,324
|
|
304
304
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
305
|
-
bpy/app/__init__.pyi,sha256=
|
|
305
|
+
bpy/app/__init__.pyi,sha256=NUNHJmhX0OjdmTKRr-dzpzHPGfRBmoyEo9mgRTX_Q1g,9478
|
|
306
306
|
bpy/app/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
307
307
|
bpy/app/handlers/__init__.pyi,sha256=w-3lbeY4grEb-CpZtk5nMQ45aneqMLUn27P7UchPT2Y,5400
|
|
308
308
|
bpy/app/handlers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -314,7 +314,7 @@ bpy/app/translations/__init__.pyi,sha256=sufofHqcHY64ZzC8sDeTV6USzOrJINAbxNeFSgk
|
|
|
314
314
|
bpy/app/translations/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
315
315
|
bpy/msgbus/__init__.pyi,sha256=_Wjy3pK_1bSGLACcS6i9nw4zR7BAEjjwRiaKu2mhj_k,1666
|
|
316
316
|
bpy/msgbus/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
317
|
-
bpy/ops/__init__.pyi,sha256=
|
|
317
|
+
bpy/ops/__init__.pyi,sha256=vHl8L-jmPeJxjN9z1zKtOAx1R5ZkY2mDRaqycfwUCvY,1751
|
|
318
318
|
bpy/ops/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
319
319
|
bpy/ops/action/__init__.pyi,sha256=8YFm2Fmch8zMUmLNqXcws6S3S4v33OQre5yulSOkbvo,29657
|
|
320
320
|
bpy/ops/action/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -346,7 +346,7 @@ bpy/ops/constraint/__init__.pyi,sha256=CVsgll2E-0kWOOXsHATSzcPfLrHuP2MfinBnm2TUB
|
|
|
346
346
|
bpy/ops/constraint/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
347
|
bpy/ops/curve/__init__.pyi,sha256=smOKyWV0ew2kShTc7T11X24QOe-YK6K8sLCJCU_M-3k,43928
|
|
348
348
|
bpy/ops/curve/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
349
|
-
bpy/ops/curves/__init__.pyi,sha256=
|
|
349
|
+
bpy/ops/curves/__init__.pyi,sha256=SSy5P1t386qQOPYbCSaNZHV8bAcSxrqzuwNA9Od6sJw,13579
|
|
350
350
|
bpy/ops/curves/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
351
351
|
bpy/ops/cycles/__init__.pyi,sha256=9L_spU4y9ri4fyFpLURh-trT0FbPIGPvnGpA_17ZpAw,3284
|
|
352
352
|
bpy/ops/cycles/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -474,7 +474,7 @@ bpy/path/__init__.pyi,sha256=UCfQ6H7g5j9jwGjKPxd2eYMJwzQ5-Vr3Kd6hXH3thiw,6314
|
|
|
474
474
|
bpy/path/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
475
475
|
bpy/props/__init__.pyi,sha256=ei-_J5SH-qKnDgtnMrvXkr0DofgLtDtjXgNB-1c8Ldk,29317
|
|
476
476
|
bpy/props/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
477
|
-
bpy/types/__init__.pyi,sha256=
|
|
477
|
+
bpy/types/__init__.pyi,sha256=sh06fRY-6zdS8IrZVuvSrZDp1SK08Gse2hewapxPkSE,3488070
|
|
478
478
|
bpy/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
479
479
|
bpy/utils/__init__.pyi,sha256=CVM4ltJPFVTnSYPPtClc91Ig-SR22wPIYfHRh_DpPSs,11228
|
|
480
480
|
bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -482,9 +482,9 @@ bpy/utils/previews/__init__.pyi,sha256=QUL94heIKlOmcCIBSYgpWFG75uqAW0YPzRTsIbtA1
|
|
|
482
482
|
bpy/utils/previews/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
483
483
|
bpy/utils/units/__init__.pyi,sha256=Htz1Vbpcp-YbtdqyvJyv-rsNAVHZVahWNi6Xy2qHUco,2786
|
|
484
484
|
bpy/utils/units/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
485
|
-
bpy_extras/__init__.pyi,sha256=
|
|
485
|
+
bpy_extras/__init__.pyi,sha256=wU-X7uqOT0gnR2jQONPO-zb_8KcbyMsTpjx052HV0_I,437
|
|
486
486
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
487
|
-
bpy_extras/anim_utils/__init__.pyi,sha256=
|
|
487
|
+
bpy_extras/anim_utils/__init__.pyi,sha256=7rqjmponyh1YSGD-WW14e3OkbV9piy2C_l57yGEjQDk,2919
|
|
488
488
|
bpy_extras/anim_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
489
489
|
bpy_extras/asset_utils/__init__.pyi,sha256=Yw6_V8IX3GOGnnp8i26UFitkNVe2cHCatrn9_DcmRRY,509
|
|
490
490
|
bpy_extras/asset_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -604,7 +604,7 @@ rna_xml/__init__.pyi,sha256=yyeBzQX0dO3yqIOD1PhXcgaE9jkEU7oyIOAfzZw8IVA,600
|
|
|
604
604
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
605
605
|
sys_info/__init__.pyi,sha256=o_UqpdlmDE4phA9Oyj4GV1u4zjo_rXndzej-ZUYFB7o,128
|
|
606
606
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
607
|
-
fake_bpy_module-
|
|
608
|
-
fake_bpy_module-
|
|
609
|
-
fake_bpy_module-
|
|
610
|
-
fake_bpy_module-
|
|
607
|
+
fake_bpy_module-20231212.dist-info/METADATA,sha256=SdAUI_KSZvmFbTWCUfri9H0XvsU-RS4Cbs64oPB1qao,7008
|
|
608
|
+
fake_bpy_module-20231212.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
609
|
+
fake_bpy_module-20231212.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
610
|
+
fake_bpy_module-20231212.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|