fake-bpy-module 20231226__py3-none-any.whl → 20231227__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 +2 -2
- bl_keymap_utils/__init__.pyi +3 -3
- bl_operators/__init__.pyi +21 -21
- bl_ui/__init__.pyi +61 -61
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +2 -2
- bpy/ops/__init__.pyi +64 -64
- bpy/props/__init__.pyi +78 -98
- bpy/types/__init__.pyi +75 -75
- bpy/utils/__init__.pyi +1 -1
- {fake_bpy_module-20231226.dist-info → fake_bpy_module-20231227.dist-info}/METADATA +1 -1
- {fake_bpy_module-20231226.dist-info → fake_bpy_module-20231227.dist-info}/RECORD +15 -15
- {fake_bpy_module-20231226.dist-info → fake_bpy_module-20231227.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20231226.dist-info → fake_bpy_module-20231227.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_calltip
|
|
5
|
-
from . import complete_import
|
|
6
4
|
from . import complete_namespace
|
|
5
|
+
from . import intellisense
|
|
6
|
+
from . import complete_import
|
|
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 settings
|
|
3
4
|
from . import merge_po
|
|
4
5
|
from . import bl_extract_messages
|
|
5
6
|
from . import utils_cli
|
|
7
|
+
from . import utils_languages_menu
|
|
6
8
|
from . import utils_rtl
|
|
7
9
|
from . import utils
|
|
8
|
-
from . import utils_languages_menu
|
|
9
|
-
from . import settings
|
|
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 versioning
|
|
4
3
|
from . import io
|
|
5
|
-
from . import keymap_hierarchy
|
|
6
|
-
from . import platform_helpers
|
|
7
4
|
from . import keymap_from_toolbar
|
|
5
|
+
from . import versioning
|
|
6
|
+
from . import platform_helpers
|
|
7
|
+
from . import keymap_hierarchy
|
|
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 object_align
|
|
3
4
|
from . import rigidbody
|
|
4
|
-
from . import
|
|
5
|
+
from . import uvcalc_transform
|
|
6
|
+
from . import object_randomize_transform
|
|
7
|
+
from . import wm
|
|
8
|
+
from . import freestyle
|
|
9
|
+
from . import sequencer
|
|
10
|
+
from . import uvcalc_follow_active
|
|
11
|
+
from . import spreadsheet
|
|
5
12
|
from . import assets
|
|
13
|
+
from . import node
|
|
14
|
+
from . import userpref
|
|
15
|
+
from . import uvcalc_lightmap
|
|
6
16
|
from . import geometry_nodes
|
|
7
|
-
from . import
|
|
17
|
+
from . import screen_play_rendered_anim
|
|
18
|
+
from . import object
|
|
19
|
+
from . import view3d
|
|
8
20
|
from . import presets
|
|
9
|
-
from . import
|
|
21
|
+
from . import file
|
|
22
|
+
from . import anim
|
|
23
|
+
from . import mesh
|
|
10
24
|
from . import bmesh
|
|
11
|
-
from . import
|
|
25
|
+
from . import clip
|
|
26
|
+
from . import image
|
|
12
27
|
from . import console
|
|
13
|
-
from . import
|
|
14
|
-
from . import view3d
|
|
15
|
-
from . import anim
|
|
16
|
-
from . import sequencer
|
|
17
|
-
from . import uvcalc_follow_active
|
|
28
|
+
from . import constraint
|
|
18
29
|
from . import vertexpaint_dirt
|
|
30
|
+
from . import add_mesh_torus
|
|
19
31
|
from . import object_quick_effects
|
|
20
|
-
from . import constraint
|
|
21
|
-
from . import file
|
|
22
|
-
from . import spreadsheet
|
|
23
|
-
from . import userpref
|
|
24
|
-
from . import object_randomize_transform
|
|
25
|
-
from . import node
|
|
26
|
-
from . import clip
|
|
27
|
-
from . import wm
|
|
28
|
-
from . import object
|
|
29
|
-
from . import uvcalc_lightmap
|
|
30
|
-
from . import freestyle
|
|
31
|
-
from . import object_align
|
|
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_physics_fluid
|
|
6
|
-
from . import properties_material
|
|
7
|
-
from . import properties_data_curves
|
|
8
|
-
from . import properties_data_camera
|
|
9
|
-
from . import properties_data_curve
|
|
10
|
-
from . import space_userpref
|
|
11
|
-
from . import properties_physics_geometry_nodes
|
|
12
|
-
from . import node_add_menu_shader
|
|
13
|
-
from . import space_info
|
|
14
|
-
from . import properties_data_armature
|
|
15
5
|
from . import properties_animviz
|
|
16
|
-
from . import
|
|
17
|
-
from . import
|
|
18
|
-
from . import
|
|
19
|
-
from . import
|
|
6
|
+
from . import properties_world
|
|
7
|
+
from . import space_console
|
|
8
|
+
from . import properties_data_curves
|
|
9
|
+
from . import properties_paint_common
|
|
10
|
+
from . import properties_output
|
|
11
|
+
from . import space_view3d_toolbar
|
|
12
|
+
from . import space_node
|
|
13
|
+
from . import properties_data_modifier
|
|
14
|
+
from . import properties_data_volume
|
|
20
15
|
from . import space_graph
|
|
21
|
-
from . import
|
|
16
|
+
from . import properties_data_lightprobe
|
|
17
|
+
from . import node_add_menu_compositor
|
|
18
|
+
from . import properties_object
|
|
19
|
+
from . import properties_scene
|
|
20
|
+
from . import properties_constraint
|
|
21
|
+
from . import properties_data_shaderfx
|
|
22
|
+
from . import properties_mask_common
|
|
23
|
+
from . import properties_physics_geometry_nodes
|
|
24
|
+
from . import space_userpref
|
|
25
|
+
from . import properties_data_mesh
|
|
26
|
+
from . import properties_data_grease_pencil
|
|
27
|
+
from . import properties_physics_rigidbody
|
|
22
28
|
from . import space_filebrowser
|
|
23
|
-
from . import
|
|
24
|
-
from . import
|
|
25
|
-
from . import
|
|
26
|
-
from . import
|
|
27
|
-
from . import properties_grease_pencil_common
|
|
29
|
+
from . import space_topbar
|
|
30
|
+
from . import node_add_menu_shader
|
|
31
|
+
from . import properties_physics_dynamicpaint
|
|
32
|
+
from . import properties_physics_fluid
|
|
28
33
|
from . import space_sequencer
|
|
29
|
-
from . import space_clip
|
|
30
|
-
from . import space_outliner
|
|
31
|
-
from . import properties_texture
|
|
32
|
-
from . import space_text
|
|
33
|
-
from . import space_dopesheet
|
|
34
|
-
from . import properties_data_mesh
|
|
35
34
|
from . import properties_physics_common
|
|
36
|
-
from . import space_toolsystem_common
|
|
37
|
-
from . import properties_scene
|
|
38
|
-
from . import node_add_menu_texture
|
|
39
|
-
from . import properties_data_metaball
|
|
40
|
-
from . import node_add_menu
|
|
41
|
-
from . import properties_physics_cloth
|
|
42
|
-
from . import properties_particle
|
|
43
|
-
from . import properties_paint_common
|
|
44
|
-
from . import properties_mask_common
|
|
45
|
-
from . import properties_data_volume
|
|
46
|
-
from . import space_console
|
|
47
|
-
from . import properties_object
|
|
48
|
-
from . import space_time
|
|
49
|
-
from . import properties_output
|
|
50
|
-
from . import space_statusbar
|
|
51
|
-
from . import properties_data_modifier
|
|
52
|
-
from . import properties_physics_field
|
|
53
35
|
from . import space_properties
|
|
36
|
+
from . import space_toolsystem_common
|
|
37
|
+
from . import properties_data_curve
|
|
38
|
+
from . import properties_data_lattice
|
|
54
39
|
from . import generic_ui_list
|
|
55
|
-
from . import properties_constraint
|
|
56
|
-
from . import properties_physics_rigidbody
|
|
57
|
-
from . import properties_workspace
|
|
58
40
|
from . import properties_data_bone
|
|
59
|
-
from . import
|
|
60
|
-
from . import
|
|
61
|
-
from . import
|
|
62
|
-
from . import
|
|
63
|
-
from . import
|
|
64
|
-
from . import
|
|
65
|
-
from . import
|
|
41
|
+
from . import space_clip
|
|
42
|
+
from . import properties_data_metaball
|
|
43
|
+
from . import properties_physics_cloth
|
|
44
|
+
from . import properties_data_speaker
|
|
45
|
+
from . import space_image
|
|
46
|
+
from . import asset_shelf
|
|
47
|
+
from . import space_dopesheet
|
|
48
|
+
from . import properties_material_gpencil
|
|
49
|
+
from . import properties_data_light
|
|
50
|
+
from . import properties_data_empty
|
|
51
|
+
from . import properties_freestyle
|
|
66
52
|
from . import properties_render
|
|
67
|
-
from . import
|
|
53
|
+
from . import properties_grease_pencil_common
|
|
54
|
+
from . import properties_data_pointcloud
|
|
55
|
+
from . import space_statusbar
|
|
56
|
+
from . import space_time
|
|
57
|
+
from . import properties_physics_rigidbody_constraint
|
|
58
|
+
from . import space_view3d
|
|
59
|
+
from . import space_nla
|
|
60
|
+
from . import properties_texture
|
|
68
61
|
from . import node_add_menu_geometry
|
|
62
|
+
from . import space_text
|
|
63
|
+
from . import properties_material
|
|
64
|
+
from . import space_outliner
|
|
65
|
+
from . import properties_particle
|
|
69
66
|
from . import properties_data_gpencil
|
|
67
|
+
from . import properties_physics_field
|
|
70
68
|
from . import utils
|
|
71
69
|
from . import space_spreadsheet
|
|
72
|
-
from . import
|
|
73
|
-
from . import
|
|
74
|
-
from . import
|
|
75
|
-
from . import
|
|
76
|
-
from . import
|
|
77
|
-
from . import
|
|
78
|
-
from . import
|
|
70
|
+
from . import node_add_menu_texture
|
|
71
|
+
from . import node_add_menu
|
|
72
|
+
from . import properties_data_camera
|
|
73
|
+
from . import properties_data_armature
|
|
74
|
+
from . import space_toolsystem_toolbar
|
|
75
|
+
from . import space_info
|
|
76
|
+
from . import properties_workspace
|
|
77
|
+
from . import properties_collection
|
|
79
78
|
from . import properties_view_layer
|
|
79
|
+
from . import properties_physics_softbody
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
|
82
82
|
|
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
|
|
4
|
-
from . import
|
|
5
|
-
from . import
|
|
6
|
-
from . import
|
|
3
|
+
from . import wm
|
|
4
|
+
from . import font
|
|
5
|
+
from . import import_scene
|
|
6
|
+
from . import curves
|
|
7
|
+
from . import mask
|
|
8
|
+
from . import armature
|
|
7
9
|
from . import cycles
|
|
10
|
+
from . import node
|
|
8
11
|
from . import material
|
|
9
|
-
from . import outliner
|
|
10
|
-
from . import script
|
|
11
|
-
from . import uilist
|
|
12
|
-
from . import fluid
|
|
13
|
-
from . import curves
|
|
14
|
-
from . import sculpt
|
|
15
|
-
from . import ui
|
|
16
|
-
from . import render
|
|
17
|
-
from . import sound
|
|
18
|
-
from . import world
|
|
19
|
-
from . import particle
|
|
20
12
|
from . import transform
|
|
21
|
-
from . import
|
|
22
|
-
from . import
|
|
23
|
-
from . import
|
|
24
|
-
from . import
|
|
25
|
-
from . import
|
|
26
|
-
from . import
|
|
27
|
-
from . import
|
|
13
|
+
from . import camera
|
|
14
|
+
from . import spreadsheet
|
|
15
|
+
from . import uv
|
|
16
|
+
from . import screen
|
|
17
|
+
from . import sculpt_curves
|
|
18
|
+
from . import curve
|
|
19
|
+
from . import cachefile
|
|
20
|
+
from . import mesh
|
|
21
|
+
from . import pose
|
|
28
22
|
from . import texture
|
|
29
|
-
from . import
|
|
30
|
-
from . import
|
|
31
|
-
from . import
|
|
32
|
-
from . import
|
|
33
|
-
from . import
|
|
34
|
-
from . import lattice
|
|
23
|
+
from . import ui
|
|
24
|
+
from . import text
|
|
25
|
+
from . import export_anim
|
|
26
|
+
from . import gpencil
|
|
27
|
+
from . import ed
|
|
35
28
|
from . import image
|
|
36
|
-
from . import
|
|
37
|
-
from . import gizmogroup
|
|
38
|
-
from . import brush
|
|
39
|
-
from . import sculpt_curves
|
|
40
|
-
from . import export_mesh
|
|
41
|
-
from . import grease_pencil
|
|
42
|
-
from . import sequencer
|
|
43
|
-
from . import palette
|
|
44
|
-
from . import file
|
|
45
|
-
from . import export_scene
|
|
46
|
-
from . import boid
|
|
29
|
+
from . import nla
|
|
47
30
|
from . import console
|
|
48
|
-
from . import
|
|
31
|
+
from . import mball
|
|
32
|
+
from . import sound
|
|
33
|
+
from . import object
|
|
34
|
+
from . import view2d
|
|
35
|
+
from . import anim
|
|
36
|
+
from . import ptcache
|
|
49
37
|
from . import scene
|
|
38
|
+
from . import constraint
|
|
39
|
+
from . import clip
|
|
40
|
+
from . import sequencer
|
|
41
|
+
from . import poselib
|
|
42
|
+
from . import text_editor
|
|
43
|
+
from . import gizmogroup
|
|
44
|
+
from . import workspace
|
|
50
45
|
from . import rigidbody
|
|
51
|
-
from . import gpencil
|
|
52
|
-
from . import object
|
|
53
46
|
from . import view3d
|
|
54
|
-
from . import mesh
|
|
55
|
-
from . import uv
|
|
56
|
-
from . import geometry
|
|
57
|
-
from . import spreadsheet
|
|
58
|
-
from . import action
|
|
59
47
|
from . import collection
|
|
60
|
-
from . import graph
|
|
61
|
-
from . import ptcache
|
|
62
|
-
from . import ed
|
|
63
|
-
from . import asset
|
|
64
48
|
from . import preferences
|
|
65
|
-
from . import
|
|
66
|
-
from . import
|
|
67
|
-
from . import mask
|
|
68
|
-
from . import import_mesh
|
|
49
|
+
from . import palette
|
|
50
|
+
from . import asset
|
|
69
51
|
from . import import_curve
|
|
70
|
-
from . import
|
|
52
|
+
from . import uilist
|
|
53
|
+
from . import boid
|
|
54
|
+
from . import import_mesh
|
|
55
|
+
from . import geometry
|
|
56
|
+
from . import info
|
|
57
|
+
from . import graph
|
|
58
|
+
from . import file
|
|
59
|
+
from . import outliner
|
|
60
|
+
from . import particle
|
|
61
|
+
from . import render
|
|
62
|
+
from . import brush
|
|
63
|
+
from . import world
|
|
64
|
+
from . import surface
|
|
65
|
+
from . import script
|
|
66
|
+
from . import dpaint
|
|
67
|
+
from . import export_mesh
|
|
68
|
+
from . import export_scene
|
|
69
|
+
from . import lattice
|
|
70
|
+
from . import grease_pencil
|
|
71
|
+
from . import buttons
|
|
72
|
+
from . import action
|
|
73
|
+
from . import import_anim
|
|
74
|
+
from . import cloth
|
|
75
|
+
from . import sculpt
|
|
76
|
+
from . import paintcurve
|
|
77
|
+
from . import fluid
|
|
78
|
+
from . import marker
|
|
71
79
|
from . import paint
|
|
72
|
-
from . import text
|
|
73
|
-
from . import mball
|
|
74
|
-
from . import workspace
|
|
75
|
-
from . import camera
|
|
76
|
-
from . import pose
|
|
77
|
-
from . import curve
|
|
78
|
-
from . import cachefile
|
|
79
|
-
from . import export_anim
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
bpy/props/__init__.pyi
CHANGED
|
@@ -1,22 +1,20 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
import bpy.types
|
|
4
3
|
|
|
5
4
|
GenericType = typing.TypeVar("GenericType")
|
|
6
5
|
|
|
7
6
|
|
|
8
|
-
def BoolProperty(
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
set: typing.Optional[typing.Any] = None) -> 'bpy.types.BoolProperty':
|
|
7
|
+
def BoolProperty(name: typing.Optional[str] = "",
|
|
8
|
+
description: typing.Optional[str] = "",
|
|
9
|
+
translation_context: typing.Optional[str] = "*",
|
|
10
|
+
default=False,
|
|
11
|
+
options: typing.Optional[typing.Set] = {'ANIMATABLE'},
|
|
12
|
+
override: typing.Optional[typing.Set] = 'set()',
|
|
13
|
+
tags: typing.Optional[typing.Set] = 'set()',
|
|
14
|
+
subtype: typing.Optional[str] = 'NONE',
|
|
15
|
+
update: typing.Optional[typing.Any] = None,
|
|
16
|
+
get: typing.Optional[typing.Any] = None,
|
|
17
|
+
set: typing.Optional[typing.Any] = None):
|
|
20
18
|
''' Returns a new boolean property definition.
|
|
21
19
|
|
|
22
20
|
:param name: Name used in the user interface.
|
|
@@ -39,7 +37,6 @@ def BoolProperty(
|
|
|
39
37
|
:type get: typing.Optional[typing.Any]
|
|
40
38
|
:param set: Function to be called when this value is 'written', This function must take 2 values (self, value) and return None.
|
|
41
39
|
:type set: typing.Optional[typing.Any]
|
|
42
|
-
:rtype: 'bpy.types.BoolProperty'
|
|
43
40
|
'''
|
|
44
41
|
|
|
45
42
|
...
|
|
@@ -57,8 +54,7 @@ def BoolVectorProperty(
|
|
|
57
54
|
size: typing.Optional[typing.Union[int, typing.Sequence[int]]] = 3,
|
|
58
55
|
update: typing.Optional[typing.Any] = None,
|
|
59
56
|
get: typing.Optional[typing.Any] = None,
|
|
60
|
-
set: typing.Optional[typing.Any] = None
|
|
61
|
-
) -> typing.Union[typing.List, 'bpy.types.BoolProperty']:
|
|
57
|
+
set: typing.Optional[typing.Any] = None):
|
|
62
58
|
''' Returns a new vector boolean property definition.
|
|
63
59
|
|
|
64
60
|
:param name: Name used in the user interface.
|
|
@@ -85,7 +81,6 @@ def BoolVectorProperty(
|
|
|
85
81
|
:type get: typing.Optional[typing.Any]
|
|
86
82
|
:param set: Function to be called when this value is 'written', This function must take 2 values (self, value) and return None.
|
|
87
83
|
:type set: typing.Optional[typing.Any]
|
|
88
|
-
:rtype: typing.Union[typing.List, 'bpy.types.BoolProperty']
|
|
89
84
|
'''
|
|
90
85
|
|
|
91
86
|
...
|
|
@@ -97,8 +92,7 @@ def CollectionProperty(type: typing.Optional[typing.Any] = None,
|
|
|
97
92
|
translation_context: typing.Optional[str] = "*",
|
|
98
93
|
options: typing.Optional[typing.Set] = {'ANIMATABLE'},
|
|
99
94
|
override: typing.Optional[typing.Set] = 'set()',
|
|
100
|
-
tags: typing.Optional[typing.Set] = 'set()'
|
|
101
|
-
) -> 'bpy.types.CollectionProperty':
|
|
95
|
+
tags: typing.Optional[typing.Set] = 'set()'):
|
|
102
96
|
''' Returns a new collection property definition.
|
|
103
97
|
|
|
104
98
|
:param type: `bpy.types.PropertyGroup`.
|
|
@@ -115,25 +109,24 @@ def CollectionProperty(type: typing.Optional[typing.Any] = None,
|
|
|
115
109
|
:type override: typing.Optional[typing.Set]
|
|
116
110
|
:param tags: Enumerator of tags that are defined by parent class.
|
|
117
111
|
:type tags: typing.Optional[typing.Set]
|
|
118
|
-
:rtype: 'bpy.types.CollectionProperty'
|
|
119
112
|
'''
|
|
120
113
|
|
|
121
114
|
...
|
|
122
115
|
|
|
123
116
|
|
|
124
|
-
def EnumProperty(
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
117
|
+
def EnumProperty(items: typing.Optional[
|
|
118
|
+
typing.Union[typing.Iterable[typing.Iterable[str]], typing.Callable]],
|
|
119
|
+
name: typing.Optional[str] = "",
|
|
120
|
+
description: typing.Optional[str] = "",
|
|
121
|
+
translation_context: typing.Optional[str] = "*",
|
|
122
|
+
default: typing.Optional[typing.Union[str, typing.
|
|
123
|
+
Set]] = None,
|
|
124
|
+
options: typing.Optional[typing.Set] = {'ANIMATABLE'},
|
|
125
|
+
override: typing.Optional[typing.Set] = 'set()',
|
|
126
|
+
tags: typing.Optional[typing.Set] = 'set()',
|
|
127
|
+
update: typing.Optional[typing.Any] = None,
|
|
128
|
+
get: typing.Optional[typing.Any] = None,
|
|
129
|
+
set: typing.Optional[typing.Any] = None):
|
|
137
130
|
''' Returns a new enumerator property definition.
|
|
138
131
|
|
|
139
132
|
:param items: ``[(identifier, name, description, icon, number), ...]``. The first three elements of the tuples are mandatory. :identifier: The identifier is used for Python access. :name: Name for the interface. :description: Used for documentation and tooltips. :icon: An icon string identifier or integer icon value (e.g. returned by `bpy.types.UILayout.icon`) :number: Unique value used as the identifier for this item (stored in file data). Use when the identifier may need to change. If the *ENUM_FLAG* option is used, the values are bit-masks and should be powers of two. When an item only contains 4 items they define ``(identifier, name, description, number)``. Separators may be added using None instead of a tuple. For dynamic values a callback can be passed which returns a list in the same format as the static list. This function must take 2 arguments ``(self, context)``, **context may be None**. .. warning:: There is a known bug with using a callback, Python must keep a reference to the strings returned by the callback or Blender will misbehave or even crash.
|
|
@@ -158,31 +151,29 @@ def EnumProperty(
|
|
|
158
151
|
:type get: typing.Optional[typing.Any]
|
|
159
152
|
:param set: Function to be called when this value is 'written', This function must take 2 values (self, value) and return None.
|
|
160
153
|
:type set: typing.Optional[typing.Any]
|
|
161
|
-
:rtype: 'bpy.types.EnumProperty'
|
|
162
154
|
'''
|
|
163
155
|
|
|
164
156
|
...
|
|
165
157
|
|
|
166
158
|
|
|
167
|
-
def FloatProperty(
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
set: typing.Optional[typing.Any] = None) -> 'bpy.types.FloatProperty':
|
|
159
|
+
def FloatProperty(name: typing.Optional[str] = "",
|
|
160
|
+
description: typing.Optional[str] = "",
|
|
161
|
+
translation_context: typing.Optional[str] = "*",
|
|
162
|
+
default=0.0,
|
|
163
|
+
min: typing.Optional[float] = -3.402823e+38,
|
|
164
|
+
max: typing.Optional[float] = 3.402823e+38,
|
|
165
|
+
soft_min: typing.Optional[float] = -3.402823e+38,
|
|
166
|
+
soft_max: typing.Optional[float] = 3.402823e+38,
|
|
167
|
+
step: typing.Optional[int] = 3,
|
|
168
|
+
precision: typing.Optional[int] = 2,
|
|
169
|
+
options: typing.Optional[typing.Set] = {'ANIMATABLE'},
|
|
170
|
+
override: typing.Optional[typing.Set] = 'set()',
|
|
171
|
+
tags: typing.Optional[typing.Set] = 'set()',
|
|
172
|
+
subtype: typing.Optional[str] = 'NONE',
|
|
173
|
+
unit: typing.Optional[str] = 'NONE',
|
|
174
|
+
update: typing.Optional[typing.Any] = None,
|
|
175
|
+
get: typing.Optional[typing.Any] = None,
|
|
176
|
+
set: typing.Optional[typing.Any] = None):
|
|
186
177
|
''' Returns a new float (single precision) property definition.
|
|
187
178
|
|
|
188
179
|
:param name: Name used in the user interface.
|
|
@@ -219,7 +210,6 @@ def FloatProperty(
|
|
|
219
210
|
:type get: typing.Optional[typing.Any]
|
|
220
211
|
:param set: Function to be called when this value is 'written', This function must take 2 values (self, value) and return None.
|
|
221
212
|
:type set: typing.Optional[typing.Any]
|
|
222
|
-
:rtype: 'bpy.types.FloatProperty'
|
|
223
213
|
'''
|
|
224
214
|
|
|
225
215
|
...
|
|
@@ -244,8 +234,7 @@ def FloatVectorProperty(
|
|
|
244
234
|
size: typing.Optional[typing.Union[int, typing.Sequence[int]]] = 3,
|
|
245
235
|
update: typing.Optional[typing.Any] = None,
|
|
246
236
|
get: typing.Optional[typing.Any] = None,
|
|
247
|
-
set: typing.Optional[typing.Any] = None
|
|
248
|
-
) -> typing.Union[typing.List, 'bpy.types.FloatProperty']:
|
|
237
|
+
set: typing.Optional[typing.Any] = None):
|
|
249
238
|
''' Returns a new vector float property definition.
|
|
250
239
|
|
|
251
240
|
:param name: Name used in the user interface.
|
|
@@ -286,29 +275,27 @@ def FloatVectorProperty(
|
|
|
286
275
|
:type get: typing.Optional[typing.Any]
|
|
287
276
|
:param set: Function to be called when this value is 'written', This function must take 2 values (self, value) and return None.
|
|
288
277
|
:type set: typing.Optional[typing.Any]
|
|
289
|
-
:rtype: typing.Union[typing.List, 'bpy.types.FloatProperty']
|
|
290
278
|
'''
|
|
291
279
|
|
|
292
280
|
...
|
|
293
281
|
|
|
294
282
|
|
|
295
|
-
def IntProperty(
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
set: typing.Optional[typing.Any] = None) -> 'bpy.types.IntProperty':
|
|
283
|
+
def IntProperty(name: typing.Optional[str] = "",
|
|
284
|
+
description: typing.Optional[str] = "",
|
|
285
|
+
translation_context: typing.Optional[str] = "*",
|
|
286
|
+
default=0,
|
|
287
|
+
min: typing.Optional[int] = -2**31,
|
|
288
|
+
max: typing.Optional[int] = 2**31 - 1,
|
|
289
|
+
soft_min: typing.Optional[int] = -2**31,
|
|
290
|
+
soft_max: typing.Optional[int] = 2**31 - 1,
|
|
291
|
+
step: typing.Optional[int] = 1,
|
|
292
|
+
options: typing.Optional[typing.Set] = {'ANIMATABLE'},
|
|
293
|
+
override: typing.Optional[typing.Set] = 'set()',
|
|
294
|
+
tags: typing.Optional[typing.Set] = 'set()',
|
|
295
|
+
subtype: typing.Optional[str] = 'NONE',
|
|
296
|
+
update: typing.Optional[typing.Any] = None,
|
|
297
|
+
get: typing.Optional[typing.Any] = None,
|
|
298
|
+
set: typing.Optional[typing.Any] = None):
|
|
312
299
|
''' Returns a new int property definition.
|
|
313
300
|
|
|
314
301
|
:param name: Name used in the user interface.
|
|
@@ -341,7 +328,6 @@ def IntProperty(
|
|
|
341
328
|
:type get: typing.Optional[typing.Any]
|
|
342
329
|
:param set: Function to be called when this value is 'written', This function must take 2 values (self, value) and return None.
|
|
343
330
|
:type set: typing.Optional[typing.Any]
|
|
344
|
-
:rtype: 'bpy.types.IntProperty'
|
|
345
331
|
'''
|
|
346
332
|
|
|
347
333
|
...
|
|
@@ -364,8 +350,7 @@ def IntVectorProperty(
|
|
|
364
350
|
size: typing.Optional[typing.Union[int, typing.Sequence[int]]] = 3,
|
|
365
351
|
update: typing.Optional[typing.Any] = None,
|
|
366
352
|
get: typing.Optional[typing.Any] = None,
|
|
367
|
-
set: typing.Optional[typing.Any] = None
|
|
368
|
-
) -> typing.Union[typing.List, 'bpy.types.IntProperty']:
|
|
353
|
+
set: typing.Optional[typing.Any] = None):
|
|
369
354
|
''' Returns a new vector int property definition.
|
|
370
355
|
|
|
371
356
|
:param name: Name used in the user interface.
|
|
@@ -402,7 +387,6 @@ def IntVectorProperty(
|
|
|
402
387
|
:type get: typing.Optional[typing.Any]
|
|
403
388
|
:param set: Function to be called when this value is 'written', This function must take 2 values (self, value) and return None.
|
|
404
389
|
:type set: typing.Optional[typing.Any]
|
|
405
|
-
:rtype: typing.Union[typing.List, 'bpy.types.IntProperty']
|
|
406
390
|
'''
|
|
407
391
|
|
|
408
392
|
...
|
|
@@ -416,8 +400,7 @@ def PointerProperty(type: typing.Optional[typing.Any] = None,
|
|
|
416
400
|
override: typing.Optional[typing.Set] = 'set()',
|
|
417
401
|
tags: typing.Optional[typing.Set] = 'set()',
|
|
418
402
|
poll: typing.Optional[typing.Any] = None,
|
|
419
|
-
update: typing.Optional[typing.Any] = None
|
|
420
|
-
) -> 'bpy.types.PointerProperty':
|
|
403
|
+
update: typing.Optional[typing.Any] = None):
|
|
421
404
|
''' Returns a new pointer property definition.
|
|
422
405
|
|
|
423
406
|
:param type: `bpy.types.ID`.
|
|
@@ -438,7 +421,6 @@ def PointerProperty(type: typing.Optional[typing.Any] = None,
|
|
|
438
421
|
:type poll: typing.Optional[typing.Any]
|
|
439
422
|
:param update: Function to be called when this value is modified, This function must take 2 values (self, context) and return None. *Warning* there are no safety checks to avoid infinite recursion.
|
|
440
423
|
:type update: typing.Optional[typing.Any]
|
|
441
|
-
:rtype: 'bpy.types.PointerProperty'
|
|
442
424
|
'''
|
|
443
425
|
|
|
444
426
|
...
|
|
@@ -457,22 +439,21 @@ def RemoveProperty(cls: typing.Optional[typing.Any],
|
|
|
457
439
|
...
|
|
458
440
|
|
|
459
441
|
|
|
460
|
-
def StringProperty(
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
}) -> 'bpy.types.StringProperty':
|
|
442
|
+
def StringProperty(
|
|
443
|
+
name: typing.Optional[str] = "",
|
|
444
|
+
description: typing.Optional[str] = "",
|
|
445
|
+
translation_context: typing.Optional[str] = "*",
|
|
446
|
+
default: typing.Optional[str] = "",
|
|
447
|
+
maxlen: typing.Optional[int] = 0,
|
|
448
|
+
options: typing.Optional[typing.Set] = {'ANIMATABLE'},
|
|
449
|
+
override: typing.Optional[typing.Set] = 'set()',
|
|
450
|
+
tags: typing.Optional[typing.Set] = 'set()',
|
|
451
|
+
subtype: typing.Optional[str] = 'NONE',
|
|
452
|
+
update: typing.Optional[typing.Any] = None,
|
|
453
|
+
get: typing.Optional[typing.Any] = None,
|
|
454
|
+
set: typing.Optional[typing.Any] = None,
|
|
455
|
+
search: typing.Optional[typing.Any] = None,
|
|
456
|
+
search_options: typing.Optional[typing.Set] = {'SUGGESTION'}):
|
|
476
457
|
''' Returns a new string property definition.
|
|
477
458
|
|
|
478
459
|
:param name: Name used in the user interface.
|
|
@@ -503,7 +484,6 @@ def StringProperty(name: typing.Optional[str] = "",
|
|
|
503
484
|
:type search: typing.Optional[typing.Any]
|
|
504
485
|
:param search_options: - 'SORT' sorts the resulting items. - 'SUGGESTION' lets the user enter values not found in search candidates. **WARNING** disabling this flag causes the search callback to run on redraw, so only disable this flag if it's not likely to cause performance issues.
|
|
505
486
|
:type search_options: typing.Optional[typing.Set]
|
|
506
|
-
:rtype: 'bpy.types.StringProperty'
|
|
507
487
|
'''
|
|
508
488
|
|
|
509
489
|
...
|
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.
|
|
6
|
-
import bl_ui.
|
|
5
|
+
import bl_ui.properties_world
|
|
6
|
+
import bl_ui.space_console
|
|
7
7
|
import bl_ui.properties_data_curves
|
|
8
|
-
import bl_ui.
|
|
9
|
-
import bl_ui.
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import bl_ui.
|
|
13
|
-
import bl_ui.
|
|
14
|
-
import
|
|
15
|
-
import bl_ui.
|
|
16
|
-
import
|
|
17
|
-
import bl_ui.
|
|
18
|
-
import
|
|
8
|
+
import bl_ui.properties_paint_common
|
|
9
|
+
import bl_ui.properties_output
|
|
10
|
+
import bl_operators.wm
|
|
11
|
+
import bl_operators.freestyle
|
|
12
|
+
import bl_ui.space_view3d_toolbar
|
|
13
|
+
import bl_ui.space_node
|
|
14
|
+
import bl_operators.spreadsheet
|
|
15
|
+
import bl_ui.properties_data_modifier
|
|
16
|
+
import bl_operators.assets
|
|
17
|
+
import bl_ui.properties_data_volume
|
|
18
|
+
import bl_operators.node
|
|
19
19
|
import bl_ui.space_graph
|
|
20
|
-
import bl_ui.
|
|
20
|
+
import bl_ui.properties_data_lightprobe
|
|
21
|
+
import bl_ui.node_add_menu_compositor
|
|
22
|
+
import bl_ui.properties_object
|
|
23
|
+
import bl_operators.userpref
|
|
24
|
+
import bl_ui.properties_scene
|
|
25
|
+
import bl_ui.properties_constraint
|
|
26
|
+
import bl_ui.properties_data_shaderfx
|
|
27
|
+
import bl_ui.properties_mask_common
|
|
28
|
+
import bl_ui.properties_physics_geometry_nodes
|
|
29
|
+
import bl_ui.space_userpref
|
|
30
|
+
import bl_ui.properties_data_mesh
|
|
31
|
+
import bl_ui.properties_data_grease_pencil
|
|
32
|
+
import bl_ui.properties_physics_rigidbody
|
|
21
33
|
import bl_ui.space_filebrowser
|
|
22
|
-
import bl_ui.
|
|
23
|
-
import
|
|
24
|
-
import bl_ui.
|
|
25
|
-
import bl_ui.
|
|
26
|
-
import bl_ui.properties_data_light
|
|
27
|
-
import bl_ui.properties_grease_pencil_common
|
|
34
|
+
import bl_ui.space_topbar
|
|
35
|
+
import bl_ui.node_add_menu_shader
|
|
36
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
37
|
+
import bl_ui.properties_physics_fluid
|
|
28
38
|
import bl_ui.space_sequencer
|
|
29
|
-
import bl_ui.space_clip
|
|
30
|
-
import bl_ui.space_outliner
|
|
31
|
-
import bl_ui.properties_texture
|
|
32
|
-
import bl_ui.space_text
|
|
33
|
-
import bl_ui.space_dopesheet
|
|
34
|
-
import bl_ui.properties_data_mesh
|
|
35
39
|
import bl_ui.properties_physics_common
|
|
36
|
-
import bl_ui
|
|
40
|
+
import bl_ui.space_properties
|
|
37
41
|
import bl_ui.space_toolsystem_common
|
|
38
|
-
import bl_ui.
|
|
39
|
-
import bl_ui.
|
|
40
|
-
import
|
|
42
|
+
import bl_ui.properties_data_curve
|
|
43
|
+
import bl_ui.properties_data_lattice
|
|
44
|
+
import bl_ui.generic_ui_list
|
|
45
|
+
import bl_operators.object
|
|
46
|
+
import bl_ui.properties_data_bone
|
|
47
|
+
import bl_ui.space_clip
|
|
41
48
|
import bl_ui.properties_data_metaball
|
|
42
|
-
import bl_ui.node_add_menu
|
|
43
49
|
import bl_ui.properties_physics_cloth
|
|
44
|
-
import bl_ui.
|
|
45
|
-
import bl_ui.properties_paint_common
|
|
46
|
-
import bl_ui.properties_mask_common
|
|
47
|
-
import bl_ui.properties_data_volume
|
|
48
|
-
import bl_ui.space_console
|
|
49
|
-
import bl_ui.properties_object
|
|
50
|
-
import bl_ui.space_time
|
|
51
|
-
import bl_ui.properties_output
|
|
52
|
-
import bl_ui.space_statusbar
|
|
53
|
-
import bl_ui.properties_data_modifier
|
|
54
|
-
import bl_ui.properties_physics_field
|
|
55
|
-
import bl_ui.space_properties
|
|
56
|
-
import bl_ui.generic_ui_list
|
|
57
|
-
import bl_ui.properties_constraint
|
|
50
|
+
import bl_ui.properties_data_speaker
|
|
58
51
|
import bl_operators.view3d
|
|
59
|
-
import bl_ui.
|
|
60
|
-
import bl_ui
|
|
61
|
-
import bl_ui.
|
|
62
|
-
import bl_ui.
|
|
63
|
-
import bl_operators.
|
|
64
|
-
import bl_ui.
|
|
65
|
-
import bl_ui.
|
|
66
|
-
import bl_ui.
|
|
67
|
-
import bl_ui.
|
|
68
|
-
import
|
|
69
|
-
import bl_operators.constraint
|
|
70
|
-
import bl_ui.properties_data_shaderfx
|
|
52
|
+
import bl_ui.space_image
|
|
53
|
+
import bl_ui
|
|
54
|
+
import bl_ui.asset_shelf
|
|
55
|
+
import bl_ui.space_dopesheet
|
|
56
|
+
import bl_operators.presets
|
|
57
|
+
import bl_ui.properties_material_gpencil
|
|
58
|
+
import bl_ui.properties_data_light
|
|
59
|
+
import bl_ui.properties_data_empty
|
|
60
|
+
import bl_ui.properties_freestyle
|
|
61
|
+
import bl_operators.file
|
|
71
62
|
import bl_ui.properties_render
|
|
72
|
-
import
|
|
63
|
+
import bl_operators.anim
|
|
64
|
+
import bl_ui.properties_grease_pencil_common
|
|
65
|
+
import bl_ui.properties_data_pointcloud
|
|
66
|
+
import bl_ui.space_statusbar
|
|
67
|
+
import bl_ui.space_time
|
|
68
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
69
|
+
import bl_ui.space_view3d
|
|
70
|
+
import bl_ui.space_nla
|
|
71
|
+
import bl_ui.properties_texture
|
|
73
72
|
import bl_ui.node_add_menu_geometry
|
|
74
|
-
import bl_operators.
|
|
75
|
-
import
|
|
73
|
+
import bl_operators.clip
|
|
74
|
+
import bl_ui.space_text
|
|
75
|
+
import bl_ui.properties_material
|
|
76
|
+
import bl_ui.space_outliner
|
|
77
|
+
import bl_ui.properties_particle
|
|
78
|
+
import bl_operators.constraint
|
|
76
79
|
import bl_ui.properties_data_gpencil
|
|
77
|
-
import
|
|
80
|
+
import bl_ui.properties_physics_field
|
|
78
81
|
import bl_ui.space_spreadsheet
|
|
79
|
-
import bl_ui.
|
|
80
|
-
import bl_ui.
|
|
81
|
-
import bl_ui.
|
|
82
|
-
import
|
|
83
|
-
import bl_ui.
|
|
84
|
-
import
|
|
85
|
-
import
|
|
86
|
-
import bl_ui.
|
|
87
|
-
import bl_operators.object
|
|
88
|
-
import bl_ui.space_node
|
|
89
|
-
import bl_ui.properties_data_empty
|
|
90
|
-
import bl_operators.freestyle
|
|
82
|
+
import bl_ui.node_add_menu_texture
|
|
83
|
+
import bl_ui.node_add_menu
|
|
84
|
+
import bl_ui.properties_data_camera
|
|
85
|
+
import bl_ui.properties_data_armature
|
|
86
|
+
import bl_ui.space_toolsystem_toolbar
|
|
87
|
+
import bl_ui.space_info
|
|
88
|
+
import bl_ui.properties_workspace
|
|
89
|
+
import bl_ui.properties_collection
|
|
91
90
|
import bl_ui.properties_view_layer
|
|
91
|
+
import bl_ui.properties_physics_softbody
|
|
92
92
|
|
|
93
93
|
GenericType = typing.TypeVar("GenericType")
|
|
94
94
|
|
|
@@ -6878,10 +6878,10 @@ class Context(bpy_struct):
|
|
|
6878
6878
|
:type: 'UIList'
|
|
6879
6879
|
'''
|
|
6880
6880
|
|
|
6881
|
-
property: typing.Union[
|
|
6881
|
+
property: typing.Union[int, str, 'ID']
|
|
6882
6882
|
''' Get the property associated with a hovered button. Returns a tuple of the datablock, data path to the property, and array index.
|
|
6883
6883
|
|
|
6884
|
-
:type: typing.Union[
|
|
6884
|
+
:type: typing.Union[int, str, 'ID']
|
|
6885
6885
|
'''
|
|
6886
6886
|
|
|
6887
6887
|
edit_text: 'Text'
|
bpy/utils/__init__.pyi
CHANGED
|
@@ -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=yb21mDQOyKApVm9SDlAxtnhpyKQc21Cy2ch2lzp9amE,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=25yX_P_b-CCZXu6cjLnf09ryCHWj5t4uomrKA4bmNac,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=5tyCy1ocTTuedGsl__Wt1-EbBG5KQj7yvwF0K5Np97Y,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=6iJEvOl7KoleRjQBkeTBgzd-_aAvjqosiMx5xBm6Eak,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=-QSyLtNJezZAJtGFhlT6lhdzuLcu5Jt2n1SjZ9hYnUw,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
|
|
@@ -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=Np-V1TXYlInF_J37f1Ff7sIfn-DO1MwnNjzA5RrKpTU,324
|
|
304
304
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
305
|
-
bpy/app/__init__.pyi,sha256=
|
|
305
|
+
bpy/app/__init__.pyi,sha256=UVgkh5Umb-pSaFG6OjXcceFkK1a1X8qpIvhsoDRe3TY,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=EuQjG7ULDwcKKhB2TITWzNevYWM4y-TA6rrl0rDs1XA,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
|
|
@@ -472,11 +472,11 @@ bpy/ops/world/__init__.pyi,sha256=J0L2bR-WDLhzyvpEhcud7L6ovc5uwNlXHHuNXRF36nw,57
|
|
|
472
472
|
bpy/ops/world/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
473
473
|
bpy/path/__init__.pyi,sha256=UCfQ6H7g5j9jwGjKPxd2eYMJwzQ5-Vr3Kd6hXH3thiw,6314
|
|
474
474
|
bpy/path/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
475
|
-
bpy/props/__init__.pyi,sha256=
|
|
475
|
+
bpy/props/__init__.pyi,sha256=Qxkp4fnTsA9dfNA8cPfUDds0eoKjImXl6L9T7Wf4vPw,28726
|
|
476
476
|
bpy/props/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
477
|
-
bpy/types/__init__.pyi,sha256=
|
|
477
|
+
bpy/types/__init__.pyi,sha256=s2NpGZ_NezPw7sfuXEgeHDYu0kOtlCPk69JbzkViL2Q,3502000
|
|
478
478
|
bpy/types/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
479
|
-
bpy/utils/__init__.pyi,sha256=
|
|
479
|
+
bpy/utils/__init__.pyi,sha256=oZjhiaoYQLBCWOES5GRUgjlaa9cIEuwgYpKAPKJagB8,11228
|
|
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
|
|
@@ -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-20231227.dist-info/METADATA,sha256=QPbzgjoMsz3P_v6ziXBGi1-Vo6LLTyy_45igXzM_7yw,7008
|
|
608
|
+
fake_bpy_module-20231227.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
609
|
+
fake_bpy_module-20231227.dist-info/top_level.txt,sha256=7r84ZPNSbRAopA50b0pH3uZ2ysQ2IvkuP0uXadxl7gs,495
|
|
610
|
+
fake_bpy_module-20231227.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|