fake-bpy-module 20231216__py3-none-any.whl → 20231217__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 +2 -2
- bl_keymap_utils/__init__.pyi +2 -2
- bl_operators/__init__.pyi +21 -21
- bl_ui/__init__.pyi +59 -59
- 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/curves/__init__.pyi +15 -0
- bpy/types/__init__.pyi +226 -226
- bpy/utils/__init__.pyi +1 -1
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20231216.dist-info → fake_bpy_module-20231217.dist-info}/METADATA +1 -1
- {fake_bpy_module-20231216.dist-info → fake_bpy_module-20231217.dist-info}/RECORD +17 -17
- {fake_bpy_module-20231216.dist-info → fake_bpy_module-20231217.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20231216.dist-info → fake_bpy_module-20231217.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import intellisense
|
|
4
|
-
from . import complete_namespace
|
|
5
3
|
from . import complete_calltip
|
|
6
4
|
from . import complete_import
|
|
5
|
+
from . import complete_namespace
|
|
6
|
+
from . import intellisense
|
|
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 utils
|
|
4
|
+
from . import utils_languages_menu
|
|
4
5
|
from . import utils_rtl
|
|
5
6
|
from . import bl_extract_messages
|
|
6
|
-
from . import utils_cli
|
|
7
7
|
from . import settings
|
|
8
|
-
from . import
|
|
8
|
+
from . import utils_cli
|
|
9
9
|
from . import merge_po
|
|
10
10
|
|
|
11
11
|
GenericType = typing.TypeVar("GenericType")
|
bl_keymap_utils/__init__.pyi
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
3
|
from . import keymap_from_toolbar
|
|
4
|
-
from . import keymap_hierarchy
|
|
5
|
-
from . import io
|
|
6
4
|
from . import platform_helpers
|
|
5
|
+
from . import io
|
|
7
6
|
from . import versioning
|
|
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 image
|
|
3
|
+
from . import assets
|
|
5
4
|
from . import screen_play_rendered_anim
|
|
6
|
-
from . import
|
|
5
|
+
from . import uvcalc_lightmap
|
|
6
|
+
from . import view3d
|
|
7
|
+
from . import anim
|
|
8
|
+
from . import object_randomize_transform
|
|
9
|
+
from . import image
|
|
7
10
|
from . import uvcalc_follow_active
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
11
|
+
from . import node
|
|
12
|
+
from . import bmesh
|
|
10
13
|
from . import geometry_nodes
|
|
14
|
+
from . import uvcalc_transform
|
|
15
|
+
from . import object_align
|
|
16
|
+
from . import vertexpaint_dirt
|
|
17
|
+
from . import constraint
|
|
11
18
|
from . import object_quick_effects
|
|
19
|
+
from . import presets
|
|
20
|
+
from . import console
|
|
21
|
+
from . import freestyle
|
|
22
|
+
from . import wm
|
|
23
|
+
from . import add_mesh_torus
|
|
24
|
+
from . import sequencer
|
|
25
|
+
from . import file
|
|
12
26
|
from . import spreadsheet
|
|
27
|
+
from . import rigidbody
|
|
28
|
+
from . import object
|
|
13
29
|
from . import userpref
|
|
14
|
-
from . import anim
|
|
15
|
-
from . import uvcalc_transform
|
|
16
|
-
from . import add_mesh_torus
|
|
17
30
|
from . import mesh
|
|
18
|
-
from . import object
|
|
19
|
-
from . import rigidbody
|
|
20
31
|
from . import clip
|
|
21
|
-
from . import constraint
|
|
22
|
-
from . import view3d
|
|
23
|
-
from . import file
|
|
24
|
-
from . import freestyle
|
|
25
|
-
from . import object_randomize_transform
|
|
26
|
-
from . import assets
|
|
27
|
-
from . import bmesh
|
|
28
|
-
from . import uvcalc_lightmap
|
|
29
|
-
from . import vertexpaint_dirt
|
|
30
|
-
from . import sequencer
|
|
31
|
-
from . import node
|
|
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 properties_object
|
|
7
|
-
from . import properties_data_mesh
|
|
8
|
-
from . import space_view3d
|
|
9
|
-
from . import space_properties
|
|
10
|
-
from . import properties_data_pointcloud
|
|
11
|
-
from . import space_userpref
|
|
12
|
-
from . import properties_data_speaker
|
|
13
|
-
from . import space_spreadsheet
|
|
14
|
-
from . import space_clip
|
|
15
|
-
from . import space_sequencer
|
|
16
|
-
from . import properties_animviz
|
|
17
|
-
from . import asset_shelf
|
|
18
|
-
from . import properties_data_grease_pencil
|
|
19
|
-
from . import space_topbar
|
|
5
|
+
from . import space_filebrowser
|
|
20
6
|
from . import properties_data_light
|
|
21
|
-
from . import node_add_menu
|
|
22
|
-
from . import properties_mask_common
|
|
23
|
-
from . import properties_data_shaderfx
|
|
24
|
-
from . import node_add_menu_geometry
|
|
25
|
-
from . import properties_view_layer
|
|
26
|
-
from . import properties_freestyle
|
|
27
|
-
from . import properties_paint_common
|
|
28
|
-
from . import properties_constraint
|
|
29
|
-
from . import properties_data_volume
|
|
30
7
|
from . import properties_physics_dynamicpaint
|
|
31
|
-
from . import
|
|
32
|
-
from . import
|
|
33
|
-
from . import
|
|
34
|
-
from . import
|
|
8
|
+
from . import properties_data_metaball
|
|
9
|
+
from . import space_outliner
|
|
10
|
+
from . import properties_data_armature
|
|
11
|
+
from . import properties_render
|
|
35
12
|
from . import properties_physics_rigidbody
|
|
36
13
|
from . import properties_material_gpencil
|
|
37
|
-
from . import
|
|
38
|
-
from . import
|
|
14
|
+
from . import node_add_menu
|
|
15
|
+
from . import space_spreadsheet
|
|
16
|
+
from . import properties_data_curve
|
|
39
17
|
from . import space_nla
|
|
40
|
-
from . import node_add_menu_texture
|
|
41
|
-
from . import space_view3d_toolbar
|
|
42
|
-
from . import space_dopesheet
|
|
43
|
-
from . import node_add_menu_shader
|
|
44
|
-
from . import space_console
|
|
45
|
-
from . import space_statusbar
|
|
46
|
-
from . import properties_physics_fluid
|
|
47
18
|
from . import properties_data_camera
|
|
48
|
-
from . import utils
|
|
49
|
-
from . import properties_collection
|
|
50
|
-
from . import properties_data_metaball
|
|
51
19
|
from . import node_add_menu_compositor
|
|
20
|
+
from . import properties_collection
|
|
21
|
+
from . import properties_particle
|
|
22
|
+
from . import space_properties
|
|
23
|
+
from . import node_add_menu_geometry
|
|
24
|
+
from . import space_toolsystem_common
|
|
25
|
+
from . import node_add_menu_shader
|
|
26
|
+
from . import asset_shelf
|
|
27
|
+
from . import properties_data_mesh
|
|
52
28
|
from . import properties_world
|
|
53
29
|
from . import properties_workspace
|
|
54
|
-
from . import
|
|
55
|
-
from . import
|
|
56
|
-
from . import
|
|
30
|
+
from . import node_add_menu_texture
|
|
31
|
+
from . import generic_ui_list
|
|
32
|
+
from . import properties_paint_common
|
|
33
|
+
from . import properties_view_layer
|
|
57
34
|
from . import properties_material
|
|
58
|
-
from . import
|
|
59
|
-
from . import
|
|
35
|
+
from . import properties_data_empty
|
|
36
|
+
from . import properties_physics_cloth
|
|
37
|
+
from . import space_console
|
|
38
|
+
from . import space_view3d
|
|
39
|
+
from . import properties_physics_common
|
|
40
|
+
from . import space_time
|
|
41
|
+
from . import properties_data_speaker
|
|
60
42
|
from . import space_toolsystem_toolbar
|
|
61
|
-
from . import
|
|
62
|
-
from . import properties_physics_field
|
|
63
|
-
from . import properties_data_curves
|
|
43
|
+
from . import space_node
|
|
64
44
|
from . import properties_physics_rigidbody_constraint
|
|
65
|
-
from . import properties_render
|
|
66
45
|
from . import properties_scene
|
|
67
|
-
from . import
|
|
68
|
-
from . import
|
|
69
|
-
from . import
|
|
70
|
-
from . import
|
|
71
|
-
from . import
|
|
72
|
-
from . import
|
|
73
|
-
from . import
|
|
74
|
-
from . import
|
|
46
|
+
from . import space_text
|
|
47
|
+
from . import properties_object
|
|
48
|
+
from . import space_graph
|
|
49
|
+
from . import properties_data_shaderfx
|
|
50
|
+
from . import space_info
|
|
51
|
+
from . import space_view3d_toolbar
|
|
52
|
+
from . import space_sequencer
|
|
53
|
+
from . import properties_physics_fluid
|
|
54
|
+
from . import properties_data_curves
|
|
75
55
|
from . import properties_data_lightprobe
|
|
56
|
+
from . import properties_physics_geometry_nodes
|
|
57
|
+
from . import space_image
|
|
58
|
+
from . import space_clip
|
|
59
|
+
from . import space_statusbar
|
|
60
|
+
from . import space_userpref
|
|
61
|
+
from . import properties_freestyle
|
|
62
|
+
from . import properties_texture
|
|
63
|
+
from . import properties_data_grease_pencil
|
|
64
|
+
from . import properties_data_modifier
|
|
65
|
+
from . import properties_data_bone
|
|
76
66
|
from . import properties_physics_softbody
|
|
77
|
-
from . import
|
|
67
|
+
from . import properties_output
|
|
68
|
+
from . import properties_mask_common
|
|
69
|
+
from . import properties_data_volume
|
|
70
|
+
from . import utils
|
|
78
71
|
from . import properties_grease_pencil_common
|
|
79
|
-
from . import
|
|
72
|
+
from . import properties_physics_field
|
|
73
|
+
from . import space_dopesheet
|
|
74
|
+
from . import properties_data_lattice
|
|
75
|
+
from . import properties_constraint
|
|
76
|
+
from . import properties_animviz
|
|
77
|
+
from . import space_topbar
|
|
78
|
+
from . import properties_data_pointcloud
|
|
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
bpy/app/__init__.pyi
CHANGED
bpy/ops/__init__.pyi
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import
|
|
4
|
-
from . import
|
|
5
|
-
from . import ed
|
|
6
|
-
from . import collection
|
|
7
|
-
from . import view2d
|
|
8
|
-
from . import rigidbody
|
|
3
|
+
from . import dpaint
|
|
4
|
+
from . import info
|
|
9
5
|
from . import file
|
|
10
|
-
from . import render
|
|
11
|
-
from . import sculpt
|
|
12
|
-
from . import ui
|
|
13
6
|
from . import text_editor
|
|
14
|
-
from . import
|
|
7
|
+
from . import ptcache
|
|
8
|
+
from . import outliner
|
|
9
|
+
from . import nla
|
|
10
|
+
from . import view2d
|
|
11
|
+
from . import constraint
|
|
12
|
+
from . import gizmogroup
|
|
15
13
|
from . import export_scene
|
|
16
|
-
from . import
|
|
17
|
-
from . import
|
|
18
|
-
from . import geometry
|
|
19
|
-
from . import object
|
|
20
|
-
from . import import_mesh
|
|
21
|
-
from . import transform
|
|
22
|
-
from . import asset
|
|
23
|
-
from . import sequencer
|
|
14
|
+
from . import gpencil
|
|
15
|
+
from . import collection
|
|
24
16
|
from . import uv
|
|
25
|
-
from . import paint
|
|
26
|
-
from . import ptcache
|
|
27
|
-
from . import armature
|
|
28
|
-
from . import preferences
|
|
29
|
-
from . import surface
|
|
30
|
-
from . import brush
|
|
31
|
-
from . import paintcurve
|
|
32
17
|
from . import sculpt_curves
|
|
33
|
-
from . import
|
|
34
|
-
from . import
|
|
35
|
-
from . import
|
|
36
|
-
from . import
|
|
37
|
-
from . import
|
|
38
|
-
from . import
|
|
39
|
-
from . import
|
|
40
|
-
from . import
|
|
41
|
-
from . import
|
|
42
|
-
from . import
|
|
18
|
+
from . import pose
|
|
19
|
+
from . import material
|
|
20
|
+
from . import rigidbody
|
|
21
|
+
from . import export_anim
|
|
22
|
+
from . import buttons
|
|
23
|
+
from . import screen
|
|
24
|
+
from . import wm
|
|
25
|
+
from . import view3d
|
|
26
|
+
from . import sequencer
|
|
27
|
+
from . import texture
|
|
43
28
|
from . import particle
|
|
29
|
+
from . import transform
|
|
44
30
|
from . import image
|
|
45
|
-
from . import
|
|
31
|
+
from . import paint
|
|
32
|
+
from . import curve
|
|
46
33
|
from . import palette
|
|
47
|
-
from . import font
|
|
48
|
-
from . import export_mesh
|
|
49
|
-
from . import screen
|
|
50
|
-
from . import fluid
|
|
51
|
-
from . import action
|
|
52
|
-
from . import texture
|
|
53
34
|
from . import anim
|
|
54
|
-
from . import
|
|
55
|
-
from . import
|
|
35
|
+
from . import object
|
|
36
|
+
from . import clip
|
|
37
|
+
from . import uilist
|
|
38
|
+
from . import text
|
|
56
39
|
from . import mesh
|
|
57
|
-
from . import
|
|
58
|
-
from . import
|
|
59
|
-
from . import
|
|
40
|
+
from . import asset
|
|
41
|
+
from . import cycles
|
|
42
|
+
from . import font
|
|
43
|
+
from . import ui
|
|
44
|
+
from . import action
|
|
45
|
+
from . import sound
|
|
46
|
+
from . import armature
|
|
47
|
+
from . import mball
|
|
48
|
+
from . import marker
|
|
60
49
|
from . import world
|
|
50
|
+
from . import console
|
|
51
|
+
from . import sculpt
|
|
61
52
|
from . import camera
|
|
62
|
-
from . import
|
|
63
|
-
from . import outliner
|
|
64
|
-
from . import scene
|
|
65
|
-
from . import spreadsheet
|
|
66
|
-
from . import wm
|
|
67
|
-
from . import workspace
|
|
68
|
-
from . import curve
|
|
69
|
-
from . import view3d
|
|
53
|
+
from . import script
|
|
70
54
|
from . import cachefile
|
|
71
|
-
from . import
|
|
72
|
-
from . import
|
|
73
|
-
from . import
|
|
55
|
+
from . import brush
|
|
56
|
+
from . import lattice
|
|
57
|
+
from . import ed
|
|
74
58
|
from . import import_curve
|
|
59
|
+
from . import preferences
|
|
60
|
+
from . import import_mesh
|
|
61
|
+
from . import export_mesh
|
|
62
|
+
from . import render
|
|
63
|
+
from . import import_scene
|
|
64
|
+
from . import import_anim
|
|
65
|
+
from . import workspace
|
|
66
|
+
from . import node
|
|
67
|
+
from . import paintcurve
|
|
68
|
+
from . import geometry
|
|
69
|
+
from . import graph
|
|
70
|
+
from . import surface
|
|
71
|
+
from . import mask
|
|
72
|
+
from . import spreadsheet
|
|
73
|
+
from . import poselib
|
|
75
74
|
from . import curves
|
|
76
|
-
from . import
|
|
77
|
-
from . import
|
|
78
|
-
from . import
|
|
79
|
-
from . import
|
|
75
|
+
from . import grease_pencil
|
|
76
|
+
from . import scene
|
|
77
|
+
from . import fluid
|
|
78
|
+
from . import cloth
|
|
79
|
+
from . import boid
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
bpy/ops/curves/__init__.pyi
CHANGED
|
@@ -334,3 +334,18 @@ def surface_set(
|
|
|
334
334
|
'''
|
|
335
335
|
|
|
336
336
|
...
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
def tilt_clear(
|
|
340
|
+
override_context: typing.Optional[
|
|
341
|
+
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
342
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
343
|
+
undo: typing.Optional[bool] = None):
|
|
344
|
+
''' Clear the tilt of selected control points
|
|
345
|
+
|
|
346
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
347
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
348
|
+
:type undo: typing.Optional[bool]
|
|
349
|
+
'''
|
|
350
|
+
|
|
351
|
+
...
|
bpy/types/__init__.pyi
CHANGED
|
@@ -2,97 +2,212 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import mathutils
|
|
4
4
|
import bpy
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import bl_ui.properties_object
|
|
8
|
-
import bl_ui.properties_data_mesh
|
|
9
|
-
import bl_ui.space_view3d
|
|
10
|
-
import bl_ui.space_properties
|
|
11
|
-
import bl_operators.presets
|
|
12
|
-
import bl_ui.properties_data_pointcloud
|
|
13
|
-
import bl_ui.space_userpref
|
|
14
|
-
import bl_ui.properties_data_speaker
|
|
15
|
-
import bl_ui.space_spreadsheet
|
|
16
|
-
import bl_ui.space_clip
|
|
17
|
-
import bl_ui.space_sequencer
|
|
18
|
-
import bl_ui.asset_shelf
|
|
19
|
-
import bl_ui.properties_data_grease_pencil
|
|
20
|
-
import bl_ui.space_topbar
|
|
5
|
+
import bl_operators.assets
|
|
6
|
+
import bl_ui.space_filebrowser
|
|
21
7
|
import bl_ui.properties_data_light
|
|
22
|
-
import bl_ui.node_add_menu
|
|
23
|
-
import bl_ui.properties_mask_common
|
|
24
|
-
import bl_ui
|
|
25
|
-
import bl_ui.properties_data_shaderfx
|
|
26
|
-
import bl_ui.node_add_menu_geometry
|
|
27
|
-
import bl_ui.properties_view_layer
|
|
28
|
-
import bl_ui.properties_freestyle
|
|
29
|
-
import bl_ui.properties_paint_common
|
|
30
|
-
import bl_ui.properties_constraint
|
|
31
|
-
import bl_ui.properties_data_volume
|
|
32
8
|
import bl_ui.properties_physics_dynamicpaint
|
|
33
|
-
import bl_ui.
|
|
34
|
-
import
|
|
35
|
-
import
|
|
36
|
-
import bl_ui.
|
|
37
|
-
import bl_operators.
|
|
38
|
-
import bl_ui.
|
|
9
|
+
import bl_ui.properties_data_metaball
|
|
10
|
+
import bl_operators.view3d
|
|
11
|
+
import bl_ui.space_outliner
|
|
12
|
+
import bl_ui.properties_data_armature
|
|
13
|
+
import bl_operators.anim
|
|
14
|
+
import bl_ui.properties_render
|
|
39
15
|
import bl_ui.properties_physics_rigidbody
|
|
40
16
|
import bl_ui.properties_material_gpencil
|
|
41
|
-
import bl_ui.
|
|
42
|
-
import bl_ui.
|
|
17
|
+
import bl_ui.node_add_menu
|
|
18
|
+
import bl_ui.space_spreadsheet
|
|
19
|
+
import bl_ui.properties_data_curve
|
|
43
20
|
import bl_ui.space_nla
|
|
44
|
-
import bl_ui.node_add_menu_texture
|
|
45
|
-
import bl_ui.space_view3d_toolbar
|
|
46
|
-
import bl_ui.space_dopesheet
|
|
47
|
-
import bl_ui.node_add_menu_shader
|
|
48
|
-
import bl_ui.space_console
|
|
49
|
-
import bl_ui.space_statusbar
|
|
50
|
-
import bl_ui.properties_physics_fluid
|
|
51
21
|
import bl_ui.properties_data_camera
|
|
52
|
-
import bl_operators.anim
|
|
53
|
-
import bl_ui.properties_collection
|
|
54
|
-
import bl_ui.properties_data_metaball
|
|
55
22
|
import bl_ui.node_add_menu_compositor
|
|
23
|
+
import bl_ui.properties_collection
|
|
24
|
+
import bl_operators.node
|
|
25
|
+
import bl_ui.properties_particle
|
|
26
|
+
import bl_ui.space_properties
|
|
27
|
+
import bl_ui.node_add_menu_geometry
|
|
28
|
+
import bl_ui.space_toolsystem_common
|
|
29
|
+
import bl_ui.node_add_menu_shader
|
|
30
|
+
import bl_ui.asset_shelf
|
|
31
|
+
import bl_ui.properties_data_mesh
|
|
56
32
|
import bl_ui.properties_world
|
|
57
33
|
import bl_ui.properties_workspace
|
|
58
|
-
import bl_ui.
|
|
59
|
-
import bl_ui.
|
|
60
|
-
import
|
|
61
|
-
import bl_ui.
|
|
62
|
-
import bl_operators.clip
|
|
34
|
+
import bl_ui.node_add_menu_texture
|
|
35
|
+
import bl_ui.generic_ui_list
|
|
36
|
+
import bl_ui.properties_paint_common
|
|
37
|
+
import bl_ui.properties_view_layer
|
|
63
38
|
import bl_ui.properties_material
|
|
64
|
-
import bl_ui.
|
|
65
|
-
import bl_ui.
|
|
39
|
+
import bl_ui.properties_data_empty
|
|
40
|
+
import bl_ui.properties_physics_cloth
|
|
41
|
+
import bl_ui
|
|
66
42
|
import bl_operators.constraint
|
|
43
|
+
import bl_ui.space_console
|
|
44
|
+
import bl_ui.space_view3d
|
|
45
|
+
import bl_ui.properties_physics_common
|
|
46
|
+
import bl_ui.space_time
|
|
47
|
+
import bl_ui.properties_data_speaker
|
|
67
48
|
import bl_ui.space_toolsystem_toolbar
|
|
68
|
-
import bl_ui.
|
|
69
|
-
import bl_ui.properties_physics_field
|
|
70
|
-
import bl_ui.properties_data_curves
|
|
49
|
+
import bl_ui.space_node
|
|
71
50
|
import bl_ui.properties_physics_rigidbody_constraint
|
|
72
|
-
import bl_ui.properties_render
|
|
73
|
-
import bl_operators.view3d
|
|
74
|
-
import bl_operators.file
|
|
75
51
|
import bl_ui.properties_scene
|
|
76
|
-
import
|
|
52
|
+
import bl_operators.presets
|
|
53
|
+
import bl_ui.space_text
|
|
54
|
+
import bl_ui.properties_object
|
|
77
55
|
import bl_operators.freestyle
|
|
78
|
-
import bl_ui.
|
|
79
|
-
import bl_ui.
|
|
80
|
-
import bl_ui.
|
|
81
|
-
import bl_ui.
|
|
82
|
-
import bl_operators.
|
|
83
|
-
import bl_ui.
|
|
84
|
-
import bl_ui.
|
|
85
|
-
import bl_ui.
|
|
56
|
+
import bl_ui.space_graph
|
|
57
|
+
import bl_ui.properties_data_shaderfx
|
|
58
|
+
import bl_ui.space_info
|
|
59
|
+
import bl_ui.space_view3d_toolbar
|
|
60
|
+
import bl_operators.wm
|
|
61
|
+
import bl_ui.space_sequencer
|
|
62
|
+
import bl_ui.properties_physics_fluid
|
|
63
|
+
import bl_ui.properties_data_curves
|
|
86
64
|
import bl_ui.properties_data_lightprobe
|
|
65
|
+
import bl_operators.file
|
|
66
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
67
|
+
import bl_ui.space_image
|
|
68
|
+
import bl_ui.space_clip
|
|
69
|
+
import bl_operators.spreadsheet
|
|
70
|
+
import bl_ui.space_statusbar
|
|
71
|
+
import bl_ui.space_userpref
|
|
72
|
+
import bl_ui.properties_freestyle
|
|
73
|
+
import bl_ui.properties_texture
|
|
74
|
+
import bl_ui.properties_data_grease_pencil
|
|
75
|
+
import bl_ui.properties_data_modifier
|
|
76
|
+
import bl_ui.properties_data_bone
|
|
87
77
|
import bl_ui.properties_physics_softbody
|
|
88
|
-
import bl_ui.
|
|
78
|
+
import bl_ui.properties_output
|
|
79
|
+
import bl_ui.properties_mask_common
|
|
80
|
+
import bl_ui.properties_data_volume
|
|
89
81
|
import bl_ui.properties_grease_pencil_common
|
|
90
|
-
import
|
|
91
|
-
import bl_ui.
|
|
82
|
+
import bl_ui.properties_physics_field
|
|
83
|
+
import bl_ui.space_dopesheet
|
|
84
|
+
import bl_operators.object
|
|
85
|
+
import bl_operators.userpref
|
|
86
|
+
import bl_ui.properties_data_lattice
|
|
87
|
+
import bl_ui.properties_constraint
|
|
88
|
+
import bl_ui.space_topbar
|
|
89
|
+
import bl_operators.clip
|
|
90
|
+
import bl_ui.properties_data_pointcloud
|
|
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
|
+
|
|
96
211
|
class bpy_struct:
|
|
97
212
|
''' built-in base class for all classes in bpy.types.
|
|
98
213
|
'''
|
|
@@ -366,121 +481,6 @@ class bpy_struct:
|
|
|
366
481
|
...
|
|
367
482
|
|
|
368
483
|
|
|
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[str, int, '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[str, int, '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[str], typing.Set[int]]:
|
|
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[str], typing.Set[int]]
|
|
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[str], typing.Set[int]]:
|
|
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[str], typing.Set[int]]
|
|
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[str], typing.Set[int]]
|
|
17369
17369
|
''' Keying Set options to use when inserting keyframes
|
|
17370
17370
|
|
|
17371
|
-
:type: typing.Union[typing.Set[
|
|
17371
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
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[str], typing.Set[int]]
|
|
17820
17820
|
''' Options for this operator type
|
|
17821
17821
|
|
|
17822
|
-
:type: typing.Union[typing.Set[
|
|
17822
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
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[str], typing.Set[int]]],
|
|
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[str], typing.Set[int]]]
|
|
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[str], typing.Set[int]]
|
|
22852
22852
|
''' Options for this operator type
|
|
22853
22853
|
|
|
22854
|
-
:type: typing.Union[typing.Set[
|
|
22854
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
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[str], typing.Set[int]]],
|
|
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[str], typing.Set[int]]]
|
|
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[str], typing.Set[int]]:
|
|
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[str], typing.Set[int]]
|
|
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[str], typing.Set[int]]:
|
|
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[str], typing.Set[int]]
|
|
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[str], typing.Set[int]]:
|
|
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[str], typing.Set[int]]
|
|
22984
22984
|
:return: result
|
|
22985
22985
|
'''
|
|
22986
22986
|
...
|
|
@@ -28861,12 +28861,12 @@ class RenderEngine(bpy_struct):
|
|
|
28861
28861
|
...
|
|
28862
28862
|
|
|
28863
28863
|
def report(self, type: typing.Optional[
|
|
28864
|
-
typing.Union[typing.Set[
|
|
28864
|
+
typing.Union[typing.Set[str], typing.Set[int]]],
|
|
28865
28865
|
message: typing.Union[str, typing.Any]):
|
|
28866
28866
|
''' Report info, warning or error messages
|
|
28867
28867
|
|
|
28868
28868
|
:param type: Type
|
|
28869
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
28869
|
+
:type type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
28870
28870
|
:param message: Report Message
|
|
28871
28871
|
:type message: typing.Union[str, typing.Any]
|
|
28872
28872
|
'''
|
|
@@ -39933,10 +39933,10 @@ class ToolSettings(bpy_struct):
|
|
|
39933
39933
|
:type: typing.Union[str, int]
|
|
39934
39934
|
'''
|
|
39935
39935
|
|
|
39936
|
-
snap_elements: typing.Union[typing.Set[
|
|
39936
|
+
snap_elements: typing.Union[typing.Set[str], typing.Set[int]]
|
|
39937
39937
|
''' Type of element to snap to
|
|
39938
39938
|
|
|
39939
|
-
:type: typing.Union[typing.Set[
|
|
39939
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
39940
39940
|
'''
|
|
39941
39941
|
|
|
39942
39942
|
snap_elements_base: typing.Union[typing.Set[str], typing.Set[int]]
|
|
@@ -65180,14 +65180,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65180
65180
|
@classmethod
|
|
65181
65181
|
def invoke_props_popup(cls, operator: typing.Optional['Operator'],
|
|
65182
65182
|
event: typing.Optional['Event']
|
|
65183
|
-
) -> typing.Union[typing.Set[
|
|
65183
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
65184
65184
|
''' Operator popup invoke (show operator properties and execute it automatically on changes)
|
|
65185
65185
|
|
|
65186
65186
|
:param operator: Operator to call
|
|
65187
65187
|
:type operator: typing.Optional['Operator']
|
|
65188
65188
|
:param event: Event
|
|
65189
65189
|
:type event: typing.Optional['Event']
|
|
65190
|
-
:rtype: typing.Union[typing.Set[
|
|
65190
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65191
65191
|
:return: result
|
|
65192
65192
|
'''
|
|
65193
65193
|
...
|
|
@@ -65197,14 +65197,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65197
65197
|
cls,
|
|
65198
65198
|
operator: typing.Optional['Operator'],
|
|
65199
65199
|
width: typing.Optional[typing.Any] = 300
|
|
65200
|
-
) -> typing.Union[typing.Set[
|
|
65200
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
65201
65201
|
''' Operator dialog (non-autoexec popup) invoke (show operator properties and only execute it on click on OK button)
|
|
65202
65202
|
|
|
65203
65203
|
:param operator: Operator to call
|
|
65204
65204
|
:type operator: typing.Optional['Operator']
|
|
65205
65205
|
:param width: Width of the popup
|
|
65206
65206
|
:type width: typing.Optional[typing.Any]
|
|
65207
|
-
:rtype: typing.Union[typing.Set[
|
|
65207
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65208
65208
|
:return: result
|
|
65209
65209
|
'''
|
|
65210
65210
|
...
|
|
@@ -65222,14 +65222,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65222
65222
|
def invoke_popup(cls,
|
|
65223
65223
|
operator: typing.Optional['Operator'],
|
|
65224
65224
|
width: typing.Optional[typing.Any] = 300
|
|
65225
|
-
) -> typing.Union[typing.Set[
|
|
65225
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
65226
65226
|
''' Operator popup invoke (only shows operator's properties, without executing it)
|
|
65227
65227
|
|
|
65228
65228
|
:param operator: Operator to call
|
|
65229
65229
|
:type operator: typing.Optional['Operator']
|
|
65230
65230
|
:param width: Width of the popup
|
|
65231
65231
|
:type width: typing.Optional[typing.Any]
|
|
65232
|
-
:rtype: typing.Union[typing.Set[
|
|
65232
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65233
65233
|
:return: result
|
|
65234
65234
|
'''
|
|
65235
65235
|
...
|
|
@@ -65237,14 +65237,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65237
65237
|
@classmethod
|
|
65238
65238
|
def invoke_confirm(cls, operator: typing.Optional['Operator'],
|
|
65239
65239
|
event: typing.Optional['Event']
|
|
65240
|
-
) -> typing.Union[typing.Set[
|
|
65240
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
65241
65241
|
''' Operator confirmation popup (only to let user confirm the execution, no operator properties shown)
|
|
65242
65242
|
|
|
65243
65243
|
:param operator: Operator to call
|
|
65244
65244
|
:type operator: typing.Optional['Operator']
|
|
65245
65245
|
:param event: Event
|
|
65246
65246
|
:type event: typing.Optional['Event']
|
|
65247
|
-
:rtype: typing.Union[typing.Set[
|
|
65247
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65248
65248
|
:return: result
|
|
65249
65249
|
'''
|
|
65250
65250
|
...
|
|
@@ -68369,10 +68369,10 @@ class DecimateModifier(Modifier, bpy_struct):
|
|
|
68369
68369
|
:type: typing.Union[str, int]
|
|
68370
68370
|
'''
|
|
68371
68371
|
|
|
68372
|
-
delimit: typing.Union[typing.Set[
|
|
68372
|
+
delimit: typing.Union[typing.Set[str], typing.Set[int]]
|
|
68373
68373
|
''' Limit merging geometry
|
|
68374
68374
|
|
|
68375
|
-
:type: typing.Union[typing.Set[
|
|
68375
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
68376
68376
|
'''
|
|
68377
68377
|
|
|
68378
68378
|
face_count: int
|
|
@@ -69207,10 +69207,10 @@ class MeshCacheModifier(Modifier, bpy_struct):
|
|
|
69207
69207
|
:type: typing.Union[str, typing.Any]
|
|
69208
69208
|
'''
|
|
69209
69209
|
|
|
69210
|
-
flip_axis: typing.Union[typing.Set[
|
|
69210
|
+
flip_axis: typing.Union[typing.Set[str], typing.Set[int]]
|
|
69211
69211
|
'''
|
|
69212
69212
|
|
|
69213
|
-
:type: typing.Union[typing.Set[
|
|
69213
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
69214
69214
|
'''
|
|
69215
69215
|
|
|
69216
69216
|
forward_axis: typing.Union[str, int]
|
|
@@ -108693,10 +108693,10 @@ class GeometryNodeCurveHandleTypeSelection(GeometryNode, NodeInternal, Node,
|
|
|
108693
108693
|
:type: typing.Union[str, int]
|
|
108694
108694
|
'''
|
|
108695
108695
|
|
|
108696
|
-
mode: typing.Union[typing.Set[
|
|
108696
|
+
mode: typing.Union[typing.Set[str], typing.Set[int]]
|
|
108697
108697
|
''' Whether to check the type of left and right handles
|
|
108698
108698
|
|
|
108699
|
-
:type: typing.Union[typing.Set[
|
|
108699
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
108700
108700
|
'''
|
|
108701
108701
|
|
|
108702
108702
|
@classmethod
|
|
@@ -109231,10 +109231,10 @@ class GeometryNodeCurveSetHandles(GeometryNode, NodeInternal, Node,
|
|
|
109231
109231
|
:type: typing.Union[str, int]
|
|
109232
109232
|
'''
|
|
109233
109233
|
|
|
109234
|
-
mode: typing.Union[typing.Set[
|
|
109234
|
+
mode: typing.Union[typing.Set[str], typing.Set[int]]
|
|
109235
109235
|
''' Whether to update left and right handles
|
|
109236
109236
|
|
|
109237
|
-
:type: typing.Union[typing.Set[
|
|
109237
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
109238
109238
|
'''
|
|
109239
109239
|
|
|
109240
109240
|
@classmethod
|
bpy/utils/__init__.pyi
CHANGED
|
@@ -97,12 +97,12 @@ def bake_action_objects(object_action_pairs, *, frames: int,
|
|
|
97
97
|
|
|
98
98
|
def bake_action_objects_iter(
|
|
99
99
|
object_action_pairs: typing.
|
|
100
|
-
Union['bpy.types.
|
|
100
|
+
Union['bpy.types.Object', 'bpy.types.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=TQJ_TfRkhf8QqbJJcwh-RvRTL2M-saX4-bRv7wbKXNQ,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=VaTpWSxB_XZu7oFsq105fOtViZ6FtekeVRqoQVWoRXc,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=uEGFJwP5EIWJYhNbk1VlZEoPhUnZ0bedIwAiZStbgIo,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=mljvIbp6CHk5srdfG38fYjQTWRJ5qh_m9D5SX7h9j-8,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=YYn3JzffZZXn1MppJf-iXk2fRwvlEVQ_2BOecdd16ac,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=zO5ilLwp6S2PjWE_un7fFvhQFJn1Zj2c5fy-oW4hZ7A,4030
|
|
|
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=l1NX-LjlLS6KkZ4nafmOCevXvosVC1y_uTv5gqJKvL8,324
|
|
304
304
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
305
|
-
bpy/app/__init__.pyi,sha256=
|
|
305
|
+
bpy/app/__init__.pyi,sha256=ZygEt2k9DxByE97eGs4b7qzhl5GqmVqE_h1VdP74KIA,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=kkKJIW65PvhGBgGKNl-BBNkg9co4rGmcgI9-6SQoF-M,1751
|
|
318
318
|
bpy/ops/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
319
319
|
bpy/ops/action/__init__.pyi,sha256=8YFm2Fmch8zMUmLNqXcws6S3S4v33OQre5yulSOkbvo,29657
|
|
320
320
|
bpy/ops/action/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -346,7 +346,7 @@ bpy/ops/constraint/__init__.pyi,sha256=CVsgll2E-0kWOOXsHATSzcPfLrHuP2MfinBnm2TUB
|
|
|
346
346
|
bpy/ops/constraint/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
347
|
bpy/ops/curve/__init__.pyi,sha256=smOKyWV0ew2kShTc7T11X24QOe-YK6K8sLCJCU_M-3k,43928
|
|
348
348
|
bpy/ops/curve/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
349
|
-
bpy/ops/curves/__init__.pyi,sha256=
|
|
349
|
+
bpy/ops/curves/__init__.pyi,sha256=WmZizqZUHqiZ5dHAHq9weUReMvfn3ldxi9OF6_N9dm8,14095
|
|
350
350
|
bpy/ops/curves/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
351
351
|
bpy/ops/cycles/__init__.pyi,sha256=9L_spU4y9ri4fyFpLURh-trT0FbPIGPvnGpA_17ZpAw,3284
|
|
352
352
|
bpy/ops/cycles/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -474,9 +474,9 @@ 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=N0VbuxGMpsuHDNXOQrQWl76qEfAl8F8npY0uZ2cJ89s,3489175
|
|
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
|
|
@@ -484,7 +484,7 @@ bpy/utils/units/__init__.pyi,sha256=Htz1Vbpcp-YbtdqyvJyv-rsNAVHZVahWNi6Xy2qHUco,
|
|
|
484
484
|
bpy/utils/units/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
485
485
|
bpy_extras/__init__.pyi,sha256=mVH7RClXLxQM78fKi48n5XOqjjKOlUH6ztpEf05oWQ4,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-20231217.dist-info/METADATA,sha256=GR8C1nraFBOv5DGfkE8Jtbn_pShhKM4_gLeWdyxF408,7008
|
|
608
|
+
fake_bpy_module-20231217.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
609
|
+
fake_bpy_module-20231217.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
610
|
+
fake_bpy_module-20231217.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|