fake-bpy-module 20240109__py3-none-any.whl → 20240111__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 +3 -3
- bl_operators/__init__.pyi +21 -21
- bl_ui/__init__.pyi +61 -61
- bl_ui_utils/__init__.pyi +1 -1
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +65 -65
- bpy/ops/curves/__init__.pyi +42 -0
- bpy/ops/grease_pencil/__init__.pyi +46 -0
- bpy/ops/sequencer/__init__.pyi +3 -0
- bpy/ops/uv/__init__.pyi +6 -3
- bpy/types/__init__.pyi +93 -83
- bpy/utils/__init__.pyi +1 -1
- bpy_extras/__init__.pyi +2 -2
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20240109.dist-info → fake_bpy_module-20240111.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240109.dist-info → fake_bpy_module-20240111.dist-info}/RECORD +21 -21
- {fake_bpy_module-20240109.dist-info → fake_bpy_module-20240111.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240109.dist-info → fake_bpy_module-20240111.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_namespace
|
|
3
5
|
from . import complete_import
|
|
4
6
|
from . import intellisense
|
|
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
3
|
from . import merge_po
|
|
4
|
-
from . import utils_languages_menu
|
|
5
|
-
from . import utils_rtl
|
|
6
4
|
from . import utils_cli
|
|
7
5
|
from . import bl_extract_messages
|
|
8
|
-
from . import settings
|
|
9
6
|
from . import utils
|
|
7
|
+
from . import settings
|
|
8
|
+
from . import utils_rtl
|
|
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
|
|
3
|
+
from . import platform_helpers
|
|
4
4
|
from . import keymap_from_toolbar
|
|
5
|
-
from . import io
|
|
6
5
|
from . import versioning
|
|
7
|
-
from . import
|
|
6
|
+
from . import io
|
|
7
|
+
from . import keymap_hierarchy
|
|
8
8
|
|
|
9
9
|
GenericType = typing.TypeVar("GenericType")
|
bl_operators/__init__.pyi
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import
|
|
4
|
-
from . import
|
|
5
|
-
from . import constraint
|
|
6
|
-
from . import rigidbody
|
|
7
|
-
from . import uvcalc_lightmap
|
|
3
|
+
from . import add_mesh_torus
|
|
4
|
+
from . import mesh
|
|
8
5
|
from . import node
|
|
6
|
+
from . import image
|
|
7
|
+
from . import clip
|
|
8
|
+
from . import sequencer
|
|
9
|
+
from . import presets
|
|
10
|
+
from . import view3d
|
|
11
|
+
from . import rigidbody
|
|
12
|
+
from . import uvcalc_transform
|
|
13
|
+
from . import userpref
|
|
14
|
+
from . import constraint
|
|
15
|
+
from . import screen_play_rendered_anim
|
|
16
|
+
from . import bmesh
|
|
9
17
|
from . import spreadsheet
|
|
10
18
|
from . import object_randomize_transform
|
|
11
|
-
from . import view3d
|
|
12
|
-
from . import presets
|
|
13
|
-
from . import freestyle
|
|
14
|
-
from . import sequencer
|
|
15
19
|
from . import uvcalc_follow_active
|
|
20
|
+
from . import wm
|
|
21
|
+
from . import assets
|
|
22
|
+
from . import file
|
|
16
23
|
from . import object_quick_effects
|
|
17
|
-
from . import bmesh
|
|
18
|
-
from . import screen_play_rendered_anim
|
|
19
|
-
from . import geometry_nodes
|
|
20
|
-
from . import mesh
|
|
21
24
|
from . import vertexpaint_dirt
|
|
25
|
+
from . import console
|
|
22
26
|
from . import object_align
|
|
23
|
-
from . import
|
|
24
|
-
from . import assets
|
|
25
|
-
from . import image
|
|
26
|
-
from . import file
|
|
27
|
-
from . import clip
|
|
28
|
-
from . import uvcalc_transform
|
|
29
|
-
from . import userpref
|
|
30
|
-
from . import anim
|
|
27
|
+
from . import freestyle
|
|
31
28
|
from . import object
|
|
29
|
+
from . import anim
|
|
30
|
+
from . import geometry_nodes
|
|
31
|
+
from . import uvcalc_lightmap
|
|
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 space_view3d
|
|
7
|
-
from . import properties_data_grease_pencil
|
|
8
|
-
from . import space_sequencer
|
|
9
|
-
from . import space_text
|
|
10
|
-
from . import properties_particle
|
|
11
|
-
from . import space_toolsystem_toolbar
|
|
12
|
-
from . import space_clip
|
|
13
|
-
from . import space_userpref
|
|
14
|
-
from . import properties_paint_common
|
|
5
|
+
from . import properties_workspace
|
|
15
6
|
from . import utils
|
|
7
|
+
from . import node_add_menu_shader
|
|
16
8
|
from . import properties_physics_geometry_nodes
|
|
9
|
+
from . import properties_data_curves
|
|
10
|
+
from . import space_dopesheet
|
|
17
11
|
from . import properties_physics_rigidbody_constraint
|
|
18
|
-
from . import
|
|
19
|
-
from . import
|
|
20
|
-
from . import space_outliner
|
|
21
|
-
from . import space_filebrowser
|
|
22
|
-
from . import properties_data_lightprobe
|
|
23
|
-
from . import properties_render
|
|
24
|
-
from . import properties_mask_common
|
|
25
|
-
from . import properties_grease_pencil_common
|
|
26
|
-
from . import space_topbar
|
|
27
|
-
from . import properties_workspace
|
|
28
|
-
from . import properties_scene
|
|
29
|
-
from . import space_view3d_toolbar
|
|
30
|
-
from . import properties_data_armature
|
|
31
|
-
from . import properties_data_metaball
|
|
12
|
+
from . import asset_shelf
|
|
13
|
+
from . import properties_data_shaderfx
|
|
32
14
|
from . import properties_data_mesh
|
|
33
|
-
from . import
|
|
34
|
-
from . import
|
|
35
|
-
from . import
|
|
36
|
-
from . import
|
|
37
|
-
from . import
|
|
38
|
-
from . import
|
|
39
|
-
from . import
|
|
15
|
+
from . import properties_texture
|
|
16
|
+
from . import node_add_menu_compositor
|
|
17
|
+
from . import properties_particle
|
|
18
|
+
from . import space_sequencer
|
|
19
|
+
from . import space_graph
|
|
20
|
+
from . import properties_world
|
|
21
|
+
from . import properties_data_gpencil
|
|
22
|
+
from . import properties_data_curve
|
|
23
|
+
from . import properties_data_empty
|
|
40
24
|
from . import node_add_menu_geometry
|
|
41
|
-
from . import properties_data_pointcloud
|
|
42
|
-
from . import properties_data_modifier
|
|
43
25
|
from . import properties_output
|
|
44
|
-
from . import asset_shelf
|
|
45
|
-
from . import properties_texture
|
|
46
|
-
from . import properties_data_shaderfx
|
|
47
|
-
from . import space_toolsystem_common
|
|
48
|
-
from . import properties_data_speaker
|
|
49
|
-
from . import properties_material
|
|
50
|
-
from . import properties_freestyle
|
|
51
|
-
from . import node_add_menu
|
|
52
|
-
from . import properties_physics_field
|
|
53
|
-
from . import node_add_menu_texture
|
|
54
26
|
from . import space_info
|
|
55
|
-
from . import
|
|
27
|
+
from . import properties_physics_fluid
|
|
28
|
+
from . import properties_freestyle
|
|
29
|
+
from . import space_console
|
|
30
|
+
from . import space_properties
|
|
31
|
+
from . import properties_object
|
|
56
32
|
from . import space_spreadsheet
|
|
57
|
-
from . import
|
|
58
|
-
from . import
|
|
33
|
+
from . import space_text
|
|
34
|
+
from . import properties_physics_common
|
|
59
35
|
from . import properties_data_lattice
|
|
36
|
+
from . import properties_data_lightprobe
|
|
37
|
+
from . import node_add_menu_texture
|
|
38
|
+
from . import space_userpref
|
|
60
39
|
from . import properties_physics_dynamicpaint
|
|
61
|
-
from . import properties_animviz
|
|
62
|
-
from . import properties_physics_fluid
|
|
63
40
|
from . import properties_material_gpencil
|
|
64
|
-
from . import
|
|
65
|
-
from . import
|
|
66
|
-
from . import
|
|
67
|
-
from . import
|
|
68
|
-
from . import
|
|
69
|
-
from . import
|
|
70
|
-
from . import
|
|
41
|
+
from . import properties_physics_rigidbody
|
|
42
|
+
from . import space_node
|
|
43
|
+
from . import properties_data_grease_pencil
|
|
44
|
+
from . import space_view3d
|
|
45
|
+
from . import properties_render
|
|
46
|
+
from . import generic_ui_list
|
|
47
|
+
from . import properties_data_metaball
|
|
48
|
+
from . import space_toolsystem_common
|
|
49
|
+
from . import space_filebrowser
|
|
50
|
+
from . import properties_data_camera
|
|
71
51
|
from . import properties_data_bone
|
|
72
|
-
from . import
|
|
73
|
-
from . import properties_data_curve
|
|
74
|
-
from . import space_properties
|
|
52
|
+
from . import space_clip
|
|
75
53
|
from . import properties_data_light
|
|
76
54
|
from . import space_statusbar
|
|
77
|
-
from . import
|
|
78
|
-
from . import
|
|
79
|
-
from . import
|
|
55
|
+
from . import space_topbar
|
|
56
|
+
from . import space_outliner
|
|
57
|
+
from . import properties_scene
|
|
58
|
+
from . import properties_material
|
|
59
|
+
from . import properties_collection
|
|
60
|
+
from . import properties_physics_cloth
|
|
61
|
+
from . import properties_physics_field
|
|
62
|
+
from . import properties_paint_common
|
|
63
|
+
from . import properties_physics_softbody
|
|
64
|
+
from . import properties_data_armature
|
|
65
|
+
from . import node_add_menu
|
|
66
|
+
from . import space_nla
|
|
67
|
+
from . import properties_data_volume
|
|
68
|
+
from . import properties_data_pointcloud
|
|
69
|
+
from . import space_image
|
|
70
|
+
from . import properties_constraint
|
|
71
|
+
from . import properties_view_layer
|
|
72
|
+
from . import space_view3d_toolbar
|
|
73
|
+
from . import properties_mask_common
|
|
74
|
+
from . import properties_data_speaker
|
|
75
|
+
from . import space_time
|
|
76
|
+
from . import properties_data_modifier
|
|
77
|
+
from . import properties_animviz
|
|
78
|
+
from . import properties_grease_pencil_common
|
|
79
|
+
from . import space_toolsystem_toolbar
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
|
82
82
|
|
bl_ui_utils/__init__.pyi
CHANGED
bpy/__init__.pyi
CHANGED
bpy/app/__init__.pyi
CHANGED
bpy/ops/__init__.pyi
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import world
|
|
4
|
-
from . import curves
|
|
5
|
-
from . import poselib
|
|
6
|
-
from . import ed
|
|
7
|
-
from . import camera
|
|
8
|
-
from . import import_mesh
|
|
9
|
-
from . import export_anim
|
|
10
|
-
from . import mask
|
|
11
|
-
from . import anim
|
|
12
|
-
from . import info
|
|
13
|
-
from . import export_mesh
|
|
14
|
-
from . import scene
|
|
15
|
-
from . import sculpt_curves
|
|
16
|
-
from . import texture
|
|
17
|
-
from . import armature
|
|
18
|
-
from . import gizmogroup
|
|
19
3
|
from . import paintcurve
|
|
20
|
-
from . import
|
|
21
|
-
from . import text
|
|
22
|
-
from . import spreadsheet
|
|
23
|
-
from . import pose
|
|
24
|
-
from . import sequencer
|
|
25
|
-
from . import sound
|
|
4
|
+
from . import particle
|
|
26
5
|
from . import export_scene
|
|
27
|
-
from . import
|
|
28
|
-
from . import
|
|
29
|
-
from . import
|
|
30
|
-
from . import file
|
|
31
|
-
from . import view3d
|
|
32
|
-
from . import grease_pencil
|
|
6
|
+
from . import outliner
|
|
7
|
+
from . import sculpt
|
|
8
|
+
from . import fluid
|
|
33
9
|
from . import wm
|
|
34
|
-
from . import
|
|
35
|
-
from . import
|
|
36
|
-
from . import
|
|
37
|
-
from . import
|
|
10
|
+
from . import import_anim
|
|
11
|
+
from . import geometry
|
|
12
|
+
from . import export_mesh
|
|
13
|
+
from . import info
|
|
38
14
|
from . import asset
|
|
39
|
-
from . import
|
|
40
|
-
from . import
|
|
41
|
-
from . import
|
|
42
|
-
from . import
|
|
43
|
-
from . import
|
|
44
|
-
from . import
|
|
45
|
-
from . import
|
|
46
|
-
from . import
|
|
15
|
+
from . import poselib
|
|
16
|
+
from . import grease_pencil
|
|
17
|
+
from . import text_editor
|
|
18
|
+
from . import pose
|
|
19
|
+
from . import boid
|
|
20
|
+
from . import uv
|
|
21
|
+
from . import export_anim
|
|
22
|
+
from . import curves
|
|
23
|
+
from . import import_mesh
|
|
47
24
|
from . import import_scene
|
|
48
|
-
from . import
|
|
25
|
+
from . import anim
|
|
26
|
+
from . import mesh
|
|
27
|
+
from . import text
|
|
28
|
+
from . import gizmogroup
|
|
29
|
+
from . import curve
|
|
30
|
+
from . import mask
|
|
31
|
+
from . import scene
|
|
32
|
+
from . import cachefile
|
|
49
33
|
from . import script
|
|
50
|
-
from . import
|
|
34
|
+
from . import ed
|
|
35
|
+
from . import font
|
|
36
|
+
from . import screen
|
|
37
|
+
from . import console
|
|
38
|
+
from . import camera
|
|
51
39
|
from . import surface
|
|
52
|
-
from . import
|
|
40
|
+
from . import node
|
|
41
|
+
from . import collection
|
|
53
42
|
from . import image
|
|
54
|
-
from . import
|
|
43
|
+
from . import uilist
|
|
44
|
+
from . import preferences
|
|
45
|
+
from . import import_curve
|
|
46
|
+
from . import rigidbody
|
|
47
|
+
from . import brush
|
|
48
|
+
from . import palette
|
|
49
|
+
from . import cycles
|
|
50
|
+
from . import buttons
|
|
51
|
+
from . import sculpt_curves
|
|
55
52
|
from . import render
|
|
56
|
-
from . import nla
|
|
57
|
-
from . import mball
|
|
58
|
-
from . import paint
|
|
59
|
-
from . import graph
|
|
60
|
-
from . import cachefile
|
|
61
|
-
from . import uv
|
|
62
|
-
from . import import_anim
|
|
63
|
-
from . import console
|
|
64
|
-
from . import fluid
|
|
65
53
|
from . import cloth
|
|
66
|
-
from . import boid
|
|
67
|
-
from . import buttons
|
|
68
|
-
from . import outliner
|
|
69
|
-
from . import text_editor
|
|
70
|
-
from . import lattice
|
|
71
|
-
from . import action
|
|
72
|
-
from . import object
|
|
73
|
-
from . import screen
|
|
74
54
|
from . import ptcache
|
|
55
|
+
from . import workspace
|
|
56
|
+
from . import object
|
|
57
|
+
from . import armature
|
|
58
|
+
from . import paint
|
|
59
|
+
from . import dpaint
|
|
60
|
+
from . import view3d
|
|
61
|
+
from . import nla
|
|
62
|
+
from . import clip
|
|
63
|
+
from . import world
|
|
64
|
+
from . import lattice
|
|
65
|
+
from . import sequencer
|
|
66
|
+
from . import view2d
|
|
75
67
|
from . import gpencil
|
|
76
|
-
from . import
|
|
77
|
-
from . import
|
|
78
|
-
from . import
|
|
79
|
-
from . import
|
|
68
|
+
from . import material
|
|
69
|
+
from . import mball
|
|
70
|
+
from . import sound
|
|
71
|
+
from . import file
|
|
72
|
+
from . import ui
|
|
73
|
+
from . import spreadsheet
|
|
74
|
+
from . import marker
|
|
75
|
+
from . import action
|
|
76
|
+
from . import constraint
|
|
77
|
+
from . import graph
|
|
78
|
+
from . import texture
|
|
79
|
+
from . import transform
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
bpy/ops/curves/__init__.pyi
CHANGED
|
@@ -104,6 +104,7 @@ def draw(
|
|
|
104
104
|
] = None,
|
|
105
105
|
wait_for_input: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
106
106
|
is_curve_2d: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
107
|
+
bezier_as_nurbs: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
107
108
|
):
|
|
108
109
|
"""Draw a freehand curve
|
|
109
110
|
|
|
@@ -124,6 +125,8 @@ def draw(
|
|
|
124
125
|
:type wait_for_input: typing.Optional[typing.Union[bool, typing.Any]]
|
|
125
126
|
:param is_curve_2d: Curve 2D
|
|
126
127
|
:type is_curve_2d: typing.Optional[typing.Union[bool, typing.Any]]
|
|
128
|
+
:param bezier_as_nurbs: As NURBS
|
|
129
|
+
:type bezier_as_nurbs: typing.Optional[typing.Union[bool, typing.Any]]
|
|
127
130
|
"""
|
|
128
131
|
|
|
129
132
|
...
|
|
@@ -167,6 +170,45 @@ def duplicate_move(
|
|
|
167
170
|
|
|
168
171
|
...
|
|
169
172
|
|
|
173
|
+
def extrude(
|
|
174
|
+
override_context: typing.Optional[
|
|
175
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
176
|
+
] = None,
|
|
177
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
178
|
+
undo: typing.Optional[bool] = None,
|
|
179
|
+
):
|
|
180
|
+
"""Extrude selected control point(s)
|
|
181
|
+
|
|
182
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
183
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
184
|
+
:type undo: typing.Optional[bool]
|
|
185
|
+
"""
|
|
186
|
+
|
|
187
|
+
...
|
|
188
|
+
|
|
189
|
+
def extrude_move(
|
|
190
|
+
override_context: typing.Optional[
|
|
191
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
192
|
+
] = None,
|
|
193
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
194
|
+
undo: typing.Optional[bool] = None,
|
|
195
|
+
*,
|
|
196
|
+
CURVES_OT_extrude: typing.Optional["extrude"] = None,
|
|
197
|
+
TRANSFORM_OT_translate: typing.Optional["bpy.ops.transform.translate"] = None,
|
|
198
|
+
):
|
|
199
|
+
"""Extrude curve and move result
|
|
200
|
+
|
|
201
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
202
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
203
|
+
:type undo: typing.Optional[bool]
|
|
204
|
+
:param CURVES_OT_extrude: Extrude, Extrude selected control point(s)
|
|
205
|
+
:type CURVES_OT_extrude: typing.Optional['extrude']
|
|
206
|
+
:param TRANSFORM_OT_translate: Move, Move selected items
|
|
207
|
+
:type TRANSFORM_OT_translate: typing.Optional['bpy.ops.transform.translate']
|
|
208
|
+
"""
|
|
209
|
+
|
|
210
|
+
...
|
|
211
|
+
|
|
170
212
|
def sculptmode_toggle(
|
|
171
213
|
override_context: typing.Optional[
|
|
172
214
|
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
@@ -766,6 +766,52 @@ def stroke_smooth(
|
|
|
766
766
|
|
|
767
767
|
...
|
|
768
768
|
|
|
769
|
+
def stroke_subdivide(
|
|
770
|
+
override_context: typing.Optional[
|
|
771
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
772
|
+
] = None,
|
|
773
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
774
|
+
undo: typing.Optional[bool] = None,
|
|
775
|
+
*,
|
|
776
|
+
number_cuts: typing.Optional[typing.Any] = 1,
|
|
777
|
+
only_selected: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
778
|
+
):
|
|
779
|
+
"""Subdivide between continuous selected points of the stroke adding a point half way between them
|
|
780
|
+
|
|
781
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
782
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
783
|
+
:type undo: typing.Optional[bool]
|
|
784
|
+
:param number_cuts: Number of Cuts
|
|
785
|
+
:type number_cuts: typing.Optional[typing.Any]
|
|
786
|
+
:param only_selected: Selected Points, Smooth only selected points in the stroke
|
|
787
|
+
:type only_selected: typing.Optional[typing.Union[bool, typing.Any]]
|
|
788
|
+
"""
|
|
789
|
+
|
|
790
|
+
...
|
|
791
|
+
|
|
792
|
+
def stroke_subdivide_smooth(
|
|
793
|
+
override_context: typing.Optional[
|
|
794
|
+
typing.Union[typing.Dict, "bpy.types.Context"]
|
|
795
|
+
] = None,
|
|
796
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
797
|
+
undo: typing.Optional[bool] = None,
|
|
798
|
+
*,
|
|
799
|
+
GREASE_PENCIL_OT_stroke_subdivide: typing.Optional[typing.Any] = None,
|
|
800
|
+
GREASE_PENCIL_OT_stroke_smooth: typing.Optional[typing.Any] = None,
|
|
801
|
+
):
|
|
802
|
+
"""Subdivide strokes and smooth them
|
|
803
|
+
|
|
804
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
805
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
806
|
+
:type undo: typing.Optional[bool]
|
|
807
|
+
:param GREASE_PENCIL_OT_stroke_subdivide: Subdivide Stroke, Subdivide between continuous selected points of the stroke adding a point half way between them
|
|
808
|
+
:type GREASE_PENCIL_OT_stroke_subdivide: typing.Optional[typing.Any]
|
|
809
|
+
:param GREASE_PENCIL_OT_stroke_smooth: Smooth Stroke, Smooth selected strokes
|
|
810
|
+
:type GREASE_PENCIL_OT_stroke_smooth: typing.Optional[typing.Any]
|
|
811
|
+
"""
|
|
812
|
+
|
|
813
|
+
...
|
|
814
|
+
|
|
769
815
|
def stroke_switch_direction(
|
|
770
816
|
override_context: typing.Optional[
|
|
771
817
|
typing.Union[typing.Dict, "bpy.types.Context"]
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -241,6 +241,7 @@ def delete(
|
|
|
241
241
|
undo: typing.Optional[bool] = None,
|
|
242
242
|
*,
|
|
243
243
|
delete_data: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
244
|
+
use_retiming_mode: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
244
245
|
):
|
|
245
246
|
"""Delete selected strips from the sequencer
|
|
246
247
|
|
|
@@ -249,6 +250,8 @@ def delete(
|
|
|
249
250
|
:type undo: typing.Optional[bool]
|
|
250
251
|
:param delete_data: Delete Data, After removing the Strip, delete the associated data also
|
|
251
252
|
:type delete_data: typing.Optional[typing.Union[bool, typing.Any]]
|
|
253
|
+
:param use_retiming_mode: Use Retiming Data, Operate on retiming data instead of strips
|
|
254
|
+
:type use_retiming_mode: typing.Optional[typing.Union[bool, typing.Any]]
|
|
252
255
|
"""
|
|
253
256
|
|
|
254
257
|
...
|
bpy/ops/uv/__init__.pyi
CHANGED
|
@@ -230,7 +230,7 @@ def follow_active_quads(
|
|
|
230
230
|
*,
|
|
231
231
|
mode: typing.Optional[typing.Any] = "LENGTH_AVERAGE",
|
|
232
232
|
):
|
|
233
|
-
"""Follow UVs from active quads along continuous face loops :File: `startup/bl_operators/uvcalc_follow_active.py\:
|
|
233
|
+
"""Follow UVs from active quads along continuous face loops :File: `startup/bl_operators/uvcalc_follow_active.py\:279 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/uvcalc_follow_active.py#L279>`__
|
|
234
234
|
|
|
235
235
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
236
236
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -274,7 +274,7 @@ def lightmap_pack(
|
|
|
274
274
|
PREF_BOX_DIV: typing.Optional[typing.Any] = 12,
|
|
275
275
|
PREF_MARGIN_DIV: typing.Optional[typing.Any] = 0.1,
|
|
276
276
|
):
|
|
277
|
-
"""Pack each face's UVs into the UV bounds :File: `startup/bl_operators/uvcalc_lightmap.py\:
|
|
277
|
+
"""Pack each face's UVs into the UV bounds :File: `startup/bl_operators/uvcalc_lightmap.py\:662 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/uvcalc_lightmap.py#L662>`__
|
|
278
278
|
|
|
279
279
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
280
280
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
@@ -366,7 +366,7 @@ def pack_islands(
|
|
|
366
366
|
:type udim_source: typing.Optional[typing.Any]
|
|
367
367
|
:param rotate: Rotate, Rotate islands to improve layout
|
|
368
368
|
:type rotate: typing.Optional[typing.Union[bool, typing.Any]]
|
|
369
|
-
:param rotate_method: Rotation Method * ``AXIS_ALIGNED`` Axis-aligned -- Rotated to a minimal rectangle, either vertical or horizontal. * ``
|
|
369
|
+
:param rotate_method: Rotation Method * ``ANY`` Any -- Any angle is allowed for rotation. * ``CARDINAL`` Cardinal -- Only 90 degree rotations are allowed. * ``AXIS_ALIGNED`` Axis-aligned -- Rotated to a minimal rectangle, either vertical or horizontal. * ``AXIS_ALIGNED_X`` Axis-aligned (Horizontal) -- Rotate islands to be aligned horizontally. * ``AXIS_ALIGNED_Y`` Axis-aligned (Vertical) -- Rotate islands to be aligned vertically.
|
|
370
370
|
:type rotate_method: typing.Optional[typing.Any]
|
|
371
371
|
:param scale: Scale, Scale islands to fill unit square
|
|
372
372
|
:type scale: typing.Optional[typing.Union[bool, typing.Any]]
|
|
@@ -1083,6 +1083,7 @@ def smart_project(
|
|
|
1083
1083
|
*,
|
|
1084
1084
|
angle_limit: typing.Optional[typing.Any] = 1.15192,
|
|
1085
1085
|
margin_method: typing.Optional[typing.Any] = "SCALED",
|
|
1086
|
+
rotate_method: typing.Optional[typing.Any] = "AXIS_ALIGNED_Y",
|
|
1086
1087
|
island_margin: typing.Optional[typing.Any] = 0.0,
|
|
1087
1088
|
area_weight: typing.Optional[typing.Any] = 0.0,
|
|
1088
1089
|
correct_aspect: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
@@ -1097,6 +1098,8 @@ def smart_project(
|
|
|
1097
1098
|
:type angle_limit: typing.Optional[typing.Any]
|
|
1098
1099
|
:param margin_method: Margin Method * ``SCALED`` Scaled -- Use scale of existing UVs to multiply margin. * ``ADD`` Add -- Just add the margin, ignoring any UV scale. * ``FRACTION`` Fraction -- Specify a precise fraction of final UV output.
|
|
1099
1100
|
:type margin_method: typing.Optional[typing.Any]
|
|
1101
|
+
:param rotate_method: Rotation Method * ``AXIS_ALIGNED`` Axis-aligned -- Rotated to a minimal rectangle, either vertical or horizontal. * ``AXIS_ALIGNED_X`` Axis-aligned (Horizontal) -- Rotate islands to be aligned horizontally. * ``AXIS_ALIGNED_Y`` Axis-aligned (Vertical) -- Rotate islands to be aligned vertically.
|
|
1102
|
+
:type rotate_method: typing.Optional[typing.Any]
|
|
1100
1103
|
:param island_margin: Island Margin, Margin to reduce bleed from adjacent islands
|
|
1101
1104
|
:type island_margin: typing.Optional[typing.Any]
|
|
1102
1105
|
:param area_weight: Area Weight, Weight projection's vector by faces with larger areas
|
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
|
|
7
|
-
import bl_ui.properties_data_camera
|
|
8
|
-
import bl_ui.space_view3d
|
|
9
|
-
import bl_ui.properties_data_grease_pencil
|
|
10
|
-
import bl_ui.space_sequencer
|
|
11
|
-
import bl_ui.space_text
|
|
12
|
-
import bl_ui.properties_particle
|
|
13
|
-
import bl_ui.space_toolsystem_toolbar
|
|
14
|
-
import bl_ui.space_clip
|
|
15
|
-
import bl_ui.space_userpref
|
|
16
|
-
import bl_operators.node
|
|
17
|
-
import bl_ui.properties_paint_common
|
|
5
|
+
import bl_ui.properties_workspace
|
|
6
|
+
import bl_ui.node_add_menu_shader
|
|
18
7
|
import bl_ui.properties_physics_geometry_nodes
|
|
8
|
+
import bl_ui.properties_data_curves
|
|
9
|
+
import bl_ui.space_dopesheet
|
|
10
|
+
import bl_operators.node
|
|
11
|
+
import bl_operators.clip
|
|
19
12
|
import bl_ui.properties_physics_rigidbody_constraint
|
|
20
|
-
import bl_ui.
|
|
21
|
-
import bl_ui.
|
|
22
|
-
import bl_ui.space_outliner
|
|
23
|
-
import bl_ui.space_filebrowser
|
|
24
|
-
import bl_ui.properties_data_lightprobe
|
|
25
|
-
import bl_ui.properties_render
|
|
26
|
-
import bl_ui.properties_mask_common
|
|
27
|
-
import bl_ui.properties_grease_pencil_common
|
|
28
|
-
import bl_operators.spreadsheet
|
|
29
|
-
import bl_ui.space_topbar
|
|
30
|
-
import bl_operators.view3d
|
|
31
|
-
import bl_ui.properties_workspace
|
|
32
|
-
import bl_ui.properties_scene
|
|
33
|
-
import bl_ui.space_view3d_toolbar
|
|
34
|
-
import bl_ui.properties_data_armature
|
|
35
|
-
import bl_ui.properties_data_metaball
|
|
13
|
+
import bl_ui.asset_shelf
|
|
14
|
+
import bl_ui.properties_data_shaderfx
|
|
36
15
|
import bl_ui.properties_data_mesh
|
|
37
|
-
import
|
|
38
|
-
import bl_ui.
|
|
39
|
-
import bl_ui.
|
|
40
|
-
import bl_ui.
|
|
41
|
-
import
|
|
42
|
-
import bl_ui.
|
|
43
|
-
import bl_ui.
|
|
44
|
-
import bl_ui.
|
|
45
|
-
import bl_ui.
|
|
16
|
+
import bl_ui.properties_texture
|
|
17
|
+
import bl_ui.node_add_menu_compositor
|
|
18
|
+
import bl_ui.properties_particle
|
|
19
|
+
import bl_ui.space_sequencer
|
|
20
|
+
import bl_ui.space_graph
|
|
21
|
+
import bl_ui.properties_world
|
|
22
|
+
import bl_ui.properties_data_gpencil
|
|
23
|
+
import bl_ui.properties_data_curve
|
|
24
|
+
import bl_ui.properties_data_empty
|
|
46
25
|
import bl_ui.node_add_menu_geometry
|
|
47
|
-
import bl_ui.properties_data_pointcloud
|
|
48
|
-
import bl_ui.properties_data_modifier
|
|
49
26
|
import bl_ui.properties_output
|
|
50
|
-
import bl_ui.asset_shelf
|
|
51
|
-
import bl_ui.properties_texture
|
|
52
|
-
import bl_ui.properties_data_shaderfx
|
|
53
|
-
import bl_ui.space_toolsystem_common
|
|
54
|
-
import bl_ui.properties_data_speaker
|
|
55
|
-
import bl_ui.properties_material
|
|
56
|
-
import bl_ui
|
|
57
|
-
import bl_ui.properties_freestyle
|
|
58
|
-
import bl_ui.node_add_menu
|
|
59
|
-
import bl_ui.properties_physics_field
|
|
60
|
-
import bl_ui.node_add_menu_texture
|
|
61
27
|
import bl_ui.space_info
|
|
62
|
-
import bl_ui.
|
|
28
|
+
import bl_ui.properties_physics_fluid
|
|
29
|
+
import bl_ui.properties_freestyle
|
|
30
|
+
import bl_ui.space_console
|
|
31
|
+
import bl_ui.space_properties
|
|
32
|
+
import bl_ui.properties_object
|
|
63
33
|
import bl_ui.space_spreadsheet
|
|
64
|
-
import
|
|
65
|
-
import bl_ui.
|
|
34
|
+
import bl_operators.presets
|
|
35
|
+
import bl_ui.space_text
|
|
36
|
+
import bl_operators.view3d
|
|
37
|
+
import bl_ui.properties_physics_common
|
|
66
38
|
import bl_ui.properties_data_lattice
|
|
67
|
-
import
|
|
39
|
+
import bl_ui.properties_data_lightprobe
|
|
40
|
+
import bl_ui.node_add_menu_texture
|
|
41
|
+
import bl_ui.space_userpref
|
|
68
42
|
import bl_ui.properties_physics_dynamicpaint
|
|
69
|
-
import bl_ui.properties_physics_fluid
|
|
70
43
|
import bl_ui.properties_material_gpencil
|
|
71
|
-
import bl_ui.
|
|
72
|
-
import bl_ui.
|
|
73
|
-
import bl_ui.
|
|
74
|
-
import bl_ui.
|
|
75
|
-
import bl_ui.properties_data_curves
|
|
76
|
-
import bl_ui.space_time
|
|
77
|
-
import bl_operators.file
|
|
78
|
-
import bl_ui.node_add_menu_compositor
|
|
79
|
-
import bl_ui.properties_data_bone
|
|
80
|
-
import bl_operators.clip
|
|
81
|
-
import bl_ui.properties_data_volume
|
|
82
|
-
import bl_ui.properties_data_curve
|
|
83
|
-
import bl_ui.space_properties
|
|
44
|
+
import bl_ui.properties_physics_rigidbody
|
|
45
|
+
import bl_ui.space_node
|
|
46
|
+
import bl_ui.properties_data_grease_pencil
|
|
47
|
+
import bl_ui.space_view3d
|
|
84
48
|
import bl_operators.userpref
|
|
49
|
+
import bl_operators.constraint
|
|
50
|
+
import bl_ui.properties_render
|
|
51
|
+
import bl_ui.generic_ui_list
|
|
52
|
+
import bl_ui.properties_data_metaball
|
|
53
|
+
import bl_ui.space_toolsystem_common
|
|
54
|
+
import bl_ui.space_filebrowser
|
|
55
|
+
import bl_ui.properties_data_camera
|
|
56
|
+
import bl_operators.spreadsheet
|
|
57
|
+
import bl_ui.properties_data_bone
|
|
58
|
+
import bl_ui.space_clip
|
|
85
59
|
import bl_ui.properties_data_light
|
|
86
|
-
import bl_operators.anim
|
|
87
60
|
import bl_ui.space_statusbar
|
|
88
|
-
import bl_ui.
|
|
89
|
-
import bl_ui.
|
|
61
|
+
import bl_ui.space_topbar
|
|
62
|
+
import bl_ui.space_outliner
|
|
63
|
+
import bl_ui.properties_scene
|
|
64
|
+
import bl_ui.properties_material
|
|
65
|
+
import bl_ui.properties_collection
|
|
66
|
+
import bl_ui.properties_physics_cloth
|
|
67
|
+
import bl_ui.properties_physics_field
|
|
68
|
+
import bl_ui.properties_paint_common
|
|
69
|
+
import bl_operators.wm
|
|
70
|
+
import bl_ui.properties_physics_softbody
|
|
71
|
+
import bl_ui.properties_data_armature
|
|
72
|
+
import bl_operators.assets
|
|
73
|
+
import bl_ui.node_add_menu
|
|
74
|
+
import bl_ui.space_nla
|
|
75
|
+
import bl_operators.file
|
|
76
|
+
import bl_ui.properties_data_volume
|
|
77
|
+
import bl_ui
|
|
78
|
+
import bl_ui.properties_data_pointcloud
|
|
79
|
+
import bl_ui.space_image
|
|
80
|
+
import bl_ui.properties_constraint
|
|
81
|
+
import bl_ui.properties_view_layer
|
|
82
|
+
import bl_ui.space_view3d_toolbar
|
|
83
|
+
import bl_operators.freestyle
|
|
84
|
+
import bl_ui.properties_mask_common
|
|
85
|
+
import bl_ui.properties_data_speaker
|
|
86
|
+
import bl_ui.space_time
|
|
90
87
|
import bl_operators.object
|
|
91
|
-
import bl_ui.
|
|
88
|
+
import bl_ui.properties_data_modifier
|
|
89
|
+
import bl_operators.anim
|
|
90
|
+
import bl_ui.properties_grease_pencil_common
|
|
91
|
+
import bl_ui.space_toolsystem_toolbar
|
|
92
92
|
|
|
93
93
|
GenericType = typing.TypeVar("GenericType")
|
|
94
94
|
|
|
@@ -3194,12 +3194,6 @@ class BoneCollections(bpy_struct):
|
|
|
3194
3194
|
:type: typing.Union[str, typing.Any]
|
|
3195
3195
|
"""
|
|
3196
3196
|
|
|
3197
|
-
all: bpy_prop_collection["BoneCollection"]
|
|
3198
|
-
""" List of the top-level bone collections in the hierarchy
|
|
3199
|
-
|
|
3200
|
-
:type: bpy_prop_collection['BoneCollection']
|
|
3201
|
-
"""
|
|
3202
|
-
|
|
3203
3197
|
def new(
|
|
3204
3198
|
self,
|
|
3205
3199
|
name: typing.Union[str, typing.Any],
|
|
@@ -6832,10 +6826,10 @@ class Context(bpy_struct):
|
|
|
6832
6826
|
:type: 'UIList'
|
|
6833
6827
|
"""
|
|
6834
6828
|
|
|
6835
|
-
property: typing.Union[str, int, "
|
|
6836
|
-
""" Get the property associated with a hovered button. Returns a tuple of the
|
|
6829
|
+
property: typing.Union[str, int, "AnyType"]
|
|
6830
|
+
""" Get the property associated with a hovered button. Returns a tuple of the data-block, data path to the property, and array index.
|
|
6837
6831
|
|
|
6838
|
-
:type: typing.Union[str, int, '
|
|
6832
|
+
:type: typing.Union[str, int, 'AnyType']
|
|
6839
6833
|
"""
|
|
6840
6834
|
|
|
6841
6835
|
edit_text: "Text"
|
|
@@ -15851,12 +15845,16 @@ class ID(bpy_struct):
|
|
|
15851
15845
|
...
|
|
15852
15846
|
|
|
15853
15847
|
def make_local(
|
|
15854
|
-
self,
|
|
15848
|
+
self,
|
|
15849
|
+
clear_proxy: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
15850
|
+
clear_liboverride: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
15855
15851
|
) -> "ID":
|
|
15856
15852
|
"""Make this datablock local, return local one (may be a copy of the original, in case it is also indirectly used)
|
|
15857
15853
|
|
|
15858
15854
|
:param clear_proxy: Deprecated, has no effect
|
|
15859
15855
|
:type clear_proxy: typing.Optional[typing.Union[bool, typing.Any]]
|
|
15856
|
+
:param clear_liboverride: Remove potential library override data from the newly made local data
|
|
15857
|
+
:type clear_liboverride: typing.Optional[typing.Union[bool, typing.Any]]
|
|
15860
15858
|
:rtype: 'ID'
|
|
15861
15859
|
:return: This ID, or the new ID if it was copied
|
|
15862
15860
|
"""
|
|
@@ -55827,6 +55825,12 @@ class Armature(ID, bpy_struct):
|
|
|
55827
55825
|
:type: typing.Union[typing.Dict[str, 'BoneCollection'], typing.List['BoneCollection'], 'bpy_prop_collection', 'BoneCollections']
|
|
55828
55826
|
"""
|
|
55829
55827
|
|
|
55828
|
+
collections_all: bpy_prop_collection["BoneCollection"]
|
|
55829
|
+
""" List of all bone collections of the armature
|
|
55830
|
+
|
|
55831
|
+
:type: bpy_prop_collection['BoneCollection']
|
|
55832
|
+
"""
|
|
55833
|
+
|
|
55830
55834
|
display_type: typing.Union[str, int]
|
|
55831
55835
|
""" * ``OCTAHEDRAL`` Octahedral -- Display bones as octahedral shape (default). * ``STICK`` Stick -- Display bones as simple 2D lines with dots. * ``BBONE`` B-Bone -- Display bones as boxes, showing subdivision and B-Splines. * ``ENVELOPE`` Envelope -- Display bones as extruded spheres, showing deformation influence volume. * ``WIRE`` Wire -- Display bones as thin wires, showing subdivision and B-Splines.
|
|
55832
55836
|
|
|
@@ -58783,6 +58787,12 @@ class GreasePencilv3(ID, bpy_struct):
|
|
|
58783
58787
|
:type: 'GreasePencilv3Layers'
|
|
58784
58788
|
"""
|
|
58785
58789
|
|
|
58790
|
+
materials: "IDMaterials"
|
|
58791
|
+
"""
|
|
58792
|
+
|
|
58793
|
+
:type: 'IDMaterials'
|
|
58794
|
+
"""
|
|
58795
|
+
|
|
58786
58796
|
@classmethod
|
|
58787
58797
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
58788
58798
|
"""
|
bpy/utils/__init__.pyi
CHANGED
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 bmesh_utils
|
|
14
13
|
from . import extensions
|
|
15
|
-
from . import wm_utils
|
|
16
14
|
from . import node_shader_utils
|
|
15
|
+
from . import wm_utils
|
|
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=FuzpCqwpWu7WQjYAIttoIBtpaA4d4d-9NgHcmTXwmDc,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=sRykP_YmO-YeKVbQWCXZdVG6lP97vHPDGkrpBq-kMys,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=bdm4QcXHN-BQVgzCbbjFfwUnu85PhAU2Ek6qEAP4QUc,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=O1T-MQdIvXcGfdXhd67EXxMa0p01o7GMIaS3QxF3-ak,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=AqpOxwVlPhQ4rC8bibGKxevhbmwujP-glVSbYVzMEYk,8144
|
|
@@ -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=tcS8Y3dzId8VPNyzx2PChDxg5_WYugQOzkWdlyR9LeA,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=09VcD0Qr5ySzpITMc17GRGqGUrN-qjyG6qBeq0jgIFk,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=NvWCClOMRwnXPLHi7Cc8HAl7qhYHJLQLx1d68-JwcCM,324
|
|
172
172
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
173
|
-
bpy/app/__init__.pyi,sha256=
|
|
173
|
+
bpy/app/__init__.pyi,sha256=rhjJ0wS0ay5CHW73nSMoB2fznlfPRZaUH0ZmzBEJeZU,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=xO2Xu6bEaxC4OeMB3w9pIvkJ-EGseklDFAlKj2sHtEI,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=rmPBCITumJwDVcznpBRUiR-4BnBjtPiTSf-D8XeNacY,35124
|
|
@@ -192,7 +192,7 @@ bpy/ops/collection/__init__.pyi,sha256=8dJRBXjOT8n0c5kq9b0BpeUfaWhu_n_fex8bdZ4h0
|
|
|
192
192
|
bpy/ops/console/__init__.pyi,sha256=cEOJFVWbEYZAUENVX8w2_xyjCuRd0Y1F0DSBasORcPw,14283
|
|
193
193
|
bpy/ops/constraint/__init__.pyi,sha256=OZVrXTbup747UxcaiYtogrmOnFYxk94iApZgwRQSmMI,17659
|
|
194
194
|
bpy/ops/curve/__init__.pyi,sha256=VXbp5UUht8Appc9PstFUuYmf_S3yPX1qR3wMdOr1Spo,42537
|
|
195
|
-
bpy/ops/curves/__init__.pyi,sha256=
|
|
195
|
+
bpy/ops/curves/__init__.pyi,sha256=e8XIciymw0M4pRvuAxGxE5_FDx0Q5SQADSdJq1M20tY,15374
|
|
196
196
|
bpy/ops/cycles/__init__.pyi,sha256=l6YsiEcui-h8XApGHwa_QTFKtuXkJ2lZBGNdLlHuokc,3223
|
|
197
197
|
bpy/ops/dpaint/__init__.pyi,sha256=qfxq-Q3MSTZVKEn-kQ_5CX2pD7qqFdkq39mGn576ORw,2896
|
|
198
198
|
bpy/ops/ed/__init__.pyi,sha256=N_wrFE7QDA3KW4mXvuAbaSR-3r37BtIklLGhhgBIDQU,11672
|
|
@@ -206,7 +206,7 @@ bpy/ops/geometry/__init__.pyi,sha256=19WtixV9A3oa9xYuGhOGKeoijBFa83ne1E6RTmP-tnY
|
|
|
206
206
|
bpy/ops/gizmogroup/__init__.pyi,sha256=n9ET25rm9sc_j1SsDuvQ3PLbEmh1S8YNq2o456dqE94,2201
|
|
207
207
|
bpy/ops/gpencil/__init__.pyi,sha256=gKFC7yiQUB9OWwBRoBErvvz-g0CwSTMNuYfhhIqm0As,134974
|
|
208
208
|
bpy/ops/graph/__init__.pyi,sha256=TutQFsywiJNy0YB5eEJg_hWM0SHfAWx9AOYqc9a4mlY,61775
|
|
209
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
209
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=kDov2s3djH8N_qc70h770uAO3YKrE8F8EB0xSA0OscI,29907
|
|
210
210
|
bpy/ops/image/__init__.pyi,sha256=tQeEyEmI85zvBDwR-8GN8aUx6YbF-lck_jXyCq06VrI,57349
|
|
211
211
|
bpy/ops/import_anim/__init__.pyi,sha256=si81KKL3Yb8XDgrsydXoPbGTjhyLS4fYhSd-cNuJxp0,3405
|
|
212
212
|
bpy/ops/import_curve/__init__.pyi,sha256=ep0OuZXEzCd_1TNYuPXlyKDeqexDxYxeco_kUrxt_ck,1019
|
|
@@ -238,7 +238,7 @@ bpy/ops/screen/__init__.pyi,sha256=LB1ha7OeDmUXcx_B3lEHn03W3kS4u7Amwb0BPYZnd1U,3
|
|
|
238
238
|
bpy/ops/script/__init__.pyi,sha256=LANo_yJJQFxybRTgbfrvWwQFvYmbhNvGeLRp2zBlljg,2137
|
|
239
239
|
bpy/ops/sculpt/__init__.pyi,sha256=aioDOe_IrL98n4D7ShyLlSqvgNTxqx0j52k0jop3Qz4,44373
|
|
240
240
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=fGqHfX0BLo4Uk3L1Ieg7vCrq_8vjVgY2dHqz2wUAz24,3921
|
|
241
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
241
|
+
bpy/ops/sequencer/__init__.pyi,sha256=b2X-DbozEB75JxljWcVWXF7NgGFmj225zaYI9Fj89uw,103025
|
|
242
242
|
bpy/ops/sound/__init__.pyi,sha256=GldrxU3D5o4Ebwu0O12Mg7qBvGt-s2n3YHTFv7janmY,21873
|
|
243
243
|
bpy/ops/spreadsheet/__init__.pyi,sha256=jgaASPU02i9gWOTQ1jmI5KWQOOTtckTpTLXTVwgE2mQ,2751
|
|
244
244
|
bpy/ops/surface/__init__.pyi,sha256=9ek1anqxgJtSk_sDeehtih61Yin09NF5DVqIBERsjz4,10473
|
|
@@ -248,7 +248,7 @@ bpy/ops/texture/__init__.pyi,sha256=J6AUCmlc9I0M0WT3RiXCS5BAKrNsJeiXZRB5GKnR5Xs,
|
|
|
248
248
|
bpy/ops/transform/__init__.pyi,sha256=QAKTHQpCO9qPVkIM8-pboqfvEEoYuTL2B4f03AD8IuE,76954
|
|
249
249
|
bpy/ops/ui/__init__.pyi,sha256=N5nbyxlnqJGiYQrd49z0xd7NnLqB_QFOZE-0af34FYU,20270
|
|
250
250
|
bpy/ops/uilist/__init__.pyi,sha256=3WX1_iB6DM2qTyWR_KmaYOYYNQSGsxt6K0xrvW_3Sg0,3180
|
|
251
|
-
bpy/ops/uv/__init__.pyi,sha256=
|
|
251
|
+
bpy/ops/uv/__init__.pyi,sha256=5zsBA3DHcL_z_cGI8h1rIE01DCLkL3v3YilRu00hlQU,60679
|
|
252
252
|
bpy/ops/view2d/__init__.pyi,sha256=43YtDCc0us5-3PviP6vRwglLiZhnErjSacZyPmSA1YM,12252
|
|
253
253
|
bpy/ops/view3d/__init__.pyi,sha256=s7VyuerWHRAd3Hh9f5aRDuOCgS6wcZhh0-kemtO4iyg,57506
|
|
254
254
|
bpy/ops/wm/__init__.pyi,sha256=6t-6INhZvQErYbHzk7VVrwpJKqzK7MPKJxSj6fzYJdc,275550
|
|
@@ -256,13 +256,13 @@ bpy/ops/workspace/__init__.pyi,sha256=qMybRMnxonzKlIe1vscg5ASBuXWrC3hv_2eqRTilRW
|
|
|
256
256
|
bpy/ops/world/__init__.pyi,sha256=nPUTiumoo6f727F6tFUU8L4kyxAEbKISld9WfPCDjSk,573
|
|
257
257
|
bpy/path/__init__.pyi,sha256=pdIIUh8bu1ueGuu1QJ0Lu5MsGBlauirt1qthSXsV1RA,6143
|
|
258
258
|
bpy/props/__init__.pyi,sha256=GIygMkjryh8FAbR-QRGy7-EmMu4FA0xttWks5CIeXao,27520
|
|
259
|
-
bpy/types/__init__.pyi,sha256=
|
|
260
|
-
bpy/utils/__init__.pyi,sha256=
|
|
259
|
+
bpy/types/__init__.pyi,sha256=hMlv6V_-64pgr0qNS_bc6PaRSX_q1o0ZpdCaIpP0CPs,3390919
|
|
260
|
+
bpy/utils/__init__.pyi,sha256=S2hFPTK7VxdKWwqEvYzTRNHFXb6MMbLjufe8_Ib4clo,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=COhf8nzoIZA7nb3mYSv2_Pcfg8ddXqH_LVg7wW5a9oc,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-20240111.dist-info/METADATA,sha256=ustSnzW3I9rOoahTEhP_cR1FOxFEoNyY6ZLyBBvJj84,7008
|
|
346
|
+
fake_bpy_module-20240111.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
347
|
+
fake_bpy_module-20240111.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
348
|
+
fake_bpy_module-20240111.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|