fake-bpy-module 20240812__py3-none-any.whl → 20240814__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 +52 -36
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/RECORD +83 -83
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240814.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
|
|
@@ -108218,7 +108222,11 @@ class NodeLinks(bpy_prop_collection[NodeLink], bpy_struct):
|
|
|
108218
108222
|
"""Collection of Node Links"""
|
|
108219
108223
|
|
|
108220
108224
|
def new(
|
|
108221
|
-
self,
|
|
108225
|
+
self,
|
|
108226
|
+
input: NodeSocket,
|
|
108227
|
+
output: NodeSocket,
|
|
108228
|
+
verify_limits: bool | None = True,
|
|
108229
|
+
handle_dynamic_sockets: bool | None = False,
|
|
108222
108230
|
) -> NodeLink:
|
|
108223
108231
|
"""Add a node link to this node tree
|
|
108224
108232
|
|
|
@@ -108228,6 +108236,8 @@ class NodeLinks(bpy_prop_collection[NodeLink], bpy_struct):
|
|
|
108228
108236
|
:type output: NodeSocket
|
|
108229
108237
|
:param verify_limits: Verify Limits, Remove existing links if connection limit is exceeded
|
|
108230
108238
|
:type verify_limits: bool | None
|
|
108239
|
+
:param handle_dynamic_sockets: Handle Dynamic Sockets, Handle node specific features like virtual sockets
|
|
108240
|
+
:type handle_dynamic_sockets: bool | None
|
|
108231
108241
|
:return: New node link
|
|
108232
108242
|
:rtype: NodeLink
|
|
108233
108243
|
"""
|
|
@@ -112012,10 +112022,10 @@ class AddonPreferences(bpy_struct):
|
|
|
112012
112022
|
:type: str
|
|
112013
112023
|
"""
|
|
112014
112024
|
|
|
112015
|
-
layout: UILayout
|
|
112025
|
+
layout: UILayout
|
|
112016
112026
|
"""
|
|
112017
112027
|
|
|
112018
|
-
:type: UILayout
|
|
112028
|
+
:type: UILayout
|
|
112019
112029
|
"""
|
|
112020
112030
|
|
|
112021
112031
|
@classmethod
|
|
@@ -113447,11 +113457,11 @@ class AssetShelf(bpy_struct):
|
|
|
113447
113457
|
"""
|
|
113448
113458
|
|
|
113449
113459
|
@classmethod
|
|
113450
|
-
def poll(cls, context: Context
|
|
113460
|
+
def poll(cls, context: Context) -> bool:
|
|
113451
113461
|
"""If this method returns a non-null output, the asset shelf will be visible
|
|
113452
113462
|
|
|
113453
113463
|
:param context:
|
|
113454
|
-
:type context: Context
|
|
113464
|
+
:type context: Context
|
|
113455
113465
|
:return:
|
|
113456
113466
|
:rtype: bool
|
|
113457
113467
|
"""
|
|
@@ -113480,14 +113490,14 @@ class AssetShelf(bpy_struct):
|
|
|
113480
113490
|
@classmethod
|
|
113481
113491
|
def draw_context_menu(
|
|
113482
113492
|
cls,
|
|
113483
|
-
context: Context
|
|
113493
|
+
context: Context,
|
|
113484
113494
|
asset: AssetRepresentation | None,
|
|
113485
113495
|
layout: UILayout | None,
|
|
113486
113496
|
):
|
|
113487
113497
|
"""Draw UI elements into the context menu UI layout displayed on right click
|
|
113488
113498
|
|
|
113489
113499
|
:param context:
|
|
113490
|
-
:type context: Context
|
|
113500
|
+
:type context: Context
|
|
113491
113501
|
:param asset:
|
|
113492
113502
|
:type asset: AssetRepresentation | None
|
|
113493
113503
|
:param layout:
|
|
@@ -138848,11 +138858,11 @@ For Example: ".blend;.ble"
|
|
|
138848
138858
|
"""
|
|
138849
138859
|
|
|
138850
138860
|
@classmethod
|
|
138851
|
-
def poll_drop(cls, context: Context
|
|
138861
|
+
def poll_drop(cls, context: Context) -> bool:
|
|
138852
138862
|
"""If this method returns True, can be used to handle the drop of a drag-and-drop action
|
|
138853
138863
|
|
|
138854
138864
|
:param context:
|
|
138855
|
-
:type context: Context
|
|
138865
|
+
:type context: Context
|
|
138856
138866
|
:return:
|
|
138857
138867
|
:rtype: bool
|
|
138858
138868
|
"""
|
|
@@ -150334,7 +150344,7 @@ class GeometryNodeInputMaterialIndex(GeometryNode, NodeInternal, Node, bpy_struc
|
|
|
150334
150344
|
...
|
|
150335
150345
|
|
|
150336
150346
|
class GeometryNodeInputMeshEdgeAngle(GeometryNode, NodeInternal, Node, bpy_struct):
|
|
150337
|
-
"""
|
|
150347
|
+
"""The angle between the normals of connected manifold faces"""
|
|
150338
150348
|
|
|
150339
150349
|
@classmethod
|
|
150340
150350
|
def is_registered_node_type(cls) -> bool:
|
|
@@ -164021,11 +164031,11 @@ class Header(bpy_struct):
|
|
|
164021
164031
|
:type: UILayout
|
|
164022
164032
|
"""
|
|
164023
164033
|
|
|
164024
|
-
def draw(self, context: Context
|
|
164034
|
+
def draw(self, context: Context):
|
|
164025
164035
|
"""Draw UI elements into the header UI layout
|
|
164026
164036
|
|
|
164027
164037
|
:param context:
|
|
164028
|
-
:type context: Context
|
|
164038
|
+
:type context: Context
|
|
164029
164039
|
"""
|
|
164030
164040
|
...
|
|
164031
164041
|
|
|
@@ -168070,31 +168080,31 @@ class KeyingSetInfo(bpy_struct):
|
|
|
168070
168080
|
:type: set[typing.Literal['INSERTKEY_NEEDED', 'INSERTKEY_VISUAL', 'INSERTKEY_XYZ_TO_RGB']]
|
|
168071
168081
|
"""
|
|
168072
168082
|
|
|
168073
|
-
def poll(self, context: Context
|
|
168083
|
+
def poll(self, context: Context) -> bool:
|
|
168074
168084
|
"""Test if Keying Set can be used or not
|
|
168075
168085
|
|
|
168076
168086
|
:param context:
|
|
168077
|
-
:type context: Context
|
|
168087
|
+
:type context: Context
|
|
168078
168088
|
:return:
|
|
168079
168089
|
:rtype: bool
|
|
168080
168090
|
"""
|
|
168081
168091
|
...
|
|
168082
168092
|
|
|
168083
|
-
def iterator(self, context: Context
|
|
168093
|
+
def iterator(self, context: Context, ks: KeyingSet | None):
|
|
168084
168094
|
"""Call generate() on the structs which have properties to be keyframed
|
|
168085
168095
|
|
|
168086
168096
|
:param context:
|
|
168087
|
-
:type context: Context
|
|
168097
|
+
:type context: Context
|
|
168088
168098
|
:param ks:
|
|
168089
168099
|
:type ks: KeyingSet | None
|
|
168090
168100
|
"""
|
|
168091
168101
|
...
|
|
168092
168102
|
|
|
168093
|
-
def generate(self, context: Context
|
|
168103
|
+
def generate(self, context: Context, ks: KeyingSet | None, data: typing.Any):
|
|
168094
168104
|
"""Add Paths to the Keying Set to keyframe the properties of the given data
|
|
168095
168105
|
|
|
168096
168106
|
:param context:
|
|
168097
|
-
:type context: Context
|
|
168107
|
+
:type context: Context
|
|
168098
168108
|
:param ks:
|
|
168099
168109
|
:type ks: KeyingSet | None
|
|
168100
168110
|
:param data:
|
|
@@ -176083,21 +176093,21 @@ class Menu(bpy_struct):
|
|
|
176083
176093
|
"""
|
|
176084
176094
|
|
|
176085
176095
|
@classmethod
|
|
176086
|
-
def poll(cls, context: Context
|
|
176096
|
+
def poll(cls, context: Context) -> bool:
|
|
176087
176097
|
"""If this method returns a non-null output, then the menu can be drawn
|
|
176088
176098
|
|
|
176089
176099
|
:param context:
|
|
176090
|
-
:type context: Context
|
|
176100
|
+
:type context: Context
|
|
176091
176101
|
:return:
|
|
176092
176102
|
:rtype: bool
|
|
176093
176103
|
"""
|
|
176094
176104
|
...
|
|
176095
176105
|
|
|
176096
|
-
def draw(self, context: Context
|
|
176106
|
+
def draw(self, context: Context):
|
|
176097
176107
|
"""Draw UI elements into the menu UI layout
|
|
176098
176108
|
|
|
176099
176109
|
:param context:
|
|
176100
|
-
:type context: Context
|
|
176110
|
+
:type context: Context
|
|
176101
176111
|
"""
|
|
176102
176112
|
...
|
|
176103
176113
|
|
|
@@ -185787,6 +185797,12 @@ class NodeTree(ID, bpy_struct):
|
|
|
185787
185797
|
:type: typing.Literal['NONE','ATTRIBUTE','COLOR','CONVERTER','DISTORT','FILTER','GEOMETRY','INPUT','MATTE','OUTPUT','SCRIPT','SHADER','TEXTURE','VECTOR']
|
|
185788
185798
|
"""
|
|
185789
185799
|
|
|
185800
|
+
default_group_node_width: int
|
|
185801
|
+
""" The width for newly created group nodes
|
|
185802
|
+
|
|
185803
|
+
:type: int
|
|
185804
|
+
"""
|
|
185805
|
+
|
|
185790
185806
|
description: str
|
|
185791
185807
|
""" Description of the node tree
|
|
185792
185808
|
|
|
@@ -200489,11 +200505,11 @@ class RenderEngine(bpy_struct):
|
|
|
200489
200505
|
"""Perform finishing operations after all view layers in a frame were rendered"""
|
|
200490
200506
|
...
|
|
200491
200507
|
|
|
200492
|
-
def draw(self, context: Context
|
|
200508
|
+
def draw(self, context: Context, depsgraph: Depsgraph | None):
|
|
200493
200509
|
"""Draw render image
|
|
200494
200510
|
|
|
200495
200511
|
:param context:
|
|
200496
|
-
:type context: Context
|
|
200512
|
+
:type context: Context
|
|
200497
200513
|
:param depsgraph:
|
|
200498
200514
|
:type depsgraph: Depsgraph | None
|
|
200499
200515
|
"""
|
|
@@ -200539,21 +200555,21 @@ class RenderEngine(bpy_struct):
|
|
|
200539
200555
|
"""
|
|
200540
200556
|
...
|
|
200541
200557
|
|
|
200542
|
-
def view_update(self, context: Context
|
|
200558
|
+
def view_update(self, context: Context, depsgraph: Depsgraph | None):
|
|
200543
200559
|
"""Update on data changes for viewport render
|
|
200544
200560
|
|
|
200545
200561
|
:param context:
|
|
200546
|
-
:type context: Context
|
|
200562
|
+
:type context: Context
|
|
200547
200563
|
:param depsgraph:
|
|
200548
200564
|
:type depsgraph: Depsgraph | None
|
|
200549
200565
|
"""
|
|
200550
200566
|
...
|
|
200551
200567
|
|
|
200552
|
-
def view_draw(self, context: Context
|
|
200568
|
+
def view_draw(self, context: Context, depsgraph: Depsgraph | None):
|
|
200553
200569
|
"""Draw viewport render
|
|
200554
200570
|
|
|
200555
200571
|
:param context:
|
|
200556
|
-
:type context: Context
|
|
200572
|
+
:type context: Context
|
|
200557
200573
|
:param depsgraph:
|
|
200558
200574
|
:type depsgraph: Depsgraph | None
|
|
200559
200575
|
"""
|
|
@@ -245942,7 +245958,7 @@ class UIList(bpy_struct):
|
|
|
245942
245958
|
|
|
245943
245959
|
def draw_item(
|
|
245944
245960
|
self,
|
|
245945
|
-
context: Context
|
|
245961
|
+
context: Context,
|
|
245946
245962
|
layout: UILayout,
|
|
245947
245963
|
data: typing.Any | None,
|
|
245948
245964
|
item: typing.Any | None,
|
|
@@ -245955,7 +245971,7 @@ class UIList(bpy_struct):
|
|
|
245955
245971
|
"""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...)
|
|
245956
245972
|
|
|
245957
245973
|
:param context:
|
|
245958
|
-
:type context: Context
|
|
245974
|
+
:type context: Context
|
|
245959
245975
|
:param layout: Layout to draw the item
|
|
245960
245976
|
:type layout: UILayout
|
|
245961
245977
|
:param data: Data from which to take Collection property
|
|
@@ -245975,23 +245991,21 @@ class UIList(bpy_struct):
|
|
|
245975
245991
|
"""
|
|
245976
245992
|
...
|
|
245977
245993
|
|
|
245978
|
-
def draw_filter(self, context: Context
|
|
245994
|
+
def draw_filter(self, context: Context, layout: UILayout):
|
|
245979
245995
|
"""Draw filtering options
|
|
245980
245996
|
|
|
245981
245997
|
:param context:
|
|
245982
|
-
:type context: Context
|
|
245998
|
+
:type context: Context
|
|
245983
245999
|
:param layout: Layout to draw the item
|
|
245984
246000
|
:type layout: UILayout
|
|
245985
246001
|
"""
|
|
245986
246002
|
...
|
|
245987
246003
|
|
|
245988
|
-
def filter_items(
|
|
245989
|
-
self, context: Context | None, data: typing.Any | None, property: str
|
|
245990
|
-
):
|
|
246004
|
+
def filter_items(self, context: Context, data: typing.Any | None, property: str):
|
|
245991
246005
|
"""Filter and/or re-order items of the collection (output filter results in filter_flags, and reorder results in filter_neworder arrays)
|
|
245992
246006
|
|
|
245993
246007
|
:param context:
|
|
245994
|
-
:type context: Context
|
|
246008
|
+
:type context: Context
|
|
245995
246009
|
:param data: Data from which to take Collection property
|
|
245996
246010
|
:type data: typing.Any | None
|
|
245997
246011
|
:param property: Identifier of property in data, for the collection
|
|
@@ -258898,6 +258912,8 @@ VIEW3D_PT_grease_pencil_multi_frame: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_
|
|
|
258898
258912
|
|
|
258899
258913
|
VIEW3D_PT_greasepencil_draw_context_menu: bl_ui.space_view3d.VIEW3D_PT_greasepencil_draw_context_menu
|
|
258900
258914
|
|
|
258915
|
+
VIEW3D_PT_greasepencil_sculpt_context_menu: bl_ui.space_view3d.VIEW3D_PT_greasepencil_sculpt_context_menu
|
|
258916
|
+
|
|
258901
258917
|
VIEW3D_PT_mask: bl_ui.space_view3d_toolbar.VIEW3D_PT_mask
|
|
258902
258918
|
|
|
258903
258919
|
VIEW3D_PT_object_type_visibility: bl_ui.space_view3d.VIEW3D_PT_object_type_visibility
|