fake-bpy-module 20240212__py3-none-any.whl → 20240213__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 +1 -1
- bl_i18n_utils/__init__.pyi +2 -2
- bl_keymap_utils/__init__.pyi +3 -3
- bl_operators/__init__.pyi +23 -23
- bl_ui/__init__.pyi +61 -61
- bl_ui_utils/__init__.pyi +1 -1
- bpy/__init__.pyi +4 -4
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +62 -62
- bpy/types/__init__.pyi +191 -185
- bpy/utils/__init__.pyi +1 -1
- bpy_extras/__init__.pyi +1 -1
- {fake_bpy_module-20240212.dist-info → fake_bpy_module-20240213.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240212.dist-info → fake_bpy_module-20240213.dist-info}/RECORD +16 -16
- {fake_bpy_module-20240212.dist-info → fake_bpy_module-20240213.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240212.dist-info → fake_bpy_module-20240213.dist-info}/top_level.txt +0 -0
bl_i18n_utils/__init__.pyi
CHANGED
|
@@ -3,9 +3,9 @@ import typing
|
|
|
3
3
|
from . import merge_po
|
|
4
4
|
from . import utils_rtl
|
|
5
5
|
from . import settings
|
|
6
|
-
from . import utils_cli
|
|
7
|
-
from . import utils_languages_menu
|
|
8
6
|
from . import bl_extract_messages
|
|
7
|
+
from . import utils_languages_menu
|
|
9
8
|
from . import utils
|
|
9
|
+
from . import utils_cli
|
|
10
10
|
|
|
11
11
|
GenericType = typing.TypeVar("GenericType")
|
bl_keymap_utils/__init__.pyi
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import io
|
|
4
|
-
from . import platform_helpers
|
|
5
|
-
from . import keymap_from_toolbar
|
|
6
3
|
from . import keymap_hierarchy
|
|
7
4
|
from . import versioning
|
|
5
|
+
from . import keymap_from_toolbar
|
|
6
|
+
from . import platform_helpers
|
|
7
|
+
from . import io
|
|
8
8
|
|
|
9
9
|
GenericType = typing.TypeVar("GenericType")
|
bl_operators/__init__.pyi
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import
|
|
4
|
-
from . import uvcalc_transform
|
|
5
|
-
from . import view3d
|
|
6
|
-
from . import screen_play_rendered_anim
|
|
7
|
-
from . import mesh
|
|
8
|
-
from . import spreadsheet
|
|
9
|
-
from . import presets
|
|
10
|
-
from . import object_randomize_transform
|
|
11
|
-
from . import clip
|
|
12
|
-
from . import wm
|
|
13
|
-
from . import console
|
|
3
|
+
from . import bmesh
|
|
14
4
|
from . import uvcalc_follow_active
|
|
15
|
-
from . import image
|
|
16
|
-
from . import sequencer
|
|
17
|
-
from . import vertexpaint_dirt
|
|
18
|
-
from . import userpref
|
|
19
|
-
from . import object_align
|
|
20
|
-
from . import add_mesh_torus
|
|
21
|
-
from . import object
|
|
22
|
-
from . import geometry_nodes
|
|
23
|
-
from . import freestyle
|
|
24
5
|
from . import assets
|
|
6
|
+
from . import rigidbody
|
|
7
|
+
from . import geometry_nodes
|
|
25
8
|
from . import constraint
|
|
9
|
+
from . import userpref
|
|
10
|
+
from . import uvcalc_lightmap
|
|
11
|
+
from . import freestyle
|
|
12
|
+
from . import screen_play_rendered_anim
|
|
26
13
|
from . import node
|
|
27
|
-
from . import
|
|
14
|
+
from . import view3d
|
|
15
|
+
from . import sequencer
|
|
28
16
|
from . import anim
|
|
17
|
+
from . import object_align
|
|
18
|
+
from . import image
|
|
29
19
|
from . import object_quick_effects
|
|
30
|
-
from . import
|
|
31
|
-
from . import
|
|
20
|
+
from . import presets
|
|
21
|
+
from . import console
|
|
22
|
+
from . import object
|
|
23
|
+
from . import clip
|
|
24
|
+
from . import file
|
|
25
|
+
from . import mesh
|
|
26
|
+
from . import spreadsheet
|
|
27
|
+
from . import uvcalc_transform
|
|
28
|
+
from . import add_mesh_torus
|
|
29
|
+
from . import wm
|
|
30
|
+
from . import vertexpaint_dirt
|
|
31
|
+
from . import object_randomize_transform
|
|
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
|
|
7
|
-
from . import
|
|
5
|
+
from . import properties_data_speaker
|
|
6
|
+
from . import anim
|
|
7
|
+
from . import properties_data_metaball
|
|
8
8
|
from . import space_toolsystem_toolbar
|
|
9
|
-
from . import properties_physics_field
|
|
10
|
-
from . import properties_particle
|
|
11
|
-
from . import properties_data_bone
|
|
12
|
-
from . import space_console
|
|
13
|
-
from . import node_add_menu
|
|
14
9
|
from . import space_sequencer
|
|
15
|
-
from . import
|
|
16
|
-
from . import
|
|
10
|
+
from . import properties_material
|
|
11
|
+
from . import asset_shelf
|
|
17
12
|
from . import properties_output
|
|
18
|
-
from . import
|
|
13
|
+
from . import properties_collection
|
|
14
|
+
from . import properties_data_camera
|
|
15
|
+
from . import properties_data_pointcloud
|
|
19
16
|
from . import properties_grease_pencil_common
|
|
20
|
-
from . import
|
|
21
|
-
from . import
|
|
22
|
-
from . import
|
|
17
|
+
from . import node_add_menu_shader
|
|
18
|
+
from . import properties_data_curves
|
|
19
|
+
from . import utils
|
|
20
|
+
from . import properties_material_gpencil
|
|
21
|
+
from . import space_clip
|
|
23
22
|
from . import space_view3d_toolbar
|
|
23
|
+
from . import space_graph
|
|
24
|
+
from . import space_statusbar
|
|
25
|
+
from . import properties_physics_field
|
|
24
26
|
from . import properties_data_grease_pencil
|
|
25
|
-
from . import
|
|
26
|
-
from . import
|
|
27
|
-
from . import
|
|
28
|
-
from . import
|
|
29
|
-
from . import properties_physics_cloth
|
|
30
|
-
from . import properties_data_light
|
|
31
|
-
from . import anim
|
|
32
|
-
from . import properties_data_armature
|
|
33
|
-
from . import properties_animviz
|
|
34
|
-
from . import properties_mask_common
|
|
27
|
+
from . import properties_view_layer
|
|
28
|
+
from . import properties_physics_common
|
|
29
|
+
from . import space_view3d
|
|
30
|
+
from . import space_image
|
|
35
31
|
from . import space_time
|
|
36
|
-
from . import
|
|
37
|
-
from . import generic_ui_list
|
|
38
|
-
from . import node_add_menu_compositor
|
|
32
|
+
from . import properties_physics_cloth
|
|
39
33
|
from . import space_userpref
|
|
40
|
-
from . import
|
|
41
|
-
from . import
|
|
42
|
-
from . import space_view3d
|
|
43
|
-
from . import properties_data_lattice
|
|
34
|
+
from . import space_filebrowser
|
|
35
|
+
from . import generic_ui_list
|
|
44
36
|
from . import space_info
|
|
45
|
-
from . import
|
|
46
|
-
from . import
|
|
47
|
-
from . import
|
|
48
|
-
from . import
|
|
49
|
-
from . import
|
|
50
|
-
from . import
|
|
51
|
-
from . import properties_physics_geometry_nodes
|
|
52
|
-
from . import asset_shelf
|
|
53
|
-
from . import space_clip
|
|
54
|
-
from . import properties_material_gpencil
|
|
55
|
-
from . import properties_physics_common
|
|
56
|
-
from . import properties_data_modifier
|
|
57
|
-
from . import properties_object
|
|
58
|
-
from . import properties_data_camera
|
|
37
|
+
from . import properties_animviz
|
|
38
|
+
from . import space_spreadsheet
|
|
39
|
+
from . import space_text
|
|
40
|
+
from . import properties_data_volume
|
|
41
|
+
from . import space_node
|
|
42
|
+
from . import space_outliner
|
|
59
43
|
from . import properties_data_curve
|
|
60
|
-
from . import
|
|
61
|
-
from . import
|
|
62
|
-
from . import
|
|
44
|
+
from . import properties_data_lattice
|
|
45
|
+
from . import properties_physics_dynamicpaint
|
|
46
|
+
from . import properties_data_light
|
|
47
|
+
from . import properties_data_empty
|
|
48
|
+
from . import properties_paint_common
|
|
49
|
+
from . import space_console
|
|
63
50
|
from . import node_add_menu_geometry
|
|
64
|
-
from . import
|
|
65
|
-
from . import
|
|
51
|
+
from . import properties_render
|
|
52
|
+
from . import properties_data_bone
|
|
53
|
+
from . import node_add_menu_texture
|
|
54
|
+
from . import node_add_menu
|
|
55
|
+
from . import properties_mask_common
|
|
56
|
+
from . import properties_data_armature
|
|
57
|
+
from . import properties_particle
|
|
58
|
+
from . import properties_world
|
|
66
59
|
from . import properties_physics_rigidbody_constraint
|
|
67
|
-
from . import space_properties
|
|
68
60
|
from . import properties_texture
|
|
69
|
-
from . import
|
|
70
|
-
from . import
|
|
71
|
-
from . import
|
|
72
|
-
from . import properties_data_mesh
|
|
61
|
+
from . import space_nla
|
|
62
|
+
from . import properties_physics_softbody
|
|
63
|
+
from . import properties_physics_fluid
|
|
73
64
|
from . import properties_freestyle
|
|
74
|
-
from . import
|
|
75
|
-
from . import
|
|
65
|
+
from . import space_topbar
|
|
66
|
+
from . import properties_physics_geometry_nodes
|
|
67
|
+
from . import properties_data_mesh
|
|
68
|
+
from . import space_dopesheet
|
|
69
|
+
from . import space_toolsystem_common
|
|
70
|
+
from . import properties_constraint
|
|
71
|
+
from . import properties_object
|
|
72
|
+
from . import properties_data_shaderfx
|
|
73
|
+
from . import properties_data_lightprobe
|
|
74
|
+
from . import properties_data_modifier
|
|
75
|
+
from . import properties_physics_rigidbody
|
|
76
|
+
from . import space_properties
|
|
76
77
|
from . import properties_workspace
|
|
77
|
-
from . import
|
|
78
|
-
from . import
|
|
79
|
-
from . import
|
|
80
|
-
from . import properties_data_pointcloud
|
|
78
|
+
from . import node_add_menu_compositor
|
|
79
|
+
from . import properties_data_gpencil
|
|
80
|
+
from . import properties_scene
|
|
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
|
|
7
|
-
from . import app
|
|
6
|
+
from . import path
|
|
8
7
|
from . import ops
|
|
9
|
-
from . import props
|
|
10
8
|
from . import msgbus
|
|
11
|
-
from . import
|
|
9
|
+
from . import app
|
|
10
|
+
from . import utils
|
|
11
|
+
from . import props
|
|
12
12
|
|
|
13
13
|
GenericType = typing.TypeVar("GenericType")
|
|
14
14
|
context: "bpy.types.Context"
|
bpy/app/__init__.pyi
CHANGED
bpy/ops/__init__.pyi
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import
|
|
3
|
+
from . import mask
|
|
4
|
+
from . import cachefile
|
|
5
|
+
from . import brush
|
|
6
|
+
from . import material
|
|
7
|
+
from . import surface
|
|
8
|
+
from . import import_curve
|
|
4
9
|
from . import world
|
|
5
|
-
from . import gizmogroup
|
|
6
|
-
from . import anim
|
|
7
|
-
from . import mball
|
|
8
|
-
from . import sculpt
|
|
9
|
-
from . import mesh
|
|
10
|
-
from . import outliner
|
|
11
|
-
from . import pose
|
|
12
|
-
from . import cloth
|
|
13
|
-
from . import scene
|
|
14
|
-
from . import graph
|
|
15
|
-
from . import boid
|
|
16
10
|
from . import ed
|
|
17
|
-
from . import
|
|
18
|
-
from . import
|
|
19
|
-
from . import ptcache
|
|
20
|
-
from . import console
|
|
21
|
-
from . import info
|
|
22
|
-
from . import import_scene
|
|
23
|
-
from . import armature
|
|
24
|
-
from . import import_mesh
|
|
11
|
+
from . import script
|
|
12
|
+
from . import geometry
|
|
25
13
|
from . import palette
|
|
26
|
-
from . import brush
|
|
27
|
-
from . import surface
|
|
28
|
-
from . import wm
|
|
29
|
-
from . import rigidbody
|
|
30
|
-
from . import clip
|
|
31
|
-
from . import camera
|
|
32
|
-
from . import view3d
|
|
33
|
-
from . import export_scene
|
|
34
|
-
from . import spreadsheet
|
|
35
|
-
from . import fluid
|
|
36
14
|
from . import object
|
|
37
|
-
from . import
|
|
38
|
-
from . import collection
|
|
39
|
-
from . import buttons
|
|
40
|
-
from . import preferences
|
|
41
|
-
from . import sound
|
|
42
|
-
from . import poselib
|
|
43
|
-
from . import mask
|
|
44
|
-
from . import import_anim
|
|
45
|
-
from . import view2d
|
|
46
|
-
from . import material
|
|
47
|
-
from . import dpaint
|
|
15
|
+
from . import ui
|
|
48
16
|
from . import marker
|
|
49
|
-
from . import constraint
|
|
50
17
|
from . import asset
|
|
51
|
-
from . import
|
|
52
|
-
from . import
|
|
53
|
-
from . import
|
|
54
|
-
from . import
|
|
18
|
+
from . import workspace
|
|
19
|
+
from . import node
|
|
20
|
+
from . import paintcurve
|
|
21
|
+
from . import anim
|
|
22
|
+
from . import paint
|
|
23
|
+
from . import wm
|
|
24
|
+
from . import import_mesh
|
|
55
25
|
from . import text
|
|
26
|
+
from . import scene
|
|
27
|
+
from . import sculpt
|
|
28
|
+
from . import outliner
|
|
56
29
|
from . import curves
|
|
57
|
-
from . import
|
|
30
|
+
from . import view2d
|
|
31
|
+
from . import texture
|
|
32
|
+
from . import font
|
|
58
33
|
from . import text_editor
|
|
59
|
-
from . import
|
|
60
|
-
from . import
|
|
61
|
-
from . import
|
|
34
|
+
from . import ptcache
|
|
35
|
+
from . import buttons
|
|
36
|
+
from . import rigidbody
|
|
37
|
+
from . import poselib
|
|
38
|
+
from . import mesh
|
|
39
|
+
from . import sculpt_curves
|
|
40
|
+
from . import console
|
|
41
|
+
from . import particle
|
|
42
|
+
from . import import_scene
|
|
43
|
+
from . import gizmogroup
|
|
44
|
+
from . import nla
|
|
45
|
+
from . import lattice
|
|
46
|
+
from . import gpencil
|
|
47
|
+
from . import mball
|
|
48
|
+
from . import fluid
|
|
62
49
|
from . import export_anim
|
|
50
|
+
from . import curve
|
|
51
|
+
from . import uilist
|
|
52
|
+
from . import dpaint
|
|
53
|
+
from . import grease_pencil
|
|
63
54
|
from . import file
|
|
64
|
-
from . import
|
|
55
|
+
from . import spreadsheet
|
|
56
|
+
from . import action
|
|
65
57
|
from . import export_mesh
|
|
66
|
-
from . import
|
|
67
|
-
from . import
|
|
68
|
-
from . import
|
|
69
|
-
from . import
|
|
70
|
-
from . import
|
|
71
|
-
from . import
|
|
72
|
-
from . import
|
|
58
|
+
from . import clip
|
|
59
|
+
from . import cloth
|
|
60
|
+
from . import preferences
|
|
61
|
+
from . import screen
|
|
62
|
+
from . import boid
|
|
63
|
+
from . import image
|
|
64
|
+
from . import collection
|
|
65
|
+
from . import view3d
|
|
66
|
+
from . import constraint
|
|
67
|
+
from . import pose
|
|
68
|
+
from . import graph
|
|
73
69
|
from . import sequencer
|
|
70
|
+
from . import camera
|
|
74
71
|
from . import transform
|
|
75
|
-
from . import
|
|
76
|
-
from . import
|
|
77
|
-
from . import
|
|
78
|
-
from . import
|
|
72
|
+
from . import armature
|
|
73
|
+
from . import info
|
|
74
|
+
from . import uv
|
|
75
|
+
from . import import_anim
|
|
76
|
+
from . import render
|
|
77
|
+
from . import sound
|
|
78
|
+
from . import export_scene
|
|
79
79
|
from . import cycles
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
bpy/types/__init__.pyi
CHANGED
|
@@ -2,209 +2,97 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import mathutils
|
|
4
4
|
import bpy
|
|
5
|
-
import
|
|
6
|
-
import bl_ui.
|
|
7
|
-
import bl_ui.
|
|
8
|
-
import bl_ui.space_topbar
|
|
9
|
-
import bl_operators.view3d
|
|
5
|
+
import bl_ui.properties_data_speaker
|
|
6
|
+
import bl_ui.anim
|
|
7
|
+
import bl_ui.properties_data_metaball
|
|
10
8
|
import bl_ui.space_toolsystem_toolbar
|
|
11
|
-
import bl_ui.properties_physics_field
|
|
12
|
-
import bl_ui.properties_particle
|
|
13
|
-
import bl_ui.properties_data_bone
|
|
14
|
-
import bl_ui.space_console
|
|
15
|
-
import bl_ui.node_add_menu
|
|
16
9
|
import bl_ui.space_sequencer
|
|
17
|
-
import
|
|
18
|
-
import
|
|
19
|
-
import bl_ui.
|
|
20
|
-
import bl_operators.presets
|
|
10
|
+
import bl_operators.assets
|
|
11
|
+
import bl_ui.properties_material
|
|
12
|
+
import bl_ui.asset_shelf
|
|
21
13
|
import bl_ui.properties_output
|
|
22
|
-
import bl_ui.
|
|
14
|
+
import bl_ui.properties_collection
|
|
15
|
+
import bl_ui.properties_data_camera
|
|
16
|
+
import bl_ui.properties_data_pointcloud
|
|
23
17
|
import bl_ui.properties_grease_pencil_common
|
|
24
|
-
import
|
|
25
|
-
import
|
|
26
|
-
import bl_ui.
|
|
27
|
-
import
|
|
18
|
+
import bl_ui.node_add_menu_shader
|
|
19
|
+
import bl_operators.constraint
|
|
20
|
+
import bl_ui.properties_data_curves
|
|
21
|
+
import bl_operators.userpref
|
|
22
|
+
import bl_ui.properties_material_gpencil
|
|
23
|
+
import bl_ui.space_clip
|
|
28
24
|
import bl_ui.space_view3d_toolbar
|
|
25
|
+
import bl_ui.space_graph
|
|
26
|
+
import bl_operators.freestyle
|
|
27
|
+
import bl_ui.space_statusbar
|
|
28
|
+
import bl_ui.properties_physics_field
|
|
29
29
|
import bl_ui.properties_data_grease_pencil
|
|
30
|
-
import bl_ui.
|
|
31
|
-
import bl_ui.
|
|
32
|
-
import bl_ui.
|
|
33
|
-
import bl_ui.
|
|
34
|
-
import
|
|
35
|
-
import bl_operators.
|
|
36
|
-
import bl_ui.properties_data_light
|
|
37
|
-
import bl_ui.anim
|
|
38
|
-
import bl_ui.properties_data_armature
|
|
39
|
-
import bl_ui.properties_mask_common
|
|
30
|
+
import bl_ui.properties_view_layer
|
|
31
|
+
import bl_ui.properties_physics_common
|
|
32
|
+
import bl_ui.space_view3d
|
|
33
|
+
import bl_ui.space_image
|
|
34
|
+
import bl_operators.node
|
|
35
|
+
import bl_operators.view3d
|
|
40
36
|
import bl_ui.space_time
|
|
41
|
-
import bl_ui
|
|
42
|
-
import bl_operators.userpref
|
|
43
|
-
import bl_ui.properties_data_shaderfx
|
|
44
|
-
import bl_ui.generic_ui_list
|
|
45
|
-
import bl_ui.node_add_menu_compositor
|
|
37
|
+
import bl_ui.properties_physics_cloth
|
|
46
38
|
import bl_ui.space_userpref
|
|
47
|
-
import bl_ui.
|
|
48
|
-
import
|
|
49
|
-
import
|
|
50
|
-
import bl_ui.space_view3d
|
|
51
|
-
import bl_ui.properties_data_lattice
|
|
39
|
+
import bl_ui.space_filebrowser
|
|
40
|
+
import bl_operators.anim
|
|
41
|
+
import bl_ui.generic_ui_list
|
|
52
42
|
import bl_ui.space_info
|
|
53
|
-
import
|
|
54
|
-
import bl_ui.
|
|
55
|
-
import bl_ui.
|
|
56
|
-
import bl_ui.
|
|
57
|
-
import bl_ui.
|
|
58
|
-
import bl_ui.properties_material
|
|
59
|
-
import bl_ui.properties_physics_geometry_nodes
|
|
60
|
-
import bl_operators.assets
|
|
61
|
-
import bl_ui.asset_shelf
|
|
62
|
-
import bl_operators.constraint
|
|
63
|
-
import bl_ui.space_clip
|
|
64
|
-
import bl_ui.properties_material_gpencil
|
|
65
|
-
import bl_ui.properties_physics_common
|
|
66
|
-
import bl_ui.properties_data_modifier
|
|
67
|
-
import bl_ui.properties_object
|
|
68
|
-
import bl_ui.properties_data_camera
|
|
43
|
+
import bl_ui.space_spreadsheet
|
|
44
|
+
import bl_ui.space_text
|
|
45
|
+
import bl_ui.properties_data_volume
|
|
46
|
+
import bl_ui.space_node
|
|
47
|
+
import bl_ui.space_outliner
|
|
69
48
|
import bl_ui.properties_data_curve
|
|
70
|
-
import
|
|
71
|
-
import bl_ui.
|
|
72
|
-
import bl_ui.
|
|
73
|
-
import bl_ui.
|
|
49
|
+
import bl_ui.properties_data_lattice
|
|
50
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
51
|
+
import bl_ui.properties_data_light
|
|
52
|
+
import bl_ui.properties_data_empty
|
|
53
|
+
import bl_ui.properties_paint_common
|
|
54
|
+
import bl_ui.space_console
|
|
55
|
+
import bl_operators.presets
|
|
74
56
|
import bl_ui.node_add_menu_geometry
|
|
75
|
-
import
|
|
76
|
-
import bl_ui.
|
|
57
|
+
import bl_operators.object
|
|
58
|
+
import bl_ui.properties_render
|
|
59
|
+
import bl_ui.properties_data_bone
|
|
60
|
+
import bl_ui.node_add_menu_texture
|
|
61
|
+
import bl_ui
|
|
62
|
+
import bl_ui.node_add_menu
|
|
63
|
+
import bl_ui.properties_mask_common
|
|
64
|
+
import bl_ui.properties_data_armature
|
|
65
|
+
import bl_operators.clip
|
|
66
|
+
import bl_ui.properties_particle
|
|
67
|
+
import bl_ui.properties_world
|
|
77
68
|
import bl_ui.properties_physics_rigidbody_constraint
|
|
78
|
-
import bl_operators.anim
|
|
79
|
-
import bl_ui.space_properties
|
|
80
69
|
import bl_ui.properties_texture
|
|
81
|
-
import bl_ui.
|
|
82
|
-
import
|
|
83
|
-
import bl_ui.
|
|
84
|
-
import bl_ui.
|
|
70
|
+
import bl_ui.space_nla
|
|
71
|
+
import bl_operators.file
|
|
72
|
+
import bl_ui.properties_physics_softbody
|
|
73
|
+
import bl_ui.properties_physics_fluid
|
|
74
|
+
import bl_operators.spreadsheet
|
|
85
75
|
import bl_ui.properties_freestyle
|
|
86
|
-
import bl_ui.
|
|
87
|
-
import bl_ui.
|
|
76
|
+
import bl_ui.space_topbar
|
|
77
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
78
|
+
import bl_ui.properties_data_mesh
|
|
79
|
+
import bl_ui.space_dopesheet
|
|
80
|
+
import bl_ui.space_toolsystem_common
|
|
81
|
+
import bl_ui.properties_constraint
|
|
82
|
+
import bl_ui.properties_object
|
|
83
|
+
import bl_ui.properties_data_shaderfx
|
|
84
|
+
import bl_ui.properties_data_lightprobe
|
|
85
|
+
import bl_ui.properties_data_modifier
|
|
86
|
+
import bl_ui.properties_physics_rigidbody
|
|
87
|
+
import bl_ui.space_properties
|
|
88
88
|
import bl_ui.properties_workspace
|
|
89
|
-
import
|
|
90
|
-
import bl_ui.
|
|
91
|
-
import bl_ui.
|
|
92
|
-
import bl_ui.
|
|
89
|
+
import bl_operators.wm
|
|
90
|
+
import bl_ui.node_add_menu_compositor
|
|
91
|
+
import bl_ui.properties_data_gpencil
|
|
92
|
+
import bl_ui.properties_scene
|
|
93
93
|
|
|
94
94
|
GenericType = typing.TypeVar("GenericType")
|
|
95
95
|
|
|
96
|
-
class bpy_prop_collection(typing.Generic[GenericType]):
|
|
97
|
-
"""built-in class used for all collections."""
|
|
98
|
-
|
|
99
|
-
def find(self, key: typing.Optional[str]) -> int:
|
|
100
|
-
"""Returns the index of a key in a collection or -1 when not found (matches Python's string find function of the same name).
|
|
101
|
-
|
|
102
|
-
:param key: The identifier for the collection member.
|
|
103
|
-
:type key: typing.Optional[str]
|
|
104
|
-
:rtype: int
|
|
105
|
-
:return: index of the key.
|
|
106
|
-
"""
|
|
107
|
-
...
|
|
108
|
-
|
|
109
|
-
def foreach_get(self, attr, seq):
|
|
110
|
-
"""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."""
|
|
111
|
-
...
|
|
112
|
-
|
|
113
|
-
def foreach_set(self, attr, seq):
|
|
114
|
-
"""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."""
|
|
115
|
-
...
|
|
116
|
-
|
|
117
|
-
def get(
|
|
118
|
-
self, key: typing.Optional[str], default: typing.Optional[typing.Any] = None
|
|
119
|
-
):
|
|
120
|
-
"""Returns the value of the item assigned to key or default when not found (matches Python's dictionary function of the same name).
|
|
121
|
-
|
|
122
|
-
:param key: The identifier for the collection member.
|
|
123
|
-
:type key: typing.Optional[str]
|
|
124
|
-
:param default: Optional argument for the value to return if *key* is not found.
|
|
125
|
-
:type default: typing.Optional[typing.Any]
|
|
126
|
-
"""
|
|
127
|
-
...
|
|
128
|
-
|
|
129
|
-
def items(self) -> typing.List:
|
|
130
|
-
"""Return the identifiers of collection members (matching Python's dict.items() functionality).
|
|
131
|
-
|
|
132
|
-
:rtype: typing.List
|
|
133
|
-
:return: (key, value) pairs for each member of this collection.
|
|
134
|
-
"""
|
|
135
|
-
...
|
|
136
|
-
|
|
137
|
-
def keys(self) -> typing.List[str]:
|
|
138
|
-
"""Return the identifiers of collection members (matching Python's dict.keys() functionality).
|
|
139
|
-
|
|
140
|
-
:rtype: typing.List[str]
|
|
141
|
-
:return: the identifiers for each member of this collection.
|
|
142
|
-
"""
|
|
143
|
-
...
|
|
144
|
-
|
|
145
|
-
def values(self) -> typing.List:
|
|
146
|
-
"""Return the values of collection (matching Python's dict.values() functionality).
|
|
147
|
-
|
|
148
|
-
:rtype: typing.List
|
|
149
|
-
:return: the members of this collection.
|
|
150
|
-
"""
|
|
151
|
-
...
|
|
152
|
-
|
|
153
|
-
def __getitem__(
|
|
154
|
-
self, key: typing.Optional[typing.Union[int, str]]
|
|
155
|
-
) -> "GenericType":
|
|
156
|
-
"""
|
|
157
|
-
|
|
158
|
-
:param key:
|
|
159
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
160
|
-
:rtype: 'GenericType'
|
|
161
|
-
"""
|
|
162
|
-
...
|
|
163
|
-
|
|
164
|
-
def __setitem__(
|
|
165
|
-
self, key: typing.Optional[typing.Union[int, str]], value: "GenericType"
|
|
166
|
-
):
|
|
167
|
-
"""
|
|
168
|
-
|
|
169
|
-
:param key:
|
|
170
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
171
|
-
:param value:
|
|
172
|
-
:type value: 'GenericType'
|
|
173
|
-
"""
|
|
174
|
-
...
|
|
175
|
-
|
|
176
|
-
def __delitem__(
|
|
177
|
-
self, key: typing.Optional[typing.Union[int, str]]
|
|
178
|
-
) -> "GenericType":
|
|
179
|
-
"""
|
|
180
|
-
|
|
181
|
-
:param key:
|
|
182
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
183
|
-
:rtype: 'GenericType'
|
|
184
|
-
"""
|
|
185
|
-
...
|
|
186
|
-
|
|
187
|
-
def __iter__(self) -> typing.Iterator["GenericType"]:
|
|
188
|
-
"""
|
|
189
|
-
|
|
190
|
-
:rtype: typing.Iterator['GenericType']
|
|
191
|
-
"""
|
|
192
|
-
...
|
|
193
|
-
|
|
194
|
-
def __next__(self) -> "GenericType":
|
|
195
|
-
"""
|
|
196
|
-
|
|
197
|
-
:rtype: 'GenericType'
|
|
198
|
-
"""
|
|
199
|
-
...
|
|
200
|
-
|
|
201
|
-
def __len__(self) -> int:
|
|
202
|
-
"""
|
|
203
|
-
|
|
204
|
-
:rtype: int
|
|
205
|
-
"""
|
|
206
|
-
...
|
|
207
|
-
|
|
208
96
|
class bpy_struct:
|
|
209
97
|
"""built-in base class for all classes in bpy.types."""
|
|
210
98
|
|
|
@@ -469,6 +357,118 @@ class bpy_struct:
|
|
|
469
357
|
"""
|
|
470
358
|
...
|
|
471
359
|
|
|
360
|
+
class bpy_prop_collection(typing.Generic[GenericType]):
|
|
361
|
+
"""built-in class used for all collections."""
|
|
362
|
+
|
|
363
|
+
def find(self, key: typing.Optional[str]) -> int:
|
|
364
|
+
"""Returns the index of a key in a collection or -1 when not found (matches Python's string find function of the same name).
|
|
365
|
+
|
|
366
|
+
:param key: The identifier for the collection member.
|
|
367
|
+
:type key: typing.Optional[str]
|
|
368
|
+
:rtype: int
|
|
369
|
+
:return: index of the key.
|
|
370
|
+
"""
|
|
371
|
+
...
|
|
372
|
+
|
|
373
|
+
def foreach_get(self, attr, seq):
|
|
374
|
+
"""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."""
|
|
375
|
+
...
|
|
376
|
+
|
|
377
|
+
def foreach_set(self, attr, seq):
|
|
378
|
+
"""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."""
|
|
379
|
+
...
|
|
380
|
+
|
|
381
|
+
def get(
|
|
382
|
+
self, key: typing.Optional[str], default: typing.Optional[typing.Any] = None
|
|
383
|
+
):
|
|
384
|
+
"""Returns the value of the item assigned to key or default when not found (matches Python's dictionary function of the same name).
|
|
385
|
+
|
|
386
|
+
:param key: The identifier for the collection member.
|
|
387
|
+
:type key: typing.Optional[str]
|
|
388
|
+
:param default: Optional argument for the value to return if *key* is not found.
|
|
389
|
+
:type default: typing.Optional[typing.Any]
|
|
390
|
+
"""
|
|
391
|
+
...
|
|
392
|
+
|
|
393
|
+
def items(self) -> typing.List:
|
|
394
|
+
"""Return the identifiers of collection members (matching Python's dict.items() functionality).
|
|
395
|
+
|
|
396
|
+
:rtype: typing.List
|
|
397
|
+
:return: (key, value) pairs for each member of this collection.
|
|
398
|
+
"""
|
|
399
|
+
...
|
|
400
|
+
|
|
401
|
+
def keys(self) -> typing.List[str]:
|
|
402
|
+
"""Return the identifiers of collection members (matching Python's dict.keys() functionality).
|
|
403
|
+
|
|
404
|
+
:rtype: typing.List[str]
|
|
405
|
+
:return: the identifiers for each member of this collection.
|
|
406
|
+
"""
|
|
407
|
+
...
|
|
408
|
+
|
|
409
|
+
def values(self) -> typing.List:
|
|
410
|
+
"""Return the values of collection (matching Python's dict.values() functionality).
|
|
411
|
+
|
|
412
|
+
:rtype: typing.List
|
|
413
|
+
:return: the members of this collection.
|
|
414
|
+
"""
|
|
415
|
+
...
|
|
416
|
+
|
|
417
|
+
def __getitem__(
|
|
418
|
+
self, key: typing.Optional[typing.Union[int, str]]
|
|
419
|
+
) -> "GenericType":
|
|
420
|
+
"""
|
|
421
|
+
|
|
422
|
+
:param key:
|
|
423
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
424
|
+
:rtype: 'GenericType'
|
|
425
|
+
"""
|
|
426
|
+
...
|
|
427
|
+
|
|
428
|
+
def __setitem__(
|
|
429
|
+
self, key: typing.Optional[typing.Union[int, str]], value: "GenericType"
|
|
430
|
+
):
|
|
431
|
+
"""
|
|
432
|
+
|
|
433
|
+
:param key:
|
|
434
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
435
|
+
:param value:
|
|
436
|
+
:type value: 'GenericType'
|
|
437
|
+
"""
|
|
438
|
+
...
|
|
439
|
+
|
|
440
|
+
def __delitem__(
|
|
441
|
+
self, key: typing.Optional[typing.Union[int, str]]
|
|
442
|
+
) -> "GenericType":
|
|
443
|
+
"""
|
|
444
|
+
|
|
445
|
+
:param key:
|
|
446
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
447
|
+
:rtype: 'GenericType'
|
|
448
|
+
"""
|
|
449
|
+
...
|
|
450
|
+
|
|
451
|
+
def __iter__(self) -> typing.Iterator["GenericType"]:
|
|
452
|
+
"""
|
|
453
|
+
|
|
454
|
+
:rtype: typing.Iterator['GenericType']
|
|
455
|
+
"""
|
|
456
|
+
...
|
|
457
|
+
|
|
458
|
+
def __next__(self) -> "GenericType":
|
|
459
|
+
"""
|
|
460
|
+
|
|
461
|
+
:rtype: 'GenericType'
|
|
462
|
+
"""
|
|
463
|
+
...
|
|
464
|
+
|
|
465
|
+
def __len__(self) -> int:
|
|
466
|
+
"""
|
|
467
|
+
|
|
468
|
+
:rtype: int
|
|
469
|
+
"""
|
|
470
|
+
...
|
|
471
|
+
|
|
472
472
|
class bpy_prop_array(typing.Generic[GenericType]):
|
|
473
473
|
def foreach_get(self, attr, seq): ...
|
|
474
474
|
def foreach_set(self, attr, seq): ...
|
|
@@ -75305,6 +75305,7 @@ class NodeInputs(bpy_prop_collection[NodeSocket], bpy_struct):
|
|
|
75305
75305
|
type: typing.Union[str, typing.Any],
|
|
75306
75306
|
name: typing.Union[str, typing.Any],
|
|
75307
75307
|
identifier: typing.Union[str, typing.Any] = "",
|
|
75308
|
+
use_multi_input: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
75308
75309
|
) -> "NodeSocket":
|
|
75309
75310
|
"""Add a socket to this node
|
|
75310
75311
|
|
|
@@ -75314,6 +75315,8 @@ class NodeInputs(bpy_prop_collection[NodeSocket], bpy_struct):
|
|
|
75314
75315
|
:type name: typing.Union[str, typing.Any]
|
|
75315
75316
|
:param identifier: Identifier, Unique socket identifier
|
|
75316
75317
|
:type identifier: typing.Union[str, typing.Any]
|
|
75318
|
+
:param use_multi_input: Make the socket a multi-input. Only valid for inputs
|
|
75319
|
+
:type use_multi_input: typing.Optional[typing.Union[bool, typing.Any]]
|
|
75317
75320
|
:rtype: 'NodeSocket'
|
|
75318
75321
|
:return: New socket
|
|
75319
75322
|
"""
|
|
@@ -75373,6 +75376,7 @@ class NodeOutputs(bpy_prop_collection[NodeSocket], bpy_struct):
|
|
|
75373
75376
|
type: typing.Union[str, typing.Any],
|
|
75374
75377
|
name: typing.Union[str, typing.Any],
|
|
75375
75378
|
identifier: typing.Union[str, typing.Any] = "",
|
|
75379
|
+
use_multi_input: typing.Optional[typing.Union[bool, typing.Any]] = False,
|
|
75376
75380
|
) -> "NodeSocket":
|
|
75377
75381
|
"""Add a socket to this node
|
|
75378
75382
|
|
|
@@ -75382,6 +75386,8 @@ class NodeOutputs(bpy_prop_collection[NodeSocket], bpy_struct):
|
|
|
75382
75386
|
:type name: typing.Union[str, typing.Any]
|
|
75383
75387
|
:param identifier: Identifier, Unique socket identifier
|
|
75384
75388
|
:type identifier: typing.Union[str, typing.Any]
|
|
75389
|
+
:param use_multi_input: Make the socket a multi-input. Only valid for inputs
|
|
75390
|
+
:type use_multi_input: typing.Optional[typing.Union[bool, typing.Any]]
|
|
75385
75391
|
:rtype: 'NodeSocket'
|
|
75386
75392
|
:return: New socket
|
|
75387
75393
|
"""
|
bpy/utils/__init__.pyi
CHANGED
bpy_extras/__init__.pyi
CHANGED
|
@@ -10,9 +10,9 @@ from . import io_utils
|
|
|
10
10
|
from . import view3d_utils
|
|
11
11
|
from . import anim_utils
|
|
12
12
|
from . import keyconfig_utils
|
|
13
|
-
from . import extensions
|
|
14
13
|
from . import node_shader_utils
|
|
15
14
|
from . import wm_utils
|
|
16
15
|
from . import bmesh_utils
|
|
16
|
+
from . import extensions
|
|
17
17
|
|
|
18
18
|
GenericType = typing.TypeVar("GenericType")
|
|
@@ -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=dzVlkNyhS206ZRyVeOJNgnN6i57AlgaMESJ12gsMq30,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=Cez87dqw4dUMF8YqRioGB0OCS6YNn2O46CuWfi7bXxA,253
|
|
22
22
|
bl_i18n_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
23
|
bl_i18n_utils/bl_extract_messages/__init__.pyi,sha256=VL8QDo6QFrZGln85OGRpRWNlwuxzikx7IG53I71MJYA,908
|
|
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=d8aJEJfLoKTPFj-2esdQK9UGq0_YNwPKuF3BppCVKfw,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=mWm_3WLLKc2NKR1mu10U_FW0hs4KL4K6SUvoBbJL9VI,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=ediCAbCt4RiVedRpn0dFyRSlMsoMhK2wMC6C5bjUEyQ,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=IOJO1wd-H3n9bHVvJ13rlzo9i-Mmk52BaZsxDkw
|
|
|
155
155
|
bl_ui/space_view3d/__init__.pyi,sha256=Vcz895ROlEGNH7hXByyIgTpA-UxjUBEGtWVC_FOSUFY,364866
|
|
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,15 +169,15 @@ 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=hgWtrksaPlfsRYC20TC-u9WpHyTwQ75lpGUvCkHLJMI,324
|
|
173
173
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
174
|
-
bpy/app/__init__.pyi,sha256=
|
|
174
|
+
bpy/app/__init__.pyi,sha256=9PHTTOgGX137yXqQ2o7mtpEjL0pLSz8jGAXJBYc4P8o,9479
|
|
175
175
|
bpy/app/handlers/__init__.pyi,sha256=IN8lCMuLtOnf94pImFXiSQ5JR6L3BkkgIsPfFdBqitI,5399
|
|
176
176
|
bpy/app/icons/__init__.pyi,sha256=tOC3c9N_BLT3G0viXxPhMook_lPDGJoUmTYHjg_NOZw,1121
|
|
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=PJu5QFy-sDVCMkyYcssN9odzgTHWWRhHfan9p0J0OgM,1751
|
|
181
181
|
bpy/ops/action/__init__.pyi,sha256=fp2H1MFKyRdirKHtXlum1OWndPG2cvHWPr7uohovMXw,28955
|
|
182
182
|
bpy/ops/anim/__init__.pyi,sha256=UPiMeidLfQPGaw9p_txjQoWxwfIJsxp8hPDvJOsXaCI,39432
|
|
183
183
|
bpy/ops/armature/__init__.pyi,sha256=zGM1LgMMkxKox6oftCQ5QOn9RZLGpRR9MT1qICiD64g,35412
|
|
@@ -257,11 +257,11 @@ 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=tjqe4tN_UN3n4VWKmZG-SkRfJotQ1p3MvMagGH47VsA,27519
|
|
260
|
-
bpy/types/__init__.pyi,sha256=
|
|
261
|
-
bpy/utils/__init__.pyi,sha256=
|
|
260
|
+
bpy/types/__init__.pyi,sha256=LcJJ2pnZxYLXIUCcFp0gVPPgDPHSMQnK6CntHHj0rpI,3453321
|
|
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=Dx27uAgxVqb3PTBz_4dstdiq30_Q6jGEN4gr3usmmW4,437
|
|
265
265
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
266
266
|
bpy_extras/anim_utils/__init__.pyi,sha256=fnHgwEgW5CkAKGhNg-6CAXMq2WbYebuI_OdFvC551qw,2629
|
|
267
267
|
bpy_extras/asset_utils/__init__.pyi,sha256=ugLnZGwgepm58mWHS4cS_bmum9v9La2a1wKpg5VShHY,362
|
|
@@ -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-20240213.dist-info/METADATA,sha256=nKGgwkcczpIiyge88FVWWoFzLHjlm056pvRkUf_aC-Y,7008
|
|
347
|
+
fake_bpy_module-20240213.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
348
|
+
fake_bpy_module-20240213.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
349
|
+
fake_bpy_module-20240213.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|