fake-bpy-module 20240115__py3-none-any.whl → 20240117__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bl_console_utils/autocomplete/__init__.pyi +2 -2
- bl_i18n_utils/__init__.pyi +3 -3
- bl_keymap_utils/__init__.pyi +2 -2
- bl_operators/__init__.pyi +21 -21
- bl_ui/__init__.pyi +61 -61
- bl_ui/space_node/__init__.pyi +0 -1
- bl_ui_utils/__init__.pyi +1 -1
- bpy/__init__.pyi +3 -3
- bpy/app/__init__.pyi +1 -1
- bpy/ops/__init__.pyi +63 -63
- bpy/ops/object/__init__.pyi +14 -3
- bpy/ops/outliner/__init__.pyi +37 -2
- bpy/ops/wm/__init__.pyi +1 -1
- bpy/types/__init__.pyi +267 -114
- bpy_extras/__init__.pyi +1 -1
- bpy_extras/anim_utils/__init__.pyi +2 -2
- {fake_bpy_module-20240115.dist-info → fake_bpy_module-20240117.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240115.dist-info → fake_bpy_module-20240117.dist-info}/RECORD +20 -20
- {fake_bpy_module-20240115.dist-info → fake_bpy_module-20240117.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240115.dist-info → fake_bpy_module-20240117.dist-info}/top_level.txt +0 -0
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
|
|
6
|
-
import bl_ui.properties_data_grease_pencil
|
|
7
|
-
import bl_ui.space_view3d
|
|
8
|
-
import bl_ui.space_dopesheet
|
|
9
|
-
import bl_ui.properties_constraint
|
|
5
|
+
import bl_ui.properties_physics_cloth
|
|
10
6
|
import bl_operators.node
|
|
11
|
-
import bl_operators.spreadsheet
|
|
12
|
-
import bl_ui.node_add_menu_geometry
|
|
13
|
-
import bl_ui.properties_material_gpencil
|
|
14
|
-
import bl_ui.properties_physics_common
|
|
15
7
|
import bl_ui.properties_physics_fluid
|
|
8
|
+
import bl_ui.properties_data_empty
|
|
9
|
+
import bl_operators.clip
|
|
10
|
+
import bl_ui.properties_data_grease_pencil
|
|
11
|
+
import bl_ui.properties_paint_common
|
|
12
|
+
import bl_ui.space_properties
|
|
13
|
+
import bl_ui.properties_data_lightprobe
|
|
14
|
+
import bl_operators.presets
|
|
15
|
+
import bl_operators.file
|
|
16
|
+
import bl_ui.properties_physics_rigidbody_constraint
|
|
17
|
+
import bl_ui.properties_data_shaderfx
|
|
18
|
+
import bl_ui.properties_data_light
|
|
19
|
+
import bl_ui.space_topbar
|
|
20
|
+
import bl_ui.node_add_menu
|
|
21
|
+
import bl_ui.properties_particle
|
|
22
|
+
import bl_ui.space_text
|
|
23
|
+
import bl_ui.node_add_menu_compositor
|
|
24
|
+
import bl_ui.properties_texture
|
|
25
|
+
import bl_ui.properties_data_lattice
|
|
16
26
|
import bl_ui.space_view3d_toolbar
|
|
27
|
+
import bl_ui.properties_data_pointcloud
|
|
17
28
|
import bl_ui.properties_world
|
|
18
|
-
import bl_ui.properties_data_curve
|
|
19
|
-
import bl_ui.node_add_menu_compositor
|
|
20
29
|
import bl_operators.assets
|
|
21
|
-
import bl_ui.space_node
|
|
22
|
-
import bl_operators.anim
|
|
23
30
|
import bl_ui.properties_scene
|
|
24
|
-
import bl_ui.
|
|
31
|
+
import bl_ui.space_toolsystem_common
|
|
32
|
+
import bl_ui.space_dopesheet
|
|
33
|
+
import bl_ui.properties_material_gpencil
|
|
34
|
+
import bl_ui.properties_freestyle
|
|
35
|
+
import bl_ui.space_console
|
|
36
|
+
import bl_ui.space_sequencer
|
|
37
|
+
import bl_ui.node_add_menu_texture
|
|
25
38
|
import bl_ui.space_image
|
|
26
|
-
import bl_ui.
|
|
27
|
-
import bl_ui.
|
|
39
|
+
import bl_ui.space_filebrowser
|
|
40
|
+
import bl_ui.node_add_menu_shader
|
|
28
41
|
import bl_ui.space_time
|
|
29
|
-
import bl_ui.
|
|
30
|
-
import bl_ui.
|
|
31
|
-
import
|
|
32
|
-
import bl_ui.
|
|
42
|
+
import bl_ui.space_toolsystem_toolbar
|
|
43
|
+
import bl_ui.properties_physics_common
|
|
44
|
+
import bl_ui.space_info
|
|
45
|
+
import bl_ui.properties_data_curves
|
|
46
|
+
import bl_operators.constraint
|
|
47
|
+
import bl_ui.space_view3d
|
|
48
|
+
import bl_ui.properties_physics_field
|
|
49
|
+
import bl_ui.space_outliner
|
|
50
|
+
import bl_ui.properties_collection
|
|
51
|
+
import bl_ui.properties_data_modifier
|
|
52
|
+
import bl_ui.properties_material
|
|
53
|
+
import bl_operators.spreadsheet
|
|
54
|
+
import bl_ui.properties_data_camera
|
|
33
55
|
import bl_ui.generic_ui_list
|
|
34
|
-
import bl_ui.properties_view_layer
|
|
35
|
-
import bl_ui.space_topbar
|
|
36
56
|
import bl_ui.space_spreadsheet
|
|
37
|
-
import bl_ui.space_filebrowser
|
|
38
|
-
import bl_ui.properties_workspace
|
|
39
57
|
import bl_ui.space_clip
|
|
40
|
-
import bl_ui.
|
|
41
|
-
import bl_ui.
|
|
42
|
-
import bl_ui.
|
|
43
|
-
import
|
|
44
|
-
import bl_ui.
|
|
58
|
+
import bl_ui.properties_data_gpencil
|
|
59
|
+
import bl_ui.properties_data_volume
|
|
60
|
+
import bl_ui.properties_physics_rigidbody
|
|
61
|
+
import bl_operators.userpref
|
|
62
|
+
import bl_ui.properties_grease_pencil_common
|
|
45
63
|
import bl_ui.properties_physics_softbody
|
|
46
|
-
import bl_ui.
|
|
47
|
-
import bl_ui.node_add_menu
|
|
64
|
+
import bl_ui.properties_workspace
|
|
48
65
|
import bl_ui
|
|
66
|
+
import bl_ui.properties_object
|
|
67
|
+
import bl_ui.properties_data_mesh
|
|
68
|
+
import bl_ui.space_userpref
|
|
49
69
|
import bl_ui.properties_physics_geometry_nodes
|
|
50
|
-
import bl_ui.
|
|
51
|
-
import bl_ui.space_console
|
|
52
|
-
import bl_ui.properties_data_camera
|
|
53
|
-
import bl_ui.asset_shelf
|
|
70
|
+
import bl_ui.properties_data_bone
|
|
54
71
|
import bl_operators.view3d
|
|
55
|
-
import bl_ui.space_nla
|
|
56
|
-
import bl_ui.properties_data_mesh
|
|
57
|
-
import bl_ui.properties_data_curves
|
|
58
|
-
import bl_ui.properties_data_shaderfx
|
|
59
|
-
import bl_operators.constraint
|
|
60
|
-
import bl_ui.properties_collection
|
|
61
|
-
import bl_ui.node_add_menu_shader
|
|
62
|
-
import bl_ui.properties_data_modifier
|
|
63
|
-
import bl_ui.properties_data_metaball
|
|
64
|
-
import bl_operators.userpref
|
|
65
|
-
import bl_ui.properties_physics_dynamicpaint
|
|
66
|
-
import bl_ui.space_outliner
|
|
67
|
-
import bl_ui.properties_material
|
|
68
|
-
import bl_ui.properties_particle
|
|
69
|
-
import bl_ui.space_graph
|
|
70
|
-
import bl_ui.space_info
|
|
71
|
-
import bl_ui.properties_object
|
|
72
|
-
import bl_ui.properties_data_lightprobe
|
|
73
72
|
import bl_operators.freestyle
|
|
74
|
-
import bl_ui.
|
|
75
|
-
import bl_ui.
|
|
76
|
-
import bl_ui.properties_physics_rigidbody_constraint
|
|
77
|
-
import bl_ui.properties_data_lattice
|
|
78
|
-
import bl_ui.space_toolsystem_toolbar
|
|
79
|
-
import bl_ui.properties_mask_common
|
|
80
|
-
import bl_ui.space_properties
|
|
81
|
-
import bl_ui.node_add_menu_texture
|
|
82
|
-
import bl_ui.properties_data_gpencil
|
|
83
|
-
import bl_ui.properties_freestyle
|
|
84
|
-
import bl_operators.object
|
|
73
|
+
import bl_ui.asset_shelf
|
|
74
|
+
import bl_ui.properties_data_curve
|
|
85
75
|
import bl_ui.properties_render
|
|
86
|
-
import
|
|
87
|
-
import bl_ui.
|
|
88
|
-
import bl_ui.
|
|
89
|
-
import bl_ui.
|
|
90
|
-
import
|
|
91
|
-
import bl_ui.
|
|
76
|
+
import bl_ui.properties_output
|
|
77
|
+
import bl_ui.properties_constraint
|
|
78
|
+
import bl_ui.space_statusbar
|
|
79
|
+
import bl_ui.space_graph
|
|
80
|
+
import bl_ui.properties_data_armature
|
|
81
|
+
import bl_ui.space_node
|
|
82
|
+
import bl_ui.properties_physics_dynamicpaint
|
|
83
|
+
import bl_ui.properties_data_metaball
|
|
84
|
+
import bl_ui.properties_view_layer
|
|
85
|
+
import bl_operators.object
|
|
86
|
+
import bl_ui.properties_mask_common
|
|
87
|
+
import bl_operators.wm
|
|
88
|
+
import bl_operators.anim
|
|
89
|
+
import bl_ui.space_nla
|
|
90
|
+
import bl_ui.properties_data_speaker
|
|
91
|
+
import bl_ui.node_add_menu_geometry
|
|
92
92
|
|
|
93
93
|
GenericType = typing.TypeVar("GenericType")
|
|
94
94
|
|
|
@@ -3079,7 +3079,7 @@ class BoneCollection(bpy_struct):
|
|
|
3079
3079
|
"""
|
|
3080
3080
|
|
|
3081
3081
|
index: int
|
|
3082
|
-
""" Index of this bone collection in the armature.
|
|
3082
|
+
""" Index of this bone collection in the armature.collections_all array. Note that finding this index requires a scan of all the bone collections, so do access this with care
|
|
3083
3083
|
|
|
3084
3084
|
:type: int
|
|
3085
3085
|
"""
|
|
@@ -6832,10 +6832,10 @@ class Context(bpy_struct):
|
|
|
6832
6832
|
:type: 'UIList'
|
|
6833
6833
|
"""
|
|
6834
6834
|
|
|
6835
|
-
property: typing.Union[
|
|
6835
|
+
property: typing.Union[str, int, "AnyType"]
|
|
6836
6836
|
""" Get the property associated with a hovered button. Returns a tuple of the data-block, data path to the property, and array index.
|
|
6837
6837
|
|
|
6838
|
-
:type: typing.Union[
|
|
6838
|
+
:type: typing.Union[str, int, 'AnyType']
|
|
6839
6839
|
"""
|
|
6840
6840
|
|
|
6841
6841
|
edit_text: "Text"
|
|
@@ -14825,7 +14825,7 @@ class Gizmo(bpy_struct):
|
|
|
14825
14825
|
context: "Context",
|
|
14826
14826
|
event: "Event",
|
|
14827
14827
|
tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]],
|
|
14828
|
-
) -> typing.Union[typing.Set[
|
|
14828
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
14829
14829
|
"""
|
|
14830
14830
|
|
|
14831
14831
|
:param context:
|
|
@@ -14834,7 +14834,7 @@ class Gizmo(bpy_struct):
|
|
|
14834
14834
|
:type event: 'Event'
|
|
14835
14835
|
:param tweak: Tweak
|
|
14836
14836
|
:type tweak: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
14837
|
-
:rtype: typing.Union[typing.Set[
|
|
14837
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
14838
14838
|
:return: result
|
|
14839
14839
|
"""
|
|
14840
14840
|
...
|
|
@@ -14842,14 +14842,14 @@ class Gizmo(bpy_struct):
|
|
|
14842
14842
|
def setup(self): ...
|
|
14843
14843
|
def invoke(
|
|
14844
14844
|
self, context: "Context", event: "Event"
|
|
14845
|
-
) -> typing.Union[typing.Set[
|
|
14845
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
14846
14846
|
"""
|
|
14847
14847
|
|
|
14848
14848
|
:param context:
|
|
14849
14849
|
:type context: 'Context'
|
|
14850
14850
|
:param event:
|
|
14851
14851
|
:type event: 'Event'
|
|
14852
|
-
:rtype: typing.Union[typing.Set[
|
|
14852
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
14853
14853
|
:return: result
|
|
14854
14854
|
"""
|
|
14855
14855
|
...
|
|
@@ -17314,10 +17314,10 @@ class KeyingSetInfo(bpy_struct):
|
|
|
17314
17314
|
:type: typing.Union[str, typing.Any]
|
|
17315
17315
|
"""
|
|
17316
17316
|
|
|
17317
|
-
bl_options: typing.Union[typing.Set[
|
|
17317
|
+
bl_options: typing.Union[typing.Set[str], typing.Set[int]]
|
|
17318
17318
|
""" Keying Set options to use when inserting keyframes
|
|
17319
17319
|
|
|
17320
|
-
:type: typing.Union[typing.Set[
|
|
17320
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
17321
17321
|
"""
|
|
17322
17322
|
|
|
17323
17323
|
def poll(self, context: typing.Optional["Context"]) -> bool:
|
|
@@ -17789,10 +17789,10 @@ class Macro(bpy_struct):
|
|
|
17789
17789
|
:type: typing.Union[str, typing.Any]
|
|
17790
17790
|
"""
|
|
17791
17791
|
|
|
17792
|
-
bl_options: typing.Union[typing.Set[
|
|
17792
|
+
bl_options: typing.Union[typing.Set[str], typing.Set[int]]
|
|
17793
17793
|
""" Options for this operator type
|
|
17794
17794
|
|
|
17795
|
-
:type: typing.Union[typing.Set[
|
|
17795
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
17796
17796
|
"""
|
|
17797
17797
|
|
|
17798
17798
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -17827,13 +17827,13 @@ class Macro(bpy_struct):
|
|
|
17827
17827
|
|
|
17828
17828
|
def report(
|
|
17829
17829
|
self,
|
|
17830
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
17830
|
+
type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]],
|
|
17831
17831
|
message: typing.Union[str, typing.Any],
|
|
17832
17832
|
):
|
|
17833
17833
|
"""report
|
|
17834
17834
|
|
|
17835
17835
|
:param type: Type
|
|
17836
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
17836
|
+
:type type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
17837
17837
|
:param message: Report Message
|
|
17838
17838
|
:type message: typing.Union[str, typing.Any]
|
|
17839
17839
|
"""
|
|
@@ -22828,10 +22828,10 @@ class Operator(bpy_struct):
|
|
|
22828
22828
|
:type: typing.Union[str, typing.Any]
|
|
22829
22829
|
"""
|
|
22830
22830
|
|
|
22831
|
-
bl_options: typing.Union[typing.Set[
|
|
22831
|
+
bl_options: typing.Union[typing.Set[str], typing.Set[int]]
|
|
22832
22832
|
""" Options for this operator type
|
|
22833
22833
|
|
|
22834
|
-
:type: typing.Union[typing.Set[
|
|
22834
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
22835
22835
|
"""
|
|
22836
22836
|
|
|
22837
22837
|
bl_translation_context: typing.Union[str, typing.Any]
|
|
@@ -22890,13 +22890,13 @@ class Operator(bpy_struct):
|
|
|
22890
22890
|
|
|
22891
22891
|
def report(
|
|
22892
22892
|
self,
|
|
22893
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
22893
|
+
type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]],
|
|
22894
22894
|
message: typing.Union[str, typing.Any],
|
|
22895
22895
|
):
|
|
22896
22896
|
"""report
|
|
22897
22897
|
|
|
22898
22898
|
:param type: Type
|
|
22899
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
22899
|
+
:type type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
22900
22900
|
:param message: Report Message
|
|
22901
22901
|
:type message: typing.Union[str, typing.Any]
|
|
22902
22902
|
"""
|
|
@@ -22922,12 +22922,12 @@ class Operator(bpy_struct):
|
|
|
22922
22922
|
|
|
22923
22923
|
def execute(
|
|
22924
22924
|
self, context: "Context"
|
|
22925
|
-
) -> typing.Union[typing.Set[
|
|
22925
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
22926
22926
|
"""Execute the operator
|
|
22927
22927
|
|
|
22928
22928
|
:param context:
|
|
22929
22929
|
:type context: 'Context'
|
|
22930
|
-
:rtype: typing.Union[typing.Set[
|
|
22930
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
22931
22931
|
:return: result
|
|
22932
22932
|
"""
|
|
22933
22933
|
...
|
|
@@ -22944,28 +22944,28 @@ class Operator(bpy_struct):
|
|
|
22944
22944
|
|
|
22945
22945
|
def invoke(
|
|
22946
22946
|
self, context: "Context", event: "Event"
|
|
22947
|
-
) -> typing.Union[typing.Set[
|
|
22947
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
22948
22948
|
"""Invoke the operator
|
|
22949
22949
|
|
|
22950
22950
|
:param context:
|
|
22951
22951
|
:type context: 'Context'
|
|
22952
22952
|
:param event:
|
|
22953
22953
|
:type event: 'Event'
|
|
22954
|
-
:rtype: typing.Union[typing.Set[
|
|
22954
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
22955
22955
|
:return: result
|
|
22956
22956
|
"""
|
|
22957
22957
|
...
|
|
22958
22958
|
|
|
22959
22959
|
def modal(
|
|
22960
22960
|
self, context: "Context", event: "Event"
|
|
22961
|
-
) -> typing.Union[typing.Set[
|
|
22961
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
22962
22962
|
"""Modal operator function
|
|
22963
22963
|
|
|
22964
22964
|
:param context:
|
|
22965
22965
|
:type context: 'Context'
|
|
22966
22966
|
:param event:
|
|
22967
22967
|
:type event: 'Event'
|
|
22968
|
-
:rtype: typing.Union[typing.Set[
|
|
22968
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
22969
22969
|
:return: result
|
|
22970
22970
|
"""
|
|
22971
22971
|
...
|
|
@@ -28859,13 +28859,13 @@ class RenderEngine(bpy_struct):
|
|
|
28859
28859
|
|
|
28860
28860
|
def report(
|
|
28861
28861
|
self,
|
|
28862
|
-
type: typing.Optional[typing.Union[typing.Set[
|
|
28862
|
+
type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]],
|
|
28863
28863
|
message: typing.Union[str, typing.Any],
|
|
28864
28864
|
):
|
|
28865
28865
|
"""Report info, warning or error messages
|
|
28866
28866
|
|
|
28867
28867
|
:param type: Type
|
|
28868
|
-
:type type: typing.Optional[typing.Union[typing.Set[
|
|
28868
|
+
:type type: typing.Optional[typing.Union[typing.Set[str], typing.Set[int]]]
|
|
28869
28869
|
:param message: Report Message
|
|
28870
28870
|
:type message: typing.Union[str, typing.Any]
|
|
28871
28871
|
"""
|
|
@@ -32572,7 +32572,7 @@ class SequenceTransform(bpy_struct):
|
|
|
32572
32572
|
"""Transform parameters for a sequence strip"""
|
|
32573
32573
|
|
|
32574
32574
|
filter: typing.Union[str, int]
|
|
32575
|
-
""" Type of filter to use for image transformation * ``NEAREST`` Nearest. * ``BILINEAR`` Bilinear. * ``SUBSAMPLING_3x3`` Subsampling (3×3) -- Use nearest with 3×3 subsamples during rendering.
|
|
32575
|
+
""" Type of filter to use for image transformation * ``NEAREST`` Nearest. * ``BILINEAR`` Bilinear. * ``BICUBIC`` Bicubic. * ``SUBSAMPLING_3x3`` Subsampling (3×3) -- Use nearest with 3×3 subsamples during rendering.
|
|
32576
32576
|
|
|
32577
32577
|
:type: typing.Union[str, int]
|
|
32578
32578
|
"""
|
|
@@ -40020,10 +40020,10 @@ class ToolSettings(bpy_struct):
|
|
|
40020
40020
|
:type: typing.Union[str, int]
|
|
40021
40021
|
"""
|
|
40022
40022
|
|
|
40023
|
-
snap_elements: typing.Union[typing.Set[
|
|
40023
|
+
snap_elements: typing.Union[typing.Set[str], typing.Set[int]]
|
|
40024
40024
|
""" Type of element to snap to
|
|
40025
40025
|
|
|
40026
|
-
:type: typing.Union[typing.Set[
|
|
40026
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
40027
40027
|
"""
|
|
40028
40028
|
|
|
40029
40029
|
snap_elements_base: typing.Union[typing.Set[str], typing.Set[int]]
|
|
@@ -42544,6 +42544,14 @@ class UILayout(bpy_struct):
|
|
|
42544
42544
|
"""
|
|
42545
42545
|
...
|
|
42546
42546
|
|
|
42547
|
+
def template_node_inputs(self, node: "Node"):
|
|
42548
|
+
"""Show a node settings and input socket values
|
|
42549
|
+
|
|
42550
|
+
:param node: Node, Display inputs of this node
|
|
42551
|
+
:type node: 'Node'
|
|
42552
|
+
"""
|
|
42553
|
+
...
|
|
42554
|
+
|
|
42547
42555
|
@classmethod
|
|
42548
42556
|
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
42549
42557
|
"""
|
|
@@ -65065,14 +65073,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65065
65073
|
@classmethod
|
|
65066
65074
|
def invoke_props_popup(
|
|
65067
65075
|
cls, operator: typing.Optional["Operator"], event: typing.Optional["Event"]
|
|
65068
|
-
) -> typing.Union[typing.Set[
|
|
65076
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
65069
65077
|
"""Operator popup invoke (show operator properties and execute it automatically on changes)
|
|
65070
65078
|
|
|
65071
65079
|
:param operator: Operator to call
|
|
65072
65080
|
:type operator: typing.Optional['Operator']
|
|
65073
65081
|
:param event: Event
|
|
65074
65082
|
:type event: typing.Optional['Event']
|
|
65075
|
-
:rtype: typing.Union[typing.Set[
|
|
65083
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65076
65084
|
:return: result
|
|
65077
65085
|
"""
|
|
65078
65086
|
...
|
|
@@ -65082,14 +65090,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65082
65090
|
cls,
|
|
65083
65091
|
operator: typing.Optional["Operator"],
|
|
65084
65092
|
width: typing.Optional[typing.Any] = 300,
|
|
65085
|
-
) -> typing.Union[typing.Set[
|
|
65093
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
65086
65094
|
"""Operator dialog (non-autoexec popup) invoke (show operator properties and only execute it on click on OK button)
|
|
65087
65095
|
|
|
65088
65096
|
:param operator: Operator to call
|
|
65089
65097
|
:type operator: typing.Optional['Operator']
|
|
65090
65098
|
:param width: Width of the popup
|
|
65091
65099
|
:type width: typing.Optional[typing.Any]
|
|
65092
|
-
:rtype: typing.Union[typing.Set[
|
|
65100
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65093
65101
|
:return: result
|
|
65094
65102
|
"""
|
|
65095
65103
|
...
|
|
@@ -65108,14 +65116,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65108
65116
|
cls,
|
|
65109
65117
|
operator: typing.Optional["Operator"],
|
|
65110
65118
|
width: typing.Optional[typing.Any] = 300,
|
|
65111
|
-
) -> typing.Union[typing.Set[
|
|
65119
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
65112
65120
|
"""Operator popup invoke (only shows operator's properties, without executing it)
|
|
65113
65121
|
|
|
65114
65122
|
:param operator: Operator to call
|
|
65115
65123
|
:type operator: typing.Optional['Operator']
|
|
65116
65124
|
:param width: Width of the popup
|
|
65117
65125
|
:type width: typing.Optional[typing.Any]
|
|
65118
|
-
:rtype: typing.Union[typing.Set[
|
|
65126
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65119
65127
|
:return: result
|
|
65120
65128
|
"""
|
|
65121
65129
|
...
|
|
@@ -65123,14 +65131,14 @@ class WindowManager(ID, bpy_struct):
|
|
|
65123
65131
|
@classmethod
|
|
65124
65132
|
def invoke_confirm(
|
|
65125
65133
|
cls, operator: typing.Optional["Operator"], event: typing.Optional["Event"]
|
|
65126
|
-
) -> typing.Union[typing.Set[
|
|
65134
|
+
) -> typing.Union[typing.Set[str], typing.Set[int]]:
|
|
65127
65135
|
"""Operator confirmation popup (only to let user confirm the execution, no operator properties shown)
|
|
65128
65136
|
|
|
65129
65137
|
:param operator: Operator to call
|
|
65130
65138
|
:type operator: typing.Optional['Operator']
|
|
65131
65139
|
:param event: Event
|
|
65132
65140
|
:type event: typing.Optional['Event']
|
|
65133
|
-
:rtype: typing.Union[typing.Set[
|
|
65141
|
+
:rtype: typing.Union[typing.Set[str], typing.Set[int]]
|
|
65134
65142
|
:return: result
|
|
65135
65143
|
"""
|
|
65136
65144
|
...
|
|
@@ -68159,10 +68167,10 @@ class DecimateModifier(Modifier, bpy_struct):
|
|
|
68159
68167
|
:type: typing.Union[str, int]
|
|
68160
68168
|
"""
|
|
68161
68169
|
|
|
68162
|
-
delimit: typing.Union[typing.Set[
|
|
68170
|
+
delimit: typing.Union[typing.Set[str], typing.Set[int]]
|
|
68163
68171
|
""" Limit merging geometry
|
|
68164
68172
|
|
|
68165
|
-
:type: typing.Union[typing.Set[
|
|
68173
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
68166
68174
|
"""
|
|
68167
68175
|
|
|
68168
68176
|
face_count: int
|
|
@@ -68564,6 +68572,151 @@ class FluidModifier(Modifier, bpy_struct):
|
|
|
68564
68572
|
"""
|
|
68565
68573
|
...
|
|
68566
68574
|
|
|
68575
|
+
class GreasePencilOpacityModifier(Modifier, bpy_struct):
|
|
68576
|
+
color_factor: float
|
|
68577
|
+
""" Factor of opacity
|
|
68578
|
+
|
|
68579
|
+
:type: float
|
|
68580
|
+
"""
|
|
68581
|
+
|
|
68582
|
+
color_mode: typing.Union[str, int]
|
|
68583
|
+
""" Attributes to modify * ``BOTH`` Stroke & Fill -- Modify fill and stroke colors. * ``STROKE`` Stroke -- Modify stroke color only. * ``FILL`` Fill -- Modify fill color only. * ``HARDNESS`` Hardness -- Modify stroke hardness.
|
|
68584
|
+
|
|
68585
|
+
:type: typing.Union[str, int]
|
|
68586
|
+
"""
|
|
68587
|
+
|
|
68588
|
+
custom_curve: "CurveMapping"
|
|
68589
|
+
""" Custom curve to apply effect
|
|
68590
|
+
|
|
68591
|
+
:type: 'CurveMapping'
|
|
68592
|
+
"""
|
|
68593
|
+
|
|
68594
|
+
hardness_factor: float
|
|
68595
|
+
""" Factor of stroke hardness
|
|
68596
|
+
|
|
68597
|
+
:type: float
|
|
68598
|
+
"""
|
|
68599
|
+
|
|
68600
|
+
invert_layer_filter: bool
|
|
68601
|
+
""" Invert layer filter
|
|
68602
|
+
|
|
68603
|
+
:type: bool
|
|
68604
|
+
"""
|
|
68605
|
+
|
|
68606
|
+
invert_layer_pass_filter: bool
|
|
68607
|
+
""" Invert layer pass filter
|
|
68608
|
+
|
|
68609
|
+
:type: bool
|
|
68610
|
+
"""
|
|
68611
|
+
|
|
68612
|
+
invert_material_filter: bool
|
|
68613
|
+
""" Invert material filter
|
|
68614
|
+
|
|
68615
|
+
:type: bool
|
|
68616
|
+
"""
|
|
68617
|
+
|
|
68618
|
+
invert_material_pass_filter: bool
|
|
68619
|
+
""" Invert material pass filter
|
|
68620
|
+
|
|
68621
|
+
:type: bool
|
|
68622
|
+
"""
|
|
68623
|
+
|
|
68624
|
+
invert_vertex_group: bool
|
|
68625
|
+
""" Invert vertex group weights
|
|
68626
|
+
|
|
68627
|
+
:type: bool
|
|
68628
|
+
"""
|
|
68629
|
+
|
|
68630
|
+
layer_filter: typing.Union[str, typing.Any]
|
|
68631
|
+
""" Layer name
|
|
68632
|
+
|
|
68633
|
+
:type: typing.Union[str, typing.Any]
|
|
68634
|
+
"""
|
|
68635
|
+
|
|
68636
|
+
layer_pass_filter: int
|
|
68637
|
+
""" Layer pass filter
|
|
68638
|
+
|
|
68639
|
+
:type: int
|
|
68640
|
+
"""
|
|
68641
|
+
|
|
68642
|
+
material_filter: "Material"
|
|
68643
|
+
""" Material used for filtering
|
|
68644
|
+
|
|
68645
|
+
:type: 'Material'
|
|
68646
|
+
"""
|
|
68647
|
+
|
|
68648
|
+
material_pass_filter: int
|
|
68649
|
+
""" Material pass
|
|
68650
|
+
|
|
68651
|
+
:type: int
|
|
68652
|
+
"""
|
|
68653
|
+
|
|
68654
|
+
open_influence_panel: bool
|
|
68655
|
+
""" Open the influence panel
|
|
68656
|
+
|
|
68657
|
+
:type: bool
|
|
68658
|
+
"""
|
|
68659
|
+
|
|
68660
|
+
use_custom_curve: bool
|
|
68661
|
+
""" Use a custom curve to define a factor along the strokes
|
|
68662
|
+
|
|
68663
|
+
:type: bool
|
|
68664
|
+
"""
|
|
68665
|
+
|
|
68666
|
+
use_layer_pass_filter: bool
|
|
68667
|
+
""" Use layer pass filter
|
|
68668
|
+
|
|
68669
|
+
:type: bool
|
|
68670
|
+
"""
|
|
68671
|
+
|
|
68672
|
+
use_material_pass_filter: bool
|
|
68673
|
+
""" Use material pass filter
|
|
68674
|
+
|
|
68675
|
+
:type: bool
|
|
68676
|
+
"""
|
|
68677
|
+
|
|
68678
|
+
use_uniform_opacity: bool
|
|
68679
|
+
""" Replace the stroke opacity instead of modulating each point
|
|
68680
|
+
|
|
68681
|
+
:type: bool
|
|
68682
|
+
"""
|
|
68683
|
+
|
|
68684
|
+
use_weight_as_factor: bool
|
|
68685
|
+
""" Use vertex group weight as factor instead of influence
|
|
68686
|
+
|
|
68687
|
+
:type: bool
|
|
68688
|
+
"""
|
|
68689
|
+
|
|
68690
|
+
vertex_group_name: typing.Union[str, typing.Any]
|
|
68691
|
+
""" Vertex group name for modulating the deform
|
|
68692
|
+
|
|
68693
|
+
:type: typing.Union[str, typing.Any]
|
|
68694
|
+
"""
|
|
68695
|
+
|
|
68696
|
+
@classmethod
|
|
68697
|
+
def bl_rna_get_subclass(cls, id: typing.Optional[str], default=None) -> "Struct":
|
|
68698
|
+
"""
|
|
68699
|
+
|
|
68700
|
+
:param id: The RNA type identifier.
|
|
68701
|
+
:type id: typing.Optional[str]
|
|
68702
|
+
:rtype: 'Struct'
|
|
68703
|
+
:return: The RNA type or default when not found.
|
|
68704
|
+
"""
|
|
68705
|
+
...
|
|
68706
|
+
|
|
68707
|
+
@classmethod
|
|
68708
|
+
def bl_rna_get_subclass_py(
|
|
68709
|
+
cls, id: typing.Optional[str], default=None
|
|
68710
|
+
) -> typing.Any:
|
|
68711
|
+
"""
|
|
68712
|
+
|
|
68713
|
+
:param id: The RNA type identifier.
|
|
68714
|
+
:type id: typing.Optional[str]
|
|
68715
|
+
:rtype: typing.Any
|
|
68716
|
+
:return: The class or default when not found.
|
|
68717
|
+
"""
|
|
68718
|
+
...
|
|
68719
|
+
|
|
68567
68720
|
class HookModifier(Modifier, bpy_struct):
|
|
68568
68721
|
"""Hook modifier to modify the location of vertices"""
|
|
68569
68722
|
|
|
@@ -68979,10 +69132,10 @@ class MeshCacheModifier(Modifier, bpy_struct):
|
|
|
68979
69132
|
:type: typing.Union[str, typing.Any]
|
|
68980
69133
|
"""
|
|
68981
69134
|
|
|
68982
|
-
flip_axis: typing.Union[typing.Set[
|
|
69135
|
+
flip_axis: typing.Union[typing.Set[str], typing.Set[int]]
|
|
68983
69136
|
"""
|
|
68984
69137
|
|
|
68985
|
-
:type: typing.Union[typing.Set[
|
|
69138
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
68986
69139
|
"""
|
|
68987
69140
|
|
|
68988
69141
|
forward_axis: typing.Union[str, int]
|
|
@@ -108035,10 +108188,10 @@ class GeometryNodeCurveHandleTypeSelection(
|
|
|
108035
108188
|
:type: typing.Union[str, int]
|
|
108036
108189
|
"""
|
|
108037
108190
|
|
|
108038
|
-
mode: typing.Union[typing.Set[
|
|
108191
|
+
mode: typing.Union[typing.Set[str], typing.Set[int]]
|
|
108039
108192
|
""" Whether to check the type of left and right handles
|
|
108040
108193
|
|
|
108041
|
-
:type: typing.Union[typing.Set[
|
|
108194
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
108042
108195
|
"""
|
|
108043
108196
|
|
|
108044
108197
|
@classmethod
|
|
@@ -108571,10 +108724,10 @@ class GeometryNodeCurveSetHandles(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
|
108571
108724
|
:type: typing.Union[str, int]
|
|
108572
108725
|
"""
|
|
108573
108726
|
|
|
108574
|
-
mode: typing.Union[typing.Set[
|
|
108727
|
+
mode: typing.Union[typing.Set[str], typing.Set[int]]
|
|
108575
108728
|
""" Whether to update left and right handles
|
|
108576
108729
|
|
|
108577
|
-
:type: typing.Union[typing.Set[
|
|
108730
|
+
:type: typing.Union[typing.Set[str], typing.Set[int]]
|
|
108578
108731
|
"""
|
|
108579
108732
|
|
|
108580
108733
|
@classmethod
|
bpy_extras/__init__.pyi
CHANGED
|
@@ -10,8 +10,8 @@ from . import id_map_utils
|
|
|
10
10
|
from . import asset_utils
|
|
11
11
|
from . import object_utils
|
|
12
12
|
from . import anim_utils
|
|
13
|
-
from . import wm_utils
|
|
14
13
|
from . import node_shader_utils
|
|
14
|
+
from . import wm_utils
|
|
15
15
|
from . import bmesh_utils
|
|
16
16
|
from . import extensions
|
|
17
17
|
|
|
@@ -72,14 +72,14 @@ def bake_action_objects(
|
|
|
72
72
|
|
|
73
73
|
def bake_action_objects_iter(
|
|
74
74
|
object_action_pairs: typing.Union[
|
|
75
|
-
"bpy.types.
|
|
75
|
+
"bpy.types.Object", "bpy.types.Sequence", "bpy.types.Action"
|
|
76
76
|
],
|
|
77
77
|
bake_o,
|
|
78
78
|
):
|
|
79
79
|
"""An coroutine that bakes actions for multiple objects.
|
|
80
80
|
|
|
81
81
|
:param object_action_pairs: Sequence of object action tuples, action is the destination for the baked data. When None a new action will be created.
|
|
82
|
-
:type object_action_pairs: typing.Union['bpy.types.
|
|
82
|
+
:type object_action_pairs: typing.Union['bpy.types.Object', 'bpy.types.Sequence', 'bpy.types.Action']
|
|
83
83
|
"""
|
|
84
84
|
|
|
85
85
|
...
|