fake-bpy-module 20240812__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 +44 -34
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/RECORD +83 -83
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240812.dist-info → fake_bpy_module-20240813.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240812.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:
|
|
@@ -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
|
|
|
@@ -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
|
|
|
@@ -185787,6 +185791,12 @@ class NodeTree(ID, bpy_struct):
|
|
|
185787
185791
|
:type: typing.Literal['NONE','ATTRIBUTE','COLOR','CONVERTER','DISTORT','FILTER','GEOMETRY','INPUT','MATTE','OUTPUT','SCRIPT','SHADER','TEXTURE','VECTOR']
|
|
185788
185792
|
"""
|
|
185789
185793
|
|
|
185794
|
+
default_group_node_width: int
|
|
185795
|
+
""" The width for newly created group nodes
|
|
185796
|
+
|
|
185797
|
+
:type: int
|
|
185798
|
+
"""
|
|
185799
|
+
|
|
185790
185800
|
description: str
|
|
185791
185801
|
""" Description of the node tree
|
|
185792
185802
|
|
|
@@ -200489,11 +200499,11 @@ class RenderEngine(bpy_struct):
|
|
|
200489
200499
|
"""Perform finishing operations after all view layers in a frame were rendered"""
|
|
200490
200500
|
...
|
|
200491
200501
|
|
|
200492
|
-
def draw(self, context: Context
|
|
200502
|
+
def draw(self, context: Context, depsgraph: Depsgraph | None):
|
|
200493
200503
|
"""Draw render image
|
|
200494
200504
|
|
|
200495
200505
|
:param context:
|
|
200496
|
-
:type context: Context
|
|
200506
|
+
:type context: Context
|
|
200497
200507
|
:param depsgraph:
|
|
200498
200508
|
:type depsgraph: Depsgraph | None
|
|
200499
200509
|
"""
|
|
@@ -200539,21 +200549,21 @@ class RenderEngine(bpy_struct):
|
|
|
200539
200549
|
"""
|
|
200540
200550
|
...
|
|
200541
200551
|
|
|
200542
|
-
def view_update(self, context: Context
|
|
200552
|
+
def view_update(self, context: Context, depsgraph: Depsgraph | None):
|
|
200543
200553
|
"""Update on data changes for viewport render
|
|
200544
200554
|
|
|
200545
200555
|
:param context:
|
|
200546
|
-
:type context: Context
|
|
200556
|
+
:type context: Context
|
|
200547
200557
|
:param depsgraph:
|
|
200548
200558
|
:type depsgraph: Depsgraph | None
|
|
200549
200559
|
"""
|
|
200550
200560
|
...
|
|
200551
200561
|
|
|
200552
|
-
def view_draw(self, context: Context
|
|
200562
|
+
def view_draw(self, context: Context, depsgraph: Depsgraph | None):
|
|
200553
200563
|
"""Draw viewport render
|
|
200554
200564
|
|
|
200555
200565
|
:param context:
|
|
200556
|
-
:type context: Context
|
|
200566
|
+
:type context: Context
|
|
200557
200567
|
:param depsgraph:
|
|
200558
200568
|
:type depsgraph: Depsgraph | None
|
|
200559
200569
|
"""
|
|
@@ -245942,7 +245952,7 @@ class UIList(bpy_struct):
|
|
|
245942
245952
|
|
|
245943
245953
|
def draw_item(
|
|
245944
245954
|
self,
|
|
245945
|
-
context: Context
|
|
245955
|
+
context: Context,
|
|
245946
245956
|
layout: UILayout,
|
|
245947
245957
|
data: typing.Any | None,
|
|
245948
245958
|
item: typing.Any | None,
|
|
@@ -245955,7 +245965,7 @@ class UIList(bpy_struct):
|
|
|
245955
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...)
|
|
245956
245966
|
|
|
245957
245967
|
:param context:
|
|
245958
|
-
:type context: Context
|
|
245968
|
+
:type context: Context
|
|
245959
245969
|
:param layout: Layout to draw the item
|
|
245960
245970
|
:type layout: UILayout
|
|
245961
245971
|
:param data: Data from which to take Collection property
|
|
@@ -245975,23 +245985,21 @@ class UIList(bpy_struct):
|
|
|
245975
245985
|
"""
|
|
245976
245986
|
...
|
|
245977
245987
|
|
|
245978
|
-
def draw_filter(self, context: Context
|
|
245988
|
+
def draw_filter(self, context: Context, layout: UILayout):
|
|
245979
245989
|
"""Draw filtering options
|
|
245980
245990
|
|
|
245981
245991
|
:param context:
|
|
245982
|
-
:type context: Context
|
|
245992
|
+
:type context: Context
|
|
245983
245993
|
:param layout: Layout to draw the item
|
|
245984
245994
|
:type layout: UILayout
|
|
245985
245995
|
"""
|
|
245986
245996
|
...
|
|
245987
245997
|
|
|
245988
|
-
def filter_items(
|
|
245989
|
-
self, context: Context | None, data: typing.Any | None, property: str
|
|
245990
|
-
):
|
|
245998
|
+
def filter_items(self, context: Context, data: typing.Any | None, property: str):
|
|
245991
245999
|
"""Filter and/or re-order items of the collection (output filter results in filter_flags, and reorder results in filter_neworder arrays)
|
|
245992
246000
|
|
|
245993
246001
|
:param context:
|
|
245994
|
-
:type context: Context
|
|
246002
|
+
:type context: Context
|
|
245995
246003
|
:param data: Data from which to take Collection property
|
|
245996
246004
|
:type data: typing.Any | None
|
|
245997
246005
|
:param property: Identifier of property in data, for the collection
|
|
@@ -258898,6 +258906,8 @@ VIEW3D_PT_grease_pencil_multi_frame: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_
|
|
|
258898
258906
|
|
|
258899
258907
|
VIEW3D_PT_greasepencil_draw_context_menu: bl_ui.space_view3d.VIEW3D_PT_greasepencil_draw_context_menu
|
|
258900
258908
|
|
|
258909
|
+
VIEW3D_PT_greasepencil_sculpt_context_menu: bl_ui.space_view3d.VIEW3D_PT_greasepencil_sculpt_context_menu
|
|
258910
|
+
|
|
258901
258911
|
VIEW3D_PT_mask: bl_ui.space_view3d_toolbar.VIEW3D_PT_mask
|
|
258902
258912
|
|
|
258903
258913
|
VIEW3D_PT_object_type_visibility: bl_ui.space_view3d.VIEW3D_PT_object_type_visibility
|
|
@@ -167,7 +167,7 @@ bl_ui/space_toolsystem_common/__init__.pyi,sha256=rQ5gwLEW3BUASONIAYcsV-8iY_-nzY
|
|
|
167
167
|
bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=x9Lwpmg38TNsUvFURZRbioBYmqyAxLuPPo15GuXir6o,11661
|
|
168
168
|
bl_ui/space_topbar/__init__.pyi,sha256=JeTpm65HjAyvi6cGk4DlhlrErnmaMi4Ko5u0RyeV0lU,16553
|
|
169
169
|
bl_ui/space_userpref/__init__.pyi,sha256=VBDZ-UTou5eq3zvpDaqa3BGm-NlUgqZh-SaaXiQurqU,82505
|
|
170
|
-
bl_ui/space_view3d/__init__.pyi,sha256=
|
|
170
|
+
bl_ui/space_view3d/__init__.pyi,sha256=lpcmslw6bUU95DiaCSHnYgRuWhyDqTjx7iqYPESv68E,175495
|
|
171
171
|
bl_ui/space_view3d_toolbar/__init__.pyi,sha256=mEIN12EkfZcTZD2APV05s6BABxi6gOzqXUzahxzJNm8,80870
|
|
172
172
|
bl_ui/temp_anim_layers/__init__.pyi,sha256=cPcRrl12m0HeCrRJd3YncBwj3IkHoJX01OfEi3GSS-k,937
|
|
173
173
|
bl_ui/utils/__init__.pyi,sha256=OrumGsAE1S8zBxb80PtYlulQjeAcKneShcJLU-giz5o,612
|
|
@@ -194,85 +194,85 @@ bpy/app/timers/__init__.pyi,sha256=lYUyorTjJRVqOJphUS0Gxwnagg1wBCXoYQSsj-rPvq8,2
|
|
|
194
194
|
bpy/app/translations/__init__.pyi,sha256=W3L2ZN2l8DDUs84vlmsH1FxbBZTuesKGN02nB0KLAUM,6974
|
|
195
195
|
bpy/msgbus/__init__.pyi,sha256=klT8MEBSFA8gRXuaS8sJ2DMNtcTfb0O9lhpYh6hr6Ac,2717
|
|
196
196
|
bpy/ops/__init__.pyi,sha256=nZ3uTbg78sA7K6jxxPrUvrRdkrvWb17azbol-V1jEAU,4671
|
|
197
|
-
bpy/ops/action/__init__.pyi,sha256=
|
|
198
|
-
bpy/ops/anim/__init__.pyi,sha256
|
|
199
|
-
bpy/ops/armature/__init__.pyi,sha256=
|
|
200
|
-
bpy/ops/asset/__init__.pyi,sha256=
|
|
201
|
-
bpy/ops/boid/__init__.pyi,sha256=
|
|
202
|
-
bpy/ops/brush/__init__.pyi,sha256=
|
|
203
|
-
bpy/ops/buttons/__init__.pyi,sha256=
|
|
204
|
-
bpy/ops/cachefile/__init__.pyi,sha256=
|
|
205
|
-
bpy/ops/camera/__init__.pyi,sha256=
|
|
206
|
-
bpy/ops/clip/__init__.pyi,sha256=
|
|
207
|
-
bpy/ops/cloth/__init__.pyi,sha256=
|
|
208
|
-
bpy/ops/collection/__init__.pyi,sha256=
|
|
209
|
-
bpy/ops/console/__init__.pyi,sha256=
|
|
210
|
-
bpy/ops/constraint/__init__.pyi,sha256=
|
|
211
|
-
bpy/ops/curve/__init__.pyi,sha256=
|
|
212
|
-
bpy/ops/curves/__init__.pyi,sha256=
|
|
213
|
-
bpy/ops/cycles/__init__.pyi,sha256=
|
|
214
|
-
bpy/ops/dpaint/__init__.pyi,sha256=
|
|
215
|
-
bpy/ops/ed/__init__.pyi,sha256=
|
|
216
|
-
bpy/ops/export_anim/__init__.pyi,sha256=
|
|
217
|
-
bpy/ops/export_scene/__init__.pyi,sha256=
|
|
218
|
-
bpy/ops/extensions/__init__.pyi,sha256=
|
|
219
|
-
bpy/ops/file/__init__.pyi,sha256=
|
|
220
|
-
bpy/ops/fluid/__init__.pyi,sha256=
|
|
221
|
-
bpy/ops/font/__init__.pyi,sha256=
|
|
222
|
-
bpy/ops/geometry/__init__.pyi,sha256=
|
|
223
|
-
bpy/ops/gizmogroup/__init__.pyi,sha256=
|
|
224
|
-
bpy/ops/gpencil/__init__.pyi,sha256=
|
|
225
|
-
bpy/ops/graph/__init__.pyi,sha256
|
|
226
|
-
bpy/ops/grease_pencil/__init__.pyi,sha256=
|
|
227
|
-
bpy/ops/image/__init__.pyi,sha256=
|
|
228
|
-
bpy/ops/import_anim/__init__.pyi,sha256=
|
|
229
|
-
bpy/ops/import_curve/__init__.pyi,sha256=
|
|
230
|
-
bpy/ops/import_scene/__init__.pyi,sha256=
|
|
231
|
-
bpy/ops/info/__init__.pyi,sha256=
|
|
232
|
-
bpy/ops/lattice/__init__.pyi,sha256=
|
|
233
|
-
bpy/ops/marker/__init__.pyi,sha256=
|
|
234
|
-
bpy/ops/mask/__init__.pyi,sha256=
|
|
235
|
-
bpy/ops/material/__init__.pyi,sha256=
|
|
236
|
-
bpy/ops/mball/__init__.pyi,sha256=
|
|
237
|
-
bpy/ops/mesh/__init__.pyi,sha256=
|
|
238
|
-
bpy/ops/nla/__init__.pyi,sha256=
|
|
239
|
-
bpy/ops/node/__init__.pyi,sha256=
|
|
240
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
241
|
-
bpy/ops/outliner/__init__.pyi,sha256=
|
|
242
|
-
bpy/ops/paint/__init__.pyi,sha256=
|
|
243
|
-
bpy/ops/paintcurve/__init__.pyi,sha256=
|
|
244
|
-
bpy/ops/palette/__init__.pyi,sha256=
|
|
245
|
-
bpy/ops/particle/__init__.pyi,sha256=
|
|
246
|
-
bpy/ops/pose/__init__.pyi,sha256=
|
|
247
|
-
bpy/ops/poselib/__init__.pyi,sha256=
|
|
248
|
-
bpy/ops/preferences/__init__.pyi,sha256=
|
|
249
|
-
bpy/ops/ptcache/__init__.pyi,sha256=
|
|
250
|
-
bpy/ops/render/__init__.pyi,sha256=
|
|
251
|
-
bpy/ops/rigidbody/__init__.pyi,sha256=
|
|
252
|
-
bpy/ops/scene/__init__.pyi,sha256=
|
|
253
|
-
bpy/ops/screen/__init__.pyi,sha256=
|
|
254
|
-
bpy/ops/script/__init__.pyi,sha256=
|
|
255
|
-
bpy/ops/sculpt/__init__.pyi,sha256=
|
|
256
|
-
bpy/ops/sculpt_curves/__init__.pyi,sha256=
|
|
257
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
258
|
-
bpy/ops/sound/__init__.pyi,sha256=
|
|
259
|
-
bpy/ops/spreadsheet/__init__.pyi,sha256=
|
|
260
|
-
bpy/ops/surface/__init__.pyi,sha256=
|
|
261
|
-
bpy/ops/text/__init__.pyi,sha256=
|
|
262
|
-
bpy/ops/text_editor/__init__.pyi,sha256=
|
|
263
|
-
bpy/ops/texture/__init__.pyi,sha256=
|
|
264
|
-
bpy/ops/transform/__init__.pyi,sha256=
|
|
265
|
-
bpy/ops/ui/__init__.pyi,sha256=
|
|
266
|
-
bpy/ops/uilist/__init__.pyi,sha256=
|
|
267
|
-
bpy/ops/uv/__init__.pyi,sha256=
|
|
268
|
-
bpy/ops/view2d/__init__.pyi,sha256=
|
|
269
|
-
bpy/ops/view3d/__init__.pyi,sha256=
|
|
270
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
271
|
-
bpy/ops/workspace/__init__.pyi,sha256=
|
|
272
|
-
bpy/ops/world/__init__.pyi,sha256=
|
|
197
|
+
bpy/ops/action/__init__.pyi,sha256=dzqlbHa_pnoQzTBYT4au5jn_BsVnxpMpZxD6L5pyQfQ,24982
|
|
198
|
+
bpy/ops/anim/__init__.pyi,sha256=Lria4YnrP5dcsZ-n0X4v1wIX_Vnaqk6IF1Xt0u5RRr0,31471
|
|
199
|
+
bpy/ops/armature/__init__.pyi,sha256=IMxUV8wah7kDDXKXXgvhTQx1M646Mbxo2Ql-jKE3r44,28195
|
|
200
|
+
bpy/ops/asset/__init__.pyi,sha256=eLklWs7neJnC34omhMUTduX2fKL8dUrft72_QjFgAow,11292
|
|
201
|
+
bpy/ops/boid/__init__.pyi,sha256=ftfvtWhSLFXZxyW2uamL0KGUYPgURwFIJRr-BJVUTA4,3535
|
|
202
|
+
bpy/ops/brush/__init__.pyi,sha256=foL8sv_j3FcmTIgN0IjEYyFvBCcklKUwOk_56-nX96o,11815
|
|
203
|
+
bpy/ops/buttons/__init__.pyi,sha256=XfRXN525r_ktTeLGFzMA0Pj836y4qcIgRSZjBC_MHA4,9972
|
|
204
|
+
bpy/ops/cachefile/__init__.pyi,sha256=n7pHSa8eNQ5svPn__lbAiPa5bIQqmd4Jfqt5HknNLZU,9748
|
|
205
|
+
bpy/ops/camera/__init__.pyi,sha256=C30PCiMsPH1079AFe-RHK9ZIjCA0n1nqmmoPGsj-7N4,1782
|
|
206
|
+
bpy/ops/clip/__init__.pyi,sha256=Y7MfZJqGI5r2ZdH_dZig2ERhmlj8fjHgXb47HzAahYk,58482
|
|
207
|
+
bpy/ops/cloth/__init__.pyi,sha256=QorZ1GpZpRty9KI5BA5LR8ajnGOE87MlddsgKdHQbhQ,883
|
|
208
|
+
bpy/ops/collection/__init__.pyi,sha256=wlh_mW55npnIyPVKxZjvozRqbuuJg-4IQjgRUpXoztg,4521
|
|
209
|
+
bpy/ops/console/__init__.pyi,sha256=w7Y5-ruayZ-CGCnqS2oArSEWQc_2kSFgVoxVxoDTHkU,10606
|
|
210
|
+
bpy/ops/constraint/__init__.pyi,sha256=kdGcGjP0tMMywiugaLtAh39YdO01KWhTD3j5EuK0Kho,14638
|
|
211
|
+
bpy/ops/curve/__init__.pyi,sha256=GLe9mG1ZFm2lC6q75muiIOJ1jrCZpUA5pKEz7GOkL7U,37436
|
|
212
|
+
bpy/ops/curves/__init__.pyi,sha256=jw6_1cwEUdh-cCTgTT1yEw3idnB4H_xarm5UjrDz-2A,18838
|
|
213
|
+
bpy/ops/cycles/__init__.pyi,sha256=bNotfTTPBadvKkHeHLgsWfWg-m2SGSUlfeB3aEs7590,2293
|
|
214
|
+
bpy/ops/dpaint/__init__.pyi,sha256=_ceiN8PC0QyogN4-lT5df6Y0vUX2JZ-ggj158l_w0Fk,2370
|
|
215
|
+
bpy/ops/ed/__init__.pyi,sha256=_Lj3IW5OAMgIhvjy34MrEZWKRCh--fXb4ibvHrZveXg,8850
|
|
216
|
+
bpy/ops/export_anim/__init__.pyi,sha256=56OTimhpDnlGe2GttdKyyzUGkmCuQi9Dhp693ZE4ppw,2285
|
|
217
|
+
bpy/ops/export_scene/__init__.pyi,sha256=afogPf3DaA_AF2MTTNjk0hFtDFG4OLTSXH73kk2m7Ys,39160
|
|
218
|
+
bpy/ops/extensions/__init__.pyi,sha256=fj9PSAbJYXAcS0KnkOoQv_XOIehyERHsA6-QhzcR-go,17971
|
|
219
|
+
bpy/ops/file/__init__.pyi,sha256=bPi8DnyrNSlwklPo2xPpNddZhpJZ62KWMUwKywqxizg,25457
|
|
220
|
+
bpy/ops/fluid/__init__.pyi,sha256=uEaIOSOORHD4One97w8sn7zhBuWfOlnCrg4-NJ310wM,5539
|
|
221
|
+
bpy/ops/font/__init__.pyi,sha256=QBywkJgSsS6eUKAnZNalGcQJE20SL7VejS4XjrSunWQ,19113
|
|
222
|
+
bpy/ops/geometry/__init__.pyi,sha256=Z6e6ctOiWc9_8nWzMaxaSQkxy6YPz0sM81FUzuuPpD4,10018
|
|
223
|
+
bpy/ops/gizmogroup/__init__.pyi,sha256=RpAYYMScoOxyEA-BN0DTCct_xo4ReHHMTG3TusJQdRE,1678
|
|
224
|
+
bpy/ops/gpencil/__init__.pyi,sha256=E1l2ZC9Uilh8ckBwsdrbuDge-BYwwdvtwcQID3a2sIQ,107384
|
|
225
|
+
bpy/ops/graph/__init__.pyi,sha256=-Wfh00juJx-90J2qsTdLdSILhwoBduZ_QGa8dZmGH74,53254
|
|
226
|
+
bpy/ops/grease_pencil/__init__.pyi,sha256=EvWW-MQtXn6tYGlg4SV5sRmSlolTtHtp_AYVLxk3Reg,53012
|
|
227
|
+
bpy/ops/image/__init__.pyi,sha256=JhvuKOJN8y7nfqvYUiPr3oi_ewGgHOWAIABZIkGhk6c,59882
|
|
228
|
+
bpy/ops/import_anim/__init__.pyi,sha256=8HRyzhoN2h0G838B4-wlqqjS75fB_o9fw5Vh0Pbtb9w,3304
|
|
229
|
+
bpy/ops/import_curve/__init__.pyi,sha256=6RgVI-JGcPMXaLQtzilYTDy1meCPZLY5OYzgFB3UgC0,739
|
|
230
|
+
bpy/ops/import_scene/__init__.pyi,sha256=9yZA2_g7NurWnDk2-13vb7HBHIlKSmd89clDL97DMdg,10202
|
|
231
|
+
bpy/ops/info/__init__.pyi,sha256=QqpK9fQswiRM2B02fb21WDVzLHqs9WPzMZ4HuaeeSio,4282
|
|
232
|
+
bpy/ops/lattice/__init__.pyi,sha256=VkPpD2D6SUmp-kZFNho9hObIzTaSMIC7ep4hIh1kKZ4,4856
|
|
233
|
+
bpy/ops/marker/__init__.pyi,sha256=DP-GkdMmzkDu3SXkerE74VUjVKrdPzlQssObj3zyFS0,7114
|
|
234
|
+
bpy/ops/mask/__init__.pyi,sha256=_xbynXdTyYhEDlo9luU2r8HabV8ND3JxcbAJuuuouT4,23097
|
|
235
|
+
bpy/ops/material/__init__.pyi,sha256=HaRThXNsY5X5p6806KNhxKvJNrV-uFex6WDSFCrI8dA,1265
|
|
236
|
+
bpy/ops/mball/__init__.pyi,sha256=CCUAtQBcBMOrj_K9xJ583WNbGWJOnBQkoY49Ej5P_KE,5437
|
|
237
|
+
bpy/ops/mesh/__init__.pyi,sha256=tAX9J81DW2dKUr4OywYKbBBkJT5hN_33k1eIlU5Vt5I,156709
|
|
238
|
+
bpy/ops/nla/__init__.pyi,sha256=tZQX61sX0MKiaLh2T23fJVOCvorZH6NAT7ynETTpTsg,24322
|
|
239
|
+
bpy/ops/node/__init__.pyi,sha256=Ql22rBkzOdxN6MU95A2CWRlopa3Gnx3YB7H8ASDqvS4,63766
|
|
240
|
+
bpy/ops/object/__init__.pyi,sha256=cfKk8MP19n6ezWg3EoL9_mTLQHGb40K60uu4Zgk5Zwk,213865
|
|
241
|
+
bpy/ops/outliner/__init__.pyi,sha256=kiuNdqjz4FMbgUPBATodnVAqdwLLTrNiDpXLrTdqs1U,40104
|
|
242
|
+
bpy/ops/paint/__init__.pyi,sha256=B3kcPFPyGVH7qer2NGkFIaDpXUzsoLHzNmUWikU-lX4,44766
|
|
243
|
+
bpy/ops/paintcurve/__init__.pyi,sha256=nTvZuDAa6M-z4x2YRGFGP2a7_u-B-vLYswKvY8gkXAc,4314
|
|
244
|
+
bpy/ops/palette/__init__.pyi,sha256=KSi-alIGiSRBCsBTdhbCqlJAOKdtuQYIwKIPd6bJgh0,3265
|
|
245
|
+
bpy/ops/particle/__init__.pyi,sha256=3rzRH2ZSCcmUTwQKZm_gdAdQC9J3I0iu2qUuufmNcTY,19075
|
|
246
|
+
bpy/ops/pose/__init__.pyi,sha256=jQpUpWX0hX7AcaxeVIH8F46qTuuzBzeGcZl3M5Bc63A,36659
|
|
247
|
+
bpy/ops/poselib/__init__.pyi,sha256=MAspwQ_TFrM9Wc6nv2duukWZTieNjWLt1v10yViE0ZI,5298
|
|
248
|
+
bpy/ops/preferences/__init__.pyi,sha256=ZrLhQBjjg3qrTt3YCslcn35l7W8_kzPj1_wedZhvW3k,24777
|
|
249
|
+
bpy/ops/ptcache/__init__.pyi,sha256=BUXZV1AcrYRUcleXwgHsKknGfZcK_G0aSsym2CXDYJQ,2869
|
|
250
|
+
bpy/ops/render/__init__.pyi,sha256=8E4EoX_-rYDv56ibtFWOOTMcebmNhAoY_ND5cOgBS_E,9455
|
|
251
|
+
bpy/ops/rigidbody/__init__.pyi,sha256=mCw-CXpoWeC21AWl4qfWqFG-xNiT8BiQR5SIYbYXpqw,9049
|
|
252
|
+
bpy/ops/scene/__init__.pyi,sha256=LFpzHlrjUJHFSJM0toeY8c4S5PrUfZE3PnzGdsL9gVc,20725
|
|
253
|
+
bpy/ops/screen/__init__.pyi,sha256=Cv7gOhL68H8q4X5bS06qLbEZRV_FdSDxlXb8jYfJm4E,27497
|
|
254
|
+
bpy/ops/script/__init__.pyi,sha256=MP-ZoWZtY-r6qw448PnoNho9gOBvMhERzMNfTWmGamY,1538
|
|
255
|
+
bpy/ops/sculpt/__init__.pyi,sha256=smk8nwVnyGJHK6RFL1N48lGvItzawaxmBQsMIL3MzUI,50583
|
|
256
|
+
bpy/ops/sculpt_curves/__init__.pyi,sha256=YkGNNTIRvlwR29BytfR_0gFQrMumWwhen2wefyfuje4,3383
|
|
257
|
+
bpy/ops/sequencer/__init__.pyi,sha256=3zTOGlg4EoJPB1wPFZXrgtdikk0yw4oxR0ko1flYa1Y,85660
|
|
258
|
+
bpy/ops/sound/__init__.pyi,sha256=I2k7jfAgYMsD1uWEt2Kr6U8MpLyPmcz038x4X9KySQE,18112
|
|
259
|
+
bpy/ops/spreadsheet/__init__.pyi,sha256=BQwMDj0Kt7RK7yrELBl6n7HSMxxtbeL54LZTHzQqXVU,2076
|
|
260
|
+
bpy/ops/surface/__init__.pyi,sha256=4N1a_58EO_pJUu_Rsya9_r3CMlGiJjlGY8v1-j8gQTg,11313
|
|
261
|
+
bpy/ops/text/__init__.pyi,sha256=FfUyUlk2ygvVtDK7gt9zB1up-YohnuXaJPM05Z6aiqM,27605
|
|
262
|
+
bpy/ops/text_editor/__init__.pyi,sha256=2gRVfZuPredqHLoWzmm9v1mkGm9s3dg68tkrKAXsZLk,889
|
|
263
|
+
bpy/ops/texture/__init__.pyi,sha256=tBweXmp8p9Ar9Zz_4ytvwaNRZLY7L6_-_wf75u71n8Q,1783
|
|
264
|
+
bpy/ops/transform/__init__.pyi,sha256=8PFJVmJ1Hboq3AMoDxiS39g6O6nSmbfGc3OZ85dv7ZY,68554
|
|
265
|
+
bpy/ops/ui/__init__.pyi,sha256=y5LE2n9eRSeh0VmbjVuf2nJOBZx1ilzJlma2Vpvdnbw,16685
|
|
266
|
+
bpy/ops/uilist/__init__.pyi,sha256=0BvhwAIzY7Bb0bqQpLgk8dSdQerNyM3Z93td8dV2Cr0,2164
|
|
267
|
+
bpy/ops/uv/__init__.pyi,sha256=543eORkYP3ij1GKQUQ7KSupDHDWl6bXaFsGaNHojWqs,51595
|
|
268
|
+
bpy/ops/view2d/__init__.pyi,sha256=9CqJytMyrBUGmFOAdGHc8ZMxdlJvKysRb7XBDTh8B9I,9160
|
|
269
|
+
bpy/ops/view3d/__init__.pyi,sha256=XPvLDeewS-dwoxuydD9KyTq3pXq9KYZobLC5MxLiWIg,40986
|
|
270
|
+
bpy/ops/wm/__init__.pyi,sha256=UFO1JX8Ljg4zH3re1fmKYK7c50wucihFKQQhFwnsB44,228223
|
|
271
|
+
bpy/ops/workspace/__init__.pyi,sha256=ouILPZIQntnAJtoyo0MeMfD7p4MX6XX__5nxQuJaVbw,3191
|
|
272
|
+
bpy/ops/world/__init__.pyi,sha256=fNifYrJKsxpJb6jqQHCJTlf7iNR5fzV1saFRILtDZOE,1029
|
|
273
273
|
bpy/path/__init__.pyi,sha256=J_4vrRw_TTuMW4KHqSHZqYIKfDoCgG6Wv1PIFZx7__4,5612
|
|
274
274
|
bpy/props/__init__.pyi,sha256=5dF03F-bYYW-j5P9eDOgSJ07JYRVwMvjmMjBYjCrjS8,29631
|
|
275
|
-
bpy/types/__init__.pyi,sha256=
|
|
275
|
+
bpy/types/__init__.pyi,sha256=Ga0tHxMdci6t0qNaIg6VOE7f_S2jP4quQr-nGYrkciE,6309437
|
|
276
276
|
bpy/utils/__init__.pyi,sha256=fuZc6nInRbbso-qzaeNWGfipuB37ySvxZVrJcEJ-RxM,13280
|
|
277
277
|
bpy/utils/previews/__init__.pyi,sha256=0mvcirUV7D4ByWzEUIBVEEJ1VTFhBjBcstllI7L6MRc,2439
|
|
278
278
|
bpy/utils/units/__init__.pyi,sha256=2OtqF54xi6peGyNeSGkuaLpytf2EESF753zqooe8bwc,2719
|
|
@@ -307,7 +307,7 @@ freestyle/functions/__init__.pyi,sha256=d7SyUcF7r3MQV3OARbT6cCbENGSmDKT--mkUp5Js
|
|
|
307
307
|
freestyle/predicates/__init__.pyi,sha256=J1vOBMRPvlHuqiErZabCtSgPUz2kzi8Oh_cc_OIMlD8,13860
|
|
308
308
|
freestyle/shaders/__init__.pyi,sha256=_yBIN2vWTq70X_8_MfUe4TqiL1Iri4OYjvIkXRQxG5M,24828
|
|
309
309
|
freestyle/types/__init__.pyi,sha256=i_9VM68H7dzZCYbra4KASlfepVE0_m2Uy2R4vdVNtvY,101225
|
|
310
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
310
|
+
freestyle/utils/__init__.pyi,sha256=52aR3yvD_c87cbV95i5UNJ8_qgcDVL4XsduGYi8U0zM,5415
|
|
311
311
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=3zOixayiQsbvJ5xTNYLsaDGUka_q_u5-YQ68KywJWMg,3579
|
|
312
312
|
gpu/__init__.pyi,sha256=Sk-6v4PijACLtDfQx_DD7wTM7KUVZd_5xz1i6IqyiyM,7981
|
|
313
313
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -356,7 +356,7 @@ rna_xml/__init__.pyi,sha256=aUk0kaxu1bMT5z1b2S_CnI0r-p7119GGYDjeV65sx6w,670
|
|
|
356
356
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
357
357
|
sys_info/__init__.pyi,sha256=-GCmGVtiditgEnxiqi7hwH2wbEMmrtUNGvMEbxVezU4,189
|
|
358
358
|
sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
|
-
fake_bpy_module-
|
|
360
|
-
fake_bpy_module-
|
|
361
|
-
fake_bpy_module-
|
|
362
|
-
fake_bpy_module-
|
|
359
|
+
fake_bpy_module-20240813.dist-info/METADATA,sha256=sVlV9GpxRnZnSIcNDsYrCb2A_VMz58A-jkwTha6f5hw,7289
|
|
360
|
+
fake_bpy_module-20240813.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
|
|
361
|
+
fake_bpy_module-20240813.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
|
|
362
|
+
fake_bpy_module-20240813.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -161,7 +161,7 @@ def material_from_fedge(fe):
|
|
|
161
161
|
...
|
|
162
162
|
|
|
163
163
|
def normal_at_I0D(it): ...
|
|
164
|
-
def pairwise(iterable, types={
|
|
164
|
+
def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
|
|
165
165
|
"""Yields a tuple containing the previous and current object"""
|
|
166
166
|
|
|
167
167
|
...
|
|
File without changes
|
|
File without changes
|