fake-bpy-module 20231225__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 +3 -3
- bl_keymap_utils/__init__.pyi +3 -3
- bl_operators/__init__.pyi +22 -22
- bl_ui/__init__.pyi +61 -61
- bpy/app/__init__.pyi +1 -1
- bpy/ops/__init__.pyi +64 -64
- bpy/props/__init__.pyi +78 -98
- bpy/types/__init__.pyi +111 -111
- bpy/utils/__init__.pyi +1 -1
- bpy_extras/__init__.pyi +2 -2
- {fake_bpy_module-20231225.dist-info → fake_bpy_module-20231227.dist-info}/METADATA +1 -1
- {fake_bpy_module-20231225.dist-info → fake_bpy_module-20231227.dist-info}/RECORD +15 -15
- {fake_bpy_module-20231225.dist-info → fake_bpy_module-20231227.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20231225.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 utils
|
|
4
|
-
from . import bl_extract_messages
|
|
5
3
|
from . import settings
|
|
6
|
-
from . import utils_languages_menu
|
|
7
4
|
from . import merge_po
|
|
5
|
+
from . import bl_extract_messages
|
|
8
6
|
from . import utils_cli
|
|
7
|
+
from . import utils_languages_menu
|
|
9
8
|
from . import utils_rtl
|
|
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
3
|
from . import io
|
|
4
|
-
from . import keymap_hierarchy
|
|
5
|
-
from . import platform_helpers
|
|
6
|
-
from . import versioning
|
|
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
|
|
4
|
-
from . import
|
|
5
|
-
from . import screen_play_rendered_anim
|
|
6
|
-
from . import mesh
|
|
7
|
-
from . import sequencer
|
|
3
|
+
from . import object_align
|
|
4
|
+
from . import rigidbody
|
|
8
5
|
from . import uvcalc_transform
|
|
9
|
-
from . import add_mesh_torus
|
|
10
6
|
from . import object_randomize_transform
|
|
11
|
-
from . import clip
|
|
12
|
-
from . import uvcalc_lightmap
|
|
13
|
-
from . import rigidbody
|
|
14
|
-
from . import vertexpaint_dirt
|
|
15
|
-
from . import bmesh
|
|
16
7
|
from . import wm
|
|
17
|
-
from . import
|
|
8
|
+
from . import freestyle
|
|
9
|
+
from . import sequencer
|
|
10
|
+
from . import uvcalc_follow_active
|
|
18
11
|
from . import spreadsheet
|
|
19
|
-
from . import presets
|
|
20
|
-
from . import object_align
|
|
21
|
-
from . import object_quick_effects
|
|
22
|
-
from . import constraint
|
|
23
|
-
from . import object
|
|
24
|
-
from . import image
|
|
25
12
|
from . import assets
|
|
26
|
-
from . import uvcalc_follow_active
|
|
27
|
-
from . import anim
|
|
28
|
-
from . import file
|
|
29
13
|
from . import node
|
|
14
|
+
from . import userpref
|
|
15
|
+
from . import uvcalc_lightmap
|
|
16
|
+
from . import geometry_nodes
|
|
17
|
+
from . import screen_play_rendered_anim
|
|
18
|
+
from . import object
|
|
30
19
|
from . import view3d
|
|
31
|
-
from . import
|
|
20
|
+
from . import presets
|
|
21
|
+
from . import file
|
|
22
|
+
from . import anim
|
|
23
|
+
from . import mesh
|
|
24
|
+
from . import bmesh
|
|
25
|
+
from . import clip
|
|
26
|
+
from . import image
|
|
27
|
+
from . import console
|
|
28
|
+
from . import constraint
|
|
29
|
+
from . import vertexpaint_dirt
|
|
30
|
+
from . import add_mesh_torus
|
|
31
|
+
from . import object_quick_effects
|
|
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
|
|
5
|
+
from . import properties_animviz
|
|
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
|
|
7
13
|
from . import properties_data_modifier
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
10
|
-
from . import
|
|
11
|
-
from . import
|
|
12
|
-
from . import properties_freestyle
|
|
14
|
+
from . import properties_data_volume
|
|
15
|
+
from . import space_graph
|
|
16
|
+
from . import properties_data_lightprobe
|
|
17
|
+
from . import node_add_menu_compositor
|
|
13
18
|
from . import properties_object
|
|
14
|
-
from . import
|
|
15
|
-
from . import asset_shelf
|
|
16
|
-
from . import properties_output
|
|
17
|
-
from . import properties_data_gpencil
|
|
18
|
-
from . import properties_data_lattice
|
|
19
|
-
from . import space_dopesheet
|
|
20
|
-
from . import space_time
|
|
21
|
-
from . import space_image
|
|
22
|
-
from . import space_info
|
|
23
|
-
from . import space_clip
|
|
24
|
-
from . import properties_view_layer
|
|
19
|
+
from . import properties_scene
|
|
25
20
|
from . import properties_constraint
|
|
26
|
-
from . import
|
|
27
|
-
from . import
|
|
28
|
-
from . import
|
|
29
|
-
from . import
|
|
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
|
|
28
|
+
from . import space_filebrowser
|
|
29
|
+
from . import space_topbar
|
|
30
|
+
from . import node_add_menu_shader
|
|
31
|
+
from . import properties_physics_dynamicpaint
|
|
32
|
+
from . import properties_physics_fluid
|
|
33
|
+
from . import space_sequencer
|
|
30
34
|
from . import properties_physics_common
|
|
35
|
+
from . import space_properties
|
|
36
|
+
from . import space_toolsystem_common
|
|
37
|
+
from . import properties_data_curve
|
|
38
|
+
from . import properties_data_lattice
|
|
39
|
+
from . import generic_ui_list
|
|
31
40
|
from . import properties_data_bone
|
|
41
|
+
from . import space_clip
|
|
32
42
|
from . import properties_data_metaball
|
|
33
|
-
from . import
|
|
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
|
|
34
50
|
from . import properties_data_empty
|
|
35
|
-
from . import
|
|
36
|
-
from . import properties_data_shaderfx
|
|
37
|
-
from . import node_add_menu_texture
|
|
38
|
-
from . import space_properties
|
|
51
|
+
from . import properties_freestyle
|
|
39
52
|
from . import properties_render
|
|
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
|
|
40
60
|
from . import properties_texture
|
|
61
|
+
from . import node_add_menu_geometry
|
|
41
62
|
from . import space_text
|
|
63
|
+
from . import properties_material
|
|
64
|
+
from . import space_outliner
|
|
42
65
|
from . import properties_particle
|
|
43
|
-
from . import
|
|
44
|
-
from . import properties_material_gpencil
|
|
45
|
-
from . import properties_data_light
|
|
46
|
-
from . import properties_physics_softbody
|
|
47
|
-
from . import properties_animviz
|
|
48
|
-
from . import properties_data_camera
|
|
49
|
-
from . import properties_physics_fluid
|
|
50
|
-
from . import space_filebrowser
|
|
51
|
-
from . import properties_paint_common
|
|
52
|
-
from . import properties_physics_dynamicpaint
|
|
53
|
-
from . import properties_data_curve
|
|
54
|
-
from . import properties_data_curves
|
|
55
|
-
from . import properties_grease_pencil_common
|
|
66
|
+
from . import properties_data_gpencil
|
|
56
67
|
from . import properties_physics_field
|
|
57
|
-
from . import
|
|
58
|
-
from . import
|
|
59
|
-
from . import
|
|
60
|
-
from . import
|
|
61
|
-
from . import
|
|
68
|
+
from . import utils
|
|
69
|
+
from . import space_spreadsheet
|
|
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
|
|
62
74
|
from . import space_toolsystem_toolbar
|
|
63
|
-
from . import
|
|
64
|
-
from . import node_add_menu_compositor
|
|
75
|
+
from . import space_info
|
|
65
76
|
from . import properties_workspace
|
|
66
|
-
from . import
|
|
67
|
-
from . import
|
|
68
|
-
from . import
|
|
69
|
-
from . import space_toolsystem_common
|
|
70
|
-
from . import properties_data_lightprobe
|
|
71
|
-
from . import properties_physics_rigidbody
|
|
72
|
-
from . import utils
|
|
73
|
-
from . import space_userpref
|
|
74
|
-
from . import space_node
|
|
75
|
-
from . import generic_ui_list
|
|
76
|
-
from . import properties_data_speaker
|
|
77
|
-
from . import properties_scene
|
|
78
|
-
from . import space_view3d_toolbar
|
|
79
|
-
from . import space_sequencer
|
|
77
|
+
from . import properties_collection
|
|
78
|
+
from . import properties_view_layer
|
|
79
|
+
from . import properties_physics_softbody
|
|
80
80
|
|
|
81
81
|
GenericType = typing.TypeVar("GenericType")
|
|
82
82
|
|
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 wm
|
|
4
|
+
from . import font
|
|
5
|
+
from . import import_scene
|
|
6
|
+
from . import curves
|
|
7
|
+
from . import mask
|
|
8
|
+
from . import armature
|
|
9
|
+
from . import cycles
|
|
10
|
+
from . import node
|
|
11
|
+
from . import material
|
|
12
|
+
from . import transform
|
|
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
|
|
3
19
|
from . import cachefile
|
|
4
|
-
from . import
|
|
5
|
-
from . import
|
|
6
|
-
from . import
|
|
20
|
+
from . import mesh
|
|
21
|
+
from . import pose
|
|
22
|
+
from . import texture
|
|
23
|
+
from . import ui
|
|
24
|
+
from . import text
|
|
7
25
|
from . import export_anim
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
10
|
-
from . import
|
|
26
|
+
from . import gpencil
|
|
27
|
+
from . import ed
|
|
28
|
+
from . import image
|
|
29
|
+
from . import nla
|
|
30
|
+
from . import console
|
|
31
|
+
from . import mball
|
|
32
|
+
from . import sound
|
|
33
|
+
from . import object
|
|
34
|
+
from . import view2d
|
|
11
35
|
from . import anim
|
|
12
|
-
from . import
|
|
36
|
+
from . import ptcache
|
|
37
|
+
from . import scene
|
|
38
|
+
from . import constraint
|
|
13
39
|
from . import clip
|
|
14
|
-
from . import
|
|
15
|
-
from . import
|
|
16
|
-
from . import
|
|
17
|
-
from . import
|
|
18
|
-
from . import
|
|
40
|
+
from . import sequencer
|
|
41
|
+
from . import poselib
|
|
42
|
+
from . import text_editor
|
|
43
|
+
from . import gizmogroup
|
|
44
|
+
from . import workspace
|
|
45
|
+
from . import rigidbody
|
|
46
|
+
from . import view3d
|
|
47
|
+
from . import collection
|
|
48
|
+
from . import preferences
|
|
49
|
+
from . import palette
|
|
50
|
+
from . import asset
|
|
51
|
+
from . import import_curve
|
|
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
|
|
19
62
|
from . import brush
|
|
20
|
-
from . import import_anim
|
|
21
|
-
from . import cloth
|
|
22
|
-
from . import view2d
|
|
23
|
-
from . import console
|
|
24
63
|
from . import world
|
|
64
|
+
from . import surface
|
|
25
65
|
from . import script
|
|
26
|
-
from . import material
|
|
27
|
-
from . import nla
|
|
28
66
|
from . import dpaint
|
|
29
|
-
from . import import_mesh
|
|
30
67
|
from . import export_mesh
|
|
31
|
-
from . import workspace
|
|
32
|
-
from . import import_scene
|
|
33
|
-
from . import mesh
|
|
34
|
-
from . import ui
|
|
35
|
-
from . import gizmogroup
|
|
36
|
-
from . import uilist
|
|
37
|
-
from . import particle
|
|
38
|
-
from . import asset
|
|
39
|
-
from . import action
|
|
40
|
-
from . import rigidbody
|
|
41
68
|
from . import export_scene
|
|
42
|
-
from . import
|
|
43
|
-
from . import
|
|
44
|
-
from . import file
|
|
45
|
-
from . import object
|
|
46
|
-
from . import render
|
|
47
|
-
from . import gpencil
|
|
69
|
+
from . import lattice
|
|
70
|
+
from . import grease_pencil
|
|
48
71
|
from . import buttons
|
|
49
|
-
from . import
|
|
50
|
-
from . import
|
|
72
|
+
from . import action
|
|
73
|
+
from . import import_anim
|
|
74
|
+
from . import cloth
|
|
51
75
|
from . import sculpt
|
|
52
|
-
from . import screen
|
|
53
|
-
from . import marker
|
|
54
|
-
from . import collection
|
|
55
|
-
from . import ptcache
|
|
56
|
-
from . import armature
|
|
57
|
-
from . import view3d
|
|
58
|
-
from . import spreadsheet
|
|
59
|
-
from . import mball
|
|
60
|
-
from . import geometry
|
|
61
|
-
from . import ed
|
|
62
|
-
from . import uv
|
|
63
|
-
from . import lattice
|
|
64
|
-
from . import mask
|
|
65
|
-
from . import text
|
|
66
|
-
from . import preferences
|
|
67
|
-
from . import scene
|
|
68
|
-
from . import graph
|
|
69
|
-
from . import constraint
|
|
70
76
|
from . import paintcurve
|
|
71
|
-
from . import
|
|
72
|
-
from . import
|
|
73
|
-
from . import
|
|
74
|
-
from . import sequencer
|
|
75
|
-
from . import cycles
|
|
76
|
-
from . import node
|
|
77
|
-
from . import sculpt_curves
|
|
78
|
-
from . import import_curve
|
|
79
|
-
from . import image
|
|
77
|
+
from . import fluid
|
|
78
|
+
from . import marker
|
|
79
|
+
from . import paint
|
|
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
|
+
import bl_ui.properties_data_curves
|
|
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
|
|
7
15
|
import bl_ui.properties_data_modifier
|
|
8
|
-
import bl_operators.
|
|
9
|
-
import bl_ui.
|
|
10
|
-
import
|
|
11
|
-
import bl_ui.
|
|
12
|
-
import bl_ui.
|
|
13
|
-
import bl_ui.
|
|
16
|
+
import bl_operators.assets
|
|
17
|
+
import bl_ui.properties_data_volume
|
|
18
|
+
import bl_operators.node
|
|
19
|
+
import bl_ui.space_graph
|
|
20
|
+
import bl_ui.properties_data_lightprobe
|
|
21
|
+
import bl_ui.node_add_menu_compositor
|
|
14
22
|
import bl_ui.properties_object
|
|
15
|
-
import
|
|
16
|
-
import bl_ui.
|
|
17
|
-
import bl_ui.properties_output
|
|
18
|
-
import bl_ui.properties_data_gpencil
|
|
19
|
-
import bl_ui.properties_data_lattice
|
|
20
|
-
import bl_ui.space_dopesheet
|
|
21
|
-
import bl_ui.space_time
|
|
22
|
-
import bl_ui.space_image
|
|
23
|
-
import bl_ui.space_info
|
|
24
|
-
import bl_ui.space_clip
|
|
25
|
-
import bl_operators.clip
|
|
26
|
-
import bl_ui.properties_view_layer
|
|
23
|
+
import bl_operators.userpref
|
|
24
|
+
import bl_ui.properties_scene
|
|
27
25
|
import bl_ui.properties_constraint
|
|
28
|
-
import bl_ui.
|
|
29
|
-
import bl_ui.
|
|
30
|
-
import bl_ui.
|
|
31
|
-
import bl_ui.
|
|
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
|
|
33
|
+
import bl_ui.space_filebrowser
|
|
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
|
|
38
|
+
import bl_ui.space_sequencer
|
|
32
39
|
import bl_ui.properties_physics_common
|
|
40
|
+
import bl_ui.space_properties
|
|
41
|
+
import bl_ui.space_toolsystem_common
|
|
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
|
|
33
46
|
import bl_ui.properties_data_bone
|
|
47
|
+
import bl_ui.space_clip
|
|
34
48
|
import bl_ui.properties_data_metaball
|
|
35
|
-
import bl_ui.
|
|
49
|
+
import bl_ui.properties_physics_cloth
|
|
50
|
+
import bl_ui.properties_data_speaker
|
|
51
|
+
import bl_operators.view3d
|
|
52
|
+
import bl_ui.space_image
|
|
36
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
|
|
37
59
|
import bl_ui.properties_data_empty
|
|
38
|
-
import bl_ui.
|
|
39
|
-
import
|
|
40
|
-
import bl_operators.wm
|
|
41
|
-
import bl_ui.node_add_menu_texture
|
|
42
|
-
import bl_ui.space_properties
|
|
60
|
+
import bl_ui.properties_freestyle
|
|
61
|
+
import bl_operators.file
|
|
43
62
|
import bl_ui.properties_render
|
|
44
|
-
import bl_operators.
|
|
45
|
-
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
|
|
46
71
|
import bl_ui.properties_texture
|
|
72
|
+
import bl_ui.node_add_menu_geometry
|
|
73
|
+
import bl_operators.clip
|
|
47
74
|
import bl_ui.space_text
|
|
75
|
+
import bl_ui.properties_material
|
|
76
|
+
import bl_ui.space_outliner
|
|
48
77
|
import bl_ui.properties_particle
|
|
49
|
-
import bl_ui.properties_physics_cloth
|
|
50
|
-
import bl_ui.properties_material_gpencil
|
|
51
|
-
import bl_ui.properties_data_light
|
|
52
|
-
import bl_ui.properties_physics_softbody
|
|
53
78
|
import bl_operators.constraint
|
|
54
|
-
import bl_ui.
|
|
55
|
-
import bl_ui.properties_physics_fluid
|
|
56
|
-
import bl_ui.space_filebrowser
|
|
57
|
-
import bl_ui.properties_paint_common
|
|
58
|
-
import bl_operators.object
|
|
59
|
-
import bl_ui.properties_physics_dynamicpaint
|
|
60
|
-
import bl_ui.properties_data_curve
|
|
61
|
-
import bl_ui.properties_data_curves
|
|
62
|
-
import bl_ui.properties_grease_pencil_common
|
|
63
|
-
import bl_operators.assets
|
|
79
|
+
import bl_ui.properties_data_gpencil
|
|
64
80
|
import bl_ui.properties_physics_field
|
|
65
|
-
import bl_ui.
|
|
66
|
-
import bl_ui.
|
|
67
|
-
import bl_ui.
|
|
68
|
-
import bl_ui.
|
|
69
|
-
import bl_ui.
|
|
81
|
+
import bl_ui.space_spreadsheet
|
|
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
|
|
70
86
|
import bl_ui.space_toolsystem_toolbar
|
|
71
|
-
import bl_ui.
|
|
72
|
-
import bl_ui.node_add_menu_compositor
|
|
73
|
-
import bl_operators.anim
|
|
87
|
+
import bl_ui.space_info
|
|
74
88
|
import bl_ui.properties_workspace
|
|
75
|
-
import
|
|
76
|
-
import bl_ui.
|
|
77
|
-
import
|
|
78
|
-
import bl_ui.space_nla
|
|
79
|
-
import bl_ui.properties_mask_common
|
|
80
|
-
import bl_ui.space_toolsystem_common
|
|
81
|
-
import bl_ui.properties_data_lightprobe
|
|
82
|
-
import bl_operators.view3d
|
|
83
|
-
import bl_ui.properties_physics_rigidbody
|
|
84
|
-
import bl_ui.space_userpref
|
|
85
|
-
import bl_ui.space_node
|
|
86
|
-
import bl_ui.generic_ui_list
|
|
87
|
-
import bl_operators.freestyle
|
|
88
|
-
import bl_ui.properties_data_speaker
|
|
89
|
-
import bl_ui.properties_scene
|
|
90
|
-
import bl_ui.space_view3d_toolbar
|
|
91
|
-
import bl_ui.space_sequencer
|
|
89
|
+
import bl_ui.properties_collection
|
|
90
|
+
import bl_ui.properties_view_layer
|
|
91
|
+
import bl_ui.properties_physics_softbody
|
|
92
92
|
|
|
93
93
|
GenericType = typing.TypeVar("GenericType")
|
|
94
94
|
|
|
@@ -14903,7 +14903,7 @@ class Gizmo(bpy_struct):
|
|
|
14903
14903
|
|
|
14904
14904
|
def modal(self, context: 'Context', event: 'Event', tweak: typing.Optional[
|
|
14905
14905
|
typing.Union[typing.Set[str], typing.Set[int]]]
|
|
14906
|
-
) -> typing.Union[typing.Set[
|
|
14906
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
14907
14907
|
'''
|
|
14908
14908
|
|
|
14909
14909
|
:param context:
|
|
@@ -14912,7 +14912,7 @@ class Gizmo(bpy_struct):
|
|
|
14912
14912
|
:type event: 'Event'
|
|
14913
14913
|
:param tweak: Tweak
|
|
14914
14914
|
:type tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
14915
|
-
:rtype: typing.Union[typing.Set[
|
|
14915
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
14916
14916
|
:return: result
|
|
14917
14917
|
'''
|
|
14918
14918
|
...
|
|
@@ -14924,14 +14924,14 @@ class Gizmo(bpy_struct):
|
|
|
14924
14924
|
...
|
|
14925
14925
|
|
|
14926
14926
|
def invoke(self, context: 'Context', event: 'Event'
|
|
14927
|
-
) -> typing.Union[typing.Set[
|
|
14927
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
14928
14928
|
'''
|
|
14929
14929
|
|
|
14930
14930
|
:param context:
|
|
14931
14931
|
:type context: 'Context'
|
|
14932
14932
|
:param event:
|
|
14933
14933
|
:type event: 'Event'
|
|
14934
|
-
:rtype: typing.Union[typing.Set[
|
|
14934
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
14935
14935
|
:return: result
|
|
14936
14936
|
'''
|
|
14937
14937
|
...
|
|
@@ -17435,10 +17435,10 @@ class KeyingSetInfo(bpy_struct):
|
|
|
17435
17435
|
:type: typing.Union[str, typing.Any]
|
|
17436
17436
|
'''
|
|
17437
17437
|
|
|
17438
|
-
bl_options: typing.Union[typing.Set[
|
|
17438
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17439
17439
|
''' Keying Set options to use when inserting keyframes
|
|
17440
17440
|
|
|
17441
|
-
:type: typing.Union[typing.Set[
|
|
17441
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17442
17442
|
'''
|
|
17443
17443
|
|
|
17444
17444
|
def poll(self, context: typing.Optional['Context']) -> bool:
|
|
@@ -17886,10 +17886,10 @@ class Macro(bpy_struct):
|
|
|
17886
17886
|
:type: typing.Union[str, typing.Any]
|
|
17887
17887
|
'''
|
|
17888
17888
|
|
|
17889
|
-
bl_options: typing.Union[typing.Set[
|
|
17889
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17890
17890
|
''' Options for this operator type
|
|
17891
17891
|
|
|
17892
|
-
:type: typing.Union[typing.Set[
|
|
17892
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
17893
17893
|
'''
|
|
17894
17894
|
|
|
17895
17895
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -17923,12 +17923,12 @@ class Macro(bpy_struct):
|
|
|
17923
17923
|
'''
|
|
17924
17924
|
|
|
17925
17925
|
def report(self, type: typing.Optional[
|
|
17926
|
-
typing.Union[typing.Set[
|
|
17926
|
+
typing.Union[typing.Set[int], typing.Set[str]]],
|
|
17927
17927
|
message: typing.Union[str, typing.Any]):
|
|
17928
17928
|
''' report
|
|
17929
17929
|
|
|
17930
17930
|
:param type: Type
|
|
17931
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
17931
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
17932
17932
|
:param message: Report Message
|
|
17933
17933
|
:type message: typing.Union[str, typing.Any]
|
|
17934
17934
|
'''
|
|
@@ -23012,10 +23012,10 @@ class Operator(bpy_struct):
|
|
|
23012
23012
|
:type: typing.Union[str, typing.Any]
|
|
23013
23013
|
'''
|
|
23014
23014
|
|
|
23015
|
-
bl_options: typing.Union[typing.Set[
|
|
23015
|
+
bl_options: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23016
23016
|
''' Options for this operator type
|
|
23017
23017
|
|
|
23018
|
-
:type: typing.Union[typing.Set[
|
|
23018
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23019
23019
|
'''
|
|
23020
23020
|
|
|
23021
23021
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -23073,12 +23073,12 @@ class Operator(bpy_struct):
|
|
|
23073
23073
|
'''
|
|
23074
23074
|
|
|
23075
23075
|
def report(self, type: typing.Optional[
|
|
23076
|
-
typing.Union[typing.Set[
|
|
23076
|
+
typing.Union[typing.Set[int], typing.Set[str]]],
|
|
23077
23077
|
message: typing.Union[str, typing.Any]):
|
|
23078
23078
|
''' report
|
|
23079
23079
|
|
|
23080
23080
|
:param type: Type
|
|
23081
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
23081
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
23082
23082
|
:param message: Report Message
|
|
23083
23083
|
:type message: typing.Union[str, typing.Any]
|
|
23084
23084
|
'''
|
|
@@ -23103,12 +23103,12 @@ class Operator(bpy_struct):
|
|
|
23103
23103
|
...
|
|
23104
23104
|
|
|
23105
23105
|
def execute(self, context: 'Context'
|
|
23106
|
-
) -> typing.Union[typing.Set[
|
|
23106
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
23107
23107
|
''' Execute the operator
|
|
23108
23108
|
|
|
23109
23109
|
:param context:
|
|
23110
23110
|
:type context: 'Context'
|
|
23111
|
-
:rtype: typing.Union[typing.Set[
|
|
23111
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23112
23112
|
:return: result
|
|
23113
23113
|
'''
|
|
23114
23114
|
...
|
|
@@ -23124,27 +23124,27 @@ class Operator(bpy_struct):
|
|
|
23124
23124
|
...
|
|
23125
23125
|
|
|
23126
23126
|
def invoke(self, context: 'Context', event: 'Event'
|
|
23127
|
-
) -> typing.Union[typing.Set[
|
|
23127
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
23128
23128
|
''' Invoke the operator
|
|
23129
23129
|
|
|
23130
23130
|
:param context:
|
|
23131
23131
|
:type context: 'Context'
|
|
23132
23132
|
:param event:
|
|
23133
23133
|
:type event: 'Event'
|
|
23134
|
-
:rtype: typing.Union[typing.Set[
|
|
23134
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23135
23135
|
:return: result
|
|
23136
23136
|
'''
|
|
23137
23137
|
...
|
|
23138
23138
|
|
|
23139
23139
|
def modal(self, context: 'Context', event: 'Event'
|
|
23140
|
-
) -> typing.Union[typing.Set[
|
|
23140
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
23141
23141
|
''' Modal operator function
|
|
23142
23142
|
|
|
23143
23143
|
:param context:
|
|
23144
23144
|
:type context: 'Context'
|
|
23145
23145
|
:param event:
|
|
23146
23146
|
:type event: 'Event'
|
|
23147
|
-
:rtype: typing.Union[typing.Set[
|
|
23147
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
23148
23148
|
:return: result
|
|
23149
23149
|
'''
|
|
23150
23150
|
...
|
|
@@ -29019,12 +29019,12 @@ class RenderEngine(bpy_struct):
|
|
|
29019
29019
|
...
|
|
29020
29020
|
|
|
29021
29021
|
def report(self, type: typing.Optional[
|
|
29022
|
-
typing.Union[typing.Set[
|
|
29022
|
+
typing.Union[typing.Set[int], typing.Set[str]]],
|
|
29023
29023
|
message: typing.Union[str, typing.Any]):
|
|
29024
29024
|
''' Report info, warning or error messages
|
|
29025
29025
|
|
|
29026
29026
|
:param type: Type
|
|
29027
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
29027
|
+
:type type: typing.Optional[typing.Union[typing.Set[int], typing.Set[str]]]
|
|
29028
29028
|
:param message: Report Message
|
|
29029
29029
|
:type message: typing.Union[str, typing.Any]
|
|
29030
29030
|
'''
|
|
@@ -40097,10 +40097,10 @@ class ToolSettings(bpy_struct):
|
|
|
40097
40097
|
:type: typing.Union[str, int]
|
|
40098
40098
|
'''
|
|
40099
40099
|
|
|
40100
|
-
snap_elements: typing.Union[typing.Set[
|
|
40100
|
+
snap_elements: typing.Union[typing.Set[int], typing.Set[str]]
|
|
40101
40101
|
''' Type of element to snap to
|
|
40102
40102
|
|
|
40103
|
-
:type: typing.Union[typing.Set[
|
|
40103
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
40104
40104
|
'''
|
|
40105
40105
|
|
|
40106
40106
|
snap_elements_base: typing.Union[typing.Set[str], typing.Set[int]]
|
|
@@ -65282,14 +65282,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65282
65282
|
@classmethod
|
|
65283
65283
|
def invoke_props_popup(cls, operator: typing.Optional['Operator'],
|
|
65284
65284
|
event: typing.Optional['Event']
|
|
65285
|
-
) -> typing.Union[typing.Set[
|
|
65285
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65286
65286
|
''' Operator popup invoke (show operator properties and execute it automatically on changes)
|
|
65287
65287
|
|
|
65288
65288
|
:param operator: Operator to call
|
|
65289
65289
|
:type operator: typing.Optional['Operator']
|
|
65290
65290
|
:param event: Event
|
|
65291
65291
|
:type event: typing.Optional['Event']
|
|
65292
|
-
:rtype: typing.Union[typing.Set[
|
|
65292
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65293
65293
|
:return: result
|
|
65294
65294
|
'''
|
|
65295
65295
|
...
|
|
@@ -65299,14 +65299,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65299
65299
|
cls,
|
|
65300
65300
|
operator: typing.Optional['Operator'],
|
|
65301
65301
|
width: typing.Optional[typing.Any] = 300
|
|
65302
|
-
) -> typing.Union[typing.Set[
|
|
65302
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65303
65303
|
''' Operator dialog (non-autoexec popup) invoke (show operator properties and only execute it on click on OK button)
|
|
65304
65304
|
|
|
65305
65305
|
:param operator: Operator to call
|
|
65306
65306
|
:type operator: typing.Optional['Operator']
|
|
65307
65307
|
:param width: Width of the popup
|
|
65308
65308
|
:type width: typing.Optional[typing.Any]
|
|
65309
|
-
:rtype: typing.Union[typing.Set[
|
|
65309
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65310
65310
|
:return: result
|
|
65311
65311
|
'''
|
|
65312
65312
|
...
|
|
@@ -65324,14 +65324,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65324
65324
|
def invoke_popup(cls,
|
|
65325
65325
|
operator: typing.Optional['Operator'],
|
|
65326
65326
|
width: typing.Optional[typing.Any] = 300
|
|
65327
|
-
) -> typing.Union[typing.Set[
|
|
65327
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65328
65328
|
''' Operator popup invoke (only shows operator's properties, without executing it)
|
|
65329
65329
|
|
|
65330
65330
|
:param operator: Operator to call
|
|
65331
65331
|
:type operator: typing.Optional['Operator']
|
|
65332
65332
|
:param width: Width of the popup
|
|
65333
65333
|
:type width: typing.Optional[typing.Any]
|
|
65334
|
-
:rtype: typing.Union[typing.Set[
|
|
65334
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65335
65335
|
:return: result
|
|
65336
65336
|
'''
|
|
65337
65337
|
...
|
|
@@ -65339,14 +65339,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65339
65339
|
@classmethod
|
|
65340
65340
|
def invoke_confirm(cls, operator: typing.Optional['Operator'],
|
|
65341
65341
|
event: typing.Optional['Event']
|
|
65342
|
-
) -> typing.Union[typing.Set[
|
|
65342
|
+
) -> typing.Union[typing.Set[int], typing.Set[str]]:
|
|
65343
65343
|
''' Operator confirmation popup (only to let user confirm the execution, no operator properties shown)
|
|
65344
65344
|
|
|
65345
65345
|
:param operator: Operator to call
|
|
65346
65346
|
:type operator: typing.Optional['Operator']
|
|
65347
65347
|
:param event: Event
|
|
65348
65348
|
:type event: typing.Optional['Event']
|
|
65349
|
-
:rtype: typing.Union[typing.Set[
|
|
65349
|
+
:rtype: typing.Union[typing.Set[int], typing.Set[str]]
|
|
65350
65350
|
:return: result
|
|
65351
65351
|
'''
|
|
65352
65352
|
...
|
|
@@ -68471,10 +68471,10 @@ class DecimateModifier(Modifier, bpy_struct):
|
|
|
68471
68471
|
:type: typing.Union[str, int]
|
|
68472
68472
|
'''
|
|
68473
68473
|
|
|
68474
|
-
delimit: typing.Union[typing.Set[
|
|
68474
|
+
delimit: typing.Union[typing.Set[int], typing.Set[str]]
|
|
68475
68475
|
''' Limit merging geometry
|
|
68476
68476
|
|
|
68477
|
-
:type: typing.Union[typing.Set[
|
|
68477
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
68478
68478
|
'''
|
|
68479
68479
|
|
|
68480
68480
|
face_count: int
|
|
@@ -69309,10 +69309,10 @@ class MeshCacheModifier(Modifier, bpy_struct):
|
|
|
69309
69309
|
:type: typing.Union[str, typing.Any]
|
|
69310
69310
|
'''
|
|
69311
69311
|
|
|
69312
|
-
flip_axis: typing.Union[typing.Set[
|
|
69312
|
+
flip_axis: typing.Union[typing.Set[int], typing.Set[str]]
|
|
69313
69313
|
'''
|
|
69314
69314
|
|
|
69315
|
-
:type: typing.Union[typing.Set[
|
|
69315
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
69316
69316
|
'''
|
|
69317
69317
|
|
|
69318
69318
|
forward_axis: typing.Union[str, int]
|
|
@@ -109023,10 +109023,10 @@ class GeometryNodeCurveHandleTypeSelection(GeometryNode, NodeInternal, Node,
|
|
|
109023
109023
|
:type: typing.Union[str, int]
|
|
109024
109024
|
'''
|
|
109025
109025
|
|
|
109026
|
-
mode: typing.Union[typing.Set[
|
|
109026
|
+
mode: typing.Union[typing.Set[int], typing.Set[str]]
|
|
109027
109027
|
''' Whether to check the type of left and right handles
|
|
109028
109028
|
|
|
109029
|
-
:type: typing.Union[typing.Set[
|
|
109029
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
109030
109030
|
'''
|
|
109031
109031
|
|
|
109032
109032
|
@classmethod
|
|
@@ -109561,10 +109561,10 @@ class GeometryNodeCurveSetHandles(GeometryNode, NodeInternal, Node,
|
|
|
109561
109561
|
:type: typing.Union[str, int]
|
|
109562
109562
|
'''
|
|
109563
109563
|
|
|
109564
|
-
mode: typing.Union[typing.Set[
|
|
109564
|
+
mode: typing.Union[typing.Set[int], typing.Set[str]]
|
|
109565
109565
|
''' Whether to update left and right handles
|
|
109566
109566
|
|
|
109567
|
-
:type: typing.Union[typing.Set[
|
|
109567
|
+
:type: typing.Union[typing.Set[int], typing.Set[str]]
|
|
109568
109568
|
'''
|
|
109569
109569
|
|
|
109570
109570
|
@classmethod
|
bpy/utils/__init__.pyi
CHANGED
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 extensions
|
|
14
|
-
from . import node_shader_utils
|
|
15
|
-
from . import wm_utils
|
|
16
14
|
from . import bmesh_utils
|
|
15
|
+
from . import wm_utils
|
|
16
|
+
from . import node_shader_utils
|
|
17
17
|
|
|
18
18
|
GenericType = typing.TypeVar("GenericType")
|
|
@@ -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
|
|
@@ -302,7 +302,7 @@ bmesh/utils/__init__.pyi,sha256=Zq-n06AUnuxrVpT9RQGaGyY4E16UesGsNeePnhik57w,6543
|
|
|
302
302
|
bmesh/utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
303
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,17 +472,17 @@ 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
|
|
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=BJXXafEGvRX9ndYKs9Bvx2vggyjAGHkP1HY2buQpvfM,437
|
|
486
486
|
bpy_extras/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
487
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
|
|
@@ -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
|