fake-bpy-module 20231216__py3-none-any.whl → 20231218__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bl_console_utils/autocomplete/__init__.pyi +2 -2
- bl_i18n_utils/__init__.pyi +3 -3
- bl_keymap_utils/__init__.pyi +2 -2
- bl_operators/__init__.pyi +20 -20
- bl_ui/__init__.pyi +60 -60
- bl_ui_utils/__init__.pyi +1 -1
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +1 -1
- bpy/ops/__init__.pyi +61 -61
- bpy/ops/curves/__init__.pyi +15 -0
- bpy/types/__init__.pyi +185 -185
- bpy_extras/__init__.pyi +1 -1
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20231216.dist-info → fake_bpy_module-20231218.dist-info}/METADATA +1 -1
- {fake_bpy_module-20231216.dist-info → fake_bpy_module-20231218.dist-info}/RECORD +17 -17
- {fake_bpy_module-20231216.dist-info → fake_bpy_module-20231218.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20231216.dist-info → fake_bpy_module-20231218.dist-info}/top_level.txt +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import intellisense
|
|
4
3
|
from . import complete_namespace
|
|
5
|
-
from . import complete_calltip
|
|
6
4
|
from . import complete_import
|
|
5
|
+
from . import intellisense
|
|
6
|
+
from . import complete_calltip
|
|
7
7
|
|
|
8
8
|
GenericType = typing.TypeVar("GenericType")
|
bl_i18n_utils/__init__.pyi
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import utils
|
|
4
|
-
from . import utils_rtl
|
|
5
|
-
from . import bl_extract_messages
|
|
6
3
|
from . import utils_cli
|
|
7
4
|
from . import settings
|
|
8
5
|
from . import utils_languages_menu
|
|
6
|
+
from . import utils_rtl
|
|
9
7
|
from . import merge_po
|
|
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_from_toolbar
|
|
4
3
|
from . import keymap_hierarchy
|
|
4
|
+
from . import versioning
|
|
5
|
+
from . import keymap_from_toolbar
|
|
5
6
|
from . import io
|
|
6
7
|
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 wm
|
|
4
|
-
from . import image
|
|
5
|
-
from . import screen_play_rendered_anim
|
|
6
|
-
from . import presets
|
|
7
|
-
from . import uvcalc_follow_active
|
|
8
|
-
from . import object_align
|
|
9
3
|
from . import console
|
|
10
|
-
from . import
|
|
11
|
-
from . import
|
|
4
|
+
from . import screen_play_rendered_anim
|
|
5
|
+
from . import assets
|
|
12
6
|
from . import spreadsheet
|
|
13
|
-
from . import
|
|
14
|
-
from . import anim
|
|
15
|
-
from . import uvcalc_transform
|
|
7
|
+
from . import node
|
|
16
8
|
from . import add_mesh_torus
|
|
17
|
-
from . import mesh
|
|
18
|
-
from . import object
|
|
19
9
|
from . import rigidbody
|
|
20
|
-
from . import clip
|
|
21
|
-
from . import constraint
|
|
22
10
|
from . import view3d
|
|
23
|
-
from . import file
|
|
24
11
|
from . import freestyle
|
|
25
|
-
from . import
|
|
26
|
-
from . import
|
|
12
|
+
from . import presets
|
|
13
|
+
from . import uvcalc_follow_active
|
|
14
|
+
from . import constraint
|
|
15
|
+
from . import object_align
|
|
27
16
|
from . import bmesh
|
|
17
|
+
from . import object_randomize_transform
|
|
18
|
+
from . import clip
|
|
28
19
|
from . import uvcalc_lightmap
|
|
29
|
-
from . import
|
|
20
|
+
from . import anim
|
|
21
|
+
from . import file
|
|
22
|
+
from . import object_quick_effects
|
|
23
|
+
from . import wm
|
|
24
|
+
from . import image
|
|
25
|
+
from . import uvcalc_transform
|
|
30
26
|
from . import sequencer
|
|
31
|
-
from . import
|
|
27
|
+
from . import vertexpaint_dirt
|
|
28
|
+
from . import geometry_nodes
|
|
29
|
+
from . import object
|
|
30
|
+
from . import mesh
|
|
31
|
+
from . import userpref
|
|
32
32
|
|
|
33
33
|
GenericType = typing.TypeVar("GenericType")
|
|
34
34
|
|
bl_ui/__init__.pyi
CHANGED
|
@@ -2,81 +2,81 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import bpy_types
|
|
4
4
|
|
|
5
|
-
from . import
|
|
6
|
-
from . import properties_object
|
|
7
|
-
from . import properties_data_mesh
|
|
5
|
+
from . import space_filebrowser
|
|
8
6
|
from . import space_view3d
|
|
9
|
-
from . import
|
|
10
|
-
from . import
|
|
11
|
-
from . import
|
|
7
|
+
from . import properties_texture
|
|
8
|
+
from . import properties_data_lightprobe
|
|
9
|
+
from . import space_info
|
|
10
|
+
from . import properties_data_grease_pencil
|
|
11
|
+
from . import properties_data_mesh
|
|
12
|
+
from . import space_dopesheet
|
|
13
|
+
from . import space_console
|
|
14
|
+
from . import space_time
|
|
15
|
+
from . import properties_data_metaball
|
|
16
|
+
from . import space_image
|
|
17
|
+
from . import properties_particle
|
|
18
|
+
from . import properties_data_armature
|
|
19
|
+
from . import properties_physics_cloth
|
|
20
|
+
from . import node_add_menu_texture
|
|
21
|
+
from . import properties_grease_pencil_common
|
|
22
|
+
from . import space_nla
|
|
23
|
+
from . import properties_data_lattice
|
|
24
|
+
from . import properties_data_gpencil
|
|
25
|
+
from . import space_clip
|
|
12
26
|
from . import properties_data_speaker
|
|
13
27
|
from . import space_spreadsheet
|
|
14
|
-
from . import space_clip
|
|
15
|
-
from . import space_sequencer
|
|
16
|
-
from . import properties_animviz
|
|
17
|
-
from . import asset_shelf
|
|
18
|
-
from . import properties_data_grease_pencil
|
|
19
|
-
from . import space_topbar
|
|
20
|
-
from . import properties_data_light
|
|
21
|
-
from . import node_add_menu
|
|
22
28
|
from . import properties_mask_common
|
|
23
|
-
from . import
|
|
29
|
+
from . import properties_constraint
|
|
30
|
+
from . import properties_material_gpencil
|
|
31
|
+
from . import space_topbar
|
|
32
|
+
from . import properties_render
|
|
33
|
+
from . import generic_ui_list
|
|
24
34
|
from . import node_add_menu_geometry
|
|
25
|
-
from . import
|
|
26
|
-
from . import
|
|
35
|
+
from . import properties_physics_common
|
|
36
|
+
from . import space_text
|
|
27
37
|
from . import properties_paint_common
|
|
28
|
-
from . import properties_constraint
|
|
29
|
-
from . import properties_data_volume
|
|
30
|
-
from . import properties_physics_dynamicpaint
|
|
31
|
-
from . import space_graph
|
|
32
|
-
from . import space_filebrowser
|
|
33
38
|
from . import properties_data_bone
|
|
34
|
-
from . import
|
|
35
|
-
from . import properties_physics_rigidbody
|
|
36
|
-
from . import properties_material_gpencil
|
|
37
|
-
from . import space_time
|
|
39
|
+
from . import node_add_menu_compositor
|
|
38
40
|
from . import properties_data_modifier
|
|
39
|
-
from . import
|
|
40
|
-
from . import
|
|
41
|
-
from . import
|
|
42
|
-
from . import
|
|
43
|
-
from . import node_add_menu_shader
|
|
44
|
-
from . import space_console
|
|
45
|
-
from . import space_statusbar
|
|
46
|
-
from . import properties_physics_fluid
|
|
47
|
-
from . import properties_data_camera
|
|
48
|
-
from . import utils
|
|
41
|
+
from . import space_properties
|
|
42
|
+
from . import properties_data_light
|
|
43
|
+
from . import properties_data_curves
|
|
44
|
+
from . import properties_object
|
|
49
45
|
from . import properties_collection
|
|
50
|
-
from . import
|
|
51
|
-
from . import
|
|
46
|
+
from . import properties_output
|
|
47
|
+
from . import properties_data_camera
|
|
48
|
+
from . import properties_data_empty
|
|
49
|
+
from . import properties_freestyle
|
|
50
|
+
from . import properties_physics_dynamicpaint
|
|
51
|
+
from . import properties_data_volume
|
|
52
|
+
from . import properties_physics_rigidbody
|
|
53
|
+
from . import space_toolsystem_common
|
|
54
|
+
from . import space_node
|
|
52
55
|
from . import properties_world
|
|
56
|
+
from . import properties_physics_softbody
|
|
57
|
+
from . import properties_physics_rigidbody_constraint
|
|
58
|
+
from . import properties_data_shaderfx
|
|
59
|
+
from . import properties_data_curve
|
|
60
|
+
from . import asset_shelf
|
|
61
|
+
from . import node_add_menu
|
|
62
|
+
from . import properties_view_layer
|
|
63
|
+
from . import properties_physics_fluid
|
|
64
|
+
from . import properties_physics_geometry_nodes
|
|
65
|
+
from . import properties_animviz
|
|
66
|
+
from . import space_statusbar
|
|
67
|
+
from . import space_view3d_toolbar
|
|
53
68
|
from . import properties_workspace
|
|
54
|
-
from . import
|
|
55
|
-
from . import
|
|
69
|
+
from . import space_graph
|
|
70
|
+
from . import node_add_menu_shader
|
|
71
|
+
from . import utils
|
|
72
|
+
from . import properties_data_pointcloud
|
|
73
|
+
from . import space_toolsystem_toolbar
|
|
56
74
|
from . import space_outliner
|
|
57
75
|
from . import properties_material
|
|
58
|
-
from . import
|
|
59
|
-
from . import properties_data_armature
|
|
60
|
-
from . import space_toolsystem_toolbar
|
|
61
|
-
from . import properties_physics_geometry_nodes
|
|
76
|
+
from . import space_userpref
|
|
62
77
|
from . import properties_physics_field
|
|
63
|
-
from . import
|
|
64
|
-
from . import properties_physics_rigidbody_constraint
|
|
65
|
-
from . import properties_render
|
|
78
|
+
from . import space_sequencer
|
|
66
79
|
from . import properties_scene
|
|
67
|
-
from . import properties_texture
|
|
68
|
-
from . import space_toolsystem_common
|
|
69
|
-
from . import properties_data_curve
|
|
70
|
-
from . import properties_physics_cloth
|
|
71
|
-
from . import properties_data_gpencil
|
|
72
|
-
from . import properties_data_empty
|
|
73
|
-
from . import space_image
|
|
74
|
-
from . import generic_ui_list
|
|
75
|
-
from . import properties_data_lightprobe
|
|
76
|
-
from . import properties_physics_softbody
|
|
77
|
-
from . import space_info
|
|
78
|
-
from . import properties_grease_pencil_common
|
|
79
|
-
from . import properties_particle
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
|
82
82
|
|
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 msgbus
|
|
7
6
|
from . import ops
|
|
8
7
|
from . import app
|
|
9
8
|
from . import props
|
|
10
9
|
from . import utils
|
|
11
10
|
from . import path
|
|
11
|
+
from . import msgbus
|
|
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
|
|
4
|
-
from . import
|
|
5
|
-
from . import
|
|
3
|
+
from . import paint
|
|
4
|
+
from . import buttons
|
|
5
|
+
from . import wm
|
|
6
|
+
from . import cachefile
|
|
7
|
+
from . import fluid
|
|
8
|
+
from . import material
|
|
6
9
|
from . import collection
|
|
7
10
|
from . import view2d
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
10
|
-
from . import
|
|
11
|
+
from . import particle
|
|
12
|
+
from . import import_anim
|
|
13
|
+
from . import world
|
|
14
|
+
from . import marker
|
|
15
|
+
from . import dpaint
|
|
16
|
+
from . import texture
|
|
17
|
+
from . import uilist
|
|
11
18
|
from . import sculpt
|
|
12
|
-
from . import
|
|
13
|
-
from . import
|
|
14
|
-
from . import
|
|
15
|
-
from . import
|
|
16
|
-
from . import cycles
|
|
17
|
-
from . import script
|
|
19
|
+
from . import gizmogroup
|
|
20
|
+
from . import spreadsheet
|
|
21
|
+
from . import text
|
|
22
|
+
from . import workspace
|
|
18
23
|
from . import geometry
|
|
19
|
-
from . import
|
|
20
|
-
from . import
|
|
21
|
-
from . import
|
|
24
|
+
from . import text_editor
|
|
25
|
+
from . import import_curve
|
|
26
|
+
from . import grease_pencil
|
|
27
|
+
from . import ui
|
|
28
|
+
from . import preferences
|
|
29
|
+
from . import mesh
|
|
30
|
+
from . import export_mesh
|
|
22
31
|
from . import asset
|
|
32
|
+
from . import pose
|
|
33
|
+
from . import clip
|
|
23
34
|
from . import sequencer
|
|
24
|
-
from . import uv
|
|
25
|
-
from . import paint
|
|
26
|
-
from . import ptcache
|
|
27
|
-
from . import armature
|
|
28
|
-
from . import preferences
|
|
29
|
-
from . import surface
|
|
30
|
-
from . import brush
|
|
31
|
-
from . import paintcurve
|
|
32
35
|
from . import sculpt_curves
|
|
33
|
-
from . import
|
|
34
|
-
from . import dpaint
|
|
35
|
-
from . import mask
|
|
36
|
-
from . import constraint
|
|
36
|
+
from . import paintcurve
|
|
37
37
|
from . import nla
|
|
38
|
-
from . import
|
|
39
|
-
from . import
|
|
40
|
-
from . import mball
|
|
38
|
+
from . import script
|
|
39
|
+
from . import render
|
|
41
40
|
from . import import_scene
|
|
42
|
-
from . import graph
|
|
43
|
-
from . import particle
|
|
44
|
-
from . import image
|
|
45
|
-
from . import cloth
|
|
46
|
-
from . import palette
|
|
47
|
-
from . import font
|
|
48
|
-
from . import export_mesh
|
|
49
41
|
from . import screen
|
|
50
|
-
from . import
|
|
42
|
+
from . import import_mesh
|
|
43
|
+
from . import info
|
|
44
|
+
from . import export_anim
|
|
45
|
+
from . import poselib
|
|
46
|
+
from . import export_scene
|
|
47
|
+
from . import ptcache
|
|
48
|
+
from . import sound
|
|
49
|
+
from . import mball
|
|
50
|
+
from . import curve
|
|
51
|
+
from . import rigidbody
|
|
51
52
|
from . import action
|
|
52
|
-
from . import
|
|
53
|
-
from . import
|
|
53
|
+
from . import surface
|
|
54
|
+
from . import ed
|
|
55
|
+
from . import file
|
|
54
56
|
from . import node
|
|
57
|
+
from . import cloth
|
|
58
|
+
from . import curves
|
|
59
|
+
from . import constraint
|
|
60
|
+
from . import boid
|
|
61
|
+
from . import font
|
|
62
|
+
from . import mask
|
|
63
|
+
from . import outliner
|
|
64
|
+
from . import palette
|
|
65
|
+
from . import transform
|
|
55
66
|
from . import lattice
|
|
56
|
-
from . import
|
|
57
|
-
from . import
|
|
67
|
+
from . import uv
|
|
68
|
+
from . import armature
|
|
58
69
|
from . import console
|
|
59
|
-
from . import
|
|
60
|
-
from . import
|
|
70
|
+
from . import cycles
|
|
71
|
+
from . import image
|
|
72
|
+
from . import gpencil
|
|
73
|
+
from . import graph
|
|
74
|
+
from . import brush
|
|
61
75
|
from . import camera
|
|
62
|
-
from . import
|
|
63
|
-
from . import outliner
|
|
64
|
-
from . import scene
|
|
65
|
-
from . import spreadsheet
|
|
66
|
-
from . import wm
|
|
67
|
-
from . import workspace
|
|
68
|
-
from . import curve
|
|
76
|
+
from . import object
|
|
69
77
|
from . import view3d
|
|
70
|
-
from . import
|
|
71
|
-
from . import
|
|
72
|
-
from . import buttons
|
|
73
|
-
from . import gpencil
|
|
74
|
-
from . import import_curve
|
|
75
|
-
from . import curves
|
|
76
|
-
from . import marker
|
|
77
|
-
from . import text
|
|
78
|
-
from . import gizmogroup
|
|
79
|
-
from . import pose
|
|
78
|
+
from . import scene
|
|
79
|
+
from . import anim
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
bpy/ops/curves/__init__.pyi
CHANGED
|
@@ -334,3 +334,18 @@ def surface_set(
|
|
|
334
334
|
'''
|
|
335
335
|
|
|
336
336
|
...
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
def tilt_clear(
|
|
340
|
+
override_context: typing.Optional[
|
|
341
|
+
typing.Union[typing.Dict, 'bpy.types.Context']] = None,
|
|
342
|
+
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
343
|
+
undo: typing.Optional[bool] = None):
|
|
344
|
+
''' Clear the tilt of selected control points
|
|
345
|
+
|
|
346
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict, 'bpy.types.Context']]
|
|
347
|
+
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
348
|
+
:type undo: typing.Optional[bool]
|
|
349
|
+
'''
|
|
350
|
+
|
|
351
|
+
...
|
bpy/types/__init__.pyi
CHANGED
|
@@ -2,97 +2,212 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import mathutils
|
|
4
4
|
import bpy
|
|
5
|
-
import bl_ui.
|
|
6
|
-
import bl_operators.wm
|
|
7
|
-
import bl_ui.properties_object
|
|
8
|
-
import bl_ui.properties_data_mesh
|
|
5
|
+
import bl_ui.space_filebrowser
|
|
9
6
|
import bl_ui.space_view3d
|
|
10
|
-
import bl_ui.
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import bl_ui.
|
|
7
|
+
import bl_ui.properties_texture
|
|
8
|
+
import bl_ui.properties_data_lightprobe
|
|
9
|
+
import bl_operators.assets
|
|
10
|
+
import bl_ui.space_info
|
|
11
|
+
import bl_ui.properties_data_grease_pencil
|
|
12
|
+
import bl_ui.properties_data_mesh
|
|
13
|
+
import bl_ui.space_dopesheet
|
|
14
|
+
import bl_ui.space_console
|
|
15
|
+
import bl_operators.spreadsheet
|
|
16
|
+
import bl_ui.space_time
|
|
17
|
+
import bl_ui.properties_data_metaball
|
|
18
|
+
import bl_ui.space_image
|
|
19
|
+
import bl_ui.properties_particle
|
|
20
|
+
import bl_ui.properties_data_armature
|
|
21
|
+
import bl_operators.node
|
|
22
|
+
import bl_ui.properties_physics_cloth
|
|
23
|
+
import bl_operators.view3d
|
|
24
|
+
import bl_ui.node_add_menu_texture
|
|
25
|
+
import bl_operators.freestyle
|
|
26
|
+
import bl_ui.properties_grease_pencil_common
|
|
27
|
+
import bl_ui.space_nla
|
|
28
|
+
import bl_ui.properties_data_lattice
|
|
29
|
+
import bl_ui.properties_data_gpencil
|
|
30
|
+
import bl_ui.space_clip
|
|
14
31
|
import bl_ui.properties_data_speaker
|
|
15
32
|
import bl_ui.space_spreadsheet
|
|
16
|
-
import bl_ui.space_clip
|
|
17
|
-
import bl_ui.space_sequencer
|
|
18
|
-
import bl_ui.asset_shelf
|
|
19
|
-
import bl_ui.properties_data_grease_pencil
|
|
20
|
-
import bl_ui.space_topbar
|
|
21
|
-
import bl_ui.properties_data_light
|
|
22
|
-
import bl_ui.node_add_menu
|
|
23
33
|
import bl_ui.properties_mask_common
|
|
24
|
-
import bl_ui
|
|
25
|
-
import bl_ui.
|
|
34
|
+
import bl_ui.properties_constraint
|
|
35
|
+
import bl_ui.properties_material_gpencil
|
|
36
|
+
import bl_ui.space_topbar
|
|
37
|
+
import bl_ui.properties_render
|
|
38
|
+
import bl_ui.generic_ui_list
|
|
39
|
+
import bl_operators.presets
|
|
26
40
|
import bl_ui.node_add_menu_geometry
|
|
27
|
-
import bl_ui.
|
|
28
|
-
import bl_ui.
|
|
41
|
+
import bl_ui.properties_physics_common
|
|
42
|
+
import bl_ui.space_text
|
|
43
|
+
import bl_operators.constraint
|
|
29
44
|
import bl_ui.properties_paint_common
|
|
30
|
-
import bl_ui.properties_constraint
|
|
31
|
-
import bl_ui.properties_data_volume
|
|
32
|
-
import bl_ui.properties_physics_dynamicpaint
|
|
33
|
-
import bl_ui.space_graph
|
|
34
|
-
import bl_ui.space_filebrowser
|
|
35
|
-
import bl_operators.spreadsheet
|
|
36
45
|
import bl_ui.properties_data_bone
|
|
37
|
-
import
|
|
38
|
-
import bl_ui.properties_data_lattice
|
|
39
|
-
import bl_ui.properties_physics_rigidbody
|
|
40
|
-
import bl_ui.properties_material_gpencil
|
|
41
|
-
import bl_ui.space_time
|
|
46
|
+
import bl_ui.node_add_menu_compositor
|
|
42
47
|
import bl_ui.properties_data_modifier
|
|
43
|
-
import bl_ui.
|
|
44
|
-
import
|
|
45
|
-
import bl_ui.
|
|
46
|
-
import bl_ui.
|
|
47
|
-
import bl_ui.
|
|
48
|
-
import bl_ui.space_console
|
|
49
|
-
import bl_ui.space_statusbar
|
|
50
|
-
import bl_ui.properties_physics_fluid
|
|
51
|
-
import bl_ui.properties_data_camera
|
|
48
|
+
import bl_ui.space_properties
|
|
49
|
+
import bl_operators.clip
|
|
50
|
+
import bl_ui.properties_data_light
|
|
51
|
+
import bl_ui.properties_data_curves
|
|
52
|
+
import bl_ui.properties_object
|
|
52
53
|
import bl_operators.anim
|
|
53
54
|
import bl_ui.properties_collection
|
|
54
|
-
import bl_ui.
|
|
55
|
-
import bl_ui.
|
|
55
|
+
import bl_ui.properties_output
|
|
56
|
+
import bl_ui.properties_data_camera
|
|
57
|
+
import bl_operators.file
|
|
58
|
+
import bl_ui.properties_data_empty
|
|
59
|
+
import bl_ui.properties_freestyle
|
|
60
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
61
|
+
import bl_ui.properties_data_volume
|
|
62
|
+
import bl_ui.properties_physics_rigidbody
|
|
63
|
+
import bl_ui.space_toolsystem_common
|
|
64
|
+
import bl_ui.space_node
|
|
56
65
|
import bl_ui.properties_world
|
|
66
|
+
import bl_ui.properties_physics_softbody
|
|
67
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
68
|
+
import bl_ui.properties_data_shaderfx
|
|
69
|
+
import bl_operators.wm
|
|
70
|
+
import bl_ui.properties_data_curve
|
|
71
|
+
import bl_ui.asset_shelf
|
|
72
|
+
import bl_ui.node_add_menu
|
|
73
|
+
import bl_ui.properties_view_layer
|
|
74
|
+
import bl_ui.properties_physics_fluid
|
|
75
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
76
|
+
import bl_ui.space_statusbar
|
|
77
|
+
import bl_ui.space_view3d_toolbar
|
|
57
78
|
import bl_ui.properties_workspace
|
|
58
|
-
import bl_ui
|
|
59
|
-
import bl_ui.properties_physics_common
|
|
79
|
+
import bl_ui
|
|
60
80
|
import bl_operators.object
|
|
81
|
+
import bl_ui.space_graph
|
|
82
|
+
import bl_ui.node_add_menu_shader
|
|
83
|
+
import bl_operators.userpref
|
|
84
|
+
import bl_ui.properties_data_pointcloud
|
|
85
|
+
import bl_ui.space_toolsystem_toolbar
|
|
61
86
|
import bl_ui.space_outliner
|
|
62
|
-
import bl_operators.clip
|
|
63
87
|
import bl_ui.properties_material
|
|
64
|
-
import bl_ui.
|
|
65
|
-
import bl_ui.properties_data_armature
|
|
66
|
-
import bl_operators.constraint
|
|
67
|
-
import bl_ui.space_toolsystem_toolbar
|
|
68
|
-
import bl_ui.properties_physics_geometry_nodes
|
|
88
|
+
import bl_ui.space_userpref
|
|
69
89
|
import bl_ui.properties_physics_field
|
|
70
|
-
import bl_ui.
|
|
71
|
-
import bl_ui.properties_physics_rigidbody_constraint
|
|
72
|
-
import bl_ui.properties_render
|
|
73
|
-
import bl_operators.view3d
|
|
74
|
-
import bl_operators.file
|
|
90
|
+
import bl_ui.space_sequencer
|
|
75
91
|
import bl_ui.properties_scene
|
|
76
|
-
import bl_ui.properties_texture
|
|
77
|
-
import bl_operators.freestyle
|
|
78
|
-
import bl_ui.space_toolsystem_common
|
|
79
|
-
import bl_ui.properties_data_curve
|
|
80
|
-
import bl_ui.properties_physics_cloth
|
|
81
|
-
import bl_ui.properties_data_gpencil
|
|
82
|
-
import bl_operators.assets
|
|
83
|
-
import bl_ui.properties_data_empty
|
|
84
|
-
import bl_ui.space_image
|
|
85
|
-
import bl_ui.generic_ui_list
|
|
86
|
-
import bl_ui.properties_data_lightprobe
|
|
87
|
-
import bl_ui.properties_physics_softbody
|
|
88
|
-
import bl_ui.space_info
|
|
89
|
-
import bl_ui.properties_grease_pencil_common
|
|
90
|
-
import bl_operators.node
|
|
91
|
-
import bl_ui.properties_particle
|
|
92
92
|
|
|
93
93
|
GenericType = typing.TypeVar("GenericType")
|
|
94
94
|
|
|
95
95
|
|
|
96
|
+
class bpy_prop_collection(typing.Generic[GenericType]):
|
|
97
|
+
''' built-in class used for all collections.
|
|
98
|
+
'''
|
|
99
|
+
|
|
100
|
+
def find(self, key: typing.Optional[str]) -> int:
|
|
101
|
+
''' Returns the index of a key in a collection or -1 when not found (matches Python's string find function of the same name).
|
|
102
|
+
|
|
103
|
+
:param key: The identifier for the collection member.
|
|
104
|
+
:type key: typing.Optional[str]
|
|
105
|
+
:rtype: int
|
|
106
|
+
:return: index of the key.
|
|
107
|
+
'''
|
|
108
|
+
...
|
|
109
|
+
|
|
110
|
+
def foreach_get(self, attr, seq):
|
|
111
|
+
''' This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! Multi-dimensional arrays (like array of vectors) will be flattened into seq.
|
|
112
|
+
|
|
113
|
+
'''
|
|
114
|
+
...
|
|
115
|
+
|
|
116
|
+
def foreach_set(self, attr, seq):
|
|
117
|
+
''' This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
|
|
118
|
+
|
|
119
|
+
'''
|
|
120
|
+
...
|
|
121
|
+
|
|
122
|
+
def get(self,
|
|
123
|
+
key: typing.Optional[str],
|
|
124
|
+
default: typing.Optional[typing.Any] = None):
|
|
125
|
+
''' Returns the value of the item assigned to key or default when not found (matches Python's dictionary function of the same name).
|
|
126
|
+
|
|
127
|
+
:param key: The identifier for the collection member.
|
|
128
|
+
:type key: typing.Optional[str]
|
|
129
|
+
:param default: Optional argument for the value to return if *key* is not found.
|
|
130
|
+
:type default: typing.Optional[typing.Any]
|
|
131
|
+
'''
|
|
132
|
+
...
|
|
133
|
+
|
|
134
|
+
def items(self) -> typing.List:
|
|
135
|
+
''' Return the identifiers of collection members (matching Python's dict.items() functionality).
|
|
136
|
+
|
|
137
|
+
:rtype: typing.List
|
|
138
|
+
:return: (key, value) pairs for each member of this collection.
|
|
139
|
+
'''
|
|
140
|
+
...
|
|
141
|
+
|
|
142
|
+
def keys(self) -> typing.List[str]:
|
|
143
|
+
''' Return the identifiers of collection members (matching Python's dict.keys() functionality).
|
|
144
|
+
|
|
145
|
+
:rtype: typing.List[str]
|
|
146
|
+
:return: the identifiers for each member of this collection.
|
|
147
|
+
'''
|
|
148
|
+
...
|
|
149
|
+
|
|
150
|
+
def values(self) -> typing.List:
|
|
151
|
+
''' Return the values of collection (matching Python's dict.values() functionality).
|
|
152
|
+
|
|
153
|
+
:rtype: typing.List
|
|
154
|
+
:return: the members of this collection.
|
|
155
|
+
'''
|
|
156
|
+
...
|
|
157
|
+
|
|
158
|
+
def __getitem__(self, key: typing.Optional[typing.Union[int, str]]
|
|
159
|
+
) -> 'GenericType':
|
|
160
|
+
'''
|
|
161
|
+
|
|
162
|
+
:param key:
|
|
163
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
164
|
+
:rtype: 'GenericType'
|
|
165
|
+
'''
|
|
166
|
+
...
|
|
167
|
+
|
|
168
|
+
def __setitem__(self, key: typing.Optional[typing.Union[int, str]],
|
|
169
|
+
value: 'GenericType'):
|
|
170
|
+
'''
|
|
171
|
+
|
|
172
|
+
:param key:
|
|
173
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
174
|
+
:param value:
|
|
175
|
+
:type value: 'GenericType'
|
|
176
|
+
'''
|
|
177
|
+
...
|
|
178
|
+
|
|
179
|
+
def __delitem__(self, key: typing.Optional[typing.Union[int, str]]
|
|
180
|
+
) -> 'GenericType':
|
|
181
|
+
'''
|
|
182
|
+
|
|
183
|
+
:param key:
|
|
184
|
+
:type key: typing.Optional[typing.Union[int, str]]
|
|
185
|
+
:rtype: 'GenericType'
|
|
186
|
+
'''
|
|
187
|
+
...
|
|
188
|
+
|
|
189
|
+
def __iter__(self) -> typing.Iterator['GenericType']:
|
|
190
|
+
'''
|
|
191
|
+
|
|
192
|
+
:rtype: typing.Iterator['GenericType']
|
|
193
|
+
'''
|
|
194
|
+
...
|
|
195
|
+
|
|
196
|
+
def __next__(self) -> 'GenericType':
|
|
197
|
+
'''
|
|
198
|
+
|
|
199
|
+
:rtype: 'GenericType'
|
|
200
|
+
'''
|
|
201
|
+
...
|
|
202
|
+
|
|
203
|
+
def __len__(self) -> int:
|
|
204
|
+
'''
|
|
205
|
+
|
|
206
|
+
:rtype: int
|
|
207
|
+
'''
|
|
208
|
+
...
|
|
209
|
+
|
|
210
|
+
|
|
96
211
|
class bpy_struct:
|
|
97
212
|
''' built-in base class for all classes in bpy.types.
|
|
98
213
|
'''
|
|
@@ -366,121 +481,6 @@ class bpy_struct:
|
|
|
366
481
|
...
|
|
367
482
|
|
|
368
483
|
|
|
369
|
-
class bpy_prop_collection(typing.Generic[GenericType]):
|
|
370
|
-
''' built-in class used for all collections.
|
|
371
|
-
'''
|
|
372
|
-
|
|
373
|
-
def find(self, key: typing.Optional[str]) -> int:
|
|
374
|
-
''' Returns the index of a key in a collection or -1 when not found (matches Python's string find function of the same name).
|
|
375
|
-
|
|
376
|
-
:param key: The identifier for the collection member.
|
|
377
|
-
:type key: typing.Optional[str]
|
|
378
|
-
:rtype: int
|
|
379
|
-
:return: index of the key.
|
|
380
|
-
'''
|
|
381
|
-
...
|
|
382
|
-
|
|
383
|
-
def foreach_get(self, attr, seq):
|
|
384
|
-
''' This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! Multi-dimensional arrays (like array of vectors) will be flattened into seq.
|
|
385
|
-
|
|
386
|
-
'''
|
|
387
|
-
...
|
|
388
|
-
|
|
389
|
-
def foreach_set(self, attr, seq):
|
|
390
|
-
''' This is a function to give fast access to attributes within a collection. Only works for 'basic type' properties (bool, int and float)! seq must be uni-dimensional, multi-dimensional arrays (like array of vectors) will be re-created from it.
|
|
391
|
-
|
|
392
|
-
'''
|
|
393
|
-
...
|
|
394
|
-
|
|
395
|
-
def get(self,
|
|
396
|
-
key: typing.Optional[str],
|
|
397
|
-
default: typing.Optional[typing.Any] = None):
|
|
398
|
-
''' Returns the value of the item assigned to key or default when not found (matches Python's dictionary function of the same name).
|
|
399
|
-
|
|
400
|
-
:param key: The identifier for the collection member.
|
|
401
|
-
:type key: typing.Optional[str]
|
|
402
|
-
:param default: Optional argument for the value to return if *key* is not found.
|
|
403
|
-
:type default: typing.Optional[typing.Any]
|
|
404
|
-
'''
|
|
405
|
-
...
|
|
406
|
-
|
|
407
|
-
def items(self) -> typing.List:
|
|
408
|
-
''' Return the identifiers of collection members (matching Python's dict.items() functionality).
|
|
409
|
-
|
|
410
|
-
:rtype: typing.List
|
|
411
|
-
:return: (key, value) pairs for each member of this collection.
|
|
412
|
-
'''
|
|
413
|
-
...
|
|
414
|
-
|
|
415
|
-
def keys(self) -> typing.List[str]:
|
|
416
|
-
''' Return the identifiers of collection members (matching Python's dict.keys() functionality).
|
|
417
|
-
|
|
418
|
-
:rtype: typing.List[str]
|
|
419
|
-
:return: the identifiers for each member of this collection.
|
|
420
|
-
'''
|
|
421
|
-
...
|
|
422
|
-
|
|
423
|
-
def values(self) -> typing.List:
|
|
424
|
-
''' Return the values of collection (matching Python's dict.values() functionality).
|
|
425
|
-
|
|
426
|
-
:rtype: typing.List
|
|
427
|
-
:return: the members of this collection.
|
|
428
|
-
'''
|
|
429
|
-
...
|
|
430
|
-
|
|
431
|
-
def __getitem__(self, key: typing.Optional[typing.Union[int, str]]
|
|
432
|
-
) -> 'GenericType':
|
|
433
|
-
'''
|
|
434
|
-
|
|
435
|
-
:param key:
|
|
436
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
437
|
-
:rtype: 'GenericType'
|
|
438
|
-
'''
|
|
439
|
-
...
|
|
440
|
-
|
|
441
|
-
def __setitem__(self, key: typing.Optional[typing.Union[int, str]],
|
|
442
|
-
value: 'GenericType'):
|
|
443
|
-
'''
|
|
444
|
-
|
|
445
|
-
:param key:
|
|
446
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
447
|
-
:param value:
|
|
448
|
-
:type value: 'GenericType'
|
|
449
|
-
'''
|
|
450
|
-
...
|
|
451
|
-
|
|
452
|
-
def __delitem__(self, key: typing.Optional[typing.Union[int, str]]
|
|
453
|
-
) -> 'GenericType':
|
|
454
|
-
'''
|
|
455
|
-
|
|
456
|
-
:param key:
|
|
457
|
-
:type key: typing.Optional[typing.Union[int, str]]
|
|
458
|
-
:rtype: 'GenericType'
|
|
459
|
-
'''
|
|
460
|
-
...
|
|
461
|
-
|
|
462
|
-
def __iter__(self) -> typing.Iterator['GenericType']:
|
|
463
|
-
'''
|
|
464
|
-
|
|
465
|
-
:rtype: typing.Iterator['GenericType']
|
|
466
|
-
'''
|
|
467
|
-
...
|
|
468
|
-
|
|
469
|
-
def __next__(self) -> 'GenericType':
|
|
470
|
-
'''
|
|
471
|
-
|
|
472
|
-
:rtype: 'GenericType'
|
|
473
|
-
'''
|
|
474
|
-
...
|
|
475
|
-
|
|
476
|
-
def __len__(self) -> int:
|
|
477
|
-
'''
|
|
478
|
-
|
|
479
|
-
:rtype: int
|
|
480
|
-
'''
|
|
481
|
-
...
|
|
482
|
-
|
|
483
|
-
|
|
484
484
|
class bpy_prop_array(typing.Generic[GenericType]):
|
|
485
485
|
def foreach_get(self, attr, seq):
|
|
486
486
|
'''
|
bpy_extras/__init__.pyi
CHANGED
|
@@ -11,8 +11,8 @@ from . import asset_utils
|
|
|
11
11
|
from . import object_utils
|
|
12
12
|
from . import anim_utils
|
|
13
13
|
from . import bmesh_utils
|
|
14
|
-
from . import wm_utils
|
|
15
14
|
from . import extensions
|
|
16
15
|
from . import node_shader_utils
|
|
16
|
+
from . import wm_utils
|
|
17
17
|
|
|
18
18
|
GenericType = typing.TypeVar("GenericType")
|
|
@@ -97,12 +97,12 @@ def bake_action_objects(object_action_pairs, *, frames: int,
|
|
|
97
97
|
|
|
98
98
|
def bake_action_objects_iter(
|
|
99
99
|
object_action_pairs: typing.
|
|
100
|
-
Union['bpy.types.
|
|
100
|
+
Union['bpy.types.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.
|
|
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=XnKZd1zVpOYnAl0EyIhSs6z4-L0X0QYsqujaAZvOEX0,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=RydPjjuS3DbQw7p3JxY32eAr25zUycvJxocwWfz0boI,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=NZ68sA6O76oi_fZvIwwQuC9QltDC2PRTWIFgMUZzeio,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=hZ2vLmjATEGDw6wYMHID4fKeZ_nVPMQ_4LUiPfXiiiY,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=RyOAzXH0JfhY5Mmv-9vFpkbk2X0ngO06QnrkD89peIk,10382
|
|
132
132
|
bl_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
133
133
|
bl_ui/asset_shelf/__init__.pyi,sha256=4uzMddV5uYdHeGzUgUra82g7RrfPXJmzqdC5-Re_ebQ,2438
|
|
134
134
|
bl_ui/asset_shelf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -280,7 +280,7 @@ bl_ui/space_view3d_toolbar/__init__.pyi,sha256=a5feb0tvktjo-udAI9j7W6OjoCFFeVoHM
|
|
|
280
280
|
bl_ui/space_view3d_toolbar/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
281
281
|
bl_ui/utils/__init__.pyi,sha256=GFZxoxA7Kqq5GlPCROlxHTZvZ0ZQdQ3anCCOu_1PQ00,629
|
|
282
282
|
bl_ui/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
283
|
-
bl_ui_utils/__init__.pyi,sha256=
|
|
283
|
+
bl_ui_utils/__init__.pyi,sha256=09VcD0Qr5ySzpITMc17GRGqGUrN-qjyG6qBeq0jgIFk,120
|
|
284
284
|
bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
285
285
|
bl_ui_utils/bug_report_url/__init__.pyi,sha256=dBZLU9VZ8QJUKvraIUG1S9DJf-FfLhckzBvNRD4gKa0,141
|
|
286
286
|
bl_ui_utils/bug_report_url/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -300,9 +300,9 @@ bmesh/types/__init__.pyi,sha256=zO5ilLwp6S2PjWE_un7fFvhQFJn1Zj2c5fy-oW4hZ7A,4030
|
|
|
300
300
|
bmesh/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
301
301
|
bmesh/utils/__init__.pyi,sha256=Zq-n06AUnuxrVpT9RQGaGyY4E16UesGsNeePnhik57w,6543
|
|
302
302
|
bmesh/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
303
|
-
bpy/__init__.pyi,sha256=
|
|
303
|
+
bpy/__init__.pyi,sha256=03LIWqeFFfBd02YtEADi3U2qzeLJhcDLxxcS6X_RYHc,324
|
|
304
304
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
305
|
-
bpy/app/__init__.pyi,sha256=
|
|
305
|
+
bpy/app/__init__.pyi,sha256=FVdN7iTwOJUBf5pOPwGCShq61F9Pc4D0J_ARzNnBbgA,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=wz4GdLLVC7m22cX2d1rE1hPM61HHYWnwa5zLIi20bY4,1751
|
|
318
318
|
bpy/ops/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
319
319
|
bpy/ops/action/__init__.pyi,sha256=8YFm2Fmch8zMUmLNqXcws6S3S4v33OQre5yulSOkbvo,29657
|
|
320
320
|
bpy/ops/action/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -346,7 +346,7 @@ bpy/ops/constraint/__init__.pyi,sha256=CVsgll2E-0kWOOXsHATSzcPfLrHuP2MfinBnm2TUB
|
|
|
346
346
|
bpy/ops/constraint/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
347
|
bpy/ops/curve/__init__.pyi,sha256=smOKyWV0ew2kShTc7T11X24QOe-YK6K8sLCJCU_M-3k,43928
|
|
348
348
|
bpy/ops/curve/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
349
|
-
bpy/ops/curves/__init__.pyi,sha256=
|
|
349
|
+
bpy/ops/curves/__init__.pyi,sha256=WmZizqZUHqiZ5dHAHq9weUReMvfn3ldxi9OF6_N9dm8,14095
|
|
350
350
|
bpy/ops/curves/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
351
351
|
bpy/ops/cycles/__init__.pyi,sha256=9L_spU4y9ri4fyFpLURh-trT0FbPIGPvnGpA_17ZpAw,3284
|
|
352
352
|
bpy/ops/cycles/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -474,7 +474,7 @@ 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=g-GD0UIxx8O_47pQSeOCY2VbO1ZRk3AlpYfMCgXzRL8,3489175
|
|
478
478
|
bpy/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
479
479
|
bpy/utils/__init__.pyi,sha256=oZjhiaoYQLBCWOES5GRUgjlaa9cIEuwgYpKAPKJagB8,11228
|
|
480
480
|
bpy/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -482,9 +482,9 @@ bpy/utils/previews/__init__.pyi,sha256=QUL94heIKlOmcCIBSYgpWFG75uqAW0YPzRTsIbtA1
|
|
|
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=6hLAxhxAreN6Ho1Hf20qBDwkxTo5YqI-LN4Y5TnBcLg,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-20231218.dist-info/METADATA,sha256=URBdXsuZk6J4MmVG3G2VFsKtPFbWGfM-1o-IIFkQfRA,7008
|
|
608
|
+
fake_bpy_module-20231218.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
609
|
+
fake_bpy_module-20231218.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
610
|
+
fake_bpy_module-20231218.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|