fake-bpy-module 20231206__py3-none-any.whl → 20231207__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 +5 -5
- bl_keymap_utils/__init__.pyi +3 -3
- bl_operators/__init__.pyi +22 -22
- bl_ui/__init__.pyi +60 -60
- bl_ui_utils/__init__.pyi +1 -1
- bpy/__init__.pyi +2 -2
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +65 -65
- bpy/ops/uv/__init__.pyi +1 -1
- bpy/types/__init__.pyi +75 -73
- bpy/utils/__init__.pyi +1 -1
- bpy_extras/__init__.pyi +1 -1
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20231206.dist-info → fake_bpy_module-20231207.dist-info}/METADATA +1 -1
- {fake_bpy_module-20231206.dist-info → fake_bpy_module-20231207.dist-info}/RECORD +18 -18
- {fake_bpy_module-20231206.dist-info → fake_bpy_module-20231207.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20231206.dist-info → fake_bpy_module-20231207.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 utils_rtl
|
|
4
|
-
from . import utils_cli
|
|
5
|
-
from . import settings
|
|
6
|
-
from . import utils
|
|
7
|
-
from . import utils_languages_menu
|
|
8
3
|
from . import merge_po
|
|
4
|
+
from . import utils_languages_menu
|
|
5
|
+
from . import settings
|
|
9
6
|
from . import bl_extract_messages
|
|
7
|
+
from . import utils
|
|
8
|
+
from . import utils_rtl
|
|
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 platform_helpers
|
|
4
|
-
from . import io
|
|
5
3
|
from . import keymap_from_toolbar
|
|
6
|
-
from . import
|
|
4
|
+
from . import io
|
|
7
5
|
from . import keymap_hierarchy
|
|
6
|
+
from . import platform_helpers
|
|
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
|
|
3
|
+
from . import rigidbody
|
|
4
|
+
from . import presets
|
|
5
|
+
from . import freestyle
|
|
6
|
+
from . import geometry_nodes
|
|
4
7
|
from . import clip
|
|
5
|
-
from . import
|
|
8
|
+
from . import mesh
|
|
6
9
|
from . import node
|
|
7
|
-
from . import
|
|
8
|
-
from . import
|
|
9
|
-
from . import sequencer
|
|
10
|
-
from . import bmesh
|
|
11
|
-
from . import image
|
|
12
|
-
from . import anim
|
|
13
|
-
from . import uvcalc_lightmap
|
|
14
|
-
from . import constraint
|
|
10
|
+
from . import screen_play_rendered_anim
|
|
11
|
+
from . import object_randomize_transform
|
|
15
12
|
from . import spreadsheet
|
|
16
|
-
from . import geometry_nodes
|
|
17
|
-
from . import presets
|
|
18
|
-
from . import add_mesh_torus
|
|
19
|
-
from . import wm
|
|
20
|
-
from . import rigidbody
|
|
21
|
-
from . import view3d
|
|
22
13
|
from . import console
|
|
23
|
-
from . import
|
|
24
|
-
from . import
|
|
14
|
+
from . import view3d
|
|
15
|
+
from . import file
|
|
25
16
|
from . import vertexpaint_dirt
|
|
17
|
+
from . import object
|
|
18
|
+
from . import object_quick_effects
|
|
19
|
+
from . import assets
|
|
26
20
|
from . import uvcalc_follow_active
|
|
27
|
-
from . import freestyle
|
|
28
21
|
from . import userpref
|
|
29
|
-
from . import
|
|
30
|
-
from . import
|
|
31
|
-
from . import
|
|
22
|
+
from . import add_mesh_torus
|
|
23
|
+
from . import image
|
|
24
|
+
from . import anim
|
|
25
|
+
from . import object_align
|
|
26
|
+
from . import wm
|
|
27
|
+
from . import constraint
|
|
28
|
+
from . import uvcalc_lightmap
|
|
29
|
+
from . import sequencer
|
|
30
|
+
from . import bmesh
|
|
31
|
+
from . import uvcalc_transform
|
|
32
32
|
|
|
33
33
|
GenericType = typing.TypeVar("GenericType")
|
|
34
34
|
|
bl_ui/__init__.pyi
CHANGED
|
@@ -2,81 +2,81 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import bpy_types
|
|
4
4
|
|
|
5
|
-
from . import properties_particle
|
|
6
|
-
from . import properties_physics_common
|
|
7
|
-
from . import space_clip
|
|
8
|
-
from . import space_sequencer
|
|
9
|
-
from . import properties_data_lightprobe
|
|
10
|
-
from . import properties_physics_field
|
|
11
|
-
from . import properties_material
|
|
12
|
-
from . import space_properties
|
|
13
|
-
from . import node_add_menu
|
|
14
|
-
from . import space_nla
|
|
15
|
-
from . import properties_data_lattice
|
|
16
|
-
from . import properties_data_gpencil
|
|
17
5
|
from . import properties_data_grease_pencil
|
|
18
|
-
from . import
|
|
19
|
-
from . import
|
|
20
|
-
from . import
|
|
6
|
+
from . import properties_data_empty
|
|
7
|
+
from . import properties_render
|
|
8
|
+
from . import space_properties
|
|
21
9
|
from . import properties_data_volume
|
|
22
|
-
from . import
|
|
23
|
-
from . import properties_data_metaball
|
|
24
|
-
from . import properties_workspace
|
|
25
|
-
from . import space_node
|
|
26
|
-
from . import properties_constraint
|
|
27
|
-
from . import properties_world
|
|
28
|
-
from . import space_info
|
|
29
|
-
from . import properties_data_bone
|
|
30
|
-
from . import space_view3d_toolbar
|
|
31
|
-
from . import properties_physics_fluid
|
|
10
|
+
from . import properties_data_mesh
|
|
32
11
|
from . import properties_physics_cloth
|
|
33
|
-
from . import
|
|
34
|
-
from . import
|
|
35
|
-
from . import
|
|
36
|
-
from . import
|
|
37
|
-
from . import
|
|
38
|
-
from . import properties_collection
|
|
39
|
-
from . import generic_ui_list
|
|
40
|
-
from . import space_text
|
|
12
|
+
from . import properties_grease_pencil_common
|
|
13
|
+
from . import space_clip
|
|
14
|
+
from . import space_filebrowser
|
|
15
|
+
from . import properties_data_lattice
|
|
16
|
+
from . import properties_animviz
|
|
41
17
|
from . import properties_data_curves
|
|
42
|
-
from . import node_add_menu_shader
|
|
43
18
|
from . import space_userpref
|
|
44
|
-
from . import node_add_menu_compositor
|
|
45
|
-
from . import properties_physics_dynamicpaint
|
|
46
|
-
from . import properties_data_shaderfx
|
|
47
|
-
from . import properties_data_empty
|
|
48
|
-
from . import properties_data_modifier
|
|
49
|
-
from . import properties_data_mesh
|
|
50
|
-
from . import properties_scene
|
|
51
|
-
from . import properties_freestyle
|
|
52
19
|
from . import space_graph
|
|
53
|
-
from . import space_topbar
|
|
54
|
-
from . import node_add_menu_texture
|
|
55
|
-
from . import properties_physics_rigidbody_constraint
|
|
56
|
-
from . import space_toolsystem_common
|
|
57
|
-
from . import space_filebrowser
|
|
58
|
-
from . import space_image
|
|
59
20
|
from . import properties_paint_common
|
|
60
|
-
from . import
|
|
61
|
-
from . import
|
|
21
|
+
from . import node_add_menu_shader
|
|
22
|
+
from . import properties_physics_field
|
|
23
|
+
from . import properties_material
|
|
24
|
+
from . import asset_shelf
|
|
25
|
+
from . import node_add_menu
|
|
62
26
|
from . import properties_output
|
|
63
|
-
from . import
|
|
27
|
+
from . import space_node
|
|
28
|
+
from . import properties_workspace
|
|
29
|
+
from . import properties_texture
|
|
30
|
+
from . import space_toolsystem_common
|
|
31
|
+
from . import node_add_menu_texture
|
|
32
|
+
from . import space_info
|
|
33
|
+
from . import properties_constraint
|
|
34
|
+
from . import properties_physics_rigidbody_constraint
|
|
35
|
+
from . import properties_material_gpencil
|
|
64
36
|
from . import properties_data_pointcloud
|
|
65
|
-
from . import
|
|
37
|
+
from . import space_spreadsheet
|
|
38
|
+
from . import space_sequencer
|
|
39
|
+
from . import space_dopesheet
|
|
40
|
+
from . import properties_data_modifier
|
|
41
|
+
from . import properties_collection
|
|
42
|
+
from . import properties_data_lightprobe
|
|
43
|
+
from . import properties_data_light
|
|
44
|
+
from . import properties_world
|
|
45
|
+
from . import properties_data_metaball
|
|
46
|
+
from . import properties_data_camera
|
|
66
47
|
from . import space_toolsystem_toolbar
|
|
67
|
-
from . import
|
|
68
|
-
from . import
|
|
48
|
+
from . import space_nla
|
|
49
|
+
from . import properties_mask_common
|
|
50
|
+
from . import properties_data_speaker
|
|
51
|
+
from . import properties_physics_geometry_nodes
|
|
52
|
+
from . import properties_physics_softbody
|
|
69
53
|
from . import properties_physics_rigidbody
|
|
70
|
-
from . import
|
|
71
|
-
from . import
|
|
72
|
-
from . import utils
|
|
73
|
-
from . import space_spreadsheet
|
|
54
|
+
from . import space_topbar
|
|
55
|
+
from . import generic_ui_list
|
|
74
56
|
from . import space_time
|
|
75
|
-
from . import properties_physics_softbody
|
|
76
57
|
from . import space_console
|
|
58
|
+
from . import properties_freestyle
|
|
59
|
+
from . import space_outliner
|
|
60
|
+
from . import properties_data_bone
|
|
77
61
|
from . import node_add_menu_geometry
|
|
62
|
+
from . import properties_physics_dynamicpaint
|
|
63
|
+
from . import node_add_menu_compositor
|
|
64
|
+
from . import space_image
|
|
65
|
+
from . import space_view3d
|
|
66
|
+
from . import properties_data_shaderfx
|
|
67
|
+
from . import properties_scene
|
|
68
|
+
from . import properties_data_curve
|
|
78
69
|
from . import space_statusbar
|
|
79
|
-
from . import
|
|
70
|
+
from . import space_view3d_toolbar
|
|
71
|
+
from . import properties_view_layer
|
|
72
|
+
from . import properties_physics_common
|
|
73
|
+
from . import space_text
|
|
74
|
+
from . import properties_data_gpencil
|
|
75
|
+
from . import utils
|
|
76
|
+
from . import properties_particle
|
|
77
|
+
from . import properties_object
|
|
78
|
+
from . import properties_data_armature
|
|
79
|
+
from . import properties_physics_fluid
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
|
82
82
|
|
bl_ui_utils/__init__.pyi
CHANGED
bpy/__init__.pyi
CHANGED
|
@@ -4,11 +4,11 @@ import bpy.types
|
|
|
4
4
|
|
|
5
5
|
from . import types
|
|
6
6
|
from . import ops
|
|
7
|
-
from . import msgbus
|
|
8
7
|
from . import app
|
|
8
|
+
from . import path
|
|
9
9
|
from . import utils
|
|
10
|
+
from . import msgbus
|
|
10
11
|
from . import props
|
|
11
|
-
from . import path
|
|
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 gpencil
|
|
4
|
-
from . import info
|
|
5
|
-
from . import curves
|
|
6
|
-
from . import particle
|
|
7
|
-
from . import text_editor
|
|
8
|
-
from . import spreadsheet
|
|
9
|
-
from . import buttons
|
|
10
|
-
from . import console
|
|
11
|
-
from . import preferences
|
|
12
|
-
from . import cycles
|
|
13
|
-
from . import workspace
|
|
14
|
-
from . import rigidbody
|
|
15
|
-
from . import text
|
|
16
|
-
from . import import_curve
|
|
17
|
-
from . import ed
|
|
18
|
-
from . import transform
|
|
19
|
-
from . import sound
|
|
20
|
-
from . import import_scene
|
|
21
|
-
from . import gizmogroup
|
|
22
|
-
from . import export_anim
|
|
23
|
-
from . import uilist
|
|
24
|
-
from . import export_mesh
|
|
25
|
-
from . import grease_pencil
|
|
26
|
-
from . import render
|
|
27
|
-
from . import import_mesh
|
|
28
|
-
from . import fluid
|
|
29
|
-
from . import import_anim
|
|
30
3
|
from . import sculpt_curves
|
|
31
|
-
from . import
|
|
32
|
-
from . import
|
|
4
|
+
from . import surface
|
|
5
|
+
from . import sequencer
|
|
6
|
+
from . import lattice
|
|
7
|
+
from . import mask
|
|
33
8
|
from . import view2d
|
|
34
|
-
from . import file
|
|
35
|
-
from . import node
|
|
36
|
-
from . import paintcurve
|
|
37
9
|
from . import geometry
|
|
38
|
-
from . import
|
|
39
|
-
from . import
|
|
40
|
-
from . import camera
|
|
41
|
-
from . import asset
|
|
10
|
+
from . import cachefile
|
|
11
|
+
from . import brush
|
|
42
12
|
from . import world
|
|
43
|
-
from . import
|
|
44
|
-
from . import
|
|
45
|
-
from . import
|
|
46
|
-
from . import
|
|
13
|
+
from . import transform
|
|
14
|
+
from . import rigidbody
|
|
15
|
+
from . import outliner
|
|
16
|
+
from . import node
|
|
17
|
+
from . import poselib
|
|
18
|
+
from . import view3d
|
|
19
|
+
from . import object
|
|
20
|
+
from . import preferences
|
|
21
|
+
from . import ptcache
|
|
22
|
+
from . import action
|
|
23
|
+
from . import import_curve
|
|
24
|
+
from . import gizmogroup
|
|
47
25
|
from . import collection
|
|
48
|
-
from . import
|
|
49
|
-
from . import
|
|
50
|
-
from . import
|
|
51
|
-
from . import
|
|
52
|
-
from . import constraint
|
|
53
|
-
from . import surface
|
|
54
|
-
from . import lattice
|
|
55
|
-
from . import screen
|
|
26
|
+
from . import script
|
|
27
|
+
from . import spreadsheet
|
|
28
|
+
from . import uv
|
|
29
|
+
from . import cloth
|
|
56
30
|
from . import paint
|
|
31
|
+
from . import sound
|
|
32
|
+
from . import clip
|
|
33
|
+
from . import font
|
|
34
|
+
from . import buttons
|
|
35
|
+
from . import boid
|
|
36
|
+
from . import marker
|
|
37
|
+
from . import text_editor
|
|
38
|
+
from . import nla
|
|
39
|
+
from . import curves
|
|
40
|
+
from . import export_anim
|
|
41
|
+
from . import image
|
|
42
|
+
from . import palette
|
|
57
43
|
from . import mesh
|
|
58
|
-
from . import
|
|
59
|
-
from . import
|
|
44
|
+
from . import workspace
|
|
45
|
+
from . import export_scene
|
|
46
|
+
from . import export_mesh
|
|
47
|
+
from . import camera
|
|
48
|
+
from . import cycles
|
|
60
49
|
from . import curve
|
|
50
|
+
from . import ui
|
|
61
51
|
from . import anim
|
|
62
|
-
from . import
|
|
52
|
+
from . import import_anim
|
|
53
|
+
from . import particle
|
|
54
|
+
from . import import_scene
|
|
55
|
+
from . import info
|
|
56
|
+
from . import gpencil
|
|
57
|
+
from . import texture
|
|
58
|
+
from . import constraint
|
|
59
|
+
from . import asset
|
|
60
|
+
from . import render
|
|
61
|
+
from . import dpaint
|
|
62
|
+
from . import uilist
|
|
63
|
+
from . import graph
|
|
63
64
|
from . import sculpt
|
|
65
|
+
from . import paintcurve
|
|
66
|
+
from . import screen
|
|
67
|
+
from . import import_mesh
|
|
68
|
+
from . import file
|
|
69
|
+
from . import wm
|
|
70
|
+
from . import fluid
|
|
71
|
+
from . import mball
|
|
64
72
|
from . import scene
|
|
65
|
-
from . import clip
|
|
66
|
-
from . import graph
|
|
67
|
-
from . import cachefile
|
|
68
|
-
from . import palette
|
|
69
|
-
from . import sequencer
|
|
70
73
|
from . import pose
|
|
71
|
-
from . import
|
|
72
|
-
from . import
|
|
73
|
-
from . import
|
|
74
|
-
from . import
|
|
75
|
-
from . import
|
|
76
|
-
from . import
|
|
77
|
-
from . import ptcache
|
|
78
|
-
from . import view3d
|
|
79
|
-
from . import brush
|
|
74
|
+
from . import armature
|
|
75
|
+
from . import ed
|
|
76
|
+
from . import text
|
|
77
|
+
from . import material
|
|
78
|
+
from . import grease_pencil
|
|
79
|
+
from . import console
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
bpy/ops/uv/__init__.pyi
CHANGED
|
@@ -225,7 +225,7 @@ def follow_active_quads(
|
|
|
225
225
|
undo: typing.Optional[bool] = None,
|
|
226
226
|
*,
|
|
227
227
|
mode: typing.Optional[typing.Any] = 'LENGTH_AVERAGE'):
|
|
228
|
-
''' Follow UVs from active quads along continuous face loops :File: `startup/bl_operators/uvcalc_follow_active.py\:
|
|
228
|
+
''' Follow UVs from active quads along continuous face loops :File: `startup/bl_operators/uvcalc_follow_active.py\:273 <https://projects.blender.org/blender/blender/src/branch/main/scripts/startup/bl_operators/uvcalc_follow_active.py#L273>`__
|
|
229
229
|
|
|
230
230
|
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
231
231
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
bpy/types/__init__.pyi
CHANGED
|
@@ -2,93 +2,93 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import mathutils
|
|
4
4
|
import bpy
|
|
5
|
-
import bl_ui.properties_particle
|
|
6
|
-
import bl_ui.properties_physics_common
|
|
7
|
-
import bl_ui.space_clip
|
|
8
|
-
import bl_ui.space_sequencer
|
|
9
|
-
import bl_ui.properties_data_lightprobe
|
|
10
|
-
import bl_ui.properties_physics_field
|
|
11
|
-
import bl_ui.properties_material
|
|
12
|
-
import bl_ui.space_properties
|
|
13
|
-
import bl_operators.clip
|
|
14
|
-
import bl_ui.node_add_menu
|
|
15
|
-
import bl_ui.space_nla
|
|
16
|
-
import bl_ui.properties_data_lattice
|
|
17
|
-
import bl_operators.assets
|
|
18
|
-
import bl_ui.properties_data_gpencil
|
|
19
|
-
import bl_operators.node
|
|
20
5
|
import bl_ui.properties_data_grease_pencil
|
|
21
|
-
import bl_ui.
|
|
22
|
-
import bl_operators.file
|
|
23
|
-
import bl_ui.properties_view_layer
|
|
24
|
-
import bl_ui.properties_data_volume
|
|
25
|
-
import bl_ui.properties_data_light
|
|
26
|
-
import bl_ui.properties_data_metaball
|
|
27
|
-
import bl_ui.properties_workspace
|
|
28
|
-
import bl_ui.space_node
|
|
29
|
-
import bl_ui.properties_constraint
|
|
30
|
-
import bl_ui.properties_world
|
|
31
|
-
import bl_ui.space_info
|
|
32
|
-
import bl_operators.anim
|
|
33
|
-
import bl_ui.properties_data_bone
|
|
34
|
-
import bl_ui.space_view3d_toolbar
|
|
35
|
-
import bl_ui.properties_physics_fluid
|
|
36
|
-
import bl_ui.properties_physics_cloth
|
|
37
|
-
import bl_operators.constraint
|
|
38
|
-
import bl_operators.spreadsheet
|
|
39
|
-
import bl_ui.space_view3d
|
|
40
|
-
import bl_ui.properties_mask_common
|
|
41
|
-
import bl_ui.properties_texture
|
|
6
|
+
import bl_ui.properties_data_empty
|
|
42
7
|
import bl_ui.properties_render
|
|
8
|
+
import bl_ui.space_properties
|
|
9
|
+
import bl_ui.properties_data_volume
|
|
43
10
|
import bl_operators.presets
|
|
44
|
-
import bl_ui.
|
|
11
|
+
import bl_ui.properties_data_mesh
|
|
12
|
+
import bl_operators.freestyle
|
|
13
|
+
import bl_ui.properties_physics_cloth
|
|
14
|
+
import bl_ui.properties_grease_pencil_common
|
|
15
|
+
import bl_operators.clip
|
|
16
|
+
import bl_ui.space_clip
|
|
17
|
+
import bl_ui.space_filebrowser
|
|
18
|
+
import bl_operators.node
|
|
19
|
+
import bl_ui.properties_data_lattice
|
|
45
20
|
import bl_ui
|
|
46
|
-
import bl_ui.properties_collection
|
|
47
|
-
import bl_operators.wm
|
|
48
|
-
import bl_ui.generic_ui_list
|
|
49
|
-
import bl_ui.space_text
|
|
50
21
|
import bl_ui.properties_data_curves
|
|
51
|
-
import bl_ui.node_add_menu_shader
|
|
52
|
-
import bl_operators.view3d
|
|
53
22
|
import bl_ui.space_userpref
|
|
54
|
-
import bl_ui.node_add_menu_compositor
|
|
55
|
-
import bl_ui.properties_physics_dynamicpaint
|
|
56
|
-
import bl_operators.object
|
|
57
|
-
import bl_ui.properties_data_shaderfx
|
|
58
|
-
import bl_ui.properties_data_empty
|
|
59
|
-
import bl_ui.properties_data_modifier
|
|
60
|
-
import bl_ui.properties_data_mesh
|
|
61
|
-
import bl_ui.properties_scene
|
|
62
|
-
import bl_operators.freestyle
|
|
63
|
-
import bl_ui.properties_freestyle
|
|
64
23
|
import bl_ui.space_graph
|
|
65
|
-
import bl_ui.space_topbar
|
|
66
|
-
import bl_ui.node_add_menu_texture
|
|
67
|
-
import bl_ui.properties_physics_rigidbody_constraint
|
|
68
|
-
import bl_ui.space_toolsystem_common
|
|
69
|
-
import bl_ui.space_filebrowser
|
|
70
|
-
import bl_ui.space_image
|
|
71
24
|
import bl_ui.properties_paint_common
|
|
72
|
-
import bl_ui.
|
|
73
|
-
import bl_ui.
|
|
74
|
-
import
|
|
25
|
+
import bl_ui.node_add_menu_shader
|
|
26
|
+
import bl_ui.properties_physics_field
|
|
27
|
+
import bl_ui.properties_material
|
|
28
|
+
import bl_ui.asset_shelf
|
|
29
|
+
import bl_operators.spreadsheet
|
|
30
|
+
import bl_ui.node_add_menu
|
|
75
31
|
import bl_ui.properties_output
|
|
76
|
-
import bl_ui.
|
|
32
|
+
import bl_ui.space_node
|
|
33
|
+
import bl_ui.properties_workspace
|
|
34
|
+
import bl_ui.properties_texture
|
|
35
|
+
import bl_ui.space_toolsystem_common
|
|
36
|
+
import bl_operators.view3d
|
|
37
|
+
import bl_ui.node_add_menu_texture
|
|
38
|
+
import bl_ui.space_info
|
|
39
|
+
import bl_ui.properties_constraint
|
|
40
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
41
|
+
import bl_operators.file
|
|
42
|
+
import bl_ui.properties_material_gpencil
|
|
77
43
|
import bl_ui.properties_data_pointcloud
|
|
78
|
-
import bl_ui.
|
|
44
|
+
import bl_ui.space_spreadsheet
|
|
45
|
+
import bl_operators.object
|
|
46
|
+
import bl_ui.space_sequencer
|
|
47
|
+
import bl_ui.space_dopesheet
|
|
48
|
+
import bl_ui.properties_data_modifier
|
|
49
|
+
import bl_ui.properties_collection
|
|
50
|
+
import bl_ui.properties_data_lightprobe
|
|
51
|
+
import bl_ui.properties_data_light
|
|
52
|
+
import bl_operators.assets
|
|
53
|
+
import bl_ui.properties_world
|
|
54
|
+
import bl_ui.properties_data_metaball
|
|
55
|
+
import bl_ui.properties_data_camera
|
|
79
56
|
import bl_ui.space_toolsystem_toolbar
|
|
80
|
-
import bl_ui.
|
|
81
|
-
import
|
|
57
|
+
import bl_ui.space_nla
|
|
58
|
+
import bl_operators.userpref
|
|
59
|
+
import bl_ui.properties_mask_common
|
|
60
|
+
import bl_ui.properties_data_speaker
|
|
61
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
62
|
+
import bl_ui.properties_physics_softbody
|
|
63
|
+
import bl_operators.anim
|
|
82
64
|
import bl_ui.properties_physics_rigidbody
|
|
83
|
-
import bl_ui.
|
|
84
|
-
import bl_ui.
|
|
85
|
-
import bl_ui.space_spreadsheet
|
|
65
|
+
import bl_ui.space_topbar
|
|
66
|
+
import bl_ui.generic_ui_list
|
|
86
67
|
import bl_ui.space_time
|
|
87
|
-
import bl_ui.properties_physics_softbody
|
|
88
68
|
import bl_ui.space_console
|
|
69
|
+
import bl_ui.properties_freestyle
|
|
70
|
+
import bl_operators.wm
|
|
71
|
+
import bl_operators.constraint
|
|
72
|
+
import bl_ui.space_outliner
|
|
73
|
+
import bl_ui.properties_data_bone
|
|
89
74
|
import bl_ui.node_add_menu_geometry
|
|
75
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
76
|
+
import bl_ui.node_add_menu_compositor
|
|
77
|
+
import bl_ui.space_image
|
|
78
|
+
import bl_ui.space_view3d
|
|
79
|
+
import bl_ui.properties_data_shaderfx
|
|
80
|
+
import bl_ui.properties_scene
|
|
81
|
+
import bl_ui.properties_data_curve
|
|
90
82
|
import bl_ui.space_statusbar
|
|
91
|
-
import bl_ui.
|
|
83
|
+
import bl_ui.space_view3d_toolbar
|
|
84
|
+
import bl_ui.properties_view_layer
|
|
85
|
+
import bl_ui.properties_physics_common
|
|
86
|
+
import bl_ui.space_text
|
|
87
|
+
import bl_ui.properties_data_gpencil
|
|
88
|
+
import bl_ui.properties_particle
|
|
89
|
+
import bl_ui.properties_object
|
|
90
|
+
import bl_ui.properties_data_armature
|
|
91
|
+
import bl_ui.properties_physics_fluid
|
|
92
92
|
|
|
93
93
|
GenericType = typing.TypeVar("GenericType")
|
|
94
94
|
|
|
@@ -6872,6 +6872,8 @@ class Context(bpy_struct):
|
|
|
6872
6872
|
|
|
6873
6873
|
:param window: Window override or None.
|
|
6874
6874
|
:type window: typing.Optional['Window']
|
|
6875
|
+
:param screen: Screen override or None. .. note:: Changing the screen has wider implications than other arguments as it will also change the works-space and potentially the scene (when pinned).
|
|
6876
|
+
:type screen: typing.Optional['Screen']
|
|
6875
6877
|
:param area: Area override or None.
|
|
6876
6878
|
:type area: typing.Optional['Area']
|
|
6877
6879
|
:param region: Region override or None.
|
|
@@ -45541,7 +45543,7 @@ class XrActionMapItem(bpy_struct):
|
|
|
45541
45543
|
'''
|
|
45542
45544
|
|
|
45543
45545
|
type: typing.Union[str, int]
|
|
45544
|
-
''' Action type * ``FLOAT`` Float -- Float action, representing either a digital or analog button. * ``VECTOR2D`` Vector2D -- 2D float vector action, representing a
|
|
45546
|
+
''' Action type * ``FLOAT`` Float -- Float action, representing either a digital or analog button. * ``VECTOR2D`` Vector2D -- 2D float vector action, representing a thumb-stick or track-pad. * ``POSE`` Pose -- 3D pose action, representing a controller's location and rotation. * ``VIBRATION`` Vibration -- Haptic vibration output action, to be applied with a duration, frequency, and amplitude.
|
|
45545
45547
|
|
|
45546
45548
|
:type: typing.Union[str, int]
|
|
45547
45549
|
'''
|
|
@@ -45682,7 +45684,7 @@ class XrEventData(bpy_struct):
|
|
|
45682
45684
|
'''
|
|
45683
45685
|
|
|
45684
45686
|
type: typing.Union[str, int]
|
|
45685
|
-
''' XR action type * ``FLOAT`` Float -- Float action, representing either a digital or analog button. * ``VECTOR2D`` Vector2D -- 2D float vector action, representing a
|
|
45687
|
+
''' XR action type * ``FLOAT`` Float -- Float action, representing either a digital or analog button. * ``VECTOR2D`` Vector2D -- 2D float vector action, representing a thumb-stick or track-pad. * ``POSE`` Pose -- 3D pose action, representing a controller's location and rotation. * ``VIBRATION`` Vibration -- Haptic vibration output action, to be applied with a duration, frequency, and amplitude.
|
|
45686
45688
|
|
|
45687
45689
|
:type: typing.Union[str, int]
|
|
45688
45690
|
'''
|
bpy/utils/__init__.pyi
CHANGED
bpy_extras/__init__.pyi
CHANGED
|
@@ -97,12 +97,12 @@ def bake_action_objects(object_action_pairs, *, frames: int,
|
|
|
97
97
|
|
|
98
98
|
def bake_action_objects_iter(
|
|
99
99
|
object_action_pairs: typing.
|
|
100
|
-
Union['bpy.types.Action', 'bpy.types.
|
|
100
|
+
Union['bpy.types.Action', 'bpy.types.Sequence', 'bpy.types.Object'],
|
|
101
101
|
bake_o):
|
|
102
102
|
''' An coroutine that bakes actions for multiple objects.
|
|
103
103
|
|
|
104
104
|
:param object_action_pairs: Sequence of object action tuples, action is the destination for the baked data. When None a new action will be created.
|
|
105
|
-
:type object_action_pairs: typing.Union['bpy.types.Action', 'bpy.types.
|
|
105
|
+
:type object_action_pairs: typing.Union['bpy.types.Action', 'bpy.types.Sequence', 'bpy.types.Object']
|
|
106
106
|
'''
|
|
107
107
|
|
|
108
108
|
...
|
|
@@ -14,7 +14,7 @@ bl_app_template_utils/__init__.pyi,sha256=Zn4Q5_vPUQV4SnQqSvTsOlNYEHEoZr1rx1DZvc
|
|
|
14
14
|
bl_app_template_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
bl_console_utils/__init__.pyi,sha256=qOGRa_N1-VEAf9cr60mvvxQMYSKNNSzuSQ0_TuSEq1I,97
|
|
16
16
|
bl_console_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
bl_console_utils/autocomplete/__init__.pyi,sha256=
|
|
17
|
+
bl_console_utils/autocomplete/__init__.pyi,sha256=562X75V0Fm7o54YGqhBqE-SVgMYbuY4dBlI0noBGuZE,191
|
|
18
18
|
bl_console_utils/autocomplete/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
bl_console_utils/autocomplete/complete_calltip/__init__.pyi,sha256=AW7fGzddfUeEKYRROS2ktvB95v8xBv2xfNQHZ-UZtmk,372
|
|
20
20
|
bl_console_utils/autocomplete/complete_calltip/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -24,7 +24,7 @@ bl_console_utils/autocomplete/complete_namespace/__init__.pyi,sha256=7_ctcFmQsIW
|
|
|
24
24
|
bl_console_utils/autocomplete/complete_namespace/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
25
|
bl_console_utils/autocomplete/intellisense/__init__.pyi,sha256=b60v0t56txcAZ4R9cW60VMqooCXj07PF4Q6rcYGvVJs,222
|
|
26
26
|
bl_console_utils/autocomplete/intellisense/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
-
bl_i18n_utils/__init__.pyi,sha256=
|
|
27
|
+
bl_i18n_utils/__init__.pyi,sha256=IEV0Jzg3WOjK0RNVspJb7ZT-msXxCI7sKEYpjBNIE2Q,253
|
|
28
28
|
bl_i18n_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
29
|
bl_i18n_utils/bl_extract_messages/__init__.pyi,sha256=kaVfcFpWiEy1RnI7UtUJrkMk4uLWZegVUHR8uYBzpdM,1276
|
|
30
30
|
bl_i18n_utils/bl_extract_messages/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -40,7 +40,7 @@ bl_i18n_utils/utils_languages_menu/__init__.pyi,sha256=_gqX_O3eE0AiLLCw9rz_A6q_L
|
|
|
40
40
|
bl_i18n_utils/utils_languages_menu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
41
|
bl_i18n_utils/utils_rtl/__init__.pyi,sha256=U3u2cgQIuLogSl25uhiHs2s9DFK9UYMeXGg3_R1sQ0c,186
|
|
42
42
|
bl_i18n_utils/utils_rtl/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
-
bl_keymap_utils/__init__.pyi,sha256=
|
|
43
|
+
bl_keymap_utils/__init__.pyi,sha256=LYleQ7feuPNQVOh2y8SAfORQVb9uRW0G1jCdlugHVEg,208
|
|
44
44
|
bl_keymap_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
45
|
bl_keymap_utils/io/__init__.pyi,sha256=y4yZFHq6xL9t52t5oUsUqb31Qe1kJUOOfCuM5A5LOQU,684
|
|
46
46
|
bl_keymap_utils/io/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -54,7 +54,7 @@ bl_keymap_utils/versioning/__init__.pyi,sha256=3yw6oHUQGFejTCnrsOY6IL9y78-EJz1VP
|
|
|
54
54
|
bl_keymap_utils/versioning/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
55
|
bl_math/__init__.pyi,sha256=jFSKwCJVEo3O0yrPDTeKwSWMJ3bAiKcMcS_7wm-ZusI,1597
|
|
56
56
|
bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
-
bl_operators/__init__.pyi,sha256=
|
|
57
|
+
bl_operators/__init__.pyi,sha256=m2uPnqXPlLF9WdttwVQAQTkI3vose-ro5kptMqomcJ0,895
|
|
58
58
|
bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
59
|
bl_operators/add_mesh_torus/__init__.pyi,sha256=sW6-uVCW2WoTcOdAcc8RAfqx07MECvLNyNcrtoKXZOI,2811
|
|
60
60
|
bl_operators/add_mesh_torus/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -128,7 +128,7 @@ bl_text_utils/__init__.pyi,sha256=mA4rhlhHGbhXjawE0_uzcLQZhw4Rj4xm5DsFzDaoR0I,10
|
|
|
128
128
|
bl_text_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
129
|
bl_text_utils/external_editor/__init__.pyi,sha256=5Nuo8o17p8djL8yMnRuDIvFEXGPlvPddQrWlkZD6IBs,149
|
|
130
130
|
bl_text_utils/external_editor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
|
-
bl_ui/__init__.pyi,sha256=
|
|
131
|
+
bl_ui/__init__.pyi,sha256=KZLsMS7-ZlMC85RClVxXJA6M0g5cxktVLKOmsIw3LAc,10382
|
|
132
132
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
133
133
|
bl_ui/asset_shelf/__init__.pyi,sha256=4uzMddV5uYdHeGzUgUra82g7RrfPXJmzqdC5-Re_ebQ,2438
|
|
134
134
|
bl_ui/asset_shelf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -280,7 +280,7 @@ bl_ui/space_view3d_toolbar/__init__.pyi,sha256=a5feb0tvktjo-udAI9j7W6OjoCFFeVoHM
|
|
|
280
280
|
bl_ui/space_view3d_toolbar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
281
281
|
bl_ui/utils/__init__.pyi,sha256=GFZxoxA7Kqq5GlPCROlxHTZvZ0ZQdQ3anCCOu_1PQ00,629
|
|
282
282
|
bl_ui/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
283
|
-
bl_ui_utils/__init__.pyi,sha256=
|
|
283
|
+
bl_ui_utils/__init__.pyi,sha256=NueTVhcSnz7Cgzo_iG7uvCHf8HbOarIj8-uz79zg-LA,120
|
|
284
284
|
bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
285
285
|
bl_ui_utils/bug_report_url/__init__.pyi,sha256=dBZLU9VZ8QJUKvraIUG1S9DJf-FfLhckzBvNRD4gKa0,141
|
|
286
286
|
bl_ui_utils/bug_report_url/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -300,9 +300,9 @@ bmesh/types/__init__.pyi,sha256=Jy5AV8xe4_4o9J7Y6I1QPsrXve41naWKWdC4cweSMCs,3706
|
|
|
300
300
|
bmesh/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
301
|
bmesh/utils/__init__.pyi,sha256=Zq-n06AUnuxrVpT9RQGaGyY4E16UesGsNeePnhik57w,6543
|
|
302
302
|
bmesh/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
303
|
-
bpy/__init__.pyi,sha256=
|
|
303
|
+
bpy/__init__.pyi,sha256=fZI50Y8aiVeXoSwXQwP7I3lnZpRBMPM9vl2XFEHNmAQ,324
|
|
304
304
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
305
|
-
bpy/app/__init__.pyi,sha256=
|
|
305
|
+
bpy/app/__init__.pyi,sha256=pf31M4rSg5F5CpLyGdFG20dkMrMXBQzAH1lEGau5Mzg,9478
|
|
306
306
|
bpy/app/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
307
307
|
bpy/app/handlers/__init__.pyi,sha256=w-3lbeY4grEb-CpZtk5nMQ45aneqMLUn27P7UchPT2Y,5400
|
|
308
308
|
bpy/app/handlers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -314,7 +314,7 @@ bpy/app/translations/__init__.pyi,sha256=sufofHqcHY64ZzC8sDeTV6USzOrJINAbxNeFSgk
|
|
|
314
314
|
bpy/app/translations/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
315
315
|
bpy/msgbus/__init__.pyi,sha256=_Wjy3pK_1bSGLACcS6i9nw4zR7BAEjjwRiaKu2mhj_k,1666
|
|
316
316
|
bpy/msgbus/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
317
|
-
bpy/ops/__init__.pyi,sha256=
|
|
317
|
+
bpy/ops/__init__.pyi,sha256=5ZFwM2hwk2m-_euZPkiVjwfi1LDBOxpSV9Sre_P9fWM,1751
|
|
318
318
|
bpy/ops/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
319
319
|
bpy/ops/action/__init__.pyi,sha256=8YFm2Fmch8zMUmLNqXcws6S3S4v33OQre5yulSOkbvo,29657
|
|
320
320
|
bpy/ops/action/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -458,7 +458,7 @@ bpy/ops/ui/__init__.pyi,sha256=AIT58s3UV4QsL3vmhYDIC8etUwaxGFtUDVDzuETZLos,20772
|
|
|
458
458
|
bpy/ops/ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
459
459
|
bpy/ops/uilist/__init__.pyi,sha256=11XVA9xiVfXNgdeaXy5o-4VcGjCmIB7jk8bQsBks-fk,3253
|
|
460
460
|
bpy/ops/uilist/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
461
|
-
bpy/ops/uv/__init__.pyi,sha256=
|
|
461
|
+
bpy/ops/uv/__init__.pyi,sha256=2wo6Ko-fdEWm0PRXDQPqIaFVjZ6_gEB09eG7r0ih3Rs,62429
|
|
462
462
|
bpy/ops/uv/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
463
463
|
bpy/ops/view2d/__init__.pyi,sha256=Cp_YPhOJnWyETljbEkVFgbDiM0fNLGpq0HP5aAI4pgI,12715
|
|
464
464
|
bpy/ops/view2d/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -474,17 +474,17 @@ bpy/path/__init__.pyi,sha256=UCfQ6H7g5j9jwGjKPxd2eYMJwzQ5-Vr3Kd6hXH3thiw,6314
|
|
|
474
474
|
bpy/path/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
475
475
|
bpy/props/__init__.pyi,sha256=ei-_J5SH-qKnDgtnMrvXkr0DofgLtDtjXgNB-1c8Ldk,29317
|
|
476
476
|
bpy/props/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
477
|
-
bpy/types/__init__.pyi,sha256=
|
|
477
|
+
bpy/types/__init__.pyi,sha256=0NFN7aZA18T8i6J_3ilSbYMpEevtr_18HYtG18UKp-A,3487203
|
|
478
478
|
bpy/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
479
|
-
bpy/utils/__init__.pyi,sha256=
|
|
479
|
+
bpy/utils/__init__.pyi,sha256=ZE7sFvijAjY2YL8a5YtcVhr5dmYS-wMwScttr2C0yn0,11203
|
|
480
480
|
bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
481
481
|
bpy/utils/previews/__init__.pyi,sha256=QUL94heIKlOmcCIBSYgpWFG75uqAW0YPzRTsIbtA1rA,2308
|
|
482
482
|
bpy/utils/previews/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
483
483
|
bpy/utils/units/__init__.pyi,sha256=Htz1Vbpcp-YbtdqyvJyv-rsNAVHZVahWNi6Xy2qHUco,2786
|
|
484
484
|
bpy/utils/units/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
485
|
-
bpy_extras/__init__.pyi,sha256=
|
|
485
|
+
bpy_extras/__init__.pyi,sha256=t0OTHtkJNthleUGeZ83mJxqaJBADaitgoACHSsP669s,437
|
|
486
486
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
487
|
-
bpy_extras/anim_utils/__init__.pyi,sha256=
|
|
487
|
+
bpy_extras/anim_utils/__init__.pyi,sha256=psMLSnVRlRP-Ha0sTc8Qi-5D-kM3abA55iIfFdjTF7I,2919
|
|
488
488
|
bpy_extras/anim_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
489
489
|
bpy_extras/asset_utils/__init__.pyi,sha256=Yw6_V8IX3GOGnnp8i26UFitkNVe2cHCatrn9_DcmRRY,509
|
|
490
490
|
bpy_extras/asset_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -604,7 +604,7 @@ rna_xml/__init__.pyi,sha256=yyeBzQX0dO3yqIOD1PhXcgaE9jkEU7oyIOAfzZw8IVA,600
|
|
|
604
604
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
605
605
|
sys_info/__init__.pyi,sha256=o_UqpdlmDE4phA9Oyj4GV1u4zjo_rXndzej-ZUYFB7o,128
|
|
606
606
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
607
|
-
fake_bpy_module-
|
|
608
|
-
fake_bpy_module-
|
|
609
|
-
fake_bpy_module-
|
|
610
|
-
fake_bpy_module-
|
|
607
|
+
fake_bpy_module-20231207.dist-info/METADATA,sha256=0jUmQgjaT51E-XvfDnQTpgtuy9Q33wz-MI9C7_Ipt68,7008
|
|
608
|
+
fake_bpy_module-20231207.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
609
|
+
fake_bpy_module-20231207.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
610
|
+
fake_bpy_module-20231207.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|