fake-bpy-module 20240811__py3-none-any.whl → 20240813__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.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_ui/space_view3d/__init__.pyi +31 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +110 -110
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +26 -26
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +54 -54
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +166 -166
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +208 -208
- bpy/ops/object/__init__.pyi +473 -473
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +72 -72
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +174 -174
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +64 -64
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +226 -226
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +76 -64
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/RECORD +83 -83
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240811.dist-info → fake_bpy_module-20240813.dist-info}/top_level.txt +0 -0
bpy/ops/workspace/__init__.pyi
CHANGED
|
@@ -7,13 +7,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def add(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
):
|
|
14
14
|
"""Add a new workspace by duplicating the current one or appending one from the user configuration
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
"""
|
|
@@ -21,7 +21,7 @@ def add(
|
|
|
21
21
|
...
|
|
22
22
|
|
|
23
23
|
def append_activate(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
24
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
25
25
|
execution_context: int | str | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
27
|
*,
|
|
@@ -30,7 +30,7 @@ def append_activate(
|
|
|
30
30
|
):
|
|
31
31
|
"""Append a workspace and make it the active one in the current window
|
|
32
32
|
|
|
33
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
33
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
34
34
|
:type execution_context: int | str | None
|
|
35
35
|
:type undo: bool | None
|
|
36
36
|
:param idname: Identifier, Name of the workspace to append and activate
|
|
@@ -42,13 +42,13 @@ def append_activate(
|
|
|
42
42
|
...
|
|
43
43
|
|
|
44
44
|
def delete(
|
|
45
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
45
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
46
46
|
execution_context: int | str | None = None,
|
|
47
47
|
undo: bool | None = None,
|
|
48
48
|
):
|
|
49
49
|
"""Delete the active workspace
|
|
50
50
|
|
|
51
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
51
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
52
52
|
:type execution_context: int | str | None
|
|
53
53
|
:type undo: bool | None
|
|
54
54
|
"""
|
|
@@ -56,13 +56,13 @@ def delete(
|
|
|
56
56
|
...
|
|
57
57
|
|
|
58
58
|
def duplicate(
|
|
59
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
59
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
60
60
|
execution_context: int | str | None = None,
|
|
61
61
|
undo: bool | None = None,
|
|
62
62
|
):
|
|
63
63
|
"""Add a new workspace
|
|
64
64
|
|
|
65
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
65
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
66
66
|
:type execution_context: int | str | None
|
|
67
67
|
:type undo: bool | None
|
|
68
68
|
"""
|
|
@@ -70,13 +70,13 @@ def duplicate(
|
|
|
70
70
|
...
|
|
71
71
|
|
|
72
72
|
def reorder_to_back(
|
|
73
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
73
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
74
74
|
execution_context: int | str | None = None,
|
|
75
75
|
undo: bool | None = None,
|
|
76
76
|
):
|
|
77
77
|
"""Reorder workspace to be last in the list
|
|
78
78
|
|
|
79
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
79
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
80
80
|
:type execution_context: int | str | None
|
|
81
81
|
:type undo: bool | None
|
|
82
82
|
"""
|
|
@@ -84,13 +84,13 @@ def reorder_to_back(
|
|
|
84
84
|
...
|
|
85
85
|
|
|
86
86
|
def reorder_to_front(
|
|
87
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
87
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
88
88
|
execution_context: int | str | None = None,
|
|
89
89
|
undo: bool | None = None,
|
|
90
90
|
):
|
|
91
91
|
"""Reorder workspace to be first in the list
|
|
92
92
|
|
|
93
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
93
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
94
94
|
:type execution_context: int | str | None
|
|
95
95
|
:type undo: bool | None
|
|
96
96
|
"""
|
|
@@ -98,13 +98,13 @@ def reorder_to_front(
|
|
|
98
98
|
...
|
|
99
99
|
|
|
100
100
|
def scene_pin_toggle(
|
|
101
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
101
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
102
102
|
execution_context: int | str | None = None,
|
|
103
103
|
undo: bool | None = None,
|
|
104
104
|
):
|
|
105
105
|
"""Remember the last used scene for the current workspace and switch to it whenever this workspace is activated again
|
|
106
106
|
|
|
107
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
107
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
108
108
|
:type execution_context: int | str | None
|
|
109
109
|
:type undo: bool | None
|
|
110
110
|
"""
|
bpy/ops/world/__init__.pyi
CHANGED
|
@@ -7,13 +7,13 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
7
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
8
8
|
|
|
9
9
|
def convert_volume_to_mesh(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
):
|
|
14
14
|
"""Convert the volume of a world to a mesh. The world's volume used to be rendered by EEVEE Legacy. Conversion is needed for it to render properly
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
"""
|
|
@@ -21,13 +21,13 @@ def convert_volume_to_mesh(
|
|
|
21
21
|
...
|
|
22
22
|
|
|
23
23
|
def new(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
24
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
25
25
|
execution_context: int | str | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
27
|
):
|
|
28
28
|
"""Create a new world Data-Block
|
|
29
29
|
|
|
30
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
30
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
31
31
|
:type execution_context: int | str | None
|
|
32
32
|
:type undo: bool | None
|
|
33
33
|
"""
|
bpy/types/__init__.pyi
CHANGED
|
@@ -13249,6 +13249,7 @@ database.
|
|
|
13249
13249
|
* ID.override_library
|
|
13250
13250
|
* ID.preview
|
|
13251
13251
|
* NodeTree.color_tag
|
|
13252
|
+
* NodeTree.default_group_node_width
|
|
13252
13253
|
* NodeTree.view_center
|
|
13253
13254
|
* NodeTree.description
|
|
13254
13255
|
* NodeTree.animation_data
|
|
@@ -41324,6 +41325,7 @@ object, placing it into a view layer, selecting it and making it active.
|
|
|
41324
41325
|
* ID.override_library
|
|
41325
41326
|
* ID.preview
|
|
41326
41327
|
* NodeTree.color_tag
|
|
41328
|
+
* NodeTree.default_group_node_width
|
|
41327
41329
|
* NodeTree.view_center
|
|
41328
41330
|
* NodeTree.description
|
|
41329
41331
|
* NodeTree.animation_data
|
|
@@ -63437,6 +63439,7 @@ FileHandler
|
|
|
63437
63439
|
* ID.override_library
|
|
63438
63440
|
* ID.preview
|
|
63439
63441
|
* NodeTree.color_tag
|
|
63442
|
+
* NodeTree.default_group_node_width
|
|
63440
63443
|
* NodeTree.view_center
|
|
63441
63444
|
* NodeTree.description
|
|
63442
63445
|
* NodeTree.animation_data
|
|
@@ -73688,6 +73691,7 @@ FileHandler
|
|
|
73688
73691
|
* ID.override_library
|
|
73689
73692
|
* ID.preview
|
|
73690
73693
|
* NodeTree.color_tag
|
|
73694
|
+
* NodeTree.default_group_node_width
|
|
73691
73695
|
* NodeTree.view_center
|
|
73692
73696
|
* NodeTree.description
|
|
73693
73697
|
* NodeTree.animation_data
|
|
@@ -112012,10 +112016,10 @@ class AddonPreferences(bpy_struct):
|
|
|
112012
112016
|
:type: str
|
|
112013
112017
|
"""
|
|
112014
112018
|
|
|
112015
|
-
layout: UILayout
|
|
112019
|
+
layout: UILayout
|
|
112016
112020
|
"""
|
|
112017
112021
|
|
|
112018
|
-
:type: UILayout
|
|
112022
|
+
:type: UILayout
|
|
112019
112023
|
"""
|
|
112020
112024
|
|
|
112021
112025
|
@classmethod
|
|
@@ -113447,11 +113451,11 @@ class AssetShelf(bpy_struct):
|
|
|
113447
113451
|
"""
|
|
113448
113452
|
|
|
113449
113453
|
@classmethod
|
|
113450
|
-
def poll(cls, context: Context
|
|
113454
|
+
def poll(cls, context: Context) -> bool:
|
|
113451
113455
|
"""If this method returns a non-null output, the asset shelf will be visible
|
|
113452
113456
|
|
|
113453
113457
|
:param context:
|
|
113454
|
-
:type context: Context
|
|
113458
|
+
:type context: Context
|
|
113455
113459
|
:return:
|
|
113456
113460
|
:rtype: bool
|
|
113457
113461
|
"""
|
|
@@ -113480,14 +113484,14 @@ class AssetShelf(bpy_struct):
|
|
|
113480
113484
|
@classmethod
|
|
113481
113485
|
def draw_context_menu(
|
|
113482
113486
|
cls,
|
|
113483
|
-
context: Context
|
|
113487
|
+
context: Context,
|
|
113484
113488
|
asset: AssetRepresentation | None,
|
|
113485
113489
|
layout: UILayout | None,
|
|
113486
113490
|
):
|
|
113487
113491
|
"""Draw UI elements into the context menu UI layout displayed on right click
|
|
113488
113492
|
|
|
113489
113493
|
:param context:
|
|
113490
|
-
:type context: Context
|
|
113494
|
+
:type context: Context
|
|
113491
113495
|
:param asset:
|
|
113492
113496
|
:type asset: AssetRepresentation | None
|
|
113493
113497
|
:param layout:
|
|
@@ -115169,16 +115173,16 @@ class Bone(bpy_struct):
|
|
|
115169
115173
|
:type: float
|
|
115170
115174
|
"""
|
|
115171
115175
|
|
|
115172
|
-
bbone_custom_handle_end: typing_extensions.Self
|
|
115176
|
+
bbone_custom_handle_end: typing_extensions.Self | None
|
|
115173
115177
|
""" Bone that serves as the end handle for the B-Bone curve
|
|
115174
115178
|
|
|
115175
|
-
:type: typing_extensions.Self
|
|
115179
|
+
:type: typing_extensions.Self | None
|
|
115176
115180
|
"""
|
|
115177
115181
|
|
|
115178
|
-
bbone_custom_handle_start: typing_extensions.Self
|
|
115182
|
+
bbone_custom_handle_start: typing_extensions.Self | None
|
|
115179
115183
|
""" Bone that serves as the start handle for the B-Bone curve
|
|
115180
115184
|
|
|
115181
|
-
:type: typing_extensions.Self
|
|
115185
|
+
:type: typing_extensions.Self | None
|
|
115182
115186
|
"""
|
|
115183
115187
|
|
|
115184
115188
|
bbone_easein: float
|
|
@@ -115709,10 +115713,10 @@ class BoneCollection(bpy_struct):
|
|
|
115709
115713
|
:type: str
|
|
115710
115714
|
"""
|
|
115711
115715
|
|
|
115712
|
-
parent: typing_extensions.Self
|
|
115716
|
+
parent: typing_extensions.Self | None
|
|
115713
115717
|
""" Parent bone collection. Note that accessing this requires a scan of all the bone collections to find the parent.
|
|
115714
115718
|
|
|
115715
|
-
:type: typing_extensions.Self
|
|
115719
|
+
:type: typing_extensions.Self | None
|
|
115716
115720
|
"""
|
|
115717
115721
|
|
|
115718
115722
|
bones_recursive: typing.Any
|
|
@@ -134692,16 +134696,16 @@ class EditBone(bpy_struct):
|
|
|
134692
134696
|
:type: float
|
|
134693
134697
|
"""
|
|
134694
134698
|
|
|
134695
|
-
bbone_custom_handle_end: typing_extensions.Self
|
|
134699
|
+
bbone_custom_handle_end: typing_extensions.Self | None
|
|
134696
134700
|
""" Bone that serves as the end handle for the B-Bone curve
|
|
134697
134701
|
|
|
134698
|
-
:type: typing_extensions.Self
|
|
134702
|
+
:type: typing_extensions.Self | None
|
|
134699
134703
|
"""
|
|
134700
134704
|
|
|
134701
|
-
bbone_custom_handle_start: typing_extensions.Self
|
|
134705
|
+
bbone_custom_handle_start: typing_extensions.Self | None
|
|
134702
134706
|
""" Bone that serves as the start handle for the B-Bone curve
|
|
134703
134707
|
|
|
134704
|
-
:type: typing_extensions.Self
|
|
134708
|
+
:type: typing_extensions.Self | None
|
|
134705
134709
|
"""
|
|
134706
134710
|
|
|
134707
134711
|
bbone_easein: float
|
|
@@ -134880,10 +134884,10 @@ class EditBone(bpy_struct):
|
|
|
134880
134884
|
:type: str
|
|
134881
134885
|
"""
|
|
134882
134886
|
|
|
134883
|
-
parent: typing_extensions.Self
|
|
134887
|
+
parent: typing_extensions.Self | None
|
|
134884
134888
|
""" Parent edit bone (in same Armature)
|
|
134885
134889
|
|
|
134886
|
-
:type: typing_extensions.Self
|
|
134890
|
+
:type: typing_extensions.Self | None
|
|
134887
134891
|
"""
|
|
134888
134892
|
|
|
134889
134893
|
roll: float
|
|
@@ -138848,11 +138852,11 @@ For Example: ".blend;.ble"
|
|
|
138848
138852
|
"""
|
|
138849
138853
|
|
|
138850
138854
|
@classmethod
|
|
138851
|
-
def poll_drop(cls, context: Context
|
|
138855
|
+
def poll_drop(cls, context: Context) -> bool:
|
|
138852
138856
|
"""If this method returns True, can be used to handle the drop of a drag-and-drop action
|
|
138853
138857
|
|
|
138854
138858
|
:param context:
|
|
138855
|
-
:type context: Context
|
|
138859
|
+
:type context: Context
|
|
138856
138860
|
:return:
|
|
138857
138861
|
:rtype: bool
|
|
138858
138862
|
"""
|
|
@@ -164021,11 +164025,11 @@ class Header(bpy_struct):
|
|
|
164021
164025
|
:type: UILayout
|
|
164022
164026
|
"""
|
|
164023
164027
|
|
|
164024
|
-
def draw(self, context: Context
|
|
164028
|
+
def draw(self, context: Context):
|
|
164025
164029
|
"""Draw UI elements into the header UI layout
|
|
164026
164030
|
|
|
164027
164031
|
:param context:
|
|
164028
|
-
:type context: Context
|
|
164032
|
+
:type context: Context
|
|
164029
164033
|
"""
|
|
164030
164034
|
...
|
|
164031
164035
|
|
|
@@ -164544,7 +164548,7 @@ class ID(bpy_struct):
|
|
|
164544
164548
|
self,
|
|
164545
164549
|
scene: Scene,
|
|
164546
164550
|
view_layer: ViewLayer,
|
|
164547
|
-
reference: typing_extensions.Self = None,
|
|
164551
|
+
reference: typing_extensions.Self | None = None,
|
|
164548
164552
|
do_fully_editable: bool | None = False,
|
|
164549
164553
|
) -> typing_extensions.Self:
|
|
164550
164554
|
"""Create an overridden local copy of this linked data-block, and most of its dependencies when it is a Collection or and Object
|
|
@@ -164554,7 +164558,7 @@ class ID(bpy_struct):
|
|
|
164554
164558
|
:param view_layer: In which view layer the new overrides should be instantiated
|
|
164555
164559
|
:type view_layer: ViewLayer
|
|
164556
164560
|
:param reference: Another ID (usually an Object or Collection) used as a hint to decide where to instantiate the new overrides
|
|
164557
|
-
:type reference: typing_extensions.Self
|
|
164561
|
+
:type reference: typing_extensions.Self | None
|
|
164558
164562
|
:param do_fully_editable: Make all library overrides generated by this call fully editable by the user (none will be 'system overrides')
|
|
164559
164563
|
:type do_fully_editable: bool | None
|
|
164560
164564
|
:return: New overridden local copy of the root ID
|
|
@@ -167701,11 +167705,11 @@ class KeyMapItem(bpy_struct):
|
|
|
167701
167705
|
:type: typing.Literal['ANY', 'PRESS', 'RELEASE', 'CLICK', 'DOUBLE_CLICK', 'CLICK_DRAG', 'NOTHING']
|
|
167702
167706
|
"""
|
|
167703
167707
|
|
|
167704
|
-
def compare(self, item: typing_extensions.Self) -> bool:
|
|
167708
|
+
def compare(self, item: typing_extensions.Self | None) -> bool:
|
|
167705
167709
|
"""compare
|
|
167706
167710
|
|
|
167707
167711
|
:param item: Item
|
|
167708
|
-
:type item: typing_extensions.Self
|
|
167712
|
+
:type item: typing_extensions.Self | None
|
|
167709
167713
|
:return: Comparison result
|
|
167710
167714
|
:rtype: bool
|
|
167711
167715
|
"""
|
|
@@ -168070,31 +168074,31 @@ class KeyingSetInfo(bpy_struct):
|
|
|
168070
168074
|
:type: set[typing.Literal['INSERTKEY_NEEDED', 'INSERTKEY_VISUAL', 'INSERTKEY_XYZ_TO_RGB']]
|
|
168071
168075
|
"""
|
|
168072
168076
|
|
|
168073
|
-
def poll(self, context: Context
|
|
168077
|
+
def poll(self, context: Context) -> bool:
|
|
168074
168078
|
"""Test if Keying Set can be used or not
|
|
168075
168079
|
|
|
168076
168080
|
:param context:
|
|
168077
|
-
:type context: Context
|
|
168081
|
+
:type context: Context
|
|
168078
168082
|
:return:
|
|
168079
168083
|
:rtype: bool
|
|
168080
168084
|
"""
|
|
168081
168085
|
...
|
|
168082
168086
|
|
|
168083
|
-
def iterator(self, context: Context
|
|
168087
|
+
def iterator(self, context: Context, ks: KeyingSet | None):
|
|
168084
168088
|
"""Call generate() on the structs which have properties to be keyframed
|
|
168085
168089
|
|
|
168086
168090
|
:param context:
|
|
168087
|
-
:type context: Context
|
|
168091
|
+
:type context: Context
|
|
168088
168092
|
:param ks:
|
|
168089
168093
|
:type ks: KeyingSet | None
|
|
168090
168094
|
"""
|
|
168091
168095
|
...
|
|
168092
168096
|
|
|
168093
|
-
def generate(self, context: Context
|
|
168097
|
+
def generate(self, context: Context, ks: KeyingSet | None, data: typing.Any):
|
|
168094
168098
|
"""Add Paths to the Keying Set to keyframe the properties of the given data
|
|
168095
168099
|
|
|
168096
168100
|
:param context:
|
|
168097
|
-
:type context: Context
|
|
168101
|
+
:type context: Context
|
|
168098
168102
|
:param ks:
|
|
168099
168103
|
:type ks: KeyingSet | None
|
|
168100
168104
|
:param data:
|
|
@@ -176083,21 +176087,21 @@ class Menu(bpy_struct):
|
|
|
176083
176087
|
"""
|
|
176084
176088
|
|
|
176085
176089
|
@classmethod
|
|
176086
|
-
def poll(cls, context: Context
|
|
176090
|
+
def poll(cls, context: Context) -> bool:
|
|
176087
176091
|
"""If this method returns a non-null output, then the menu can be drawn
|
|
176088
176092
|
|
|
176089
176093
|
:param context:
|
|
176090
|
-
:type context: Context
|
|
176094
|
+
:type context: Context
|
|
176091
176095
|
:return:
|
|
176092
176096
|
:rtype: bool
|
|
176093
176097
|
"""
|
|
176094
176098
|
...
|
|
176095
176099
|
|
|
176096
|
-
def draw(self, context: Context
|
|
176100
|
+
def draw(self, context: Context):
|
|
176097
176101
|
"""Draw UI elements into the menu UI layout
|
|
176098
176102
|
|
|
176099
176103
|
:param context:
|
|
176100
|
-
:type context: Context
|
|
176104
|
+
:type context: Context
|
|
176101
176105
|
"""
|
|
176102
176106
|
...
|
|
176103
176107
|
|
|
@@ -176338,10 +176342,10 @@ class Mesh(ID, bpy_struct):
|
|
|
176338
176342
|
:type: bpy_prop_collection[MeshSkinVertexLayer]
|
|
176339
176343
|
"""
|
|
176340
176344
|
|
|
176341
|
-
texco_mesh: typing_extensions.Self
|
|
176345
|
+
texco_mesh: typing_extensions.Self | None
|
|
176342
176346
|
""" Derive texture coordinates from another mesh
|
|
176343
176347
|
|
|
176344
|
-
:type: typing_extensions.Self
|
|
176348
|
+
:type: typing_extensions.Self | None
|
|
176345
176349
|
"""
|
|
176346
176350
|
|
|
176347
176351
|
texspace_location: mathutils.Vector
|
|
@@ -176356,10 +176360,10 @@ class Mesh(ID, bpy_struct):
|
|
|
176356
176360
|
:type: mathutils.Vector
|
|
176357
176361
|
"""
|
|
176358
176362
|
|
|
176359
|
-
texture_mesh: typing_extensions.Self
|
|
176363
|
+
texture_mesh: typing_extensions.Self | None
|
|
176360
176364
|
""" Use another mesh for texture indices (vertex indices must be aligned)
|
|
176361
176365
|
|
|
176362
|
-
:type: typing_extensions.Self
|
|
176366
|
+
:type: typing_extensions.Self | None
|
|
176363
176367
|
"""
|
|
176364
176368
|
|
|
176365
176369
|
total_edge_sel: int
|
|
@@ -176614,12 +176618,14 @@ class Mesh(ID, bpy_struct):
|
|
|
176614
176618
|
...
|
|
176615
176619
|
|
|
176616
176620
|
def unit_test_compare(
|
|
176617
|
-
self,
|
|
176621
|
+
self,
|
|
176622
|
+
mesh: typing_extensions.Self | None = None,
|
|
176623
|
+
threshold: float | None = 7.1526e-06,
|
|
176618
176624
|
) -> str:
|
|
176619
176625
|
"""unit_test_compare
|
|
176620
176626
|
|
|
176621
176627
|
:param mesh: Mesh to compare to
|
|
176622
|
-
:type mesh: typing_extensions.Self
|
|
176628
|
+
:type mesh: typing_extensions.Self | None
|
|
176623
176629
|
:param threshold: Threshold, Comparison tolerance threshold
|
|
176624
176630
|
:type threshold: float | None
|
|
176625
176631
|
:return: Return value, String description of result of comparison
|
|
@@ -182223,10 +182229,10 @@ class Node(bpy_struct):
|
|
|
182223
182229
|
:type: NodeOutputs
|
|
182224
182230
|
"""
|
|
182225
182231
|
|
|
182226
|
-
parent: typing_extensions.Self
|
|
182232
|
+
parent: typing_extensions.Self | None
|
|
182227
182233
|
""" Parent this node is attached to
|
|
182228
182234
|
|
|
182229
|
-
:type: typing_extensions.Self
|
|
182235
|
+
:type: typing_extensions.Self | None
|
|
182230
182236
|
"""
|
|
182231
182237
|
|
|
182232
182238
|
select: bool
|
|
@@ -185785,6 +185791,12 @@ class NodeTree(ID, bpy_struct):
|
|
|
185785
185791
|
:type: typing.Literal['NONE','ATTRIBUTE','COLOR','CONVERTER','DISTORT','FILTER','GEOMETRY','INPUT','MATTE','OUTPUT','SCRIPT','SHADER','TEXTURE','VECTOR']
|
|
185786
185792
|
"""
|
|
185787
185793
|
|
|
185794
|
+
default_group_node_width: int
|
|
185795
|
+
""" The width for newly created group nodes
|
|
185796
|
+
|
|
185797
|
+
:type: int
|
|
185798
|
+
"""
|
|
185799
|
+
|
|
185788
185800
|
description: str
|
|
185789
185801
|
""" Description of the node tree
|
|
185790
185802
|
|
|
@@ -189850,10 +189862,10 @@ Warning: Only takes into account object parenting, so e.g. in case of bone paren
|
|
|
189850
189862
|
:type: MotionPath
|
|
189851
189863
|
"""
|
|
189852
189864
|
|
|
189853
|
-
parent: typing_extensions.Self
|
|
189865
|
+
parent: typing_extensions.Self | None
|
|
189854
189866
|
""" Parent object
|
|
189855
189867
|
|
|
189856
|
-
:type: typing_extensions.Self
|
|
189868
|
+
:type: typing_extensions.Self | None
|
|
189857
189869
|
"""
|
|
189858
189870
|
|
|
189859
189871
|
parent_bone: str
|
|
@@ -195816,10 +195828,10 @@ class PoseBone(bpy_struct):
|
|
|
195816
195828
|
:type: mathutils.Vector
|
|
195817
195829
|
"""
|
|
195818
195830
|
|
|
195819
|
-
custom_shape_transform: typing_extensions.Self
|
|
195831
|
+
custom_shape_transform: typing_extensions.Self | None
|
|
195820
195832
|
""" Bone that defines the display transform of this custom shape
|
|
195821
195833
|
|
|
195822
|
-
:type: typing_extensions.Self
|
|
195834
|
+
:type: typing_extensions.Self | None
|
|
195823
195835
|
"""
|
|
195824
195836
|
|
|
195825
195837
|
custom_shape_translation: mathutils.Vector
|
|
@@ -200487,11 +200499,11 @@ class RenderEngine(bpy_struct):
|
|
|
200487
200499
|
"""Perform finishing operations after all view layers in a frame were rendered"""
|
|
200488
200500
|
...
|
|
200489
200501
|
|
|
200490
|
-
def draw(self, context: Context
|
|
200502
|
+
def draw(self, context: Context, depsgraph: Depsgraph | None):
|
|
200491
200503
|
"""Draw render image
|
|
200492
200504
|
|
|
200493
200505
|
:param context:
|
|
200494
|
-
:type context: Context
|
|
200506
|
+
:type context: Context
|
|
200495
200507
|
:param depsgraph:
|
|
200496
200508
|
:type depsgraph: Depsgraph | None
|
|
200497
200509
|
"""
|
|
@@ -200537,21 +200549,21 @@ class RenderEngine(bpy_struct):
|
|
|
200537
200549
|
"""
|
|
200538
200550
|
...
|
|
200539
200551
|
|
|
200540
|
-
def view_update(self, context: Context
|
|
200552
|
+
def view_update(self, context: Context, depsgraph: Depsgraph | None):
|
|
200541
200553
|
"""Update on data changes for viewport render
|
|
200542
200554
|
|
|
200543
200555
|
:param context:
|
|
200544
|
-
:type context: Context
|
|
200556
|
+
:type context: Context
|
|
200545
200557
|
:param depsgraph:
|
|
200546
200558
|
:type depsgraph: Depsgraph | None
|
|
200547
200559
|
"""
|
|
200548
200560
|
...
|
|
200549
200561
|
|
|
200550
|
-
def view_draw(self, context: Context
|
|
200562
|
+
def view_draw(self, context: Context, depsgraph: Depsgraph | None):
|
|
200551
200563
|
"""Draw viewport render
|
|
200552
200564
|
|
|
200553
200565
|
:param context:
|
|
200554
|
-
:type context: Context
|
|
200566
|
+
:type context: Context
|
|
200555
200567
|
:param depsgraph:
|
|
200556
200568
|
:type depsgraph: Depsgraph | None
|
|
200557
200569
|
"""
|
|
@@ -203115,10 +203127,10 @@ class Scene(ID, bpy_struct):
|
|
|
203115
203127
|
:type: float
|
|
203116
203128
|
"""
|
|
203117
203129
|
|
|
203118
|
-
background_set: typing_extensions.Self
|
|
203130
|
+
background_set: typing_extensions.Self | None
|
|
203119
203131
|
""" Background set scene
|
|
203120
203132
|
|
|
203121
|
-
:type: typing_extensions.Self
|
|
203133
|
+
:type: typing_extensions.Self | None
|
|
203122
203134
|
"""
|
|
203123
203135
|
|
|
203124
203136
|
camera: Object | None
|
|
@@ -245940,7 +245952,7 @@ class UIList(bpy_struct):
|
|
|
245940
245952
|
|
|
245941
245953
|
def draw_item(
|
|
245942
245954
|
self,
|
|
245943
|
-
context: Context
|
|
245955
|
+
context: Context,
|
|
245944
245956
|
layout: UILayout,
|
|
245945
245957
|
data: typing.Any | None,
|
|
245946
245958
|
item: typing.Any | None,
|
|
@@ -245953,7 +245965,7 @@ class UIList(bpy_struct):
|
|
|
245953
245965
|
"""Draw an item in the list (NOTE: when you define your own draw_item function, you may want to check given 'item' is of the right type...)
|
|
245954
245966
|
|
|
245955
245967
|
:param context:
|
|
245956
|
-
:type context: Context
|
|
245968
|
+
:type context: Context
|
|
245957
245969
|
:param layout: Layout to draw the item
|
|
245958
245970
|
:type layout: UILayout
|
|
245959
245971
|
:param data: Data from which to take Collection property
|
|
@@ -245973,23 +245985,21 @@ class UIList(bpy_struct):
|
|
|
245973
245985
|
"""
|
|
245974
245986
|
...
|
|
245975
245987
|
|
|
245976
|
-
def draw_filter(self, context: Context
|
|
245988
|
+
def draw_filter(self, context: Context, layout: UILayout):
|
|
245977
245989
|
"""Draw filtering options
|
|
245978
245990
|
|
|
245979
245991
|
:param context:
|
|
245980
|
-
:type context: Context
|
|
245992
|
+
:type context: Context
|
|
245981
245993
|
:param layout: Layout to draw the item
|
|
245982
245994
|
:type layout: UILayout
|
|
245983
245995
|
"""
|
|
245984
245996
|
...
|
|
245985
245997
|
|
|
245986
|
-
def filter_items(
|
|
245987
|
-
self, context: Context | None, data: typing.Any | None, property: str
|
|
245988
|
-
):
|
|
245998
|
+
def filter_items(self, context: Context, data: typing.Any | None, property: str):
|
|
245989
245999
|
"""Filter and/or re-order items of the collection (output filter results in filter_flags, and reorder results in filter_neworder arrays)
|
|
245990
246000
|
|
|
245991
246001
|
:param context:
|
|
245992
|
-
:type context: Context
|
|
246002
|
+
:type context: Context
|
|
245993
246003
|
:param data: Data from which to take Collection property
|
|
245994
246004
|
:type data: typing.Any | None
|
|
245995
246005
|
:param property: Identifier of property in data, for the collection
|
|
@@ -258896,6 +258906,8 @@ VIEW3D_PT_grease_pencil_multi_frame: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_
|
|
|
258896
258906
|
|
|
258897
258907
|
VIEW3D_PT_greasepencil_draw_context_menu: bl_ui.space_view3d.VIEW3D_PT_greasepencil_draw_context_menu
|
|
258898
258908
|
|
|
258909
|
+
VIEW3D_PT_greasepencil_sculpt_context_menu: bl_ui.space_view3d.VIEW3D_PT_greasepencil_sculpt_context_menu
|
|
258910
|
+
|
|
258899
258911
|
VIEW3D_PT_mask: bl_ui.space_view3d_toolbar.VIEW3D_PT_mask
|
|
258900
258912
|
|
|
258901
258913
|
VIEW3D_PT_object_type_visibility: bl_ui.space_view3d.VIEW3D_PT_object_type_visibility
|