fake-bpy-module 20240127__py3-none-any.whl → 20240128__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.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_console_utils/autocomplete/__init__.pyi +1 -1
- bl_i18n_utils/__init__.pyi +4 -4
- bl_keymap_utils/__init__.pyi +3 -3
- bl_operators/__init__.pyi +20 -20
- bl_ui/__init__.pyi +62 -62
- bl_ui_utils/__init__.pyi +1 -1
- bpy/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +63 -63
- bpy/types/__init__.pyi +115 -115
- bpy/utils/__init__.pyi +1 -1
- bpy_extras/__init__.pyi +1 -1
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20240127.dist-info → fake_bpy_module-20240128.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240127.dist-info → fake_bpy_module-20240128.dist-info}/RECORD +16 -16
- {fake_bpy_module-20240127.dist-info → fake_bpy_module-20240128.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240127.dist-info → fake_bpy_module-20240128.dist-info}/top_level.txt +0 -0
bl_i18n_utils/__init__.pyi
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
+
from . import merge_po
|
|
3
4
|
from . import utils_cli
|
|
4
|
-
from . import utils_languages_menu
|
|
5
|
-
from . import utils_rtl
|
|
6
|
-
from . import settings
|
|
7
5
|
from . import utils
|
|
6
|
+
from . import settings
|
|
7
|
+
from . import utils_languages_menu
|
|
8
8
|
from . import bl_extract_messages
|
|
9
|
-
from . import
|
|
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
3
|
from . import platform_helpers
|
|
4
|
-
from . import versioning
|
|
5
|
-
from . import keymap_hierarchy
|
|
6
|
-
from . import io
|
|
7
4
|
from . import keymap_from_toolbar
|
|
5
|
+
from . import io
|
|
6
|
+
from . import keymap_hierarchy
|
|
7
|
+
from . import versioning
|
|
8
8
|
|
|
9
9
|
GenericType = typing.TypeVar("GenericType")
|
bl_operators/__init__.pyi
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import
|
|
4
|
-
from . import
|
|
5
|
-
from . import uvcalc_follow_active
|
|
3
|
+
from . import rigidbody
|
|
4
|
+
from . import uvcalc_transform
|
|
6
5
|
from . import mesh
|
|
7
|
-
from . import bmesh
|
|
8
|
-
from . import anim
|
|
9
|
-
from . import wm
|
|
10
|
-
from . import uvcalc_lightmap
|
|
11
6
|
from . import clip
|
|
12
|
-
from . import
|
|
13
|
-
from . import spreadsheet
|
|
7
|
+
from . import geometry_nodes
|
|
14
8
|
from . import node
|
|
9
|
+
from . import bmesh
|
|
15
10
|
from . import object_randomize_transform
|
|
11
|
+
from . import anim
|
|
16
12
|
from . import image
|
|
17
|
-
from . import
|
|
18
|
-
from . import console
|
|
19
|
-
from . import object_align
|
|
20
|
-
from . import view3d
|
|
21
|
-
from . import object
|
|
13
|
+
from . import assets
|
|
22
14
|
from . import userpref
|
|
23
|
-
from . import
|
|
24
|
-
from . import
|
|
25
|
-
from . import add_mesh_torus
|
|
15
|
+
from . import screen_play_rendered_anim
|
|
16
|
+
from . import console
|
|
26
17
|
from . import vertexpaint_dirt
|
|
27
|
-
from . import
|
|
28
|
-
from . import
|
|
29
|
-
from . import
|
|
18
|
+
from . import presets
|
|
19
|
+
from . import uvcalc_lightmap
|
|
20
|
+
from . import add_mesh_torus
|
|
21
|
+
from . import wm
|
|
22
|
+
from . import sequencer
|
|
30
23
|
from . import object_quick_effects
|
|
24
|
+
from . import constraint
|
|
31
25
|
from . import freestyle
|
|
26
|
+
from . import uvcalc_follow_active
|
|
27
|
+
from . import view3d
|
|
28
|
+
from . import object
|
|
29
|
+
from . import spreadsheet
|
|
30
|
+
from . import file
|
|
31
|
+
from . import object_align
|
|
32
32
|
|
|
33
33
|
GenericType = typing.TypeVar("GenericType")
|
|
34
34
|
|
bl_ui/__init__.pyi
CHANGED
|
@@ -2,82 +2,82 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import bpy_types
|
|
4
4
|
|
|
5
|
-
from . import
|
|
6
|
-
from . import
|
|
5
|
+
from . import properties_constraint
|
|
6
|
+
from . import properties_data_lattice
|
|
7
|
+
from . import space_userpref
|
|
8
|
+
from . import properties_physics_field
|
|
9
|
+
from . import space_statusbar
|
|
10
|
+
from . import properties_workspace
|
|
11
|
+
from . import space_text
|
|
7
12
|
from . import space_filebrowser
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
10
|
-
from . import
|
|
11
|
-
from . import
|
|
12
|
-
from . import
|
|
13
|
-
from . import asset_shelf
|
|
14
|
-
from . import space_topbar
|
|
13
|
+
from . import anim
|
|
14
|
+
from . import properties_physics_dynamicpaint
|
|
15
|
+
from . import properties_physics_softbody
|
|
16
|
+
from . import space_view3d
|
|
17
|
+
from . import space_clip
|
|
15
18
|
from . import space_spreadsheet
|
|
16
|
-
from . import
|
|
19
|
+
from . import space_toolsystem_toolbar
|
|
17
20
|
from . import space_graph
|
|
18
|
-
from . import properties_physics_field
|
|
19
21
|
from . import properties_physics_fluid
|
|
20
|
-
from . import
|
|
21
|
-
from . import
|
|
22
|
-
from . import
|
|
22
|
+
from . import generic_ui_list
|
|
23
|
+
from . import space_outliner
|
|
24
|
+
from . import properties_mask_common
|
|
25
|
+
from . import properties_data_grease_pencil
|
|
23
26
|
from . import properties_data_armature
|
|
27
|
+
from . import properties_animviz
|
|
28
|
+
from . import space_properties
|
|
29
|
+
from . import space_console
|
|
30
|
+
from . import utils
|
|
31
|
+
from . import properties_physics_common
|
|
32
|
+
from . import properties_physics_rigidbody
|
|
33
|
+
from . import properties_data_pointcloud
|
|
34
|
+
from . import properties_data_curve
|
|
24
35
|
from . import node_add_menu_compositor
|
|
25
|
-
from . import
|
|
26
|
-
from . import
|
|
27
|
-
from . import
|
|
28
|
-
from . import
|
|
29
|
-
from . import
|
|
30
|
-
from . import
|
|
31
|
-
from . import
|
|
36
|
+
from . import properties_view_layer
|
|
37
|
+
from . import asset_shelf
|
|
38
|
+
from . import properties_data_metaball
|
|
39
|
+
from . import properties_data_camera
|
|
40
|
+
from . import properties_world
|
|
41
|
+
from . import node_add_menu_geometry
|
|
42
|
+
from . import properties_data_shaderfx
|
|
43
|
+
from . import space_topbar
|
|
44
|
+
from . import properties_particle
|
|
45
|
+
from . import space_image
|
|
32
46
|
from . import properties_data_curves
|
|
47
|
+
from . import node_add_menu_shader
|
|
48
|
+
from . import properties_object
|
|
33
49
|
from . import properties_material
|
|
34
|
-
from . import
|
|
50
|
+
from . import properties_data_modifier
|
|
51
|
+
from . import properties_paint_common
|
|
52
|
+
from . import properties_physics_cloth
|
|
53
|
+
from . import properties_render
|
|
35
54
|
from . import node_add_menu
|
|
36
|
-
from . import
|
|
37
|
-
from . import
|
|
38
|
-
from . import
|
|
39
|
-
from . import
|
|
55
|
+
from . import properties_collection
|
|
56
|
+
from . import properties_scene
|
|
57
|
+
from . import properties_material_gpencil
|
|
58
|
+
from . import properties_data_gpencil
|
|
59
|
+
from . import node_add_menu_texture
|
|
40
60
|
from . import properties_data_mesh
|
|
41
|
-
from . import
|
|
42
|
-
from . import
|
|
61
|
+
from . import properties_freestyle
|
|
62
|
+
from . import properties_physics_rigidbody_constraint
|
|
63
|
+
from . import properties_data_empty
|
|
64
|
+
from . import space_node
|
|
65
|
+
from . import space_nla
|
|
43
66
|
from . import space_sequencer
|
|
44
|
-
from . import
|
|
45
|
-
from . import
|
|
46
|
-
from . import properties_material_gpencil
|
|
47
|
-
from . import properties_constraint
|
|
48
|
-
from . import properties_data_modifier
|
|
49
|
-
from . import properties_data_shaderfx
|
|
50
|
-
from . import properties_physics_rigidbody
|
|
51
|
-
from . import properties_collection
|
|
52
|
-
from . import properties_mask_common
|
|
53
|
-
from . import space_view3d
|
|
54
|
-
from . import space_properties
|
|
55
|
-
from . import generic_ui_list
|
|
56
|
-
from . import node_add_menu_geometry
|
|
67
|
+
from . import space_info
|
|
68
|
+
from . import properties_grease_pencil_common
|
|
57
69
|
from . import properties_data_lightprobe
|
|
58
|
-
from . import
|
|
59
|
-
from . import
|
|
60
|
-
from . import
|
|
61
|
-
from . import
|
|
70
|
+
from . import space_view3d_toolbar
|
|
71
|
+
from . import space_time
|
|
72
|
+
from . import properties_data_volume
|
|
73
|
+
from . import properties_data_light
|
|
62
74
|
from . import properties_data_speaker
|
|
63
|
-
from . import
|
|
64
|
-
from . import properties_object
|
|
65
|
-
from . import properties_freestyle
|
|
66
|
-
from . import properties_data_gpencil
|
|
75
|
+
from . import properties_texture
|
|
67
76
|
from . import space_toolsystem_common
|
|
68
|
-
from . import
|
|
69
|
-
from . import
|
|
70
|
-
from . import
|
|
71
|
-
from . import
|
|
72
|
-
from . import properties_data_pointcloud
|
|
73
|
-
from . import properties_particle
|
|
74
|
-
from . import space_view3d_toolbar
|
|
75
|
-
from . import space_userpref
|
|
76
|
-
from . import anim
|
|
77
|
-
from . import properties_world
|
|
78
|
-
from . import space_node
|
|
79
|
-
from . import space_text
|
|
80
|
-
from . import properties_workspace
|
|
77
|
+
from . import properties_physics_geometry_nodes
|
|
78
|
+
from . import properties_output
|
|
79
|
+
from . import space_dopesheet
|
|
80
|
+
from . import properties_data_bone
|
|
81
81
|
|
|
82
82
|
GenericType = typing.TypeVar("GenericType")
|
|
83
83
|
|
bl_ui_utils/__init__.pyi
CHANGED
bpy/__init__.pyi
CHANGED
|
@@ -3,12 +3,12 @@ import typing
|
|
|
3
3
|
import bpy.types
|
|
4
4
|
|
|
5
5
|
from . import types
|
|
6
|
-
from . import app
|
|
7
6
|
from . import ops
|
|
7
|
+
from . import app
|
|
8
8
|
from . import utils
|
|
9
|
+
from . import props
|
|
9
10
|
from . import msgbus
|
|
10
11
|
from . import path
|
|
11
|
-
from . import props
|
|
12
12
|
|
|
13
13
|
GenericType = typing.TypeVar("GenericType")
|
|
14
14
|
context: "bpy.types.Context"
|
bpy/ops/__init__.pyi
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
+
from . import dpaint
|
|
3
4
|
from . import cloth
|
|
4
|
-
from . import
|
|
5
|
-
from . import
|
|
6
|
-
from . import wm
|
|
7
|
-
from . import fluid
|
|
8
|
-
from . import scene
|
|
5
|
+
from . import ui
|
|
6
|
+
from . import spreadsheet
|
|
9
7
|
from . import clip
|
|
10
8
|
from . import view2d
|
|
11
|
-
from . import
|
|
9
|
+
from . import sculpt
|
|
10
|
+
from . import uv
|
|
11
|
+
from . import rigidbody
|
|
12
|
+
from . import surface
|
|
13
|
+
from . import brush
|
|
12
14
|
from . import import_mesh
|
|
15
|
+
from . import scene
|
|
16
|
+
from . import text_editor
|
|
17
|
+
from . import curves
|
|
18
|
+
from . import mask
|
|
19
|
+
from . import anim
|
|
13
20
|
from . import paint
|
|
14
|
-
from . import
|
|
15
|
-
from . import
|
|
16
|
-
from . import
|
|
17
|
-
from . import
|
|
18
|
-
from . import
|
|
19
|
-
from . import
|
|
20
|
-
from . import
|
|
21
|
+
from . import image
|
|
22
|
+
from . import geometry
|
|
23
|
+
from . import camera
|
|
24
|
+
from . import export_anim
|
|
25
|
+
from . import marker
|
|
26
|
+
from . import grease_pencil
|
|
27
|
+
from . import cycles
|
|
21
28
|
from . import import_anim
|
|
22
|
-
from . import
|
|
23
|
-
from . import
|
|
24
|
-
from . import
|
|
29
|
+
from . import text
|
|
30
|
+
from . import fluid
|
|
31
|
+
from . import nla
|
|
32
|
+
from . import wm
|
|
33
|
+
from . import sequencer
|
|
34
|
+
from . import particle
|
|
35
|
+
from . import ed
|
|
36
|
+
from . import ptcache
|
|
25
37
|
from . import export_scene
|
|
26
|
-
from . import
|
|
27
|
-
from . import
|
|
28
|
-
from . import
|
|
38
|
+
from . import material
|
|
39
|
+
from . import font
|
|
40
|
+
from . import gizmogroup
|
|
41
|
+
from . import palette
|
|
42
|
+
from . import uilist
|
|
29
43
|
from . import cachefile
|
|
30
|
-
from . import
|
|
31
|
-
from . import
|
|
32
|
-
from . import spreadsheet
|
|
33
|
-
from . import sculpt
|
|
34
|
-
from . import buttons
|
|
35
|
-
from . import curves
|
|
36
|
-
from . import import_scene
|
|
44
|
+
from . import poselib
|
|
45
|
+
from . import pose
|
|
37
46
|
from . import outliner
|
|
38
|
-
from . import
|
|
39
|
-
from . import
|
|
40
|
-
from . import
|
|
47
|
+
from . import object
|
|
48
|
+
from . import graph
|
|
49
|
+
from . import action
|
|
41
50
|
from . import mball
|
|
42
|
-
from . import constraint
|
|
43
|
-
from . import text
|
|
44
|
-
from . import uilist
|
|
45
51
|
from . import boid
|
|
46
|
-
from . import
|
|
47
|
-
from . import
|
|
48
|
-
from . import
|
|
49
|
-
from . import
|
|
50
|
-
from . import
|
|
51
|
-
from . import
|
|
52
|
-
from . import
|
|
53
|
-
from . import pose
|
|
54
|
-
from . import camera
|
|
55
|
-
from . import rigidbody
|
|
56
|
-
from . import export_anim
|
|
57
|
-
from . import armature
|
|
58
|
-
from . import font
|
|
59
|
-
from . import mask
|
|
60
|
-
from . import curve
|
|
61
|
-
from . import marker
|
|
62
|
-
from . import anim
|
|
63
|
-
from . import gizmogroup
|
|
64
|
-
from . import script
|
|
52
|
+
from . import paintcurve
|
|
53
|
+
from . import sculpt_curves
|
|
54
|
+
from . import import_curve
|
|
55
|
+
from . import export_mesh
|
|
56
|
+
from . import info
|
|
57
|
+
from . import sound
|
|
58
|
+
from . import file
|
|
65
59
|
from . import asset
|
|
66
|
-
from . import screen
|
|
67
|
-
from . import geometry
|
|
68
|
-
from . import palette
|
|
69
|
-
from . import uv
|
|
70
60
|
from . import lattice
|
|
71
|
-
from . import
|
|
72
|
-
from . import
|
|
73
|
-
from . import
|
|
74
|
-
from . import
|
|
75
|
-
from . import
|
|
61
|
+
from . import gpencil
|
|
62
|
+
from . import armature
|
|
63
|
+
from . import constraint
|
|
64
|
+
from . import view3d
|
|
65
|
+
from . import workspace
|
|
66
|
+
from . import preferences
|
|
67
|
+
from . import world
|
|
68
|
+
from . import console
|
|
76
69
|
from . import collection
|
|
77
|
-
from . import
|
|
78
|
-
from . import
|
|
79
|
-
from . import
|
|
70
|
+
from . import render
|
|
71
|
+
from . import node
|
|
72
|
+
from . import screen
|
|
73
|
+
from . import import_scene
|
|
74
|
+
from . import buttons
|
|
75
|
+
from . import curve
|
|
76
|
+
from . import mesh
|
|
77
|
+
from . import transform
|
|
78
|
+
from . import script
|
|
79
|
+
from . import texture
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
bpy/types/__init__.pyi
CHANGED
|
@@ -2,94 +2,94 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import mathutils
|
|
4
4
|
import bpy
|
|
5
|
-
import bl_ui.
|
|
6
|
-
import bl_ui.
|
|
5
|
+
import bl_ui.properties_constraint
|
|
6
|
+
import bl_ui.properties_data_lattice
|
|
7
|
+
import bl_ui.space_userpref
|
|
8
|
+
import bl_ui.properties_physics_field
|
|
9
|
+
import bl_ui.space_statusbar
|
|
10
|
+
import bl_ui.properties_workspace
|
|
11
|
+
import bl_ui.space_text
|
|
7
12
|
import bl_ui.space_filebrowser
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import bl_ui.
|
|
11
|
-
import bl_ui.
|
|
12
|
-
import bl_ui.
|
|
13
|
-
import bl_operators.clip
|
|
14
|
-
import bl_ui.properties_physics_common
|
|
15
|
-
import bl_ui.space_nla
|
|
16
|
-
import bl_ui.asset_shelf
|
|
17
|
-
import bl_ui.space_topbar
|
|
13
|
+
import bl_ui.anim
|
|
14
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
15
|
+
import bl_ui.properties_physics_softbody
|
|
16
|
+
import bl_ui.space_view3d
|
|
17
|
+
import bl_ui.space_clip
|
|
18
18
|
import bl_ui.space_spreadsheet
|
|
19
|
-
import bl_ui.
|
|
20
|
-
import bl_operators.spreadsheet
|
|
21
|
-
import bl_ui
|
|
19
|
+
import bl_ui.space_toolsystem_toolbar
|
|
22
20
|
import bl_ui.space_graph
|
|
23
|
-
import bl_ui.properties_physics_field
|
|
24
21
|
import bl_ui.properties_physics_fluid
|
|
25
|
-
import
|
|
26
|
-
import bl_ui.
|
|
27
|
-
import bl_ui.properties_physics_rigidbody_constraint
|
|
28
|
-
import bl_ui.properties_data_armature
|
|
29
|
-
import bl_ui.node_add_menu_compositor
|
|
30
|
-
import bl_ui.properties_render
|
|
22
|
+
import bl_operators.clip
|
|
23
|
+
import bl_ui.generic_ui_list
|
|
31
24
|
import bl_ui.space_outliner
|
|
32
|
-
import bl_ui.
|
|
25
|
+
import bl_ui.properties_mask_common
|
|
26
|
+
import bl_ui.properties_data_grease_pencil
|
|
27
|
+
import bl_ui.properties_data_armature
|
|
33
28
|
import bl_operators.node
|
|
34
|
-
import bl_ui.
|
|
35
|
-
import bl_ui.
|
|
36
|
-
import bl_ui.
|
|
37
|
-
import
|
|
29
|
+
import bl_ui.space_properties
|
|
30
|
+
import bl_ui.space_console
|
|
31
|
+
import bl_ui.properties_physics_common
|
|
32
|
+
import bl_operators.anim
|
|
33
|
+
import bl_operators.assets
|
|
34
|
+
import bl_ui.properties_physics_rigidbody
|
|
35
|
+
import bl_ui.properties_data_pointcloud
|
|
36
|
+
import bl_ui.properties_data_curve
|
|
37
|
+
import bl_ui.node_add_menu_compositor
|
|
38
|
+
import bl_ui.properties_view_layer
|
|
39
|
+
import bl_ui.asset_shelf
|
|
40
|
+
import bl_ui.properties_data_metaball
|
|
41
|
+
import bl_ui.properties_data_camera
|
|
42
|
+
import bl_ui
|
|
43
|
+
import bl_operators.userpref
|
|
44
|
+
import bl_ui.properties_world
|
|
45
|
+
import bl_ui.node_add_menu_geometry
|
|
46
|
+
import bl_ui.properties_data_shaderfx
|
|
47
|
+
import bl_ui.space_topbar
|
|
48
|
+
import bl_ui.properties_particle
|
|
49
|
+
import bl_ui.space_image
|
|
38
50
|
import bl_ui.properties_data_curves
|
|
51
|
+
import bl_ui.node_add_menu_shader
|
|
52
|
+
import bl_ui.properties_object
|
|
39
53
|
import bl_ui.properties_material
|
|
54
|
+
import bl_ui.properties_data_modifier
|
|
40
55
|
import bl_operators.presets
|
|
41
|
-
import bl_ui.
|
|
42
|
-
import bl_ui.node_add_menu
|
|
43
|
-
import bl_ui.space_info
|
|
44
|
-
import bl_ui.properties_physics_dynamicpaint
|
|
45
|
-
import bl_ui.properties_data_grease_pencil
|
|
46
|
-
import bl_ui.properties_grease_pencil_common
|
|
47
|
-
import bl_ui.properties_data_mesh
|
|
48
|
-
import bl_ui.properties_output
|
|
56
|
+
import bl_ui.properties_paint_common
|
|
49
57
|
import bl_ui.properties_physics_cloth
|
|
50
|
-
import bl_ui.
|
|
51
|
-
import bl_ui.
|
|
58
|
+
import bl_ui.properties_render
|
|
59
|
+
import bl_ui.node_add_menu
|
|
60
|
+
import bl_operators.wm
|
|
61
|
+
import bl_ui.properties_collection
|
|
62
|
+
import bl_ui.properties_scene
|
|
52
63
|
import bl_ui.properties_material_gpencil
|
|
64
|
+
import bl_operators.constraint
|
|
65
|
+
import bl_operators.freestyle
|
|
66
|
+
import bl_ui.properties_data_gpencil
|
|
67
|
+
import bl_ui.node_add_menu_texture
|
|
68
|
+
import bl_ui.properties_data_mesh
|
|
69
|
+
import bl_ui.properties_freestyle
|
|
53
70
|
import bl_operators.view3d
|
|
54
|
-
import
|
|
55
|
-
import bl_ui.
|
|
56
|
-
import
|
|
57
|
-
import bl_ui.
|
|
58
|
-
import bl_ui.
|
|
59
|
-
import
|
|
60
|
-
import bl_ui.
|
|
61
|
-
import bl_ui.properties_collection
|
|
62
|
-
import bl_ui.properties_mask_common
|
|
63
|
-
import bl_ui.space_view3d
|
|
64
|
-
import bl_ui.space_properties
|
|
65
|
-
import bl_ui.generic_ui_list
|
|
66
|
-
import bl_ui.node_add_menu_geometry
|
|
71
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
72
|
+
import bl_ui.properties_data_empty
|
|
73
|
+
import bl_ui.space_node
|
|
74
|
+
import bl_ui.space_nla
|
|
75
|
+
import bl_ui.space_sequencer
|
|
76
|
+
import bl_ui.space_info
|
|
77
|
+
import bl_ui.properties_grease_pencil_common
|
|
67
78
|
import bl_ui.properties_data_lightprobe
|
|
68
|
-
import bl_ui.
|
|
69
|
-
import bl_ui.
|
|
70
|
-
import
|
|
71
|
-
import
|
|
79
|
+
import bl_ui.space_view3d_toolbar
|
|
80
|
+
import bl_ui.space_time
|
|
81
|
+
import bl_ui.properties_data_volume
|
|
82
|
+
import bl_operators.object
|
|
83
|
+
import bl_operators.spreadsheet
|
|
84
|
+
import bl_ui.properties_data_light
|
|
72
85
|
import bl_ui.properties_data_speaker
|
|
73
|
-
import
|
|
74
|
-
import bl_ui.
|
|
75
|
-
import bl_ui.properties_freestyle
|
|
76
|
-
import bl_ui.properties_data_gpencil
|
|
86
|
+
import bl_operators.file
|
|
87
|
+
import bl_ui.properties_texture
|
|
77
88
|
import bl_ui.space_toolsystem_common
|
|
78
|
-
import bl_ui.
|
|
79
|
-
import bl_ui.
|
|
80
|
-
import bl_ui.
|
|
81
|
-
import bl_ui.
|
|
82
|
-
import bl_ui.properties_data_pointcloud
|
|
83
|
-
import bl_ui.properties_particle
|
|
84
|
-
import bl_operators.assets
|
|
85
|
-
import bl_ui.space_view3d_toolbar
|
|
86
|
-
import bl_ui.space_userpref
|
|
87
|
-
import bl_operators.freestyle
|
|
88
|
-
import bl_ui.anim
|
|
89
|
-
import bl_ui.properties_world
|
|
90
|
-
import bl_ui.space_node
|
|
91
|
-
import bl_ui.space_text
|
|
92
|
-
import bl_ui.properties_workspace
|
|
89
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
90
|
+
import bl_ui.properties_output
|
|
91
|
+
import bl_ui.space_dopesheet
|
|
92
|
+
import bl_ui.properties_data_bone
|
|
93
93
|
|
|
94
94
|
GenericType = typing.TypeVar("GenericType")
|
|
95
95
|
|
|
@@ -6845,10 +6845,10 @@ class Context(bpy_struct):
|
|
|
6845
6845
|
:type: 'UIList'
|
|
6846
6846
|
"""
|
|
6847
6847
|
|
|
6848
|
-
property: typing.Union[
|
|
6848
|
+
property: typing.Union[str, int, "AnyType"]
|
|
6849
6849
|
""" Get the property associated with a hovered button. Returns a tuple of the data-block, data path to the property, and array index.
|
|
6850
6850
|
|
|
6851
|
-
:type: typing.Union[
|
|
6851
|
+
:type: typing.Union[str, int, 'AnyType']
|
|
6852
6852
|
"""
|
|
6853
6853
|
|
|
6854
6854
|
edit_text: "Text"
|
|
@@ -14838,7 +14838,7 @@ class Gizmo(bpy_struct):
|
|
|
14838
14838
|
context: "Context",
|
|
14839
14839
|
event: "Event",
|
|
14840
14840
|
tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]],
|
|
14841
|
-
) -> typing.Union[typing.Set[
|
|
14841
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
14842
14842
|
"""
|
|
14843
14843
|
|
|
14844
14844
|
:param context:
|
|
@@ -14847,7 +14847,7 @@ class Gizmo(bpy_struct):
|
|
|
14847
14847
|
:type event: 'Event'
|
|
14848
14848
|
:param tweak: Tweak
|
|
14849
14849
|
:type tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
14850
|
-
:rtype: typing.Union[typing.Set[
|
|
14850
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
14851
14851
|
:return: result
|
|
14852
14852
|
"""
|
|
14853
14853
|
...
|
|
@@ -14855,14 +14855,14 @@ class Gizmo(bpy_struct):
|
|
|
14855
14855
|
def setup(self): ...
|
|
14856
14856
|
def invoke(
|
|
14857
14857
|
self, context: "Context", event: "Event"
|
|
14858
|
-
) -> typing.Union[typing.Set[
|
|
14858
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
14859
14859
|
"""
|
|
14860
14860
|
|
|
14861
14861
|
:param context:
|
|
14862
14862
|
:type context: 'Context'
|
|
14863
14863
|
:param event:
|
|
14864
14864
|
:type event: 'Event'
|
|
14865
|
-
:rtype: typing.Union[typing.Set[
|
|
14865
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
14866
14866
|
:return: result
|
|
14867
14867
|
"""
|
|
14868
14868
|
...
|
|
@@ -17327,10 +17327,10 @@ class KeyingSetInfo(bpy_struct):
|
|
|
17327
17327
|
:type: typing.Union[str, typing.Any]
|
|
17328
17328
|
"""
|
|
17329
17329
|
|
|
17330
|
-
bl_options: typing.Union[typing.Set[
|
|
17330
|
+
bl_options: typing.Union[typing.Set[str], typing.Set[int]]
|
|
17331
17331
|
""" Keying Set options to use when inserting keyframes
|
|
17332
17332
|
|
|
17333
|
-
:type: typing.Union[typing.Set[
|
|
17333
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
17334
17334
|
"""
|
|
17335
17335
|
|
|
17336
17336
|
def poll(self, context: typing.Optional["Context"]) -> bool:
|
|
@@ -17802,10 +17802,10 @@ class Macro(bpy_struct):
|
|
|
17802
17802
|
:type: typing.Union[str, typing.Any]
|
|
17803
17803
|
"""
|
|
17804
17804
|
|
|
17805
|
-
bl_options: typing.Union[typing.Set[
|
|
17805
|
+
bl_options: typing.Union[typing.Set[str], typing.Set[int]]
|
|
17806
17806
|
""" Options for this operator type
|
|
17807
17807
|
|
|
17808
|
-
:type: typing.Union[typing.Set[
|
|
17808
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
17809
17809
|
"""
|
|
17810
17810
|
|
|
17811
17811
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -17840,13 +17840,13 @@ class Macro(bpy_struct):
|
|
|
17840
17840
|
|
|
17841
17841
|
def report(
|
|
17842
17842
|
self,
|
|
17843
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
17843
|
+
type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]],
|
|
17844
17844
|
message: typing.Union[str, typing.Any],
|
|
17845
17845
|
):
|
|
17846
17846
|
"""report
|
|
17847
17847
|
|
|
17848
17848
|
:param type: Type
|
|
17849
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
17849
|
+
:type type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
17850
17850
|
:param message: Report Message
|
|
17851
17851
|
:type message: typing.Union[str, typing.Any]
|
|
17852
17852
|
"""
|
|
@@ -22935,10 +22935,10 @@ class Operator(bpy_struct):
|
|
|
22935
22935
|
:type: typing.Union[str, typing.Any]
|
|
22936
22936
|
"""
|
|
22937
22937
|
|
|
22938
|
-
bl_options: typing.Union[typing.Set[
|
|
22938
|
+
bl_options: typing.Union[typing.Set[str], typing.Set[int]]
|
|
22939
22939
|
""" Options for this operator type
|
|
22940
22940
|
|
|
22941
|
-
:type: typing.Union[typing.Set[
|
|
22941
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
22942
22942
|
"""
|
|
22943
22943
|
|
|
22944
22944
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -22997,13 +22997,13 @@ class Operator(bpy_struct):
|
|
|
22997
22997
|
|
|
22998
22998
|
def report(
|
|
22999
22999
|
self,
|
|
23000
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
23000
|
+
type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]],
|
|
23001
23001
|
message: typing.Union[str, typing.Any],
|
|
23002
23002
|
):
|
|
23003
23003
|
"""report
|
|
23004
23004
|
|
|
23005
23005
|
:param type: Type
|
|
23006
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
23006
|
+
:type type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
23007
23007
|
:param message: Report Message
|
|
23008
23008
|
:type message: typing.Union[str, typing.Any]
|
|
23009
23009
|
"""
|
|
@@ -23029,12 +23029,12 @@ class Operator(bpy_struct):
|
|
|
23029
23029
|
|
|
23030
23030
|
def execute(
|
|
23031
23031
|
self, context: "Context"
|
|
23032
|
-
) -> typing.Union[typing.Set[
|
|
23032
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
23033
23033
|
"""Execute the operator
|
|
23034
23034
|
|
|
23035
23035
|
:param context:
|
|
23036
23036
|
:type context: 'Context'
|
|
23037
|
-
:rtype: typing.Union[typing.Set[
|
|
23037
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
23038
23038
|
:return: result
|
|
23039
23039
|
"""
|
|
23040
23040
|
...
|
|
@@ -23051,28 +23051,28 @@ class Operator(bpy_struct):
|
|
|
23051
23051
|
|
|
23052
23052
|
def invoke(
|
|
23053
23053
|
self, context: "Context", event: "Event"
|
|
23054
|
-
) -> typing.Union[typing.Set[
|
|
23054
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
23055
23055
|
"""Invoke the operator
|
|
23056
23056
|
|
|
23057
23057
|
:param context:
|
|
23058
23058
|
:type context: 'Context'
|
|
23059
23059
|
:param event:
|
|
23060
23060
|
:type event: 'Event'
|
|
23061
|
-
:rtype: typing.Union[typing.Set[
|
|
23061
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
23062
23062
|
:return: result
|
|
23063
23063
|
"""
|
|
23064
23064
|
...
|
|
23065
23065
|
|
|
23066
23066
|
def modal(
|
|
23067
23067
|
self, context: "Context", event: "Event"
|
|
23068
|
-
) -> typing.Union[typing.Set[
|
|
23068
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
23069
23069
|
"""Modal operator function
|
|
23070
23070
|
|
|
23071
23071
|
:param context:
|
|
23072
23072
|
:type context: 'Context'
|
|
23073
23073
|
:param event:
|
|
23074
23074
|
:type event: 'Event'
|
|
23075
|
-
:rtype: typing.Union[typing.Set[
|
|
23075
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
23076
23076
|
:return: result
|
|
23077
23077
|
"""
|
|
23078
23078
|
...
|
|
@@ -28972,13 +28972,13 @@ class RenderEngine(bpy_struct):
|
|
|
28972
28972
|
|
|
28973
28973
|
def report(
|
|
28974
28974
|
self,
|
|
28975
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
28975
|
+
type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]],
|
|
28976
28976
|
message: typing.Union[str, typing.Any],
|
|
28977
28977
|
):
|
|
28978
28978
|
"""Report info, warning or error messages
|
|
28979
28979
|
|
|
28980
28980
|
:param type: Type
|
|
28981
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
28981
|
+
:type type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
28982
28982
|
:param message: Report Message
|
|
28983
28983
|
:type message: typing.Union[str, typing.Any]
|
|
28984
28984
|
"""
|
|
@@ -40145,10 +40145,10 @@ class ToolSettings(bpy_struct):
|
|
|
40145
40145
|
:type: typing.Union[str, int]
|
|
40146
40146
|
"""
|
|
40147
40147
|
|
|
40148
|
-
snap_elements: typing.Union[typing.Set[
|
|
40148
|
+
snap_elements: typing.Union[typing.Set[str], typing.Set[int]]
|
|
40149
40149
|
""" Type of element to snap to
|
|
40150
40150
|
|
|
40151
|
-
:type: typing.Union[typing.Set[
|
|
40151
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
40152
40152
|
"""
|
|
40153
40153
|
|
|
40154
40154
|
snap_elements_base: typing.Union[typing.Set[str], typing.Set[int]]
|
|
@@ -65199,14 +65199,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65199
65199
|
@classmethod
|
|
65200
65200
|
def invoke_props_popup(
|
|
65201
65201
|
cls, operator: typing.Optional["Operator"], event: typing.Optional["Event"]
|
|
65202
|
-
) -> typing.Union[typing.Set[
|
|
65202
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
65203
65203
|
"""Operator popup invoke (show operator properties and execute it automatically on changes)
|
|
65204
65204
|
|
|
65205
65205
|
:param operator: Operator to call
|
|
65206
65206
|
:type operator: typing.Optional['Operator']
|
|
65207
65207
|
:param event: Event
|
|
65208
65208
|
:type event: typing.Optional['Event']
|
|
65209
|
-
:rtype: typing.Union[typing.Set[
|
|
65209
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65210
65210
|
:return: result
|
|
65211
65211
|
"""
|
|
65212
65212
|
...
|
|
@@ -65220,7 +65220,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
65220
65220
|
confirm_text: typing.Union[str, typing.Any] = "",
|
|
65221
65221
|
text_ctxt: typing.Optional[typing.Union[str, typing.Any]] = "",
|
|
65222
65222
|
translate: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
65223
|
-
) -> typing.Union[typing.Set[
|
|
65223
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
65224
65224
|
"""Operator dialog (non-autoexec popup) invoke (show operator properties and only execute it on click on OK button)
|
|
65225
65225
|
|
|
65226
65226
|
:param operator: Operator to call
|
|
@@ -65235,7 +65235,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
65235
65235
|
:type text_ctxt: typing.Optional[typing.Union[str, typing.Any]]
|
|
65236
65236
|
:param translate: Translate the given text, when UI translation is enabled
|
|
65237
65237
|
:type translate: typing.Optional[typing.Union[bool, typing.Any]]
|
|
65238
|
-
:rtype: typing.Union[typing.Set[
|
|
65238
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65239
65239
|
:return: result
|
|
65240
65240
|
"""
|
|
65241
65241
|
...
|
|
@@ -65254,14 +65254,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65254
65254
|
cls,
|
|
65255
65255
|
operator: typing.Optional["Operator"],
|
|
65256
65256
|
width: typing.Optional[typing.Any] = 300,
|
|
65257
|
-
) -> typing.Union[typing.Set[
|
|
65257
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
65258
65258
|
"""Operator popup invoke (only shows operator's properties, without executing it)
|
|
65259
65259
|
|
|
65260
65260
|
:param operator: Operator to call
|
|
65261
65261
|
:type operator: typing.Optional['Operator']
|
|
65262
65262
|
:param width: Width of the popup
|
|
65263
65263
|
:type width: typing.Optional[typing.Any]
|
|
65264
|
-
:rtype: typing.Union[typing.Set[
|
|
65264
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65265
65265
|
:return: result
|
|
65266
65266
|
"""
|
|
65267
65267
|
...
|
|
@@ -65269,14 +65269,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65269
65269
|
@classmethod
|
|
65270
65270
|
def invoke_confirm(
|
|
65271
65271
|
cls, operator: typing.Optional["Operator"], event: typing.Optional["Event"]
|
|
65272
|
-
) -> typing.Union[typing.Set[
|
|
65272
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
65273
65273
|
"""Operator confirmation popup (only to let user confirm the execution, no operator properties shown)
|
|
65274
65274
|
|
|
65275
65275
|
:param operator: Operator to call
|
|
65276
65276
|
:type operator: typing.Optional['Operator']
|
|
65277
65277
|
:param event: Event
|
|
65278
65278
|
:type event: typing.Optional['Event']
|
|
65279
|
-
:rtype: typing.Union[typing.Set[
|
|
65279
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65280
65280
|
:return: result
|
|
65281
65281
|
"""
|
|
65282
65282
|
...
|
|
@@ -68311,10 +68311,10 @@ class DecimateModifier(Modifier, bpy_struct):
|
|
|
68311
68311
|
:type: typing.Union[str, int]
|
|
68312
68312
|
"""
|
|
68313
68313
|
|
|
68314
|
-
delimit: typing.Union[typing.Set[
|
|
68314
|
+
delimit: typing.Union[typing.Set[str], typing.Set[int]]
|
|
68315
68315
|
""" Limit merging geometry
|
|
68316
68316
|
|
|
68317
|
-
:type: typing.Union[typing.Set[
|
|
68317
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
68318
68318
|
"""
|
|
68319
68319
|
|
|
68320
68320
|
face_count: int
|
|
@@ -70007,10 +70007,10 @@ class MeshCacheModifier(Modifier, bpy_struct):
|
|
|
70007
70007
|
:type: typing.Union[str, typing.Any]
|
|
70008
70008
|
"""
|
|
70009
70009
|
|
|
70010
|
-
flip_axis: typing.Union[typing.Set[
|
|
70010
|
+
flip_axis: typing.Union[typing.Set[str], typing.Set[int]]
|
|
70011
70011
|
"""
|
|
70012
70012
|
|
|
70013
|
-
:type: typing.Union[typing.Set[
|
|
70013
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
70014
70014
|
"""
|
|
70015
70015
|
|
|
70016
70016
|
forward_axis: typing.Union[str, int]
|
|
@@ -109333,10 +109333,10 @@ class GeometryNodeCurveHandleTypeSelection(
|
|
|
109333
109333
|
:type: typing.Union[str, int]
|
|
109334
109334
|
"""
|
|
109335
109335
|
|
|
109336
|
-
mode: typing.Union[typing.Set[
|
|
109336
|
+
mode: typing.Union[typing.Set[str], typing.Set[int]]
|
|
109337
109337
|
""" Whether to check the type of left and right handles
|
|
109338
109338
|
|
|
109339
|
-
:type: typing.Union[typing.Set[
|
|
109339
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
109340
109340
|
"""
|
|
109341
109341
|
|
|
109342
109342
|
@classmethod
|
|
@@ -109869,10 +109869,10 @@ class GeometryNodeCurveSetHandles(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
109869
109869
|
:type: typing.Union[str, int]
|
|
109870
109870
|
"""
|
|
109871
109871
|
|
|
109872
|
-
mode: typing.Union[typing.Set[
|
|
109872
|
+
mode: typing.Union[typing.Set[str], typing.Set[int]]
|
|
109873
109873
|
""" Whether to update left and right handles
|
|
109874
109874
|
|
|
109875
|
-
:type: typing.Union[typing.Set[
|
|
109875
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
109876
109876
|
"""
|
|
109877
109877
|
|
|
109878
109878
|
@classmethod
|
bpy/utils/__init__.pyi
CHANGED
bpy_extras/__init__.pyi
CHANGED
|
@@ -10,9 +10,9 @@ from . import io_utils
|
|
|
10
10
|
from . import anim_utils
|
|
11
11
|
from . import view3d_utils
|
|
12
12
|
from . import id_map_utils
|
|
13
|
-
from . import extensions
|
|
14
13
|
from . import bmesh_utils
|
|
15
14
|
from . import node_shader_utils
|
|
15
|
+
from . import extensions
|
|
16
16
|
from . import wm_utils
|
|
17
17
|
|
|
18
18
|
GenericType = typing.TypeVar("GenericType")
|
|
@@ -72,14 +72,14 @@ def bake_action_objects(
|
|
|
72
72
|
|
|
73
73
|
def bake_action_objects_iter(
|
|
74
74
|
object_action_pairs: typing.Union[
|
|
75
|
-
"bpy.types.
|
|
75
|
+
"bpy.types.Sequence", "bpy.types.Action", "bpy.types.Object"
|
|
76
76
|
],
|
|
77
77
|
bake_o,
|
|
78
78
|
):
|
|
79
79
|
"""An coroutine that bakes actions for multiple objects.
|
|
80
80
|
|
|
81
81
|
:param object_action_pairs: Sequence of object action tuples, action is the destination for the baked data. When None a new action will be created.
|
|
82
|
-
:type object_action_pairs: typing.Union['bpy.types.
|
|
82
|
+
:type object_action_pairs: typing.Union['bpy.types.Sequence', 'bpy.types.Action', 'bpy.types.Object']
|
|
83
83
|
"""
|
|
84
84
|
|
|
85
85
|
...
|
|
@@ -13,12 +13,12 @@ bl_app_template_utils/__init__.pyi,sha256=CIMnHqA76dh_d9RIIrG_IsrdYCZuvJklshbxtJ
|
|
|
13
13
|
bl_app_template_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
bl_console_utils/__init__.pyi,sha256=qOGRa_N1-VEAf9cr60mvvxQMYSKNNSzuSQ0_TuSEq1I,97
|
|
15
15
|
bl_console_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
bl_console_utils/autocomplete/__init__.pyi,sha256=
|
|
16
|
+
bl_console_utils/autocomplete/__init__.pyi,sha256=scLwTZWlaXLBDvb4Fd2omBbN1vHUky5A8bCVin54hy8,191
|
|
17
17
|
bl_console_utils/autocomplete/complete_calltip/__init__.pyi,sha256=Rw2uA3ktL5R--lwMMz3I9lc-AmStNYlqYIj7oz8ZlW0,248
|
|
18
18
|
bl_console_utils/autocomplete/complete_import/__init__.pyi,sha256=REypgPPnMFPk4NzervlwOI3Gy44Txi4U7aM4gLhi3Hg,150
|
|
19
19
|
bl_console_utils/autocomplete/complete_namespace/__init__.pyi,sha256=JtKAEFyeT4zFjwoxdXSMZQ1YAaf1SJBOd69ysxTxhJ8,260
|
|
20
20
|
bl_console_utils/autocomplete/intellisense/__init__.pyi,sha256=BfJ5CLfwmTB3gE37-Vog8xnj8wYKU3ao5qJOaebyn1k,173
|
|
21
|
-
bl_i18n_utils/__init__.pyi,sha256=
|
|
21
|
+
bl_i18n_utils/__init__.pyi,sha256=QfrLmohJsO5Hs7u1srEUDh8cehQ8mGPD_WGwkWFlV8c,253
|
|
22
22
|
bl_i18n_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
23
|
bl_i18n_utils/bl_extract_messages/__init__.pyi,sha256=4aYWWUVvaRBkbASoVVQgdDMg2QB2orMMJF0BNmvNFoc,902
|
|
24
24
|
bl_i18n_utils/merge_po/__init__.pyi,sha256=kRw3brEQfj6eyDjU--MA-Sg3AS74IzmDHY_gcjZCUlo,87
|
|
@@ -27,7 +27,7 @@ bl_i18n_utils/utils/__init__.pyi,sha256=wMP72XmMj1JKGwPCyRrrAjtwKjWXD8Kusvs8wP2Z
|
|
|
27
27
|
bl_i18n_utils/utils_cli/__init__.pyi,sha256=8T0Yiqb_eYkLx12tzzsfH2M07OZ9vp0gkmI_faVcNPU,271
|
|
28
28
|
bl_i18n_utils/utils_languages_menu/__init__.pyi,sha256=HAr8hMUsOj7mXh6zCpoa_BUsHIO5NnU4MrQSZ0IhnfE,111
|
|
29
29
|
bl_i18n_utils/utils_rtl/__init__.pyi,sha256=COZKFsnJ_CkL-rm2NEN59xLdU5bIG7TSAQVZFGj3v3c,137
|
|
30
|
-
bl_keymap_utils/__init__.pyi,sha256=
|
|
30
|
+
bl_keymap_utils/__init__.pyi,sha256=Ya26xl9eX0bSXIdRVf0OywE3pmqAVvcSngVt47GHLNI,208
|
|
31
31
|
bl_keymap_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
32
|
bl_keymap_utils/io/__init__.pyi,sha256=gOCf5YjCIhV6sLhBGUOIG4-ws2L30ikPar2BMfImI5A,460
|
|
33
33
|
bl_keymap_utils/keymap_from_toolbar/__init__.pyi,sha256=L66W6RPUIKPwstCeXn2-DL99aV13E0KWLPf2rnD_t9E,140
|
|
@@ -36,7 +36,7 @@ bl_keymap_utils/platform_helpers/__init__.pyi,sha256=3Yx0ye83ae8XTdtALcy8MBrOCWg
|
|
|
36
36
|
bl_keymap_utils/versioning/__init__.pyi,sha256=bp1g6HijeBeJbCCodpi5U2RoFRZPd0zdAQqz6Vwczhs,132
|
|
37
37
|
bl_math/__init__.pyi,sha256=huOF-N07-NDNRWnF5OZ53dQ1IZxd5MtxHgIqfaLFpfM,1591
|
|
38
38
|
bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
-
bl_operators/__init__.pyi,sha256=
|
|
39
|
+
bl_operators/__init__.pyi,sha256=IEHyjeKwkUxoKW4bQ5yZ7fQ9jJI2xqldV-AbCcuhKTE,846
|
|
40
40
|
bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
41
|
bl_operators/add_mesh_torus/__init__.pyi,sha256=Ou1PpWNJ_J5KuJ7eZ3OrHl4LfUqXLJBl3U9jUIKpOhk,1578
|
|
42
42
|
bl_operators/anim/__init__.pyi,sha256=bNmdDahnu7ssTA6wFOEOGL1TkkfGzSYmk-kR0KKCe2s,9444
|
|
@@ -77,7 +77,7 @@ bl_rna_utils/data_path/__init__.pyi,sha256=by0GTuwldwKDernceXM_MTRgJQKEWWdEkx20-
|
|
|
77
77
|
bl_text_utils/__init__.pyi,sha256=mA4rhlhHGbhXjawE0_uzcLQZhw4Rj4xm5DsFzDaoR0I,100
|
|
78
78
|
bl_text_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
79
|
bl_text_utils/external_editor/__init__.pyi,sha256=AFtCr2YnVkJgbiliZpvZYFuxzLRJeBO581yb5a1L_D4,125
|
|
80
|
-
bl_ui/__init__.pyi,sha256=
|
|
80
|
+
bl_ui/__init__.pyi,sha256=uEdPuYcNMC5s5e66t8AMucs-gbFzyu-CBQ607-2mFUU,7038
|
|
81
81
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
82
|
bl_ui/anim/__init__.pyi,sha256=sU5Td5ZW8H5Day3rvtA6oLhasvFDcV6f9KCAJiCY74w,1543
|
|
83
83
|
bl_ui/asset_shelf/__init__.pyi,sha256=JU2O4XsUUuGxQ5VLcMT4bsU85uNrAd2f4xAPIzC3mjE,1324
|
|
@@ -155,7 +155,7 @@ bl_ui/space_userpref/__init__.pyi,sha256=3Dvd_t08gp0SYrM6yS6mThknZ_XhPkG34rCbri-
|
|
|
155
155
|
bl_ui/space_view3d/__init__.pyi,sha256=jntOpO_9j8pmFPadgfRfsG2xyl9IkNjOmrKVz0HNKK8,364828
|
|
156
156
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=lNh1jWZdaMsYa9LhTOhAYPBoqMkB1-iUiuz1fITMrnY,140287
|
|
157
157
|
bl_ui/utils/__init__.pyi,sha256=jqC_UaM1SsHFfGoA1A1vwLDS54npPcPBphavDXfYuao,512
|
|
158
|
-
bl_ui_utils/__init__.pyi,sha256=
|
|
158
|
+
bl_ui_utils/__init__.pyi,sha256=09VcD0Qr5ySzpITMc17GRGqGUrN-qjyG6qBeq0jgIFk,120
|
|
159
159
|
bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
160
160
|
bl_ui_utils/bug_report_url/__init__.pyi,sha256=TvDEtwviwh9KFx6H7OBbpADFvLId01fMx4TXoGRanPo,117
|
|
161
161
|
bl_ui_utils/layout/__init__.pyi,sha256=KsdnwCJlAHD4CSC0RY2Rb2sPcuK5Xt7D7M5lKq1SnB0,117
|
|
@@ -169,7 +169,7 @@ bmesh/geometry/__init__.pyi,sha256=ZNWeqa8UPLoM04_2CG-PGREKg6-HPXRj2oUXyq9KSF0,6
|
|
|
169
169
|
bmesh/ops/__init__.pyi,sha256=x2blm_G6g91m3soq-ReQpgxN25XAZfPyI_UlgoM6je8,72886
|
|
170
170
|
bmesh/types/__init__.pyi,sha256=2bcXNXMZoq7n8NmmvXVYxKSqZS03s6tw26OgckAsKOY,39624
|
|
171
171
|
bmesh/utils/__init__.pyi,sha256=7UUZtyw2frpxddxB8ehl6Au0w2lPb63q6A96r2YVMJk,6332
|
|
172
|
-
bpy/__init__.pyi,sha256=
|
|
172
|
+
bpy/__init__.pyi,sha256=CfoOrb64iR-ISQfMG0BEyqNh4-__ufEDSb7X-zsPlfc,324
|
|
173
173
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
174
174
|
bpy/app/__init__.pyi,sha256=R-NSrcrwPvXxQ16tRq04SPbVSPfF0YAqkqsSCDAATq0,9473
|
|
175
175
|
bpy/app/handlers/__init__.pyi,sha256=IN8lCMuLtOnf94pImFXiSQ5JR6L3BkkgIsPfFdBqitI,5399
|
|
@@ -177,7 +177,7 @@ bpy/app/icons/__init__.pyi,sha256=tOC3c9N_BLT3G0viXxPhMook_lPDGJoUmTYHjg_NOZw,11
|
|
|
177
177
|
bpy/app/timers/__init__.pyi,sha256=Zuw20JvFn0Vnd0fmMMagiMYB7ECYgvDZOctgT0V6zYw,1456
|
|
178
178
|
bpy/app/translations/__init__.pyi,sha256=BpliGs9csPVS1wUvia5E4O5Bl1oLy44kcKMr8BYbUPg,4832
|
|
179
179
|
bpy/msgbus/__init__.pyi,sha256=RvHE7HXTy24U9DljsS4I6Q3stXfqoTlgKM_MjaT0wGQ,1605
|
|
180
|
-
bpy/ops/__init__.pyi,sha256=
|
|
180
|
+
bpy/ops/__init__.pyi,sha256=NFfSPeYx8VXJuL6qMJDPfKIOElngrRpoKm14DzhwiRU,1751
|
|
181
181
|
bpy/ops/action/__init__.pyi,sha256=fp2H1MFKyRdirKHtXlum1OWndPG2cvHWPr7uohovMXw,28955
|
|
182
182
|
bpy/ops/anim/__init__.pyi,sha256=cCqYTsgttcZdPt8nEGNtIPa3xOfXKd-ElF--MRkQKiM,39230
|
|
183
183
|
bpy/ops/armature/__init__.pyi,sha256=zGM1LgMMkxKox6oftCQ5QOn9RZLGpRR9MT1qICiD64g,35412
|
|
@@ -257,13 +257,13 @@ bpy/ops/workspace/__init__.pyi,sha256=qMybRMnxonzKlIe1vscg5ASBuXWrC3hv_2eqRTilRW
|
|
|
257
257
|
bpy/ops/world/__init__.pyi,sha256=nPUTiumoo6f727F6tFUU8L4kyxAEbKISld9WfPCDjSk,573
|
|
258
258
|
bpy/path/__init__.pyi,sha256=pdIIUh8bu1ueGuu1QJ0Lu5MsGBlauirt1qthSXsV1RA,6143
|
|
259
259
|
bpy/props/__init__.pyi,sha256=GIygMkjryh8FAbR-QRGy7-EmMu4FA0xttWks5CIeXao,27520
|
|
260
|
-
bpy/types/__init__.pyi,sha256=
|
|
261
|
-
bpy/utils/__init__.pyi,sha256=
|
|
260
|
+
bpy/types/__init__.pyi,sha256=i0cWxGqkDwnZGVakEKI6GptqcG4--82PE9IQLiff0h8,3429330
|
|
261
|
+
bpy/utils/__init__.pyi,sha256=3AYqHxztMNlrnbmNmpvhmvD6VYxkl_limTSymB2ZfRQ,10513
|
|
262
262
|
bpy/utils/previews/__init__.pyi,sha256=D_Cigr8LKjOgYULJYKEYxeOXpiZ5zvtaWS0UYXCS-0o,2254
|
|
263
263
|
bpy/utils/units/__init__.pyi,sha256=dfh3KCRDrjv9FQoJ-YAitl5DIwJ3cJbC1rRkHz_QM6Y,2718
|
|
264
|
-
bpy_extras/__init__.pyi,sha256=
|
|
264
|
+
bpy_extras/__init__.pyi,sha256=7Uf4y6ELZ7aKu-gi67hwrq28MXJKp0KLhuZ0u4igDVY,437
|
|
265
265
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
266
|
-
bpy_extras/anim_utils/__init__.pyi,sha256=
|
|
266
|
+
bpy_extras/anim_utils/__init__.pyi,sha256=qJdsqC4jdgo7jEfAnojiNC3ktIxMd8nmnCL9XWJmYCA,2629
|
|
267
267
|
bpy_extras/asset_utils/__init__.pyi,sha256=ugLnZGwgepm58mWHS4cS_bmum9v9La2a1wKpg5VShHY,362
|
|
268
268
|
bpy_extras/bmesh_utils/__init__.pyi,sha256=OmimPHBCsqCSKIbo4dLetnfgEiDapXJJ6Ys-G_d9cwQ,162
|
|
269
269
|
bpy_extras/extensions/__init__.pyi,sha256=bdsIrb_l0d2w4d7-VdYRHrY1iSferwAUc8qAkJTmdtM,100
|
|
@@ -343,7 +343,7 @@ rna_xml/__init__.pyi,sha256=FBeu5sXsynEVp7-RejFGDQxQWa5tyMGJhpeeVvKSOuI,482
|
|
|
343
343
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
344
344
|
sys_info/__init__.pyi,sha256=RN6EcA0WmaY1U3j8SxCoXsOSCV6iYCA6E0qFwZ0x63s,104
|
|
345
345
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
346
|
-
fake_bpy_module-
|
|
347
|
-
fake_bpy_module-
|
|
348
|
-
fake_bpy_module-
|
|
349
|
-
fake_bpy_module-
|
|
346
|
+
fake_bpy_module-20240128.dist-info/METADATA,sha256=6yFr4gpN4vSG9rD975fv8RKHKrCG1eWIPsYEOGR2Fp8,7008
|
|
347
|
+
fake_bpy_module-20240128.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
348
|
+
fake_bpy_module-20240128.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
349
|
+
fake_bpy_module-20240128.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|