fake-bpy-module 20231213__py3-none-any.whl → 20231214__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 +20 -20
- bl_ui/__init__.pyi +60 -60
- bl_ui_utils/__init__.pyi +1 -1
- bpy/__init__.pyi +2 -2
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +62 -62
- bpy/ops/sequencer/__init__.pyi +4 -1
- bpy/types/__init__.pyi +229 -229
- bpy/utils/__init__.pyi +1 -1
- bpy_extras/__init__.pyi +2 -2
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20231213.dist-info → fake_bpy_module-20231214.dist-info}/METADATA +1 -1
- {fake_bpy_module-20231213.dist-info → fake_bpy_module-20231214.dist-info}/RECORD +18 -18
- {fake_bpy_module-20231213.dist-info → fake_bpy_module-20231214.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20231213.dist-info → fake_bpy_module-20231214.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import complete_import
|
|
4
|
-
from . import complete_calltip
|
|
5
3
|
from . import intellisense
|
|
4
|
+
from . import complete_calltip
|
|
6
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 bl_extract_messages
|
|
3
4
|
from . import utils_cli
|
|
4
|
-
from . import utils
|
|
5
|
-
from . import utils_rtl
|
|
6
5
|
from . import settings
|
|
7
6
|
from . import merge_po
|
|
8
|
-
from . import bl_extract_messages
|
|
9
7
|
from . import utils_languages_menu
|
|
8
|
+
from . import utils
|
|
9
|
+
from . import utils_rtl
|
|
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 io
|
|
4
|
-
from . import keymap_hierarchy
|
|
5
|
-
from . import platform_helpers
|
|
6
3
|
from . import versioning
|
|
4
|
+
from . import keymap_hierarchy
|
|
5
|
+
from . import io
|
|
7
6
|
from . import keymap_from_toolbar
|
|
7
|
+
from . import platform_helpers
|
|
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 anim
|
|
4
|
-
from . import console
|
|
5
|
-
from . import geometry_nodes
|
|
6
3
|
from . import file
|
|
7
|
-
from . import add_mesh_torus
|
|
8
4
|
from . import uvcalc_transform
|
|
9
|
-
from . import
|
|
5
|
+
from . import add_mesh_torus
|
|
6
|
+
from . import image
|
|
10
7
|
from . import clip
|
|
8
|
+
from . import freestyle
|
|
9
|
+
from . import wm
|
|
10
|
+
from . import node
|
|
11
|
+
from . import presets
|
|
12
|
+
from . import uvcalc_follow_active
|
|
13
|
+
from . import sequencer
|
|
14
|
+
from . import object
|
|
11
15
|
from . import object_randomize_transform
|
|
12
|
-
from . import
|
|
13
|
-
from . import userpref
|
|
16
|
+
from . import spreadsheet
|
|
14
17
|
from . import screen_play_rendered_anim
|
|
15
|
-
from . import
|
|
18
|
+
from . import bmesh
|
|
16
19
|
from . import assets
|
|
17
|
-
from . import
|
|
20
|
+
from . import vertexpaint_dirt
|
|
21
|
+
from . import geometry_nodes
|
|
22
|
+
from . import console
|
|
18
23
|
from . import constraint
|
|
24
|
+
from . import view3d
|
|
25
|
+
from . import anim
|
|
26
|
+
from . import uvcalc_lightmap
|
|
19
27
|
from . import object_align
|
|
20
|
-
from . import uvcalc_follow_active
|
|
21
|
-
from . import sequencer
|
|
22
|
-
from . import presets
|
|
23
|
-
from . import rigidbody
|
|
24
|
-
from . import wm
|
|
25
|
-
from . import node
|
|
26
|
-
from . import mesh
|
|
27
|
-
from . import bmesh
|
|
28
|
-
from . import vertexpaint_dirt
|
|
29
28
|
from . import object_quick_effects
|
|
30
|
-
from . import
|
|
31
|
-
from . import
|
|
29
|
+
from . import mesh
|
|
30
|
+
from . import userpref
|
|
31
|
+
from . import rigidbody
|
|
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_material_gpencil
|
|
6
|
+
from . import space_image
|
|
7
|
+
from . import space_sequencer
|
|
5
8
|
from . import space_filebrowser
|
|
6
|
-
from . import
|
|
7
|
-
from . import
|
|
8
|
-
from . import
|
|
9
|
+
from . import node_add_menu_texture
|
|
10
|
+
from . import properties_material
|
|
11
|
+
from . import space_nla
|
|
12
|
+
from . import node_add_menu_geometry
|
|
13
|
+
from . import space_spreadsheet
|
|
14
|
+
from . import space_view3d_toolbar
|
|
15
|
+
from . import space_console
|
|
16
|
+
from . import properties_physics_fluid
|
|
17
|
+
from . import node_add_menu
|
|
18
|
+
from . import properties_data_armature
|
|
19
|
+
from . import properties_animviz
|
|
20
|
+
from . import properties_data_bone
|
|
21
|
+
from . import space_text
|
|
22
|
+
from . import properties_render
|
|
23
|
+
from . import properties_physics_rigidbody
|
|
9
24
|
from . import properties_data_curves
|
|
10
|
-
from . import space_sequencer
|
|
11
|
-
from . import generic_ui_list
|
|
12
25
|
from . import space_properties
|
|
13
|
-
from . import
|
|
14
|
-
from . import
|
|
15
|
-
from . import
|
|
16
|
-
from . import
|
|
17
|
-
from . import
|
|
26
|
+
from . import properties_mask_common
|
|
27
|
+
from . import properties_data_metaball
|
|
28
|
+
from . import properties_physics_geometry_nodes
|
|
29
|
+
from . import properties_data_mesh
|
|
30
|
+
from . import space_view3d
|
|
31
|
+
from . import properties_scene
|
|
18
32
|
from . import properties_data_grease_pencil
|
|
19
|
-
from . import
|
|
33
|
+
from . import space_graph
|
|
34
|
+
from . import properties_physics_softbody
|
|
35
|
+
from . import space_dopesheet
|
|
36
|
+
from . import properties_particle
|
|
37
|
+
from . import properties_workspace
|
|
20
38
|
from . import properties_data_camera
|
|
39
|
+
from . import properties_data_shaderfx
|
|
40
|
+
from . import properties_data_speaker
|
|
21
41
|
from . import space_userpref
|
|
22
|
-
from . import properties_data_empty
|
|
23
|
-
from . import properties_data_metaball
|
|
24
|
-
from . import properties_physics_cloth
|
|
25
|
-
from . import space_time
|
|
26
|
-
from . import properties_material
|
|
27
|
-
from . import properties_physics_rigidbody_constraint
|
|
28
|
-
from . import space_image
|
|
29
|
-
from . import properties_world
|
|
30
|
-
from . import properties_physics_rigidbody
|
|
31
|
-
from . import properties_physics_fluid
|
|
32
42
|
from . import properties_data_light
|
|
33
|
-
from . import properties_physics_softbody
|
|
34
|
-
from . import properties_view_layer
|
|
35
|
-
from . import properties_data_curve
|
|
36
|
-
from . import properties_collection
|
|
37
|
-
from . import space_nla
|
|
38
|
-
from . import asset_shelf
|
|
39
|
-
from . import properties_data_gpencil
|
|
40
43
|
from . import space_clip
|
|
41
|
-
from . import
|
|
42
|
-
from . import properties_mask_common
|
|
43
|
-
from . import properties_constraint
|
|
44
|
+
from . import properties_data_curve
|
|
44
45
|
from . import properties_data_lightprobe
|
|
46
|
+
from . import properties_data_volume
|
|
47
|
+
from . import properties_texture
|
|
48
|
+
from . import properties_data_pointcloud
|
|
45
49
|
from . import space_topbar
|
|
50
|
+
from . import space_info
|
|
51
|
+
from . import properties_data_lattice
|
|
52
|
+
from . import space_outliner
|
|
53
|
+
from . import properties_object
|
|
54
|
+
from . import properties_physics_cloth
|
|
55
|
+
from . import utils
|
|
56
|
+
from . import space_node
|
|
46
57
|
from . import properties_data_modifier
|
|
47
|
-
from . import
|
|
48
|
-
from . import
|
|
58
|
+
from . import properties_data_empty
|
|
59
|
+
from . import node_add_menu_shader
|
|
60
|
+
from . import node_add_menu_compositor
|
|
61
|
+
from . import generic_ui_list
|
|
62
|
+
from . import properties_collection
|
|
63
|
+
from . import space_statusbar
|
|
64
|
+
from . import space_toolsystem_toolbar
|
|
65
|
+
from . import properties_world
|
|
49
66
|
from . import space_toolsystem_common
|
|
50
|
-
from . import
|
|
51
|
-
from . import
|
|
52
|
-
from . import
|
|
67
|
+
from . import properties_physics_dynamicpaint
|
|
68
|
+
from . import properties_view_layer
|
|
69
|
+
from . import properties_physics_field
|
|
53
70
|
from . import properties_grease_pencil_common
|
|
54
|
-
from . import
|
|
55
|
-
from . import
|
|
56
|
-
from . import
|
|
57
|
-
from . import properties_data_bone
|
|
58
|
-
from . import properties_data_mesh
|
|
59
|
-
from . import space_graph
|
|
60
|
-
from . import node_add_menu_compositor
|
|
61
|
-
from . import properties_data_volume
|
|
62
|
-
from . import space_view3d
|
|
63
|
-
from . import properties_data_armature
|
|
71
|
+
from . import asset_shelf
|
|
72
|
+
from . import properties_physics_common
|
|
73
|
+
from . import space_time
|
|
64
74
|
from . import properties_freestyle
|
|
65
|
-
from . import
|
|
66
|
-
from . import
|
|
67
|
-
from . import space_console
|
|
68
|
-
from . import space_spreadsheet
|
|
69
|
-
from . import utils
|
|
70
|
-
from . import node_add_menu
|
|
71
|
-
from . import node_add_menu_geometry
|
|
72
|
-
from . import properties_render
|
|
73
|
-
from . import properties_data_pointcloud
|
|
75
|
+
from . import properties_physics_rigidbody_constraint
|
|
76
|
+
from . import properties_constraint
|
|
74
77
|
from . import properties_paint_common
|
|
75
|
-
from . import
|
|
76
|
-
from . import
|
|
77
|
-
from . import space_view3d_toolbar
|
|
78
|
-
from . import properties_particle
|
|
79
|
-
from . import properties_physics_geometry_nodes
|
|
78
|
+
from . import properties_output
|
|
79
|
+
from . import properties_data_gpencil
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
|
82
82
|
|
bl_ui_utils/__init__.pyi
CHANGED
bpy/__init__.pyi
CHANGED
|
@@ -5,10 +5,10 @@ import bpy.types
|
|
|
5
5
|
from . import types
|
|
6
6
|
from . import ops
|
|
7
7
|
from . import app
|
|
8
|
-
from . import props
|
|
9
|
-
from . import path
|
|
10
8
|
from . import utils
|
|
9
|
+
from . import path
|
|
11
10
|
from . import msgbus
|
|
11
|
+
from . import props
|
|
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 font
|
|
3
|
+
from . import cachefile
|
|
5
4
|
from . import lattice
|
|
6
|
-
from . import
|
|
7
|
-
from . import
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
10
|
-
from . import
|
|
5
|
+
from . import mball
|
|
6
|
+
from . import uilist
|
|
7
|
+
from . import import_scene
|
|
8
|
+
from . import preferences
|
|
9
|
+
from . import info
|
|
10
|
+
from . import mask
|
|
11
|
+
from . import grease_pencil
|
|
12
|
+
from . import cloth
|
|
13
|
+
from . import view2d
|
|
11
14
|
from . import workspace
|
|
12
|
-
from . import
|
|
15
|
+
from . import node
|
|
16
|
+
from . import action
|
|
17
|
+
from . import world
|
|
13
18
|
from . import image
|
|
14
|
-
from . import
|
|
15
|
-
from . import
|
|
19
|
+
from . import brush
|
|
20
|
+
from . import texture
|
|
21
|
+
from . import rigidbody
|
|
16
22
|
from . import console
|
|
17
|
-
from . import
|
|
18
|
-
from . import export_mesh
|
|
19
|
-
from . import sound
|
|
20
|
-
from . import mball
|
|
21
|
-
from . import asset
|
|
22
|
-
from . import view3d
|
|
23
|
-
from . import cloth
|
|
24
|
-
from . import ed
|
|
25
|
-
from . import grease_pencil
|
|
26
|
-
from . import boid
|
|
27
|
-
from . import text
|
|
28
|
-
from . import sculpt
|
|
29
|
-
from . import marker
|
|
30
|
-
from . import cachefile
|
|
31
|
-
from . import file
|
|
32
|
-
from . import mesh
|
|
33
|
-
from . import curve
|
|
23
|
+
from . import poselib
|
|
34
24
|
from . import object
|
|
35
25
|
from . import ui
|
|
36
|
-
from . import poselib
|
|
37
|
-
from . import view2d
|
|
38
|
-
from . import sculpt_curves
|
|
39
|
-
from . import armature
|
|
40
|
-
from . import mask
|
|
41
|
-
from . import info
|
|
42
|
-
from . import clip
|
|
43
|
-
from . import dpaint
|
|
44
|
-
from . import text_editor
|
|
45
|
-
from . import pose
|
|
46
|
-
from . import collection
|
|
47
|
-
from . import particle
|
|
48
26
|
from . import wm
|
|
49
|
-
from . import
|
|
50
|
-
from . import
|
|
51
|
-
from . import graph
|
|
27
|
+
from . import pose
|
|
28
|
+
from . import fluid
|
|
52
29
|
from . import constraint
|
|
53
|
-
from . import
|
|
30
|
+
from . import view3d
|
|
31
|
+
from . import transform
|
|
32
|
+
from . import collection
|
|
33
|
+
from . import sequencer
|
|
34
|
+
from . import import_curve
|
|
35
|
+
from . import font
|
|
54
36
|
from . import render
|
|
55
|
-
from . import
|
|
56
|
-
from . import
|
|
57
|
-
from . import
|
|
58
|
-
from . import uilist
|
|
37
|
+
from . import text_editor
|
|
38
|
+
from . import ptcache
|
|
39
|
+
from . import boid
|
|
59
40
|
from . import cycles
|
|
60
|
-
from . import material
|
|
61
|
-
from . import import_scene
|
|
62
|
-
from . import brush
|
|
63
41
|
from . import gpencil
|
|
64
|
-
from . import
|
|
65
|
-
from . import
|
|
66
|
-
from . import
|
|
67
|
-
from . import
|
|
68
|
-
from . import
|
|
42
|
+
from . import clip
|
|
43
|
+
from . import curves
|
|
44
|
+
from . import curve
|
|
45
|
+
from . import nla
|
|
46
|
+
from . import anim
|
|
47
|
+
from . import mesh
|
|
48
|
+
from . import marker
|
|
69
49
|
from . import outliner
|
|
70
|
-
from . import
|
|
50
|
+
from . import palette
|
|
71
51
|
from . import buttons
|
|
52
|
+
from . import ed
|
|
53
|
+
from . import sculpt_curves
|
|
54
|
+
from . import material
|
|
72
55
|
from . import geometry
|
|
73
|
-
from . import
|
|
74
|
-
from . import
|
|
75
|
-
from . import
|
|
76
|
-
from . import
|
|
77
|
-
from . import
|
|
78
|
-
from . import
|
|
56
|
+
from . import gizmogroup
|
|
57
|
+
from . import file
|
|
58
|
+
from . import armature
|
|
59
|
+
from . import particle
|
|
60
|
+
from . import export_anim
|
|
61
|
+
from . import surface
|
|
62
|
+
from . import uv
|
|
79
63
|
from . import paint
|
|
64
|
+
from . import import_anim
|
|
65
|
+
from . import script
|
|
66
|
+
from . import camera
|
|
67
|
+
from . import spreadsheet
|
|
68
|
+
from . import export_scene
|
|
69
|
+
from . import text
|
|
70
|
+
from . import graph
|
|
71
|
+
from . import screen
|
|
72
|
+
from . import paintcurve
|
|
73
|
+
from . import sculpt
|
|
74
|
+
from . import sound
|
|
75
|
+
from . import import_mesh
|
|
76
|
+
from . import asset
|
|
77
|
+
from . import dpaint
|
|
78
|
+
from . import export_mesh
|
|
79
|
+
from . import scene
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -1150,7 +1150,8 @@ def retiming_segment_speed_set(
|
|
|
1150
1150
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
1151
1151
|
undo: typing.Optional[bool] = None,
|
|
1152
1152
|
*,
|
|
1153
|
-
speed: typing.Optional[typing.Any] = 100.0
|
|
1153
|
+
speed: typing.Optional[typing.Any] = 100.0,
|
|
1154
|
+
keep_retiming: typing.Optional[typing.Union[bool, typing.Any]] = True):
|
|
1154
1155
|
''' Set speed of retimed segment
|
|
1155
1156
|
|
|
1156
1157
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
@@ -1158,6 +1159,8 @@ def retiming_segment_speed_set(
|
|
|
1158
1159
|
:type undo: typing.Optional[bool]
|
|
1159
1160
|
:param speed: Speed, New speed of retimed segment
|
|
1160
1161
|
:type speed: typing.Optional[typing.Any]
|
|
1162
|
+
:param keep_retiming: Preserve Current retiming, Keep speed of other segments unchanged, change strip length instead
|
|
1163
|
+
:type keep_retiming: typing.Optional[typing.Union[bool, typing.Any]]
|
|
1161
1164
|
'''
|
|
1162
1165
|
|
|
1163
1166
|
...
|
bpy/types/__init__.pyi
CHANGED
|
@@ -2,212 +2,97 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import mathutils
|
|
4
4
|
import bpy
|
|
5
|
-
import bl_ui.
|
|
6
|
-
import bl_ui.
|
|
7
|
-
import bl_ui.space_outliner
|
|
8
|
-
import bl_ui.space_toolsystem_toolbar
|
|
9
|
-
import bl_ui.properties_data_curves
|
|
10
|
-
import bl_ui
|
|
11
|
-
import bl_operators.anim
|
|
5
|
+
import bl_ui.properties_material_gpencil
|
|
6
|
+
import bl_ui.space_image
|
|
12
7
|
import bl_ui.space_sequencer
|
|
13
|
-
import bl_ui.
|
|
14
|
-
import bl_ui.
|
|
15
|
-
import bl_ui.properties_texture
|
|
8
|
+
import bl_ui.space_filebrowser
|
|
9
|
+
import bl_ui.node_add_menu_texture
|
|
16
10
|
import bl_operators.file
|
|
17
|
-
import bl_ui.
|
|
18
|
-
import bl_ui.
|
|
19
|
-
import bl_ui.
|
|
20
|
-
import
|
|
21
|
-
import bl_ui.
|
|
11
|
+
import bl_ui.properties_material
|
|
12
|
+
import bl_ui.space_nla
|
|
13
|
+
import bl_ui.node_add_menu_geometry
|
|
14
|
+
import bl_ui.space_spreadsheet
|
|
15
|
+
import bl_ui.space_view3d_toolbar
|
|
22
16
|
import bl_operators.clip
|
|
17
|
+
import bl_operators.freestyle
|
|
18
|
+
import bl_ui.space_console
|
|
19
|
+
import bl_ui.properties_physics_fluid
|
|
20
|
+
import bl_ui.node_add_menu
|
|
21
|
+
import bl_ui.properties_data_armature
|
|
22
|
+
import bl_operators.wm
|
|
23
|
+
import bl_ui.properties_data_bone
|
|
24
|
+
import bl_ui.space_text
|
|
25
|
+
import bl_ui.properties_render
|
|
26
|
+
import bl_ui.properties_physics_rigidbody
|
|
27
|
+
import bl_ui.properties_data_curves
|
|
28
|
+
import bl_ui.space_properties
|
|
29
|
+
import bl_ui.properties_mask_common
|
|
30
|
+
import bl_ui.properties_data_metaball
|
|
31
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
32
|
+
import bl_ui.properties_data_mesh
|
|
33
|
+
import bl_operators.node
|
|
34
|
+
import bl_ui.space_view3d
|
|
35
|
+
import bl_operators.presets
|
|
36
|
+
import bl_ui.properties_scene
|
|
23
37
|
import bl_ui.properties_data_grease_pencil
|
|
24
|
-
import bl_ui.
|
|
38
|
+
import bl_ui.space_graph
|
|
39
|
+
import bl_ui.properties_physics_softbody
|
|
40
|
+
import bl_ui.space_dopesheet
|
|
41
|
+
import bl_ui.properties_particle
|
|
42
|
+
import bl_operators.object
|
|
43
|
+
import bl_ui.properties_workspace
|
|
25
44
|
import bl_ui.properties_data_camera
|
|
26
|
-
import bl_operators.
|
|
27
|
-
import
|
|
45
|
+
import bl_operators.spreadsheet
|
|
46
|
+
import bl_ui.properties_data_shaderfx
|
|
47
|
+
import bl_ui.properties_data_speaker
|
|
28
48
|
import bl_ui.space_userpref
|
|
29
|
-
import bl_operators.assets
|
|
30
|
-
import bl_ui.properties_data_empty
|
|
31
|
-
import bl_ui.properties_data_metaball
|
|
32
|
-
import bl_ui.properties_physics_cloth
|
|
33
|
-
import bl_ui.space_time
|
|
34
|
-
import bl_ui.properties_material
|
|
35
|
-
import bl_operators.constraint
|
|
36
|
-
import bl_ui.properties_physics_rigidbody_constraint
|
|
37
|
-
import bl_ui.space_image
|
|
38
|
-
import bl_ui.properties_world
|
|
39
|
-
import bl_ui.properties_physics_rigidbody
|
|
40
|
-
import bl_ui.properties_physics_fluid
|
|
41
49
|
import bl_ui.properties_data_light
|
|
42
|
-
import bl_ui.properties_physics_softbody
|
|
43
|
-
import bl_ui.properties_view_layer
|
|
44
|
-
import bl_ui.properties_data_curve
|
|
45
|
-
import bl_ui.properties_collection
|
|
46
|
-
import bl_ui.space_nla
|
|
47
|
-
import bl_ui.asset_shelf
|
|
48
|
-
import bl_ui.properties_data_gpencil
|
|
49
50
|
import bl_ui.space_clip
|
|
50
|
-
import bl_ui.
|
|
51
|
-
import bl_ui.properties_mask_common
|
|
52
|
-
import bl_ui.properties_constraint
|
|
51
|
+
import bl_ui.properties_data_curve
|
|
53
52
|
import bl_ui.properties_data_lightprobe
|
|
53
|
+
import bl_ui.properties_data_volume
|
|
54
|
+
import bl_ui.properties_texture
|
|
55
|
+
import bl_ui.properties_data_pointcloud
|
|
54
56
|
import bl_ui.space_topbar
|
|
57
|
+
import bl_ui.space_info
|
|
58
|
+
import bl_ui.properties_data_lattice
|
|
59
|
+
import bl_ui.space_outliner
|
|
60
|
+
import bl_operators.assets
|
|
61
|
+
import bl_ui.properties_object
|
|
62
|
+
import bl_ui.properties_physics_cloth
|
|
63
|
+
import bl_ui.space_node
|
|
55
64
|
import bl_ui.properties_data_modifier
|
|
56
|
-
import
|
|
57
|
-
import bl_ui.
|
|
58
|
-
import bl_ui.
|
|
65
|
+
import bl_ui
|
|
66
|
+
import bl_ui.properties_data_empty
|
|
67
|
+
import bl_ui.node_add_menu_shader
|
|
68
|
+
import bl_ui.node_add_menu_compositor
|
|
69
|
+
import bl_ui.generic_ui_list
|
|
70
|
+
import bl_ui.properties_collection
|
|
71
|
+
import bl_ui.space_statusbar
|
|
72
|
+
import bl_operators.constraint
|
|
73
|
+
import bl_ui.space_toolsystem_toolbar
|
|
74
|
+
import bl_ui.properties_world
|
|
59
75
|
import bl_ui.space_toolsystem_common
|
|
60
|
-
import bl_ui.
|
|
61
|
-
import
|
|
62
|
-
import bl_operators.
|
|
76
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
77
|
+
import bl_operators.view3d
|
|
78
|
+
import bl_operators.anim
|
|
79
|
+
import bl_ui.properties_view_layer
|
|
80
|
+
import bl_ui.properties_physics_field
|
|
63
81
|
import bl_ui.properties_grease_pencil_common
|
|
64
|
-
import bl_ui.
|
|
65
|
-
import
|
|
66
|
-
import bl_ui.
|
|
67
|
-
import bl_ui.space_dopesheet
|
|
68
|
-
import bl_ui.properties_data_bone
|
|
69
|
-
import bl_ui.properties_data_mesh
|
|
70
|
-
import bl_ui.space_graph
|
|
71
|
-
import bl_ui.node_add_menu_compositor
|
|
72
|
-
import bl_ui.properties_data_volume
|
|
73
|
-
import bl_ui.space_view3d
|
|
74
|
-
import bl_ui.properties_data_armature
|
|
82
|
+
import bl_ui.asset_shelf
|
|
83
|
+
import bl_ui.properties_physics_common
|
|
84
|
+
import bl_ui.space_time
|
|
75
85
|
import bl_ui.properties_freestyle
|
|
76
|
-
import bl_ui.
|
|
77
|
-
import bl_ui.
|
|
78
|
-
import
|
|
79
|
-
import bl_ui.space_spreadsheet
|
|
80
|
-
import bl_ui.node_add_menu
|
|
81
|
-
import bl_operators.object
|
|
82
|
-
import bl_ui.node_add_menu_geometry
|
|
83
|
-
import bl_operators.freestyle
|
|
84
|
-
import bl_ui.properties_render
|
|
85
|
-
import bl_ui.properties_data_pointcloud
|
|
86
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
87
|
+
import bl_ui.properties_constraint
|
|
88
|
+
import bl_operators.userpref
|
|
86
89
|
import bl_ui.properties_paint_common
|
|
87
|
-
import bl_ui.
|
|
88
|
-
import bl_ui.
|
|
89
|
-
import bl_ui.space_view3d_toolbar
|
|
90
|
-
import bl_ui.properties_particle
|
|
91
|
-
import bl_ui.properties_physics_geometry_nodes
|
|
90
|
+
import bl_ui.properties_output
|
|
91
|
+
import bl_ui.properties_data_gpencil
|
|
92
92
|
|
|
93
93
|
GenericType = typing.TypeVar("GenericType")
|
|
94
94
|
|
|
95
95
|
|
|
96
|
-
class bpy_prop_collection(typing.Generic[GenericType]):
|
|
97
|
-
''' built-in class used for all collections.
|
|
98
|
-
'''
|
|
99
|
-
|
|
100
|
-
def find(self, key: typing.Optional[str]) -> int:
|
|
101
|
-
''' Returns the index of a key in a collection or -1 when not found (matches Python's string find function of the same name).
|
|
102
|
-
|
|
103
|
-
:param key: The identifier for the collection member.
|
|
104
|
-
:type key: typing.Optional[str]
|
|
105
|
-
:rtype: int
|
|
106
|
-
:return: index of the key.
|
|
107
|
-
'''
|
|
108
|
-
...
|
|
109
|
-
|
|
110
|
-
def foreach_get(self, attr, seq):
|
|
111
|
-
''' This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! Multi-dimensional arrays (like array of vectors) will be flattened into seq.
|
|
112
|
-
|
|
113
|
-
'''
|
|
114
|
-
...
|
|
115
|
-
|
|
116
|
-
def foreach_set(self, attr, seq):
|
|
117
|
-
''' This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
|
|
118
|
-
|
|
119
|
-
'''
|
|
120
|
-
...
|
|
121
|
-
|
|
122
|
-
def get(self,
|
|
123
|
-
key: typing.Optional[str],
|
|
124
|
-
default: typing.Optional[typing.Any] = None):
|
|
125
|
-
''' Returns the value of the item assigned to key or default when not found (matches Python's dictionary function of the same name).
|
|
126
|
-
|
|
127
|
-
:param key: The identifier for the collection member.
|
|
128
|
-
:type key: typing.Optional[str]
|
|
129
|
-
:param default: Optional argument for the value to return if *key* is not found.
|
|
130
|
-
:type default: typing.Optional[typing.Any]
|
|
131
|
-
'''
|
|
132
|
-
...
|
|
133
|
-
|
|
134
|
-
def items(self) -> typing.List:
|
|
135
|
-
''' Return the identifiers of collection members (matching Python's dict.items() functionality).
|
|
136
|
-
|
|
137
|
-
:rtype: typing.List
|
|
138
|
-
:return: (key, value) pairs for each member of this collection.
|
|
139
|
-
'''
|
|
140
|
-
...
|
|
141
|
-
|
|
142
|
-
def keys(self) -> typing.List[str]:
|
|
143
|
-
''' Return the identifiers of collection members (matching Python's dict.keys() functionality).
|
|
144
|
-
|
|
145
|
-
:rtype: typing.List[str]
|
|
146
|
-
:return: the identifiers for each member of this collection.
|
|
147
|
-
'''
|
|
148
|
-
...
|
|
149
|
-
|
|
150
|
-
def values(self) -> typing.List:
|
|
151
|
-
''' Return the values of collection (matching Python's dict.values() functionality).
|
|
152
|
-
|
|
153
|
-
:rtype: typing.List
|
|
154
|
-
:return: the members of this collection.
|
|
155
|
-
'''
|
|
156
|
-
...
|
|
157
|
-
|
|
158
|
-
def __getitem__(self, key: typing.Optional[typing.Union[int, str]]
|
|
159
|
-
) -> 'GenericType':
|
|
160
|
-
'''
|
|
161
|
-
|
|
162
|
-
:param key:
|
|
163
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
164
|
-
:rtype: 'GenericType'
|
|
165
|
-
'''
|
|
166
|
-
...
|
|
167
|
-
|
|
168
|
-
def __setitem__(self, key: typing.Optional[typing.Union[int, str]],
|
|
169
|
-
value: 'GenericType'):
|
|
170
|
-
'''
|
|
171
|
-
|
|
172
|
-
:param key:
|
|
173
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
174
|
-
:param value:
|
|
175
|
-
:type value: 'GenericType'
|
|
176
|
-
'''
|
|
177
|
-
...
|
|
178
|
-
|
|
179
|
-
def __delitem__(self, key: typing.Optional[typing.Union[int, str]]
|
|
180
|
-
) -> 'GenericType':
|
|
181
|
-
'''
|
|
182
|
-
|
|
183
|
-
:param key:
|
|
184
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
185
|
-
:rtype: 'GenericType'
|
|
186
|
-
'''
|
|
187
|
-
...
|
|
188
|
-
|
|
189
|
-
def __iter__(self) -> typing.Iterator['GenericType']:
|
|
190
|
-
'''
|
|
191
|
-
|
|
192
|
-
:rtype: typing.Iterator['GenericType']
|
|
193
|
-
'''
|
|
194
|
-
...
|
|
195
|
-
|
|
196
|
-
def __next__(self) -> 'GenericType':
|
|
197
|
-
'''
|
|
198
|
-
|
|
199
|
-
:rtype: 'GenericType'
|
|
200
|
-
'''
|
|
201
|
-
...
|
|
202
|
-
|
|
203
|
-
def __len__(self) -> int:
|
|
204
|
-
'''
|
|
205
|
-
|
|
206
|
-
:rtype: int
|
|
207
|
-
'''
|
|
208
|
-
...
|
|
209
|
-
|
|
210
|
-
|
|
211
96
|
class bpy_struct:
|
|
212
97
|
''' built-in base class for all classes in bpy.types.
|
|
213
98
|
'''
|
|
@@ -481,6 +366,121 @@ class bpy_struct:
|
|
|
481
366
|
...
|
|
482
367
|
|
|
483
368
|
|
|
369
|
+
class bpy_prop_collection(typing.Generic[GenericType]):
|
|
370
|
+
''' built-in class used for all collections.
|
|
371
|
+
'''
|
|
372
|
+
|
|
373
|
+
def find(self, key: typing.Optional[str]) -> int:
|
|
374
|
+
''' Returns the index of a key in a collection or -1 when not found (matches Python's string find function of the same name).
|
|
375
|
+
|
|
376
|
+
:param key: The identifier for the collection member.
|
|
377
|
+
:type key: typing.Optional[str]
|
|
378
|
+
:rtype: int
|
|
379
|
+
:return: index of the key.
|
|
380
|
+
'''
|
|
381
|
+
...
|
|
382
|
+
|
|
383
|
+
def foreach_get(self, attr, seq):
|
|
384
|
+
''' This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! Multi-dimensional arrays (like array of vectors) will be flattened into seq.
|
|
385
|
+
|
|
386
|
+
'''
|
|
387
|
+
...
|
|
388
|
+
|
|
389
|
+
def foreach_set(self, attr, seq):
|
|
390
|
+
''' This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
|
|
391
|
+
|
|
392
|
+
'''
|
|
393
|
+
...
|
|
394
|
+
|
|
395
|
+
def get(self,
|
|
396
|
+
key: typing.Optional[str],
|
|
397
|
+
default: typing.Optional[typing.Any] = None):
|
|
398
|
+
''' Returns the value of the item assigned to key or default when not found (matches Python's dictionary function of the same name).
|
|
399
|
+
|
|
400
|
+
:param key: The identifier for the collection member.
|
|
401
|
+
:type key: typing.Optional[str]
|
|
402
|
+
:param default: Optional argument for the value to return if *key* is not found.
|
|
403
|
+
:type default: typing.Optional[typing.Any]
|
|
404
|
+
'''
|
|
405
|
+
...
|
|
406
|
+
|
|
407
|
+
def items(self) -> typing.List:
|
|
408
|
+
''' Return the identifiers of collection members (matching Python's dict.items() functionality).
|
|
409
|
+
|
|
410
|
+
:rtype: typing.List
|
|
411
|
+
:return: (key, value) pairs for each member of this collection.
|
|
412
|
+
'''
|
|
413
|
+
...
|
|
414
|
+
|
|
415
|
+
def keys(self) -> typing.List[str]:
|
|
416
|
+
''' Return the identifiers of collection members (matching Python's dict.keys() functionality).
|
|
417
|
+
|
|
418
|
+
:rtype: typing.List[str]
|
|
419
|
+
:return: the identifiers for each member of this collection.
|
|
420
|
+
'''
|
|
421
|
+
...
|
|
422
|
+
|
|
423
|
+
def values(self) -> typing.List:
|
|
424
|
+
''' Return the values of collection (matching Python's dict.values() functionality).
|
|
425
|
+
|
|
426
|
+
:rtype: typing.List
|
|
427
|
+
:return: the members of this collection.
|
|
428
|
+
'''
|
|
429
|
+
...
|
|
430
|
+
|
|
431
|
+
def __getitem__(self, key: typing.Optional[typing.Union[int, str]]
|
|
432
|
+
) -> 'GenericType':
|
|
433
|
+
'''
|
|
434
|
+
|
|
435
|
+
:param key:
|
|
436
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
437
|
+
:rtype: 'GenericType'
|
|
438
|
+
'''
|
|
439
|
+
...
|
|
440
|
+
|
|
441
|
+
def __setitem__(self, key: typing.Optional[typing.Union[int, str]],
|
|
442
|
+
value: 'GenericType'):
|
|
443
|
+
'''
|
|
444
|
+
|
|
445
|
+
:param key:
|
|
446
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
447
|
+
:param value:
|
|
448
|
+
:type value: 'GenericType'
|
|
449
|
+
'''
|
|
450
|
+
...
|
|
451
|
+
|
|
452
|
+
def __delitem__(self, key: typing.Optional[typing.Union[int, str]]
|
|
453
|
+
) -> 'GenericType':
|
|
454
|
+
'''
|
|
455
|
+
|
|
456
|
+
:param key:
|
|
457
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
458
|
+
:rtype: 'GenericType'
|
|
459
|
+
'''
|
|
460
|
+
...
|
|
461
|
+
|
|
462
|
+
def __iter__(self) -> typing.Iterator['GenericType']:
|
|
463
|
+
'''
|
|
464
|
+
|
|
465
|
+
:rtype: typing.Iterator['GenericType']
|
|
466
|
+
'''
|
|
467
|
+
...
|
|
468
|
+
|
|
469
|
+
def __next__(self) -> 'GenericType':
|
|
470
|
+
'''
|
|
471
|
+
|
|
472
|
+
:rtype: 'GenericType'
|
|
473
|
+
'''
|
|
474
|
+
...
|
|
475
|
+
|
|
476
|
+
def __len__(self) -> int:
|
|
477
|
+
'''
|
|
478
|
+
|
|
479
|
+
:rtype: int
|
|
480
|
+
'''
|
|
481
|
+
...
|
|
482
|
+
|
|
483
|
+
|
|
484
484
|
class bpy_prop_array(typing.Generic[GenericType]):
|
|
485
485
|
def foreach_get(self, attr, seq):
|
|
486
486
|
'''
|
|
@@ -6802,10 +6802,10 @@ class Context(bpy_struct):
|
|
|
6802
6802
|
:type: 'UIList'
|
|
6803
6803
|
'''
|
|
6804
6804
|
|
|
6805
|
-
property: typing.Union[
|
|
6805
|
+
property: typing.Union[int, str, 'ID']
|
|
6806
6806
|
''' Get the property associated with a hovered button. Returns a tuple of the datablock, data path to the property, and array index.
|
|
6807
6807
|
|
|
6808
|
-
:type: typing.Union[
|
|
6808
|
+
:type: typing.Union[int, str, 'ID']
|
|
6809
6809
|
'''
|
|
6810
6810
|
|
|
6811
6811
|
edit_text: 'Text'
|
|
@@ -14827,7 +14827,7 @@ class Gizmo(bpy_struct):
|
|
|
14827
14827
|
|
|
14828
14828
|
def modal(self, context: 'Context', event: 'Event', tweak: typing.Optional[
|
|
14829
14829
|
typing.Union[typing.Set[str], typing.Set[int]]]
|
|
14830
|
-
) -> typing.Union[typing.Set[
|
|
14830
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
14831
14831
|
'''
|
|
14832
14832
|
|
|
14833
14833
|
:param context:
|
|
@@ -14836,7 +14836,7 @@ class Gizmo(bpy_struct):
|
|
|
14836
14836
|
:type event: 'Event'
|
|
14837
14837
|
:param tweak: Tweak
|
|
14838
14838
|
:type tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
14839
|
-
:rtype: typing.Union[typing.Set[
|
|
14839
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
14840
14840
|
:return: result
|
|
14841
14841
|
'''
|
|
14842
14842
|
...
|
|
@@ -14848,14 +14848,14 @@ class Gizmo(bpy_struct):
|
|
|
14848
14848
|
...
|
|
14849
14849
|
|
|
14850
14850
|
def invoke(self, context: 'Context', event: 'Event'
|
|
14851
|
-
) -> typing.Union[typing.Set[
|
|
14851
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
14852
14852
|
'''
|
|
14853
14853
|
|
|
14854
14854
|
:param context:
|
|
14855
14855
|
:type context: 'Context'
|
|
14856
14856
|
:param event:
|
|
14857
14857
|
:type event: 'Event'
|
|
14858
|
-
:rtype: typing.Union[typing.Set[
|
|
14858
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
14859
14859
|
:return: result
|
|
14860
14860
|
'''
|
|
14861
14861
|
...
|
|
@@ -17365,10 +17365,10 @@ class KeyingSetInfo(bpy_struct):
|
|
|
17365
17365
|
:type: typing.Union[str, typing.Any]
|
|
17366
17366
|
'''
|
|
17367
17367
|
|
|
17368
|
-
bl_options: typing.Union[typing.Set[
|
|
17368
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17369
17369
|
''' Keying Set options to use when inserting keyframes
|
|
17370
17370
|
|
|
17371
|
-
:type: typing.Union[typing.Set[
|
|
17371
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17372
17372
|
'''
|
|
17373
17373
|
|
|
17374
17374
|
def poll(self, context: typing.Optional['Context']) -> bool:
|
|
@@ -17816,10 +17816,10 @@ class Macro(bpy_struct):
|
|
|
17816
17816
|
:type: typing.Union[str, typing.Any]
|
|
17817
17817
|
'''
|
|
17818
17818
|
|
|
17819
|
-
bl_options: typing.Union[typing.Set[
|
|
17819
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17820
17820
|
''' Options for this operator type
|
|
17821
17821
|
|
|
17822
|
-
:type: typing.Union[typing.Set[
|
|
17822
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17823
17823
|
'''
|
|
17824
17824
|
|
|
17825
17825
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -17853,12 +17853,12 @@ class Macro(bpy_struct):
|
|
|
17853
17853
|
'''
|
|
17854
17854
|
|
|
17855
17855
|
def report(self, type: typing.Optional[
|
|
17856
|
-
typing.Union[typing.Set[
|
|
17856
|
+
typing.Union[typing.Set[int], typing.Set[str]]],
|
|
17857
17857
|
message: typing.Union[str, typing.Any]):
|
|
17858
17858
|
''' report
|
|
17859
17859
|
|
|
17860
17860
|
:param type: Type
|
|
17861
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
17861
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
17862
17862
|
:param message: Report Message
|
|
17863
17863
|
:type message: typing.Union[str, typing.Any]
|
|
17864
17864
|
'''
|
|
@@ -22848,10 +22848,10 @@ class Operator(bpy_struct):
|
|
|
22848
22848
|
:type: typing.Union[str, typing.Any]
|
|
22849
22849
|
'''
|
|
22850
22850
|
|
|
22851
|
-
bl_options: typing.Union[typing.Set[
|
|
22851
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
22852
22852
|
''' Options for this operator type
|
|
22853
22853
|
|
|
22854
|
-
:type: typing.Union[typing.Set[
|
|
22854
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
22855
22855
|
'''
|
|
22856
22856
|
|
|
22857
22857
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -22909,12 +22909,12 @@ class Operator(bpy_struct):
|
|
|
22909
22909
|
'''
|
|
22910
22910
|
|
|
22911
22911
|
def report(self, type: typing.Optional[
|
|
22912
|
-
typing.Union[typing.Set[
|
|
22912
|
+
typing.Union[typing.Set[int], typing.Set[str]]],
|
|
22913
22913
|
message: typing.Union[str, typing.Any]):
|
|
22914
22914
|
''' report
|
|
22915
22915
|
|
|
22916
22916
|
:param type: Type
|
|
22917
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
22917
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
22918
22918
|
:param message: Report Message
|
|
22919
22919
|
:type message: typing.Union[str, typing.Any]
|
|
22920
22920
|
'''
|
|
@@ -22939,12 +22939,12 @@ class Operator(bpy_struct):
|
|
|
22939
22939
|
...
|
|
22940
22940
|
|
|
22941
22941
|
def execute(self, context: 'Context'
|
|
22942
|
-
) -> typing.Union[typing.Set[
|
|
22942
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
22943
22943
|
''' Execute the operator
|
|
22944
22944
|
|
|
22945
22945
|
:param context:
|
|
22946
22946
|
:type context: 'Context'
|
|
22947
|
-
:rtype: typing.Union[typing.Set[
|
|
22947
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
22948
22948
|
:return: result
|
|
22949
22949
|
'''
|
|
22950
22950
|
...
|
|
@@ -22960,27 +22960,27 @@ class Operator(bpy_struct):
|
|
|
22960
22960
|
...
|
|
22961
22961
|
|
|
22962
22962
|
def invoke(self, context: 'Context', event: 'Event'
|
|
22963
|
-
) -> typing.Union[typing.Set[
|
|
22963
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
22964
22964
|
''' Invoke the operator
|
|
22965
22965
|
|
|
22966
22966
|
:param context:
|
|
22967
22967
|
:type context: 'Context'
|
|
22968
22968
|
:param event:
|
|
22969
22969
|
:type event: 'Event'
|
|
22970
|
-
:rtype: typing.Union[typing.Set[
|
|
22970
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
22971
22971
|
:return: result
|
|
22972
22972
|
'''
|
|
22973
22973
|
...
|
|
22974
22974
|
|
|
22975
22975
|
def modal(self, context: 'Context', event: 'Event'
|
|
22976
|
-
) -> typing.Union[typing.Set[
|
|
22976
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
22977
22977
|
''' Modal operator function
|
|
22978
22978
|
|
|
22979
22979
|
:param context:
|
|
22980
22980
|
:type context: 'Context'
|
|
22981
22981
|
:param event:
|
|
22982
22982
|
:type event: 'Event'
|
|
22983
|
-
:rtype: typing.Union[typing.Set[
|
|
22983
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
22984
22984
|
:return: result
|
|
22985
22985
|
'''
|
|
22986
22986
|
...
|
|
@@ -28855,12 +28855,12 @@ class RenderEngine(bpy_struct):
|
|
|
28855
28855
|
...
|
|
28856
28856
|
|
|
28857
28857
|
def report(self, type: typing.Optional[
|
|
28858
|
-
typing.Union[typing.Set[
|
|
28858
|
+
typing.Union[typing.Set[int], typing.Set[str]]],
|
|
28859
28859
|
message: typing.Union[str, typing.Any]):
|
|
28860
28860
|
''' Report info, warning or error messages
|
|
28861
28861
|
|
|
28862
28862
|
:param type: Type
|
|
28863
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
28863
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
28864
28864
|
:param message: Report Message
|
|
28865
28865
|
:type message: typing.Union[str, typing.Any]
|
|
28866
28866
|
'''
|
|
@@ -39943,10 +39943,10 @@ class ToolSettings(bpy_struct):
|
|
|
39943
39943
|
:type: typing.Union[str, int]
|
|
39944
39944
|
'''
|
|
39945
39945
|
|
|
39946
|
-
snap_elements: typing.Union[typing.Set[
|
|
39946
|
+
snap_elements: typing.Union[typing.Set[int], typing.Set[str]]
|
|
39947
39947
|
''' Type of element to snap to
|
|
39948
39948
|
|
|
39949
|
-
:type: typing.Union[typing.Set[
|
|
39949
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
39950
39950
|
'''
|
|
39951
39951
|
|
|
39952
39952
|
snap_elements_base: typing.Union[typing.Set[str], typing.Set[int]]
|
|
@@ -65190,14 +65190,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65190
65190
|
@classmethod
|
|
65191
65191
|
def invoke_props_popup(cls, operator: typing.Optional['Operator'],
|
|
65192
65192
|
event: typing.Optional['Event']
|
|
65193
|
-
) -> typing.Union[typing.Set[
|
|
65193
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65194
65194
|
''' Operator popup invoke (show operator properties and execute it automatically on changes)
|
|
65195
65195
|
|
|
65196
65196
|
:param operator: Operator to call
|
|
65197
65197
|
:type operator: typing.Optional['Operator']
|
|
65198
65198
|
:param event: Event
|
|
65199
65199
|
:type event: typing.Optional['Event']
|
|
65200
|
-
:rtype: typing.Union[typing.Set[
|
|
65200
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65201
65201
|
:return: result
|
|
65202
65202
|
'''
|
|
65203
65203
|
...
|
|
@@ -65207,14 +65207,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65207
65207
|
cls,
|
|
65208
65208
|
operator: typing.Optional['Operator'],
|
|
65209
65209
|
width: typing.Optional[typing.Any] = 300
|
|
65210
|
-
) -> typing.Union[typing.Set[
|
|
65210
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65211
65211
|
''' Operator dialog (non-autoexec popup) invoke (show operator properties and only execute it on click on OK button)
|
|
65212
65212
|
|
|
65213
65213
|
:param operator: Operator to call
|
|
65214
65214
|
:type operator: typing.Optional['Operator']
|
|
65215
65215
|
:param width: Width of the popup
|
|
65216
65216
|
:type width: typing.Optional[typing.Any]
|
|
65217
|
-
:rtype: typing.Union[typing.Set[
|
|
65217
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65218
65218
|
:return: result
|
|
65219
65219
|
'''
|
|
65220
65220
|
...
|
|
@@ -65232,14 +65232,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65232
65232
|
def invoke_popup(cls,
|
|
65233
65233
|
operator: typing.Optional['Operator'],
|
|
65234
65234
|
width: typing.Optional[typing.Any] = 300
|
|
65235
|
-
) -> typing.Union[typing.Set[
|
|
65235
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65236
65236
|
''' Operator popup invoke (only shows operator's properties, without executing it)
|
|
65237
65237
|
|
|
65238
65238
|
:param operator: Operator to call
|
|
65239
65239
|
:type operator: typing.Optional['Operator']
|
|
65240
65240
|
:param width: Width of the popup
|
|
65241
65241
|
:type width: typing.Optional[typing.Any]
|
|
65242
|
-
:rtype: typing.Union[typing.Set[
|
|
65242
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65243
65243
|
:return: result
|
|
65244
65244
|
'''
|
|
65245
65245
|
...
|
|
@@ -65247,14 +65247,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65247
65247
|
@classmethod
|
|
65248
65248
|
def invoke_confirm(cls, operator: typing.Optional['Operator'],
|
|
65249
65249
|
event: typing.Optional['Event']
|
|
65250
|
-
) -> typing.Union[typing.Set[
|
|
65250
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65251
65251
|
''' Operator confirmation popup (only to let user confirm the execution, no operator properties shown)
|
|
65252
65252
|
|
|
65253
65253
|
:param operator: Operator to call
|
|
65254
65254
|
:type operator: typing.Optional['Operator']
|
|
65255
65255
|
:param event: Event
|
|
65256
65256
|
:type event: typing.Optional['Event']
|
|
65257
|
-
:rtype: typing.Union[typing.Set[
|
|
65257
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65258
65258
|
:return: result
|
|
65259
65259
|
'''
|
|
65260
65260
|
...
|
|
@@ -68379,10 +68379,10 @@ class DecimateModifier(Modifier, bpy_struct):
|
|
|
68379
68379
|
:type: typing.Union[str, int]
|
|
68380
68380
|
'''
|
|
68381
68381
|
|
|
68382
|
-
delimit: typing.Union[typing.Set[
|
|
68382
|
+
delimit: typing.Union[typing.Set[int], typing.Set[str]]
|
|
68383
68383
|
''' Limit merging geometry
|
|
68384
68384
|
|
|
68385
|
-
:type: typing.Union[typing.Set[
|
|
68385
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
68386
68386
|
'''
|
|
68387
68387
|
|
|
68388
68388
|
face_count: int
|
|
@@ -69217,10 +69217,10 @@ class MeshCacheModifier(Modifier, bpy_struct):
|
|
|
69217
69217
|
:type: typing.Union[str, typing.Any]
|
|
69218
69218
|
'''
|
|
69219
69219
|
|
|
69220
|
-
flip_axis: typing.Union[typing.Set[
|
|
69220
|
+
flip_axis: typing.Union[typing.Set[int], typing.Set[str]]
|
|
69221
69221
|
'''
|
|
69222
69222
|
|
|
69223
|
-
:type: typing.Union[typing.Set[
|
|
69223
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
69224
69224
|
'''
|
|
69225
69225
|
|
|
69226
69226
|
forward_axis: typing.Union[str, int]
|
|
@@ -108703,10 +108703,10 @@ class GeometryNodeCurveHandleTypeSelection(GeometryNode, NodeInternal, Node,
|
|
|
108703
108703
|
:type: typing.Union[str, int]
|
|
108704
108704
|
'''
|
|
108705
108705
|
|
|
108706
|
-
mode: typing.Union[typing.Set[
|
|
108706
|
+
mode: typing.Union[typing.Set[int], typing.Set[str]]
|
|
108707
108707
|
''' Whether to check the type of left and right handles
|
|
108708
108708
|
|
|
108709
|
-
:type: typing.Union[typing.Set[
|
|
108709
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
108710
108710
|
'''
|
|
108711
108711
|
|
|
108712
108712
|
@classmethod
|
|
@@ -109241,10 +109241,10 @@ class GeometryNodeCurveSetHandles(GeometryNode, NodeInternal, Node,
|
|
|
109241
109241
|
:type: typing.Union[str, int]
|
|
109242
109242
|
'''
|
|
109243
109243
|
|
|
109244
|
-
mode: typing.Union[typing.Set[
|
|
109244
|
+
mode: typing.Union[typing.Set[int], typing.Set[str]]
|
|
109245
109245
|
''' Whether to update left and right handles
|
|
109246
109246
|
|
|
109247
|
-
:type: typing.Union[typing.Set[
|
|
109247
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
109248
109248
|
'''
|
|
109249
109249
|
|
|
109250
109250
|
@classmethod
|
bpy/utils/__init__.pyi
CHANGED
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
|
|
13
|
+
from . import node_shader_utils
|
|
14
14
|
from . import extensions
|
|
15
15
|
from . import wm_utils
|
|
16
|
-
from . import
|
|
16
|
+
from . import bmesh_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.Object', 'bpy.types.Sequence', 'bpy.types.Action'],
|
|
101
101
|
bake_o):
|
|
102
102
|
''' An coroutine that bakes actions for multiple objects.
|
|
103
103
|
|
|
104
104
|
:param object_action_pairs: Sequence of object action tuples, action is the destination for the baked data. When None a new action will be created.
|
|
105
|
-
:type object_action_pairs: typing.Union['bpy.types.
|
|
105
|
+
:type object_action_pairs: typing.Union['bpy.types.Object', 'bpy.types.Sequence', 'bpy.types.Action']
|
|
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=wy8SrhUxVCxQo2DXZRDI8OFsVrP-4eNhglznkdklsNo,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=ka-Yn0KdbMOesEIBSanS6_WsWELLN8KT6w2t1var_LQ,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=TYvBC7gK9rpYmiuoAjDPsp8--4CQpoSogVx9AqA_GnI,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=vaMjSXdbtdU1tiJdXgFORploQ6riHWZ4uj_daPd8QCk,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=SOIWo1DZLCc7eDiR--xgQhfNTwTA5cbwXO5Qb0nJpFQ,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
|
|
@@ -280,7 +280,7 @@ bl_ui/space_view3d_toolbar/__init__.pyi,sha256=a5feb0tvktjo-udAI9j7W6OjoCFFeVoHM
|
|
|
280
280
|
bl_ui/space_view3d_toolbar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
281
281
|
bl_ui/utils/__init__.pyi,sha256=GFZxoxA7Kqq5GlPCROlxHTZvZ0ZQdQ3anCCOu_1PQ00,629
|
|
282
282
|
bl_ui/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
283
|
-
bl_ui_utils/__init__.pyi,sha256=
|
|
283
|
+
bl_ui_utils/__init__.pyi,sha256=09VcD0Qr5ySzpITMc17GRGqGUrN-qjyG6qBeq0jgIFk,120
|
|
284
284
|
bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
285
285
|
bl_ui_utils/bug_report_url/__init__.pyi,sha256=dBZLU9VZ8QJUKvraIUG1S9DJf-FfLhckzBvNRD4gKa0,141
|
|
286
286
|
bl_ui_utils/bug_report_url/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=soU0sKUYNlYhKnegrSse9_FeZ8KSjrZk6Juo4exfDRQ,324
|
|
304
304
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
305
|
-
bpy/app/__init__.pyi,sha256=
|
|
305
|
+
bpy/app/__init__.pyi,sha256=pf31M4rSg5F5CpLyGdFG20dkMrMXBQzAH1lEGau5Mzg,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=n1xifRISsyWBs05q4SRsO3bdrWgaYPgXSuM2-8BRHM0,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
|
|
@@ -438,7 +438,7 @@ bpy/ops/sculpt/__init__.pyi,sha256=WMal_FwyOj-JsmJtp_yH7NrJKyco6A3-BrJO0ezPcdo,4
|
|
|
438
438
|
bpy/ops/sculpt/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
439
439
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=jAuf32aHGBVS1bIG8gk73rkKtZROYInjQqjs-AFeJEM,4066
|
|
440
440
|
bpy/ops/sculpt_curves/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
441
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
441
|
+
bpy/ops/sequencer/__init__.pyi,sha256=kDnL9V8DmXgxNmz5iAShXE10ylF26mBmnJbR4jXDDtc,107179
|
|
442
442
|
bpy/ops/sequencer/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
443
443
|
bpy/ops/sound/__init__.pyi,sha256=At8K3M2txQTQXRLsr1Vl2NLwM6fj1TndI5jFmCWzzTk,23499
|
|
444
444
|
bpy/ops/sound/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -474,17 +474,17 @@ 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=uc8iAy4sGGOGfRBmnSQXWk2vimO6qx1PCFHGp5w4mc4,3489736
|
|
478
478
|
bpy/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
479
|
-
bpy/utils/__init__.pyi,sha256=
|
|
479
|
+
bpy/utils/__init__.pyi,sha256=CVM4ltJPFVTnSYPPtClc91Ig-SR22wPIYfHRh_DpPSs,11228
|
|
480
480
|
bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
481
481
|
bpy/utils/previews/__init__.pyi,sha256=QUL94heIKlOmcCIBSYgpWFG75uqAW0YPzRTsIbtA1rA,2308
|
|
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=QDVXugW_d0G6BjtIEfTgAcmssaBUkSW9OUstcqAMhn4,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=0PhUE2FPvrK732r_FQ_tKHhuHfpgMyE_cOlPU6yNJKo,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-20231214.dist-info/METADATA,sha256=LeWjVMbj22_Vha5zzDCESONth0W8WF5dwg5CDYU7los,7008
|
|
608
|
+
fake_bpy_module-20231214.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
609
|
+
fake_bpy_module-20231214.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
610
|
+
fake_bpy_module-20231214.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|