fake-bpy-module 20240207__py3-none-any.whl → 20240209__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bl_console_utils/autocomplete/__init__.pyi +1 -1
- bl_i18n_utils/__init__.pyi +3 -3
- bl_keymap_utils/__init__.pyi +2 -2
- bl_operators/__init__.pyi +20 -20
- bl_operators/presets/__init__.pyi +37 -0
- bl_ui/__init__.pyi +62 -62
- bl_ui/node_add_menu_compositor/__init__.pyi +1 -0
- bl_ui/node_add_menu_geometry/__init__.pyi +49 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +93 -0
- bl_ui/properties_view_layer/__init__.pyi +41 -0
- bl_ui/space_clip/__init__.pyi +2 -1
- bl_ui/space_nla/__init__.pyi +1 -0
- bl_ui/space_view3d/__init__.pyi +2 -1
- bmesh/__init__.pyi +1 -1
- bpy/__init__.pyi +2 -2
- bpy/app/__init__.pyi +4 -4
- bpy/ops/__init__.pyi +63 -63
- bpy/ops/camera/__init__.pyi +2 -2
- bpy/ops/clip/__init__.pyi +3 -3
- bpy/ops/cloth/__init__.pyi +1 -1
- bpy/ops/fluid/__init__.pyi +1 -1
- bpy/ops/grease_pencil/__init__.pyi +20 -0
- bpy/ops/mesh/__init__.pyi +23 -0
- bpy/ops/node/__init__.pyi +1 -1
- bpy/ops/object/__init__.pyi +67 -1
- bpy/ops/particle/__init__.pyi +1 -1
- bpy/ops/preferences/__init__.pyi +60 -28
- bpy/ops/render/__init__.pyi +6 -6
- bpy/ops/scene/__init__.pyi +2 -2
- bpy/ops/script/__init__.pyi +1 -1
- bpy/ops/text_editor/__init__.pyi +1 -1
- bpy/ops/wm/__init__.pyi +29 -4
- bpy/types/__init__.pyi +808 -429
- bpy/utils/__init__.pyi +1 -1
- bpy_extras/__init__.pyi +7 -7
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20240207.dist-info → fake_bpy_module-20240209.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240207.dist-info → fake_bpy_module-20240209.dist-info}/RECORD +43 -43
- freestyle/__init__.pyi +3 -3
- gpu/__init__.pyi +4 -4
- mathutils/__init__.pyi +2 -2
- {fake_bpy_module-20240207.dist-info → fake_bpy_module-20240209.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240207.dist-info → fake_bpy_module-20240209.dist-info}/top_level.txt +0 -0
bl_i18n_utils/__init__.pyi
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import merge_po
|
|
4
3
|
from . import utils_cli
|
|
5
|
-
from . import settings
|
|
6
4
|
from . import utils_languages_menu
|
|
7
|
-
from . import bl_extract_messages
|
|
8
5
|
from . import utils
|
|
6
|
+
from . import settings
|
|
7
|
+
from . import merge_po
|
|
8
|
+
from . import bl_extract_messages
|
|
9
9
|
from . import utils_rtl
|
|
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
|
|
3
|
+
from . import keymap_from_toolbar
|
|
4
4
|
from . import io
|
|
5
5
|
from . import platform_helpers
|
|
6
|
+
from . import versioning
|
|
6
7
|
from . import keymap_hierarchy
|
|
7
|
-
from . import keymap_from_toolbar
|
|
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 vertexpaint_dirt
|
|
4
|
+
from . import file
|
|
5
|
+
from . import console
|
|
3
6
|
from . import rigidbody
|
|
4
|
-
from . import mesh
|
|
5
|
-
from . import uvcalc_transform
|
|
6
|
-
from . import geometry_nodes
|
|
7
|
-
from . import anim
|
|
8
|
-
from . import object_randomize_transform
|
|
9
|
-
from . import object
|
|
10
|
-
from . import image
|
|
11
7
|
from . import uvcalc_lightmap
|
|
12
|
-
from . import
|
|
13
|
-
from . import
|
|
14
|
-
from . import
|
|
8
|
+
from . import geometry_nodes
|
|
9
|
+
from . import node
|
|
10
|
+
from . import uvcalc_follow_active
|
|
11
|
+
from . import uvcalc_transform
|
|
12
|
+
from . import presets
|
|
15
13
|
from . import freestyle
|
|
16
|
-
from . import
|
|
17
|
-
from . import
|
|
14
|
+
from . import mesh
|
|
15
|
+
from . import spreadsheet
|
|
16
|
+
from . import screen_play_rendered_anim
|
|
17
|
+
from . import constraint
|
|
18
|
+
from . import wm
|
|
18
19
|
from . import view3d
|
|
20
|
+
from . import object
|
|
19
21
|
from . import object_quick_effects
|
|
22
|
+
from . import clip
|
|
23
|
+
from . import bmesh
|
|
24
|
+
from . import anim
|
|
25
|
+
from . import object_randomize_transform
|
|
26
|
+
from . import add_mesh_torus
|
|
27
|
+
from . import image
|
|
20
28
|
from . import userpref
|
|
21
29
|
from . import object_align
|
|
22
|
-
from . import node
|
|
23
|
-
from . import clip
|
|
24
30
|
from . import sequencer
|
|
25
|
-
from . import spreadsheet
|
|
26
|
-
from . import uvcalc_follow_active
|
|
27
31
|
from . import assets
|
|
28
|
-
from . import constraint
|
|
29
|
-
from . import wm
|
|
30
|
-
from . import presets
|
|
31
|
-
from . import file
|
|
32
32
|
|
|
33
33
|
GenericType = typing.TypeVar("GenericType")
|
|
34
34
|
|
|
@@ -96,6 +96,43 @@ class WM_MT_operator_presets(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
96
96
|
def type_recast(self): ...
|
|
97
97
|
def values(self): ...
|
|
98
98
|
|
|
99
|
+
class WM_OT_operator_presets_cleanup(bpy_types.Operator):
|
|
100
|
+
bl_description: typing.Any
|
|
101
|
+
bl_idname: typing.Any
|
|
102
|
+
bl_label: typing.Any
|
|
103
|
+
bl_rna: typing.Any
|
|
104
|
+
id_data: typing.Any
|
|
105
|
+
|
|
106
|
+
def as_keywords(self, ignore): ...
|
|
107
|
+
def as_pointer(self): ...
|
|
108
|
+
def bl_rna_get_subclass(self): ...
|
|
109
|
+
def bl_rna_get_subclass_py(self): ...
|
|
110
|
+
def cleanup_operators_presets(self, operators, properties): ...
|
|
111
|
+
def cleanup_preset(self, filepath, properties): ...
|
|
112
|
+
def driver_add(self): ...
|
|
113
|
+
def driver_remove(self): ...
|
|
114
|
+
def execute(self, context): ...
|
|
115
|
+
def get(self): ...
|
|
116
|
+
def id_properties_clear(self): ...
|
|
117
|
+
def id_properties_ensure(self): ...
|
|
118
|
+
def id_properties_ui(self): ...
|
|
119
|
+
def is_property_hidden(self): ...
|
|
120
|
+
def is_property_overridable_library(self): ...
|
|
121
|
+
def is_property_readonly(self): ...
|
|
122
|
+
def is_property_set(self): ...
|
|
123
|
+
def items(self): ...
|
|
124
|
+
def keyframe_delete(self): ...
|
|
125
|
+
def keyframe_insert(self): ...
|
|
126
|
+
def keys(self): ...
|
|
127
|
+
def path_from_id(self): ...
|
|
128
|
+
def path_resolve(self): ...
|
|
129
|
+
def poll_message_set(self): ...
|
|
130
|
+
def pop(self): ...
|
|
131
|
+
def property_overridable_library_set(self): ...
|
|
132
|
+
def property_unset(self): ...
|
|
133
|
+
def type_recast(self): ...
|
|
134
|
+
def values(self): ...
|
|
135
|
+
|
|
99
136
|
class AddPresetCamera(AddPresetBase, bpy_types.Operator):
|
|
100
137
|
bl_idname: typing.Any
|
|
101
138
|
bl_label: typing.Any
|
bl_ui/__init__.pyi
CHANGED
|
@@ -2,82 +2,82 @@ import sys
|
|
|
2
2
|
import typing
|
|
3
3
|
import bpy_types
|
|
4
4
|
|
|
5
|
-
from . import
|
|
5
|
+
from . import space_statusbar
|
|
6
|
+
from . import space_console
|
|
7
|
+
from . import properties_physics_geometry_nodes
|
|
8
|
+
from . import space_view3d_toolbar
|
|
9
|
+
from . import space_spreadsheet
|
|
10
|
+
from . import space_sequencer
|
|
6
11
|
from . import space_toolsystem_toolbar
|
|
7
|
-
from . import
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
10
|
-
from . import properties_data_armature
|
|
11
|
-
from . import space_userpref
|
|
12
|
-
from . import space_info
|
|
13
|
-
from . import properties_world
|
|
14
|
-
from . import generic_ui_list
|
|
15
|
-
from . import properties_material
|
|
16
|
-
from . import space_graph
|
|
17
|
-
from . import properties_scene
|
|
18
|
-
from . import properties_data_lightprobe
|
|
19
|
-
from . import asset_shelf
|
|
20
|
-
from . import properties_data_bone
|
|
21
|
-
from . import node_add_menu
|
|
22
|
-
from . import properties_data_shaderfx
|
|
23
|
-
from . import node_add_menu_geometry
|
|
24
|
-
from . import properties_render
|
|
25
|
-
from . import properties_data_speaker
|
|
26
|
-
from . import properties_particle
|
|
27
|
-
from . import properties_object
|
|
28
|
-
from . import properties_data_gpencil
|
|
29
|
-
from . import properties_physics_softbody
|
|
30
|
-
from . import space_dopesheet
|
|
31
|
-
from . import properties_view_layer
|
|
32
|
-
from . import space_properties
|
|
33
|
-
from . import properties_data_metaball
|
|
34
|
-
from . import space_nla
|
|
12
|
+
from . import space_image
|
|
13
|
+
from . import space_outliner
|
|
14
|
+
from . import properties_freestyle
|
|
35
15
|
from . import properties_physics_dynamicpaint
|
|
36
|
-
from . import properties_data_camera
|
|
37
16
|
from . import properties_data_modifier
|
|
38
|
-
from . import
|
|
39
|
-
from . import
|
|
17
|
+
from . import properties_physics_cloth
|
|
18
|
+
from . import space_graph
|
|
40
19
|
from . import anim
|
|
20
|
+
from . import properties_data_metaball
|
|
41
21
|
from . import properties_constraint
|
|
42
|
-
from . import
|
|
43
|
-
from . import properties_physics_field
|
|
44
|
-
from . import node_add_menu_texture
|
|
45
|
-
from . import properties_data_curves
|
|
46
|
-
from . import space_image
|
|
22
|
+
from . import properties_data_lattice
|
|
47
23
|
from . import properties_collection
|
|
48
|
-
from . import
|
|
49
|
-
from . import
|
|
50
|
-
from . import
|
|
24
|
+
from . import space_text
|
|
25
|
+
from . import properties_data_bone
|
|
26
|
+
from . import space_toolsystem_common
|
|
27
|
+
from . import properties_physics_field
|
|
28
|
+
from . import properties_render
|
|
29
|
+
from . import properties_world
|
|
30
|
+
from . import properties_data_camera
|
|
51
31
|
from . import properties_physics_rigidbody_constraint
|
|
52
|
-
from . import
|
|
53
|
-
from . import properties_freestyle
|
|
54
|
-
from . import properties_physics_fluid
|
|
32
|
+
from . import properties_physics_rigidbody
|
|
55
33
|
from . import properties_material_gpencil
|
|
34
|
+
from . import properties_animviz
|
|
35
|
+
from . import properties_grease_pencil_common
|
|
56
36
|
from . import space_time
|
|
37
|
+
from . import utils
|
|
38
|
+
from . import properties_data_lightprobe
|
|
39
|
+
from . import generic_ui_list
|
|
40
|
+
from . import space_filebrowser
|
|
41
|
+
from . import properties_particle
|
|
42
|
+
from . import properties_view_layer
|
|
43
|
+
from . import properties_data_volume
|
|
57
44
|
from . import properties_output
|
|
58
|
-
from . import space_spreadsheet
|
|
59
|
-
from . import properties_paint_common
|
|
60
|
-
from . import properties_mask_common
|
|
61
45
|
from . import node_add_menu_shader
|
|
62
|
-
from . import
|
|
63
|
-
from . import
|
|
64
|
-
from . import
|
|
65
|
-
from . import
|
|
66
|
-
from . import
|
|
46
|
+
from . import properties_data_empty
|
|
47
|
+
from . import space_dopesheet
|
|
48
|
+
from . import space_userpref
|
|
49
|
+
from . import properties_object
|
|
50
|
+
from . import properties_data_speaker
|
|
51
|
+
from . import properties_physics_fluid
|
|
52
|
+
from . import space_clip
|
|
53
|
+
from . import properties_data_light
|
|
54
|
+
from . import properties_data_armature
|
|
55
|
+
from . import space_node
|
|
56
|
+
from . import properties_data_mesh
|
|
57
|
+
from . import node_add_menu_texture
|
|
58
|
+
from . import properties_data_curves
|
|
59
|
+
from . import properties_data_shaderfx
|
|
60
|
+
from . import node_add_menu
|
|
61
|
+
from . import node_add_menu_geometry
|
|
62
|
+
from . import properties_data_gpencil
|
|
63
|
+
from . import node_add_menu_compositor
|
|
64
|
+
from . import properties_scene
|
|
65
|
+
from . import space_properties
|
|
67
66
|
from . import properties_data_pointcloud
|
|
68
|
-
from . import
|
|
67
|
+
from . import properties_mask_common
|
|
68
|
+
from . import properties_texture
|
|
69
|
+
from . import space_nla
|
|
69
70
|
from . import space_topbar
|
|
70
|
-
from . import
|
|
71
|
-
from . import
|
|
72
|
-
from . import
|
|
73
|
-
from . import properties_physics_geometry_nodes
|
|
74
|
-
from . import space_text
|
|
75
|
-
from . import space_outliner
|
|
71
|
+
from . import properties_paint_common
|
|
72
|
+
from . import properties_material
|
|
73
|
+
from . import space_view3d
|
|
76
74
|
from . import properties_data_grease_pencil
|
|
77
|
-
from . import
|
|
78
|
-
from . import
|
|
79
|
-
from . import
|
|
80
|
-
from . import
|
|
75
|
+
from . import properties_data_curve
|
|
76
|
+
from . import properties_physics_softbody
|
|
77
|
+
from . import space_info
|
|
78
|
+
from . import asset_shelf
|
|
79
|
+
from . import properties_physics_common
|
|
80
|
+
from . import properties_workspace
|
|
81
81
|
|
|
82
82
|
GenericType = typing.TypeVar("GenericType")
|
|
83
83
|
|
|
@@ -645,6 +645,7 @@ class NODE_MT_category_compositor_tracking(bpy_types.Menu, bpy_types._GenericUI)
|
|
|
645
645
|
bl_idname: typing.Any
|
|
646
646
|
bl_label: typing.Any
|
|
647
647
|
bl_rna: typing.Any
|
|
648
|
+
bl_translation_context: typing.Any
|
|
648
649
|
id_data: typing.Any
|
|
649
650
|
|
|
650
651
|
def append(self, draw_func): ...
|
|
@@ -298,6 +298,55 @@ class NODE_MT_category_GEO_UTILITIES(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
298
298
|
def type_recast(self): ...
|
|
299
299
|
def values(self): ...
|
|
300
300
|
|
|
301
|
+
class NODE_MT_category_GEO_UTILITIES_DEPRECATED(bpy_types.Menu, bpy_types._GenericUI):
|
|
302
|
+
bl_idname: typing.Any
|
|
303
|
+
bl_label: typing.Any
|
|
304
|
+
bl_rna: typing.Any
|
|
305
|
+
id_data: typing.Any
|
|
306
|
+
|
|
307
|
+
def append(self, draw_func): ...
|
|
308
|
+
def as_pointer(self): ...
|
|
309
|
+
def bl_rna_get_subclass(self): ...
|
|
310
|
+
def bl_rna_get_subclass_py(self): ...
|
|
311
|
+
def draw(self, context): ...
|
|
312
|
+
def draw_collapsible(self, context, layout): ...
|
|
313
|
+
def draw_preset(self, _context): ...
|
|
314
|
+
def driver_add(self): ...
|
|
315
|
+
def driver_remove(self): ...
|
|
316
|
+
def get(self): ...
|
|
317
|
+
def id_properties_clear(self): ...
|
|
318
|
+
def id_properties_ensure(self): ...
|
|
319
|
+
def id_properties_ui(self): ...
|
|
320
|
+
def is_extended(self): ...
|
|
321
|
+
def is_property_hidden(self): ...
|
|
322
|
+
def is_property_overridable_library(self): ...
|
|
323
|
+
def is_property_readonly(self): ...
|
|
324
|
+
def is_property_set(self): ...
|
|
325
|
+
def items(self): ...
|
|
326
|
+
def keyframe_delete(self): ...
|
|
327
|
+
def keyframe_insert(self): ...
|
|
328
|
+
def keys(self): ...
|
|
329
|
+
def path_from_id(self): ...
|
|
330
|
+
def path_menu(
|
|
331
|
+
self,
|
|
332
|
+
searchpaths,
|
|
333
|
+
operator,
|
|
334
|
+
props_default,
|
|
335
|
+
prop_filepath,
|
|
336
|
+
filter_ext,
|
|
337
|
+
filter_path,
|
|
338
|
+
display_name,
|
|
339
|
+
add_operator,
|
|
340
|
+
): ...
|
|
341
|
+
def path_resolve(self): ...
|
|
342
|
+
def pop(self): ...
|
|
343
|
+
def prepend(self, draw_func): ...
|
|
344
|
+
def property_overridable_library_set(self): ...
|
|
345
|
+
def property_unset(self): ...
|
|
346
|
+
def remove(self, draw_func): ...
|
|
347
|
+
def type_recast(self): ...
|
|
348
|
+
def values(self): ...
|
|
349
|
+
|
|
301
350
|
class NODE_MT_category_GEO_UTILITIES_FIELD(bpy_types.Menu, bpy_types._GenericUI):
|
|
302
351
|
bl_idname: typing.Any
|
|
303
352
|
bl_label: typing.Any
|
|
@@ -61,6 +61,13 @@ class GREASE_PENCIL_MT_grease_pencil_add_layer_extra(
|
|
|
61
61
|
def type_recast(self): ...
|
|
62
62
|
def values(self): ...
|
|
63
63
|
|
|
64
|
+
class LayerDataButtonsPanel:
|
|
65
|
+
bl_context: typing.Any
|
|
66
|
+
bl_region_type: typing.Any
|
|
67
|
+
bl_space_type: typing.Any
|
|
68
|
+
|
|
69
|
+
def poll(self, context): ...
|
|
70
|
+
|
|
64
71
|
class DATA_PT_context_grease_pencil(
|
|
65
72
|
DataButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
|
|
66
73
|
):
|
|
@@ -143,3 +150,89 @@ class DATA_PT_grease_pencil_layers(
|
|
|
143
150
|
def remove(self, draw_func): ...
|
|
144
151
|
def type_recast(self): ...
|
|
145
152
|
def values(self): ...
|
|
153
|
+
|
|
154
|
+
class DATA_PT_grease_pencil_layer_relations(
|
|
155
|
+
LayerDataButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
|
|
156
|
+
):
|
|
157
|
+
bl_context: typing.Any
|
|
158
|
+
bl_label: typing.Any
|
|
159
|
+
bl_options: typing.Any
|
|
160
|
+
bl_parent_id: typing.Any
|
|
161
|
+
bl_region_type: typing.Any
|
|
162
|
+
bl_rna: typing.Any
|
|
163
|
+
bl_space_type: typing.Any
|
|
164
|
+
id_data: typing.Any
|
|
165
|
+
|
|
166
|
+
def append(self, draw_func): ...
|
|
167
|
+
def as_pointer(self): ...
|
|
168
|
+
def bl_rna_get_subclass(self): ...
|
|
169
|
+
def bl_rna_get_subclass_py(self): ...
|
|
170
|
+
def draw(self, context): ...
|
|
171
|
+
def driver_add(self): ...
|
|
172
|
+
def driver_remove(self): ...
|
|
173
|
+
def get(self): ...
|
|
174
|
+
def id_properties_clear(self): ...
|
|
175
|
+
def id_properties_ensure(self): ...
|
|
176
|
+
def id_properties_ui(self): ...
|
|
177
|
+
def is_extended(self): ...
|
|
178
|
+
def is_property_hidden(self): ...
|
|
179
|
+
def is_property_overridable_library(self): ...
|
|
180
|
+
def is_property_readonly(self): ...
|
|
181
|
+
def is_property_set(self): ...
|
|
182
|
+
def items(self): ...
|
|
183
|
+
def keyframe_delete(self): ...
|
|
184
|
+
def keyframe_insert(self): ...
|
|
185
|
+
def keys(self): ...
|
|
186
|
+
def path_from_id(self): ...
|
|
187
|
+
def path_resolve(self): ...
|
|
188
|
+
def poll(self, context): ...
|
|
189
|
+
def pop(self): ...
|
|
190
|
+
def prepend(self, draw_func): ...
|
|
191
|
+
def property_overridable_library_set(self): ...
|
|
192
|
+
def property_unset(self): ...
|
|
193
|
+
def remove(self, draw_func): ...
|
|
194
|
+
def type_recast(self): ...
|
|
195
|
+
def values(self): ...
|
|
196
|
+
|
|
197
|
+
class DATA_PT_grease_pencil_layer_transform(
|
|
198
|
+
LayerDataButtonsPanel, bpy_types.Panel, bpy_types._GenericUI
|
|
199
|
+
):
|
|
200
|
+
bl_context: typing.Any
|
|
201
|
+
bl_label: typing.Any
|
|
202
|
+
bl_options: typing.Any
|
|
203
|
+
bl_parent_id: typing.Any
|
|
204
|
+
bl_region_type: typing.Any
|
|
205
|
+
bl_rna: typing.Any
|
|
206
|
+
bl_space_type: typing.Any
|
|
207
|
+
id_data: typing.Any
|
|
208
|
+
|
|
209
|
+
def append(self, draw_func): ...
|
|
210
|
+
def as_pointer(self): ...
|
|
211
|
+
def bl_rna_get_subclass(self): ...
|
|
212
|
+
def bl_rna_get_subclass_py(self): ...
|
|
213
|
+
def draw(self, context): ...
|
|
214
|
+
def driver_add(self): ...
|
|
215
|
+
def driver_remove(self): ...
|
|
216
|
+
def get(self): ...
|
|
217
|
+
def id_properties_clear(self): ...
|
|
218
|
+
def id_properties_ensure(self): ...
|
|
219
|
+
def id_properties_ui(self): ...
|
|
220
|
+
def is_extended(self): ...
|
|
221
|
+
def is_property_hidden(self): ...
|
|
222
|
+
def is_property_overridable_library(self): ...
|
|
223
|
+
def is_property_readonly(self): ...
|
|
224
|
+
def is_property_set(self): ...
|
|
225
|
+
def items(self): ...
|
|
226
|
+
def keyframe_delete(self): ...
|
|
227
|
+
def keyframe_insert(self): ...
|
|
228
|
+
def keys(self): ...
|
|
229
|
+
def path_from_id(self): ...
|
|
230
|
+
def path_resolve(self): ...
|
|
231
|
+
def poll(self, context): ...
|
|
232
|
+
def pop(self): ...
|
|
233
|
+
def prepend(self, draw_func): ...
|
|
234
|
+
def property_overridable_library_set(self): ...
|
|
235
|
+
def property_unset(self): ...
|
|
236
|
+
def remove(self, draw_func): ...
|
|
237
|
+
def type_recast(self): ...
|
|
238
|
+
def values(self): ...
|
|
@@ -354,6 +354,47 @@ class VIEWLAYER_PT_eevee_next_layer_passes_light(
|
|
|
354
354
|
def type_recast(self): ...
|
|
355
355
|
def values(self): ...
|
|
356
356
|
|
|
357
|
+
class VIEWLAYER_PT_filter(ViewLayerButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
|
|
358
|
+
COMPAT_ENGINES: typing.Any
|
|
359
|
+
bl_context: typing.Any
|
|
360
|
+
bl_label: typing.Any
|
|
361
|
+
bl_options: typing.Any
|
|
362
|
+
bl_region_type: typing.Any
|
|
363
|
+
bl_rna: typing.Any
|
|
364
|
+
bl_space_type: typing.Any
|
|
365
|
+
id_data: typing.Any
|
|
366
|
+
|
|
367
|
+
def append(self, draw_func): ...
|
|
368
|
+
def as_pointer(self): ...
|
|
369
|
+
def bl_rna_get_subclass(self): ...
|
|
370
|
+
def bl_rna_get_subclass_py(self): ...
|
|
371
|
+
def draw(self, context): ...
|
|
372
|
+
def driver_add(self): ...
|
|
373
|
+
def driver_remove(self): ...
|
|
374
|
+
def get(self): ...
|
|
375
|
+
def id_properties_clear(self): ...
|
|
376
|
+
def id_properties_ensure(self): ...
|
|
377
|
+
def id_properties_ui(self): ...
|
|
378
|
+
def is_extended(self): ...
|
|
379
|
+
def is_property_hidden(self): ...
|
|
380
|
+
def is_property_overridable_library(self): ...
|
|
381
|
+
def is_property_readonly(self): ...
|
|
382
|
+
def is_property_set(self): ...
|
|
383
|
+
def items(self): ...
|
|
384
|
+
def keyframe_delete(self): ...
|
|
385
|
+
def keyframe_insert(self): ...
|
|
386
|
+
def keys(self): ...
|
|
387
|
+
def path_from_id(self): ...
|
|
388
|
+
def path_resolve(self): ...
|
|
389
|
+
def poll(self, context): ...
|
|
390
|
+
def pop(self): ...
|
|
391
|
+
def prepend(self, draw_func): ...
|
|
392
|
+
def property_overridable_library_set(self): ...
|
|
393
|
+
def property_unset(self): ...
|
|
394
|
+
def remove(self, draw_func): ...
|
|
395
|
+
def type_recast(self): ...
|
|
396
|
+
def values(self): ...
|
|
397
|
+
|
|
357
398
|
class VIEWLAYER_PT_layer(ViewLayerButtonsPanel, bpy_types.Panel, bpy_types._GenericUI):
|
|
358
399
|
COMPAT_ENGINES: typing.Any
|
|
359
400
|
bl_context: typing.Any
|
bl_ui/space_clip/__init__.pyi
CHANGED
|
@@ -2017,7 +2017,6 @@ class CLIP_PT_tools_scenesetup(bpy_types.Panel, bpy_types._GenericUI):
|
|
|
2017
2017
|
bl_region_type: typing.Any
|
|
2018
2018
|
bl_rna: typing.Any
|
|
2019
2019
|
bl_space_type: typing.Any
|
|
2020
|
-
bl_translation_context: typing.Any
|
|
2021
2020
|
id_data: typing.Any
|
|
2022
2021
|
|
|
2023
2022
|
def append(self, draw_func): ...
|
|
@@ -2881,6 +2880,7 @@ class CLIP_PT_tools_tracking(
|
|
|
2881
2880
|
bl_region_type: typing.Any
|
|
2882
2881
|
bl_rna: typing.Any
|
|
2883
2882
|
bl_space_type: typing.Any
|
|
2883
|
+
bl_translation_context: typing.Any
|
|
2884
2884
|
id_data: typing.Any
|
|
2885
2885
|
|
|
2886
2886
|
def append(self, draw_func): ...
|
|
@@ -2920,6 +2920,7 @@ class CLIP_PT_track(CLIP_PT_tracking_panel, bpy_types.Panel, bpy_types._GenericU
|
|
|
2920
2920
|
bl_region_type: typing.Any
|
|
2921
2921
|
bl_rna: typing.Any
|
|
2922
2922
|
bl_space_type: typing.Any
|
|
2923
|
+
bl_translation_context: typing.Any
|
|
2923
2924
|
id_data: typing.Any
|
|
2924
2925
|
|
|
2925
2926
|
def append(self, draw_func): ...
|
bl_ui/space_nla/__init__.pyi
CHANGED
|
@@ -525,6 +525,7 @@ class NLA_MT_strips_transform(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
525
525
|
class NLA_MT_tracks(bpy_types.Menu, bpy_types._GenericUI):
|
|
526
526
|
bl_label: typing.Any
|
|
527
527
|
bl_rna: typing.Any
|
|
528
|
+
bl_translation_context: typing.Any
|
|
528
529
|
id_data: typing.Any
|
|
529
530
|
|
|
530
531
|
def append(self, draw_func): ...
|
bl_ui/space_view3d/__init__.pyi
CHANGED
|
@@ -5612,6 +5612,7 @@ class VIEW3D_MT_object_showhide(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
5612
5612
|
class VIEW3D_MT_object_track(bpy_types.Menu, bpy_types._GenericUI):
|
|
5613
5613
|
bl_label: typing.Any
|
|
5614
5614
|
bl_rna: typing.Any
|
|
5615
|
+
bl_translation_context: typing.Any
|
|
5615
5616
|
id_data: typing.Any
|
|
5616
5617
|
|
|
5617
5618
|
def append(self, draw_func): ...
|
|
@@ -5858,7 +5859,7 @@ class VIEW3D_MT_paint_weight(bpy_types.Menu, bpy_types._GenericUI):
|
|
|
5858
5859
|
def as_pointer(self): ...
|
|
5859
5860
|
def bl_rna_get_subclass(self): ...
|
|
5860
5861
|
def bl_rna_get_subclass_py(self): ...
|
|
5861
|
-
def draw(self,
|
|
5862
|
+
def draw(self, context): ...
|
|
5862
5863
|
def draw_collapsible(self, context, layout): ...
|
|
5863
5864
|
def draw_generic(self, layout, is_editmode): ...
|
|
5864
5865
|
def draw_preset(self, _context): ...
|
bmesh/__init__.pyi
CHANGED
bpy/__init__.pyi
CHANGED
|
@@ -4,11 +4,11 @@ import bpy.types
|
|
|
4
4
|
|
|
5
5
|
from . import types
|
|
6
6
|
from . import ops
|
|
7
|
-
from . import app
|
|
8
7
|
from . import path
|
|
8
|
+
from . import app
|
|
9
9
|
from . import utils
|
|
10
|
-
from . import msgbus
|
|
11
10
|
from . import props
|
|
11
|
+
from . import msgbus
|
|
12
12
|
|
|
13
13
|
GenericType = typing.TypeVar("GenericType")
|
|
14
14
|
context: "bpy.types.Context"
|
bpy/app/__init__.pyi
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import sys
|
|
2
2
|
import typing
|
|
3
|
-
from . import handlers
|
|
4
|
-
from . import icons
|
|
5
3
|
from . import timers
|
|
6
4
|
from . import translations
|
|
5
|
+
from . import handlers
|
|
6
|
+
from . import icons
|
|
7
7
|
|
|
8
8
|
GenericType = typing.TypeVar("GenericType")
|
|
9
9
|
|
|
@@ -180,11 +180,11 @@ factory_startup: typing.Any
|
|
|
180
180
|
"""
|
|
181
181
|
|
|
182
182
|
ffmpeg: typing.Any
|
|
183
|
-
""" Constant value bpy.app.ffmpeg(supported=True, avcodec_version=(60,
|
|
183
|
+
""" Constant value bpy.app.ffmpeg(supported=True, avcodec_version=(60, 31, 102), avcodec_version_string='60, 31, 102', avdevice_version=(60, 3, 100), avdevice_version_string='60, 3, 100', avformat_version=(60, 16, 100), avformat_version_string='60, 16, 100', avutil_version=(58, 29, 100), avutil_version_string='58, 29, 100', swscale_version=(7, 5, 100), swscale_version_string=' 7, 5, 100')
|
|
184
184
|
"""
|
|
185
185
|
|
|
186
186
|
ocio: typing.Any
|
|
187
|
-
""" Constant value bpy.app.ocio(supported=True, version=(2, 3,
|
|
187
|
+
""" Constant value bpy.app.ocio(supported=True, version=(2, 3, 2), version_string=' 2, 3, 2')
|
|
188
188
|
"""
|
|
189
189
|
|
|
190
190
|
oiio: typing.Any
|