fake-bpy-module 20240210__py3-none-any.whl → 20240212__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_i18n_utils/__init__.pyi +2 -2
- bl_keymap_utils/__init__.pyi +3 -3
- bl_operators/__init__.pyi +20 -20
- bl_ui/__init__.pyi +63 -63
- bl_ui_utils/__init__.pyi +1 -1
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +1 -1
- bpy/ops/__init__.pyi +64 -64
- bpy/types/__init__.pyi +116 -116
- bpy/utils/__init__.pyi +1 -1
- bpy_extras/__init__.pyi +2 -2
- {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240212.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240212.dist-info}/RECORD +15 -15
- {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240212.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240210.dist-info → fake_bpy_module-20240212.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
3
|
from . import merge_po
|
|
4
|
-
from . import
|
|
4
|
+
from . import utils_rtl
|
|
5
5
|
from . import settings
|
|
6
6
|
from . import utils_cli
|
|
7
7
|
from . import utils_languages_menu
|
|
8
|
-
from . import utils_rtl
|
|
9
8
|
from . import bl_extract_messages
|
|
9
|
+
from . import utils
|
|
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 keymap_hierarchy
|
|
4
|
-
from . import platform_helpers
|
|
5
|
-
from . import versioning
|
|
6
3
|
from . import io
|
|
4
|
+
from . import platform_helpers
|
|
7
5
|
from . import keymap_from_toolbar
|
|
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 bmesh
|
|
5
|
-
from . import uvcalc_lightmap
|
|
6
|
-
from . import constraint
|
|
7
|
-
from . import image
|
|
3
|
+
from . import file
|
|
8
4
|
from . import uvcalc_transform
|
|
9
|
-
from . import
|
|
5
|
+
from . import view3d
|
|
6
|
+
from . import screen_play_rendered_anim
|
|
10
7
|
from . import mesh
|
|
11
|
-
from . import anim
|
|
12
8
|
from . import spreadsheet
|
|
13
|
-
from . import
|
|
14
|
-
from . import
|
|
9
|
+
from . import presets
|
|
10
|
+
from . import object_randomize_transform
|
|
15
11
|
from . import clip
|
|
16
|
-
from . import object_align
|
|
17
12
|
from . import wm
|
|
18
|
-
from . import
|
|
19
|
-
from . import node
|
|
20
|
-
from . import screen_play_rendered_anim
|
|
21
|
-
from . import assets
|
|
22
|
-
from . import view3d
|
|
13
|
+
from . import console
|
|
23
14
|
from . import uvcalc_follow_active
|
|
24
|
-
from . import
|
|
25
|
-
from . import
|
|
15
|
+
from . import image
|
|
16
|
+
from . import sequencer
|
|
17
|
+
from . import vertexpaint_dirt
|
|
26
18
|
from . import userpref
|
|
27
|
-
from . import
|
|
19
|
+
from . import object_align
|
|
28
20
|
from . import add_mesh_torus
|
|
29
|
-
from . import console
|
|
30
21
|
from . import object
|
|
31
|
-
from . import
|
|
22
|
+
from . import geometry_nodes
|
|
23
|
+
from . import freestyle
|
|
24
|
+
from . import assets
|
|
25
|
+
from . import constraint
|
|
26
|
+
from . import node
|
|
27
|
+
from . import bmesh
|
|
28
|
+
from . import anim
|
|
29
|
+
from . import object_quick_effects
|
|
30
|
+
from . import rigidbody
|
|
31
|
+
from . import uvcalc_lightmap
|
|
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
|
|
8
|
-
from . import properties_animviz
|
|
9
|
-
from . import space_time
|
|
10
|
-
from . import properties_physics_softbody
|
|
11
|
-
from . import space_graph
|
|
12
|
-
from . import space_filebrowser
|
|
5
|
+
from . import space_nla
|
|
6
|
+
from . import space_dopesheet
|
|
7
|
+
from . import space_topbar
|
|
13
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
|
+
from . import space_sequencer
|
|
15
|
+
from . import space_statusbar
|
|
16
|
+
from . import properties_collection
|
|
17
|
+
from . import properties_output
|
|
18
|
+
from . import properties_data_empty
|
|
14
19
|
from . import properties_grease_pencil_common
|
|
15
|
-
from . import
|
|
16
|
-
from . import properties_physics_geometry_nodes
|
|
17
|
-
from . import properties_data_shaderfx
|
|
20
|
+
from . import properties_constraint
|
|
18
21
|
from . import properties_render
|
|
19
|
-
from . import properties_physics_fluid
|
|
20
22
|
from . import properties_data_volume
|
|
21
|
-
from . import properties_physics_field
|
|
22
|
-
from . import properties_physics_cloth
|
|
23
|
-
from . import properties_data_gpencil
|
|
24
|
-
from . import space_userpref
|
|
25
|
-
from . import properties_data_grease_pencil
|
|
26
|
-
from . import properties_physics_rigidbody_constraint
|
|
27
23
|
from . import space_view3d_toolbar
|
|
28
|
-
from . import
|
|
29
|
-
from . import
|
|
30
|
-
from . import space_node
|
|
31
|
-
from . import anim
|
|
32
|
-
from . import node_add_menu_geometry
|
|
33
|
-
from . import properties_workspace
|
|
34
|
-
from . import properties_data_camera
|
|
35
|
-
from . import properties_data_modifier
|
|
24
|
+
from . import properties_data_grease_pencil
|
|
25
|
+
from . import properties_scene
|
|
36
26
|
from . import space_text
|
|
37
|
-
from . import
|
|
38
|
-
from . import
|
|
39
|
-
from . import
|
|
40
|
-
from . import
|
|
41
|
-
from . import
|
|
42
|
-
from . import
|
|
43
|
-
from . import
|
|
27
|
+
from . import properties_physics_rigidbody
|
|
28
|
+
from . import properties_physics_softbody
|
|
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
|
|
44
34
|
from . import properties_mask_common
|
|
45
|
-
from . import
|
|
46
|
-
from . import
|
|
47
|
-
from . import
|
|
48
|
-
from . import properties_object
|
|
49
|
-
from . import space_dopesheet
|
|
50
|
-
from . import properties_physics_dynamicpaint
|
|
35
|
+
from . import space_time
|
|
36
|
+
from . import properties_data_shaderfx
|
|
37
|
+
from . import generic_ui_list
|
|
51
38
|
from . import node_add_menu_compositor
|
|
52
|
-
from . import
|
|
39
|
+
from . import space_userpref
|
|
40
|
+
from . import space_image
|
|
41
|
+
from . import properties_data_gpencil
|
|
42
|
+
from . import space_view3d
|
|
43
|
+
from . import properties_data_lattice
|
|
44
|
+
from . import space_info
|
|
45
|
+
from . import utils
|
|
46
|
+
from . import properties_physics_dynamicpaint
|
|
47
|
+
from . import properties_world
|
|
48
|
+
from . import properties_view_layer
|
|
49
|
+
from . import properties_data_lightprobe
|
|
50
|
+
from . import properties_material
|
|
51
|
+
from . import properties_physics_geometry_nodes
|
|
53
52
|
from . import asset_shelf
|
|
54
|
-
from . import properties_data_bone
|
|
55
|
-
from . import properties_data_curves
|
|
56
53
|
from . import space_clip
|
|
57
|
-
from . import
|
|
58
|
-
from . import
|
|
59
|
-
from . import
|
|
60
|
-
from . import
|
|
61
|
-
from . import
|
|
62
|
-
from . import properties_constraint
|
|
63
|
-
from . import properties_data_empty
|
|
64
|
-
from . import space_console
|
|
65
|
-
from . import properties_output
|
|
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
|
|
66
59
|
from . import properties_data_curve
|
|
67
|
-
from . import
|
|
68
|
-
from . import
|
|
69
|
-
from . import
|
|
60
|
+
from . import node_add_menu_texture
|
|
61
|
+
from . import space_toolsystem_common
|
|
62
|
+
from . import properties_data_curves
|
|
63
|
+
from . import node_add_menu_geometry
|
|
64
|
+
from . import properties_data_metaball
|
|
65
|
+
from . import space_node
|
|
66
|
+
from . import properties_physics_rigidbody_constraint
|
|
70
67
|
from . import space_properties
|
|
71
|
-
from . import properties_view_layer
|
|
72
|
-
from . import properties_physics_common
|
|
73
|
-
from . import space_topbar
|
|
74
|
-
from . import properties_data_lightprobe
|
|
75
|
-
from . import utils
|
|
76
|
-
from . import properties_paint_common
|
|
77
|
-
from . import properties_data_light
|
|
78
|
-
from . import properties_data_mesh
|
|
79
68
|
from . import properties_texture
|
|
80
|
-
from . import
|
|
69
|
+
from . import properties_data_speaker
|
|
70
|
+
from . import space_filebrowser
|
|
71
|
+
from . import space_spreadsheet
|
|
72
|
+
from . import properties_data_mesh
|
|
73
|
+
from . import properties_freestyle
|
|
74
|
+
from . import space_outliner
|
|
75
|
+
from . import properties_paint_common
|
|
76
|
+
from . import properties_workspace
|
|
77
|
+
from . import node_add_menu_shader
|
|
78
|
+
from . import properties_physics_fluid
|
|
79
|
+
from . import space_graph
|
|
80
|
+
from . import properties_data_pointcloud
|
|
81
81
|
|
|
82
82
|
GenericType = typing.TypeVar("GenericType")
|
|
83
83
|
|
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 buttons
|
|
4
|
-
from . import file
|
|
5
|
-
from . import material
|
|
6
|
-
from . import ed
|
|
7
|
-
from . import fluid
|
|
8
|
-
from . import curve
|
|
9
|
-
from . import armature
|
|
10
|
-
from . import cachefile
|
|
11
3
|
from . import gpencil
|
|
12
|
-
from . import
|
|
13
|
-
from . import
|
|
14
|
-
from . import
|
|
15
|
-
from . import
|
|
16
|
-
from . import
|
|
17
|
-
from . import font
|
|
18
|
-
from . import uv
|
|
19
|
-
from . import texture
|
|
20
|
-
from . import ui
|
|
4
|
+
from . import world
|
|
5
|
+
from . import gizmogroup
|
|
6
|
+
from . import anim
|
|
7
|
+
from . import mball
|
|
8
|
+
from . import sculpt
|
|
21
9
|
from . import mesh
|
|
22
|
-
from . import script
|
|
23
|
-
from . import boid
|
|
24
|
-
from . import view2d
|
|
25
|
-
from . import graph
|
|
26
|
-
from . import lattice
|
|
27
|
-
from . import sequencer
|
|
28
|
-
from . import collection
|
|
29
|
-
from . import import_curve
|
|
30
|
-
from . import clip
|
|
31
|
-
from . import export_mesh
|
|
32
|
-
from . import screen
|
|
33
|
-
from . import render
|
|
34
10
|
from . import outliner
|
|
35
|
-
from . import
|
|
36
|
-
from . import
|
|
11
|
+
from . import pose
|
|
12
|
+
from . import cloth
|
|
13
|
+
from . import scene
|
|
14
|
+
from . import graph
|
|
15
|
+
from . import boid
|
|
16
|
+
from . import ed
|
|
17
|
+
from . import workspace
|
|
37
18
|
from . import action
|
|
38
|
-
from . import
|
|
39
|
-
from . import
|
|
40
|
-
from . import
|
|
41
|
-
from . import
|
|
42
|
-
from . import
|
|
43
|
-
from . import poselib
|
|
44
|
-
from . import surface
|
|
45
|
-
from . import sculpt_curves
|
|
46
|
-
from . import geometry
|
|
47
|
-
from . import wm
|
|
48
|
-
from . import gizmogroup
|
|
49
|
-
from . import nla
|
|
19
|
+
from . import ptcache
|
|
20
|
+
from . import console
|
|
21
|
+
from . import info
|
|
22
|
+
from . import import_scene
|
|
23
|
+
from . import armature
|
|
50
24
|
from . import import_mesh
|
|
51
|
-
from . import
|
|
25
|
+
from . import palette
|
|
52
26
|
from . import brush
|
|
53
|
-
from . import
|
|
54
|
-
from . import
|
|
27
|
+
from . import surface
|
|
28
|
+
from . import wm
|
|
55
29
|
from . import rigidbody
|
|
56
|
-
from . import
|
|
57
|
-
from . import marker
|
|
58
|
-
from . import text
|
|
59
|
-
from . import text_editor
|
|
60
|
-
from . import import_anim
|
|
61
|
-
from . import pose
|
|
62
|
-
from . import export_anim
|
|
63
|
-
from . import import_scene
|
|
30
|
+
from . import clip
|
|
64
31
|
from . import camera
|
|
65
|
-
from . import console
|
|
66
|
-
from . import curves
|
|
67
32
|
from . import view3d
|
|
68
|
-
from . import cloth
|
|
69
|
-
from . import preferences
|
|
70
|
-
from . import constraint
|
|
71
|
-
from . import paint
|
|
72
|
-
from . import world
|
|
73
33
|
from . import export_scene
|
|
74
|
-
from . import
|
|
34
|
+
from . import spreadsheet
|
|
35
|
+
from . import fluid
|
|
36
|
+
from . import object
|
|
37
|
+
from . import font
|
|
38
|
+
from . import collection
|
|
39
|
+
from . import buttons
|
|
40
|
+
from . import preferences
|
|
41
|
+
from . import sound
|
|
42
|
+
from . import poselib
|
|
75
43
|
from . import mask
|
|
44
|
+
from . import import_anim
|
|
45
|
+
from . import view2d
|
|
46
|
+
from . import material
|
|
47
|
+
from . import dpaint
|
|
48
|
+
from . import marker
|
|
49
|
+
from . import constraint
|
|
50
|
+
from . import asset
|
|
51
|
+
from . import script
|
|
52
|
+
from . import uilist
|
|
53
|
+
from . import nla
|
|
54
|
+
from . import screen
|
|
55
|
+
from . import text
|
|
56
|
+
from . import curves
|
|
57
|
+
from . import render
|
|
58
|
+
from . import text_editor
|
|
59
|
+
from . import grease_pencil
|
|
60
|
+
from . import geometry
|
|
61
|
+
from . import ui
|
|
62
|
+
from . import export_anim
|
|
63
|
+
from . import file
|
|
76
64
|
from . import image
|
|
65
|
+
from . import export_mesh
|
|
66
|
+
from . import lattice
|
|
67
|
+
from . import sculpt_curves
|
|
68
|
+
from . import paintcurve
|
|
69
|
+
from . import texture
|
|
70
|
+
from . import paint
|
|
71
|
+
from . import uv
|
|
72
|
+
from . import curve
|
|
73
|
+
from . import sequencer
|
|
74
|
+
from . import transform
|
|
75
|
+
from . import import_curve
|
|
76
|
+
from . import cachefile
|
|
77
|
+
from . import particle
|
|
78
|
+
from . import node
|
|
77
79
|
from . import cycles
|
|
78
|
-
from . import palette
|
|
79
|
-
from . import ptcache
|
|
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
|
|
6
|
-
import bl_ui.
|
|
7
|
-
import bl_ui.
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import bl_ui.properties_physics_softbody
|
|
11
|
-
import bl_ui.space_graph
|
|
12
|
-
import bl_ui.space_filebrowser
|
|
5
|
+
import bl_operators.file
|
|
6
|
+
import bl_ui.space_nla
|
|
7
|
+
import bl_ui.space_dopesheet
|
|
8
|
+
import bl_ui.space_topbar
|
|
9
|
+
import bl_operators.view3d
|
|
13
10
|
import bl_ui.space_toolsystem_toolbar
|
|
14
|
-
import bl_ui.properties_grease_pencil_common
|
|
15
|
-
import bl_ui.properties_scene
|
|
16
|
-
import bl_ui.properties_physics_geometry_nodes
|
|
17
|
-
import bl_ui.properties_data_shaderfx
|
|
18
|
-
import bl_ui.properties_render
|
|
19
|
-
import bl_operators.constraint
|
|
20
|
-
import bl_ui
|
|
21
|
-
import bl_ui.properties_physics_fluid
|
|
22
|
-
import bl_ui.properties_data_volume
|
|
23
11
|
import bl_ui.properties_physics_field
|
|
24
|
-
import
|
|
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
|
+
import bl_ui.space_sequencer
|
|
17
|
+
import bl_ui.space_statusbar
|
|
25
18
|
import bl_operators.spreadsheet
|
|
26
|
-
import bl_ui.properties_physics_cloth
|
|
27
|
-
import bl_ui.properties_data_gpencil
|
|
28
|
-
import bl_ui.space_userpref
|
|
29
|
-
import bl_ui.properties_data_grease_pencil
|
|
30
|
-
import bl_ui.properties_physics_rigidbody_constraint
|
|
31
|
-
import bl_ui.space_view3d_toolbar
|
|
32
19
|
import bl_ui.properties_collection
|
|
20
|
+
import bl_operators.presets
|
|
21
|
+
import bl_ui.properties_output
|
|
22
|
+
import bl_ui.properties_data_empty
|
|
23
|
+
import bl_ui.properties_grease_pencil_common
|
|
33
24
|
import bl_operators.clip
|
|
25
|
+
import bl_ui.properties_constraint
|
|
26
|
+
import bl_ui.properties_render
|
|
27
|
+
import bl_ui.properties_data_volume
|
|
28
|
+
import bl_ui.space_view3d_toolbar
|
|
29
|
+
import bl_ui.properties_data_grease_pencil
|
|
30
|
+
import bl_ui.properties_scene
|
|
31
|
+
import bl_ui.space_text
|
|
32
|
+
import bl_ui.properties_physics_rigidbody
|
|
33
|
+
import bl_ui.properties_physics_softbody
|
|
34
|
+
import bl_ui.properties_physics_cloth
|
|
34
35
|
import bl_operators.wm
|
|
35
|
-
import bl_ui.
|
|
36
|
-
import bl_ui.space_node
|
|
36
|
+
import bl_ui.properties_data_light
|
|
37
37
|
import bl_ui.anim
|
|
38
|
-
import bl_ui.
|
|
39
|
-
import bl_ui.properties_workspace
|
|
40
|
-
import bl_ui.properties_data_camera
|
|
41
|
-
import bl_ui.properties_data_modifier
|
|
42
|
-
import bl_ui.space_text
|
|
43
|
-
import bl_ui.properties_material
|
|
44
|
-
import bl_operators.node
|
|
45
|
-
import bl_ui.properties_world
|
|
46
|
-
import bl_ui.space_nla
|
|
47
|
-
import bl_ui.properties_particle
|
|
48
|
-
import bl_ui.node_add_menu
|
|
49
|
-
import bl_operators.assets
|
|
50
|
-
import bl_ui.space_info
|
|
51
|
-
import bl_ui.space_image
|
|
38
|
+
import bl_ui.properties_data_armature
|
|
52
39
|
import bl_ui.properties_mask_common
|
|
53
|
-
import bl_ui.
|
|
54
|
-
import bl_ui
|
|
55
|
-
import bl_ui.node_add_menu_texture
|
|
56
|
-
import bl_operators.view3d
|
|
57
|
-
import bl_ui.properties_object
|
|
58
|
-
import bl_ui.space_dopesheet
|
|
59
|
-
import bl_ui.properties_physics_dynamicpaint
|
|
60
|
-
import bl_ui.node_add_menu_compositor
|
|
61
|
-
import bl_ui.space_sequencer
|
|
62
|
-
import bl_ui.asset_shelf
|
|
63
|
-
import bl_operators.presets
|
|
64
|
-
import bl_ui.properties_data_bone
|
|
65
|
-
import bl_ui.properties_data_curves
|
|
66
|
-
import bl_ui.space_clip
|
|
40
|
+
import bl_ui.space_time
|
|
41
|
+
import bl_ui
|
|
67
42
|
import bl_operators.userpref
|
|
68
|
-
import bl_ui.
|
|
69
|
-
import
|
|
70
|
-
import bl_ui.
|
|
71
|
-
import bl_ui.
|
|
72
|
-
import bl_ui.
|
|
73
|
-
import bl_ui.
|
|
74
|
-
import bl_ui.properties_constraint
|
|
75
|
-
import bl_ui.properties_data_empty
|
|
76
|
-
import bl_ui.space_console
|
|
77
|
-
import bl_ui.properties_output
|
|
78
|
-
import bl_ui.properties_data_curve
|
|
43
|
+
import bl_ui.properties_data_shaderfx
|
|
44
|
+
import bl_ui.generic_ui_list
|
|
45
|
+
import bl_ui.node_add_menu_compositor
|
|
46
|
+
import bl_ui.space_userpref
|
|
47
|
+
import bl_ui.space_image
|
|
48
|
+
import bl_ui.properties_data_gpencil
|
|
79
49
|
import bl_operators.object
|
|
80
50
|
import bl_ui.space_view3d
|
|
81
|
-
import bl_ui.
|
|
82
|
-
import bl_ui.
|
|
83
|
-
import
|
|
51
|
+
import bl_ui.properties_data_lattice
|
|
52
|
+
import bl_ui.space_info
|
|
53
|
+
import bl_operators.freestyle
|
|
54
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
55
|
+
import bl_ui.properties_world
|
|
84
56
|
import bl_ui.properties_view_layer
|
|
85
|
-
import bl_ui.properties_physics_common
|
|
86
|
-
import bl_ui.space_topbar
|
|
87
57
|
import bl_ui.properties_data_lightprobe
|
|
88
|
-
import bl_ui.
|
|
89
|
-
import bl_ui.
|
|
90
|
-
import
|
|
91
|
-
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
|
|
69
|
+
import bl_ui.properties_data_curve
|
|
70
|
+
import bl_operators.node
|
|
71
|
+
import bl_ui.node_add_menu_texture
|
|
92
72
|
import bl_ui.space_toolsystem_common
|
|
73
|
+
import bl_ui.properties_data_curves
|
|
74
|
+
import bl_ui.node_add_menu_geometry
|
|
75
|
+
import bl_ui.properties_data_metaball
|
|
76
|
+
import bl_ui.space_node
|
|
77
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
78
|
+
import bl_operators.anim
|
|
79
|
+
import bl_ui.space_properties
|
|
80
|
+
import bl_ui.properties_texture
|
|
81
|
+
import bl_ui.properties_data_speaker
|
|
82
|
+
import bl_ui.space_filebrowser
|
|
83
|
+
import bl_ui.space_spreadsheet
|
|
84
|
+
import bl_ui.properties_data_mesh
|
|
85
|
+
import bl_ui.properties_freestyle
|
|
86
|
+
import bl_ui.space_outliner
|
|
87
|
+
import bl_ui.properties_paint_common
|
|
88
|
+
import bl_ui.properties_workspace
|
|
89
|
+
import bl_ui.node_add_menu_shader
|
|
90
|
+
import bl_ui.properties_physics_fluid
|
|
91
|
+
import bl_ui.space_graph
|
|
92
|
+
import bl_ui.properties_data_pointcloud
|
|
93
93
|
|
|
94
94
|
GenericType = typing.TypeVar("GenericType")
|
|
95
95
|
|
|
@@ -6857,10 +6857,10 @@ class Context(bpy_struct):
|
|
|
6857
6857
|
:type: 'UIList'
|
|
6858
6858
|
"""
|
|
6859
6859
|
|
|
6860
|
-
property: typing.Union[
|
|
6860
|
+
property: typing.Union[int, str, "AnyType"]
|
|
6861
6861
|
""" Get the property associated with a hovered button. Returns a tuple of the data-block, data path to the property, and array index.
|
|
6862
6862
|
|
|
6863
|
-
:type: typing.Union[
|
|
6863
|
+
:type: typing.Union[int, str, 'AnyType']
|
|
6864
6864
|
"""
|
|
6865
6865
|
|
|
6866
6866
|
edit_text: "Text"
|
|
@@ -14850,7 +14850,7 @@ class Gizmo(bpy_struct):
|
|
|
14850
14850
|
context: "Context",
|
|
14851
14851
|
event: "Event",
|
|
14852
14852
|
tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]],
|
|
14853
|
-
) -> typing.Union[typing.Set[
|
|
14853
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
14854
14854
|
"""
|
|
14855
14855
|
|
|
14856
14856
|
:param context:
|
|
@@ -14859,7 +14859,7 @@ class Gizmo(bpy_struct):
|
|
|
14859
14859
|
:type event: 'Event'
|
|
14860
14860
|
:param tweak: Tweak
|
|
14861
14861
|
:type tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
14862
|
-
:rtype: typing.Union[typing.Set[
|
|
14862
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
14863
14863
|
:return: result
|
|
14864
14864
|
"""
|
|
14865
14865
|
...
|
|
@@ -14867,14 +14867,14 @@ class Gizmo(bpy_struct):
|
|
|
14867
14867
|
def setup(self): ...
|
|
14868
14868
|
def invoke(
|
|
14869
14869
|
self, context: "Context", event: "Event"
|
|
14870
|
-
) -> typing.Union[typing.Set[
|
|
14870
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
14871
14871
|
"""
|
|
14872
14872
|
|
|
14873
14873
|
:param context:
|
|
14874
14874
|
:type context: 'Context'
|
|
14875
14875
|
:param event:
|
|
14876
14876
|
:type event: 'Event'
|
|
14877
|
-
:rtype: typing.Union[typing.Set[
|
|
14877
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
14878
14878
|
:return: result
|
|
14879
14879
|
"""
|
|
14880
14880
|
...
|
|
@@ -17444,10 +17444,10 @@ class KeyingSetInfo(bpy_struct):
|
|
|
17444
17444
|
:type: typing.Union[str, typing.Any]
|
|
17445
17445
|
"""
|
|
17446
17446
|
|
|
17447
|
-
bl_options: typing.Union[typing.Set[
|
|
17447
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17448
17448
|
""" Keying Set options to use when inserting keyframes
|
|
17449
17449
|
|
|
17450
|
-
:type: typing.Union[typing.Set[
|
|
17450
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17451
17451
|
"""
|
|
17452
17452
|
|
|
17453
17453
|
def poll(self, context: typing.Optional["Context"]) -> bool:
|
|
@@ -17919,10 +17919,10 @@ class Macro(bpy_struct):
|
|
|
17919
17919
|
:type: typing.Union[str, typing.Any]
|
|
17920
17920
|
"""
|
|
17921
17921
|
|
|
17922
|
-
bl_options: typing.Union[typing.Set[
|
|
17922
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17923
17923
|
""" Options for this operator type
|
|
17924
17924
|
|
|
17925
|
-
:type: typing.Union[typing.Set[
|
|
17925
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17926
17926
|
"""
|
|
17927
17927
|
|
|
17928
17928
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -17957,13 +17957,13 @@ class Macro(bpy_struct):
|
|
|
17957
17957
|
|
|
17958
17958
|
def report(
|
|
17959
17959
|
self,
|
|
17960
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
17960
|
+
type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]],
|
|
17961
17961
|
message: typing.Union[str, typing.Any],
|
|
17962
17962
|
):
|
|
17963
17963
|
"""report
|
|
17964
17964
|
|
|
17965
17965
|
:param type: Type
|
|
17966
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
17966
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
17967
17967
|
:param message: Report Message
|
|
17968
17968
|
:type message: typing.Union[str, typing.Any]
|
|
17969
17969
|
"""
|
|
@@ -23113,10 +23113,10 @@ class Operator(bpy_struct):
|
|
|
23113
23113
|
:type: typing.Union[str, typing.Any]
|
|
23114
23114
|
"""
|
|
23115
23115
|
|
|
23116
|
-
bl_options: typing.Union[typing.Set[
|
|
23116
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23117
23117
|
""" Options for this operator type
|
|
23118
23118
|
|
|
23119
|
-
:type: typing.Union[typing.Set[
|
|
23119
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23120
23120
|
"""
|
|
23121
23121
|
|
|
23122
23122
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -23175,13 +23175,13 @@ class Operator(bpy_struct):
|
|
|
23175
23175
|
|
|
23176
23176
|
def report(
|
|
23177
23177
|
self,
|
|
23178
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
23178
|
+
type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]],
|
|
23179
23179
|
message: typing.Union[str, typing.Any],
|
|
23180
23180
|
):
|
|
23181
23181
|
"""report
|
|
23182
23182
|
|
|
23183
23183
|
:param type: Type
|
|
23184
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
23184
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
23185
23185
|
:param message: Report Message
|
|
23186
23186
|
:type message: typing.Union[str, typing.Any]
|
|
23187
23187
|
"""
|
|
@@ -23207,12 +23207,12 @@ class Operator(bpy_struct):
|
|
|
23207
23207
|
|
|
23208
23208
|
def execute(
|
|
23209
23209
|
self, context: "Context"
|
|
23210
|
-
) -> typing.Union[typing.Set[
|
|
23210
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
23211
23211
|
"""Execute the operator
|
|
23212
23212
|
|
|
23213
23213
|
:param context:
|
|
23214
23214
|
:type context: 'Context'
|
|
23215
|
-
:rtype: typing.Union[typing.Set[
|
|
23215
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23216
23216
|
:return: result
|
|
23217
23217
|
"""
|
|
23218
23218
|
...
|
|
@@ -23229,28 +23229,28 @@ class Operator(bpy_struct):
|
|
|
23229
23229
|
|
|
23230
23230
|
def invoke(
|
|
23231
23231
|
self, context: "Context", event: "Event"
|
|
23232
|
-
) -> typing.Union[typing.Set[
|
|
23232
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
23233
23233
|
"""Invoke the operator
|
|
23234
23234
|
|
|
23235
23235
|
:param context:
|
|
23236
23236
|
:type context: 'Context'
|
|
23237
23237
|
:param event:
|
|
23238
23238
|
:type event: 'Event'
|
|
23239
|
-
:rtype: typing.Union[typing.Set[
|
|
23239
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23240
23240
|
:return: result
|
|
23241
23241
|
"""
|
|
23242
23242
|
...
|
|
23243
23243
|
|
|
23244
23244
|
def modal(
|
|
23245
23245
|
self, context: "Context", event: "Event"
|
|
23246
|
-
) -> typing.Union[typing.Set[
|
|
23246
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
23247
23247
|
"""Modal operator function
|
|
23248
23248
|
|
|
23249
23249
|
:param context:
|
|
23250
23250
|
:type context: 'Context'
|
|
23251
23251
|
:param event:
|
|
23252
23252
|
:type event: 'Event'
|
|
23253
|
-
:rtype: typing.Union[typing.Set[
|
|
23253
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23254
23254
|
:return: result
|
|
23255
23255
|
"""
|
|
23256
23256
|
...
|
|
@@ -29150,13 +29150,13 @@ class RenderEngine(bpy_struct):
|
|
|
29150
29150
|
|
|
29151
29151
|
def report(
|
|
29152
29152
|
self,
|
|
29153
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
29153
|
+
type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]],
|
|
29154
29154
|
message: typing.Union[str, typing.Any],
|
|
29155
29155
|
):
|
|
29156
29156
|
"""Report info, warning or error messages
|
|
29157
29157
|
|
|
29158
29158
|
:param type: Type
|
|
29159
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
29159
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
29160
29160
|
:param message: Report Message
|
|
29161
29161
|
:type message: typing.Union[str, typing.Any]
|
|
29162
29162
|
"""
|
|
@@ -40317,10 +40317,10 @@ class ToolSettings(bpy_struct):
|
|
|
40317
40317
|
:type: typing.Union[str, int]
|
|
40318
40318
|
"""
|
|
40319
40319
|
|
|
40320
|
-
snap_elements: typing.Union[typing.Set[
|
|
40320
|
+
snap_elements: typing.Union[typing.Set[int], typing.Set[str]]
|
|
40321
40321
|
""" Type of element to snap to
|
|
40322
40322
|
|
|
40323
|
-
:type: typing.Union[typing.Set[
|
|
40323
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
40324
40324
|
"""
|
|
40325
40325
|
|
|
40326
40326
|
snap_elements_base: typing.Union[typing.Set[str], typing.Set[int]]
|
|
@@ -65423,14 +65423,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65423
65423
|
@classmethod
|
|
65424
65424
|
def invoke_props_popup(
|
|
65425
65425
|
cls, operator: typing.Optional["Operator"], event: typing.Optional["Event"]
|
|
65426
|
-
) -> typing.Union[typing.Set[
|
|
65426
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65427
65427
|
"""Operator popup invoke (show operator properties and execute it automatically on changes)
|
|
65428
65428
|
|
|
65429
65429
|
:param operator: Operator to call
|
|
65430
65430
|
:type operator: typing.Optional['Operator']
|
|
65431
65431
|
:param event: Event
|
|
65432
65432
|
:type event: typing.Optional['Event']
|
|
65433
|
-
:rtype: typing.Union[typing.Set[
|
|
65433
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65434
65434
|
:return: result
|
|
65435
65435
|
"""
|
|
65436
65436
|
...
|
|
@@ -65444,7 +65444,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
65444
65444
|
confirm_text: typing.Union[str, typing.Any] = "",
|
|
65445
65445
|
text_ctxt: typing.Optional[typing.Union[str, typing.Any]] = "",
|
|
65446
65446
|
translate: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
65447
|
-
) -> typing.Union[typing.Set[
|
|
65447
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65448
65448
|
"""Operator dialog (non-autoexec popup) invoke (show operator properties and only execute it on click on OK button)
|
|
65449
65449
|
|
|
65450
65450
|
:param operator: Operator to call
|
|
@@ -65459,7 +65459,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
65459
65459
|
:type text_ctxt: typing.Optional[typing.Union[str, typing.Any]]
|
|
65460
65460
|
:param translate: Translate the given text, when UI translation is enabled
|
|
65461
65461
|
:type translate: typing.Optional[typing.Union[bool, typing.Any]]
|
|
65462
|
-
:rtype: typing.Union[typing.Set[
|
|
65462
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65463
65463
|
:return: result
|
|
65464
65464
|
"""
|
|
65465
65465
|
...
|
|
@@ -65478,14 +65478,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65478
65478
|
cls,
|
|
65479
65479
|
operator: typing.Optional["Operator"],
|
|
65480
65480
|
width: typing.Optional[typing.Any] = 300,
|
|
65481
|
-
) -> typing.Union[typing.Set[
|
|
65481
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65482
65482
|
"""Operator popup invoke (only shows operator's properties, without executing it)
|
|
65483
65483
|
|
|
65484
65484
|
:param operator: Operator to call
|
|
65485
65485
|
:type operator: typing.Optional['Operator']
|
|
65486
65486
|
:param width: Width of the popup
|
|
65487
65487
|
:type width: typing.Optional[typing.Any]
|
|
65488
|
-
:rtype: typing.Union[typing.Set[
|
|
65488
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65489
65489
|
:return: result
|
|
65490
65490
|
"""
|
|
65491
65491
|
...
|
|
@@ -65501,7 +65501,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
65501
65501
|
icon: typing.Optional[typing.Any] = "WARNING",
|
|
65502
65502
|
text_ctxt: typing.Optional[typing.Union[str, typing.Any]] = "",
|
|
65503
65503
|
translate: typing.Optional[typing.Union[bool, typing.Any]] = True,
|
|
65504
|
-
) -> typing.Union[typing.Set[
|
|
65504
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65505
65505
|
"""Operator confirmation popup (only to let user confirm the execution, no operator properties shown)
|
|
65506
65506
|
|
|
65507
65507
|
:param operator: Operator to call
|
|
@@ -65520,7 +65520,7 @@ class WindowManager(ID, bpy_struct):
|
|
|
65520
65520
|
:type text_ctxt: typing.Optional[typing.Union[str, typing.Any]]
|
|
65521
65521
|
:param translate: Translate the given text, when UI translation is enabled
|
|
65522
65522
|
:type translate: typing.Optional[typing.Union[bool, typing.Any]]
|
|
65523
|
-
:rtype: typing.Union[typing.Set[
|
|
65523
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65524
65524
|
:return: result
|
|
65525
65525
|
"""
|
|
65526
65526
|
...
|
|
@@ -68555,10 +68555,10 @@ class DecimateModifier(Modifier, bpy_struct):
|
|
|
68555
68555
|
:type: typing.Union[str, int]
|
|
68556
68556
|
"""
|
|
68557
68557
|
|
|
68558
|
-
delimit: typing.Union[typing.Set[
|
|
68558
|
+
delimit: typing.Union[typing.Set[int], typing.Set[str]]
|
|
68559
68559
|
""" Limit merging geometry
|
|
68560
68560
|
|
|
68561
|
-
:type: typing.Union[typing.Set[
|
|
68561
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
68562
68562
|
"""
|
|
68563
68563
|
|
|
68564
68564
|
face_count: int
|
|
@@ -70942,10 +70942,10 @@ class MeshCacheModifier(Modifier, bpy_struct):
|
|
|
70942
70942
|
:type: typing.Union[str, typing.Any]
|
|
70943
70943
|
"""
|
|
70944
70944
|
|
|
70945
|
-
flip_axis: typing.Union[typing.Set[
|
|
70945
|
+
flip_axis: typing.Union[typing.Set[int], typing.Set[str]]
|
|
70946
70946
|
"""
|
|
70947
70947
|
|
|
70948
|
-
:type: typing.Union[typing.Set[
|
|
70948
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
70949
70949
|
"""
|
|
70950
70950
|
|
|
70951
70951
|
forward_axis: typing.Union[str, int]
|
|
@@ -110399,10 +110399,10 @@ class GeometryNodeCurveHandleTypeSelection(
|
|
|
110399
110399
|
:type: typing.Union[str, int]
|
|
110400
110400
|
"""
|
|
110401
110401
|
|
|
110402
|
-
mode: typing.Union[typing.Set[
|
|
110402
|
+
mode: typing.Union[typing.Set[int], typing.Set[str]]
|
|
110403
110403
|
""" Whether to check the type of left and right handles
|
|
110404
110404
|
|
|
110405
|
-
:type: typing.Union[typing.Set[
|
|
110405
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
110406
110406
|
"""
|
|
110407
110407
|
|
|
110408
110408
|
@classmethod
|
|
@@ -110935,10 +110935,10 @@ class GeometryNodeCurveSetHandles(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
110935
110935
|
:type: typing.Union[str, int]
|
|
110936
110936
|
"""
|
|
110937
110937
|
|
|
110938
|
-
mode: typing.Union[typing.Set[
|
|
110938
|
+
mode: typing.Union[typing.Set[int], typing.Set[str]]
|
|
110939
110939
|
""" Whether to update left and right handles
|
|
110940
110940
|
|
|
110941
|
-
:type: typing.Union[typing.Set[
|
|
110941
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
110942
110942
|
"""
|
|
110943
110943
|
|
|
110944
110944
|
@classmethod
|
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 node_shader_utils
|
|
14
13
|
from . import extensions
|
|
15
|
-
from . import
|
|
14
|
+
from . import node_shader_utils
|
|
16
15
|
from . import wm_utils
|
|
16
|
+
from . import bmesh_utils
|
|
17
17
|
|
|
18
18
|
GenericType = typing.TypeVar("GenericType")
|
|
@@ -18,7 +18,7 @@ bl_console_utils/autocomplete/complete_calltip/__init__.pyi,sha256=Rw2uA3ktL5R--
|
|
|
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=_ZMDEFOE0c2BeBq76xNjP9nvvkvMIAhaUhZZv2dibts,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=JFmCritsbNmnxwZgK1e1B0_jMN5zxD8CCqpNyudRgM0,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=WxugZimk32hO-lcIaDLFcY7M--GS0cT8jx24YCaF3c4,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=erkCEuaaKaLuIsSZsEte4Z_I0Xj1p3nxRspKqpJk-dU,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=NueTVhcSnz7Cgzo_iG7uvCHf8HbOarIj8-uz79zg-LA,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=BDbWTyvOqmAQ7XS3QVdMa1UTj-6Ly4z5dnmWMXQGRWg,324
|
|
173
173
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
174
|
-
bpy/app/__init__.pyi,sha256=
|
|
174
|
+
bpy/app/__init__.pyi,sha256=47HcpzFrNAQslwiHHLrnL502wT0rg7JJZeIdWlT0wOg,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=UfGuVbmxBjnc6CpV5ibD90oTEY6P8qL7jiZ0KbCdEPw,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=2_M7tfBXf-tnBrNU8riigtKi9zlFeUFYFsCD04Be9Fk,3452829
|
|
261
|
+
bpy/utils/__init__.pyi,sha256=S2hFPTK7VxdKWwqEvYzTRNHFXb6MMbLjufe8_Ib4clo,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=BnkCf8RJA-Oo6r5roPzKCf4jLx_CJwzh1zPhfgc2CPA,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-20240212.dist-info/METADATA,sha256=ILX4jJnGleeZul_0HntbIRwbnQE9dJNtkbqObnRTCI4,7008
|
|
347
|
+
fake_bpy_module-20240212.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
348
|
+
fake_bpy_module-20240212.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
349
|
+
fake_bpy_module-20240212.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|