fake-bpy-module 20240206__py3-none-any.whl → 20240208__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_i18n_utils/__init__.pyi +2 -2
- bl_keymap_utils/__init__.pyi +3 -3
- bl_operators/__init__.pyi +20 -20
- bl_operators/presets/__init__.pyi +37 -0
- bl_ui/__init__.pyi +61 -61
- 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
- bl_ui_utils/__init__.pyi +1 -1
- bmesh/__init__.pyi +1 -1
- bpy/__init__.pyi +2 -2
- bpy/app/__init__.pyi +2 -2
- 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/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 +168 -74
- bpy/utils/__init__.pyi +1 -1
- bpy_extras/__init__.pyi +7 -7
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20240206.dist-info → fake_bpy_module-20240208.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240206.dist-info → fake_bpy_module-20240208.dist-info}/RECORD +42 -42
- freestyle/__init__.pyi +3 -3
- gpu/__init__.pyi +4 -4
- mathutils/__init__.pyi +2 -2
- {fake_bpy_module-20240206.dist-info → fake_bpy_module-20240208.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240206.dist-info → fake_bpy_module-20240208.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 bl_extract_messages
|
|
4
3
|
from . import utils
|
|
5
4
|
from . import utils_cli
|
|
6
|
-
from . import settings
|
|
7
5
|
from . import utils_rtl
|
|
8
6
|
from . import merge_po
|
|
7
|
+
from . import bl_extract_messages
|
|
8
|
+
from . import settings
|
|
9
9
|
from . import utils_languages_menu
|
|
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 versioning
|
|
4
4
|
from . import platform_helpers
|
|
5
|
-
from . import keymap_hierarchy
|
|
6
5
|
from . import io
|
|
7
|
-
from . import
|
|
6
|
+
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 object_align
|
|
4
|
-
from . import mesh
|
|
5
|
-
from . import uvcalc_transform
|
|
6
|
-
from . import bmesh
|
|
7
|
-
from . import file
|
|
8
|
-
from . import view3d
|
|
9
3
|
from . import anim
|
|
10
|
-
from . import
|
|
11
|
-
from . import
|
|
4
|
+
from . import uvcalc_follow_active
|
|
5
|
+
from . import add_mesh_torus
|
|
12
6
|
from . import uvcalc_lightmap
|
|
7
|
+
from . import view3d
|
|
8
|
+
from . import uvcalc_transform
|
|
9
|
+
from . import object_randomize_transform
|
|
10
|
+
from . import mesh
|
|
11
|
+
from . import userpref
|
|
13
12
|
from . import presets
|
|
14
|
-
from . import
|
|
15
|
-
from . import
|
|
13
|
+
from . import image
|
|
14
|
+
from . import object_align
|
|
16
15
|
from . import sequencer
|
|
17
|
-
from . import
|
|
18
|
-
from . import userpref
|
|
19
|
-
from . import rigidbody
|
|
16
|
+
from . import wm
|
|
20
17
|
from . import object
|
|
21
|
-
from . import
|
|
22
|
-
from . import console
|
|
23
|
-
from . import add_mesh_torus
|
|
24
|
-
from . import vertexpaint_dirt
|
|
25
|
-
from . import image
|
|
26
|
-
from . import object_randomize_transform
|
|
18
|
+
from . import freestyle
|
|
27
19
|
from . import spreadsheet
|
|
20
|
+
from . import file
|
|
21
|
+
from . import rigidbody
|
|
22
|
+
from . import console
|
|
28
23
|
from . import node
|
|
29
|
-
from . import assets
|
|
30
24
|
from . import object_quick_effects
|
|
25
|
+
from . import bmesh
|
|
26
|
+
from . import screen_play_rendered_anim
|
|
27
|
+
from . import clip
|
|
28
|
+
from . import constraint
|
|
31
29
|
from . import geometry_nodes
|
|
30
|
+
from . import assets
|
|
31
|
+
from . import vertexpaint_dirt
|
|
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
|
|
6
|
-
from . import
|
|
7
|
-
from . import
|
|
8
|
-
from . import
|
|
9
|
-
from . import
|
|
10
|
-
from . import properties_data_camera
|
|
11
|
-
from . import properties_mask_common
|
|
12
|
-
from . import space_outliner
|
|
13
|
-
from . import properties_physics_dynamicpaint
|
|
14
|
-
from . import space_graph
|
|
15
|
-
from . import space_node
|
|
16
|
-
from . import space_userpref
|
|
17
|
-
from . import space_dopesheet
|
|
18
|
-
from . import properties_view_layer
|
|
5
|
+
from . import space_view3d_toolbar
|
|
6
|
+
from . import properties_material_gpencil
|
|
7
|
+
from . import space_text
|
|
8
|
+
from . import space_view3d
|
|
9
|
+
from . import generic_ui_list
|
|
19
10
|
from . import space_toolsystem_common
|
|
11
|
+
from . import properties_object
|
|
12
|
+
from . import properties_data_curves
|
|
13
|
+
from . import properties_physics_field
|
|
14
|
+
from . import properties_data_mesh
|
|
20
15
|
from . import properties_data_lattice
|
|
21
|
-
from . import
|
|
22
|
-
from . import
|
|
23
|
-
from . import
|
|
16
|
+
from . import space_toolsystem_toolbar
|
|
17
|
+
from . import space_node
|
|
18
|
+
from . import properties_world
|
|
19
|
+
from . import utils
|
|
20
|
+
from . import node_add_menu
|
|
21
|
+
from . import properties_freestyle
|
|
24
22
|
from . import properties_data_armature
|
|
25
|
-
from . import
|
|
23
|
+
from . import space_dopesheet
|
|
24
|
+
from . import properties_data_shaderfx
|
|
25
|
+
from . import properties_data_bone
|
|
26
|
+
from . import properties_physics_rigidbody
|
|
27
|
+
from . import space_graph
|
|
28
|
+
from . import properties_scene
|
|
29
|
+
from . import space_properties
|
|
30
|
+
from . import properties_data_metaball
|
|
31
|
+
from . import properties_physics_geometry_nodes
|
|
32
|
+
from . import space_statusbar
|
|
33
|
+
from . import properties_workspace
|
|
34
|
+
from . import properties_collection
|
|
35
|
+
from . import properties_texture
|
|
26
36
|
from . import properties_physics_common
|
|
27
|
-
from . import
|
|
28
|
-
from . import
|
|
37
|
+
from . import space_filebrowser
|
|
38
|
+
from . import asset_shelf
|
|
39
|
+
from . import space_topbar
|
|
40
|
+
from . import properties_material
|
|
29
41
|
from . import anim
|
|
30
|
-
from . import
|
|
31
|
-
from . import
|
|
32
|
-
from . import
|
|
42
|
+
from . import properties_output
|
|
43
|
+
from . import properties_grease_pencil_common
|
|
44
|
+
from . import properties_particle
|
|
33
45
|
from . import properties_data_curve
|
|
34
|
-
from . import
|
|
35
|
-
from . import
|
|
36
|
-
from . import
|
|
37
|
-
from . import
|
|
38
|
-
from . import
|
|
46
|
+
from . import node_add_menu_texture
|
|
47
|
+
from . import properties_data_gpencil
|
|
48
|
+
from . import properties_physics_cloth
|
|
49
|
+
from . import properties_data_volume
|
|
50
|
+
from . import space_info
|
|
39
51
|
from . import properties_animviz
|
|
52
|
+
from . import properties_view_layer
|
|
53
|
+
from . import properties_data_speaker
|
|
40
54
|
from . import node_add_menu_shader
|
|
41
55
|
from . import node_add_menu_geometry
|
|
42
|
-
from . import
|
|
56
|
+
from . import properties_data_lightprobe
|
|
43
57
|
from . import space_clip
|
|
44
|
-
from . import properties_data_bone
|
|
45
|
-
from . import properties_data_pointcloud
|
|
46
|
-
from . import properties_physics_rigidbody
|
|
47
|
-
from . import properties_physics_cloth
|
|
48
|
-
from . import space_topbar
|
|
49
|
-
from . import properties_collection
|
|
50
|
-
from . import properties_data_metaball
|
|
51
|
-
from . import properties_object
|
|
52
|
-
from . import properties_freestyle
|
|
53
|
-
from . import properties_data_mesh
|
|
54
|
-
from . import properties_workspace
|
|
55
|
-
from . import generic_ui_list
|
|
56
|
-
from . import utils
|
|
57
|
-
from . import properties_data_speaker
|
|
58
|
-
from . import properties_output
|
|
59
58
|
from . import properties_physics_softbody
|
|
60
|
-
from . import
|
|
59
|
+
from . import properties_constraint
|
|
60
|
+
from . import space_outliner
|
|
61
|
+
from . import properties_physics_rigidbody_constraint
|
|
62
|
+
from . import properties_data_grease_pencil
|
|
61
63
|
from . import properties_data_empty
|
|
62
|
-
from . import node_add_menu
|
|
63
|
-
from . import node_add_menu_compositor
|
|
64
64
|
from . import space_time
|
|
65
|
-
from . import properties_physics_fluid
|
|
66
|
-
from . import properties_particle
|
|
67
|
-
from . import properties_physics_field
|
|
68
|
-
from . import properties_data_lightprobe
|
|
69
65
|
from . import space_console
|
|
70
|
-
from . import
|
|
71
|
-
from . import
|
|
72
|
-
from . import
|
|
73
|
-
from . import space_view3d
|
|
74
|
-
from . import asset_shelf
|
|
75
|
-
from . import properties_data_modifier
|
|
76
|
-
from . import properties_material
|
|
77
|
-
from . import properties_material_gpencil
|
|
78
|
-
from . import space_view3d_toolbar
|
|
79
|
-
from . import space_properties
|
|
66
|
+
from . import space_userpref
|
|
67
|
+
from . import node_add_menu_compositor
|
|
68
|
+
from . import properties_data_camera
|
|
80
69
|
from . import properties_data_light
|
|
70
|
+
from . import properties_paint_common
|
|
71
|
+
from . import properties_data_pointcloud
|
|
72
|
+
from . import properties_render
|
|
73
|
+
from . import space_image
|
|
74
|
+
from . import properties_physics_dynamicpaint
|
|
75
|
+
from . import properties_physics_fluid
|
|
76
|
+
from . import space_sequencer
|
|
77
|
+
from . import properties_data_modifier
|
|
78
|
+
from . import space_spreadsheet
|
|
79
|
+
from . import space_nla
|
|
80
|
+
from . import properties_mask_common
|
|
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): ...
|
bl_ui_utils/__init__.pyi
CHANGED
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 path
|
|
8
7
|
from . import app
|
|
9
8
|
from . import utils
|
|
10
|
-
from . import
|
|
9
|
+
from . import path
|
|
11
10
|
from . import props
|
|
11
|
+
from . import msgbus
|
|
12
12
|
|
|
13
13
|
GenericType = typing.TypeVar("GenericType")
|
|
14
14
|
context: "bpy.types.Context"
|