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/mball/__init__.pyi
CHANGED
|
@@ -8,7 +8,7 @@ GenericType1 = typing.TypeVar("GenericType1")
|
|
|
8
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
9
9
|
|
|
10
10
|
def delete_metaelems(
|
|
11
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
11
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
12
12
|
execution_context: int | str | None = None,
|
|
13
13
|
undo: bool | None = None,
|
|
14
14
|
*,
|
|
@@ -16,7 +16,7 @@ def delete_metaelems(
|
|
|
16
16
|
):
|
|
17
17
|
"""Delete selected metaball element(s)
|
|
18
18
|
|
|
19
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
19
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
20
20
|
:type execution_context: int | str | None
|
|
21
21
|
:type undo: bool | None
|
|
22
22
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -26,13 +26,13 @@ def delete_metaelems(
|
|
|
26
26
|
...
|
|
27
27
|
|
|
28
28
|
def duplicate_metaelems(
|
|
29
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
29
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
30
30
|
execution_context: int | str | None = None,
|
|
31
31
|
undo: bool | None = None,
|
|
32
32
|
):
|
|
33
33
|
"""Duplicate selected metaball element(s)
|
|
34
34
|
|
|
35
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
35
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
36
36
|
:type execution_context: int | str | None
|
|
37
37
|
:type undo: bool | None
|
|
38
38
|
"""
|
|
@@ -40,7 +40,7 @@ def duplicate_metaelems(
|
|
|
40
40
|
...
|
|
41
41
|
|
|
42
42
|
def duplicate_move(
|
|
43
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
43
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
44
44
|
execution_context: int | str | None = None,
|
|
45
45
|
undo: bool | None = None,
|
|
46
46
|
*,
|
|
@@ -49,7 +49,7 @@ def duplicate_move(
|
|
|
49
49
|
):
|
|
50
50
|
"""Make copies of the selected metaball elements and move them
|
|
51
51
|
|
|
52
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
52
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
53
53
|
:type execution_context: int | str | None
|
|
54
54
|
:type undo: bool | None
|
|
55
55
|
:param MBALL_OT_duplicate_metaelems: Duplicate Metaball Elements, Duplicate selected metaball element(s)
|
|
@@ -61,7 +61,7 @@ def duplicate_move(
|
|
|
61
61
|
...
|
|
62
62
|
|
|
63
63
|
def hide_metaelems(
|
|
64
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
64
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
65
65
|
execution_context: int | str | None = None,
|
|
66
66
|
undo: bool | None = None,
|
|
67
67
|
*,
|
|
@@ -69,7 +69,7 @@ def hide_metaelems(
|
|
|
69
69
|
):
|
|
70
70
|
"""Hide (un)selected metaball element(s)
|
|
71
71
|
|
|
72
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
72
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
73
73
|
:type execution_context: int | str | None
|
|
74
74
|
:type undo: bool | None
|
|
75
75
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
@@ -79,7 +79,7 @@ def hide_metaelems(
|
|
|
79
79
|
...
|
|
80
80
|
|
|
81
81
|
def reveal_metaelems(
|
|
82
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
82
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
83
83
|
execution_context: int | str | None = None,
|
|
84
84
|
undo: bool | None = None,
|
|
85
85
|
*,
|
|
@@ -87,7 +87,7 @@ def reveal_metaelems(
|
|
|
87
87
|
):
|
|
88
88
|
"""Reveal all hidden metaball elements
|
|
89
89
|
|
|
90
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
90
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
91
91
|
:type execution_context: int | str | None
|
|
92
92
|
:type undo: bool | None
|
|
93
93
|
:param select: Select
|
|
@@ -97,7 +97,7 @@ def reveal_metaelems(
|
|
|
97
97
|
...
|
|
98
98
|
|
|
99
99
|
def select_all(
|
|
100
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
100
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
101
101
|
execution_context: int | str | None = None,
|
|
102
102
|
undo: bool | None = None,
|
|
103
103
|
*,
|
|
@@ -105,7 +105,7 @@ def select_all(
|
|
|
105
105
|
):
|
|
106
106
|
"""Change selection of all metaball elements
|
|
107
107
|
|
|
108
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
108
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
109
109
|
:type execution_context: int | str | None
|
|
110
110
|
:type undo: bool | None
|
|
111
111
|
:param action: Action, Selection action to execute
|
|
@@ -127,7 +127,7 @@ def select_all(
|
|
|
127
127
|
...
|
|
128
128
|
|
|
129
129
|
def select_random_metaelems(
|
|
130
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
130
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
131
131
|
execution_context: int | str | None = None,
|
|
132
132
|
undo: bool | None = None,
|
|
133
133
|
*,
|
|
@@ -137,7 +137,7 @@ def select_random_metaelems(
|
|
|
137
137
|
):
|
|
138
138
|
"""Randomly select metaball elements
|
|
139
139
|
|
|
140
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
140
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
141
141
|
:type execution_context: int | str | None
|
|
142
142
|
:type undo: bool | None
|
|
143
143
|
:param ratio: Ratio, Portion of items to select randomly
|
|
@@ -157,7 +157,7 @@ def select_random_metaelems(
|
|
|
157
157
|
...
|
|
158
158
|
|
|
159
159
|
def select_similar(
|
|
160
|
-
override_context: bpy.types.Context | dict[str, typing.Any]
|
|
160
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
161
161
|
execution_context: int | str | None = None,
|
|
162
162
|
undo: bool | None = None,
|
|
163
163
|
*,
|
|
@@ -166,7 +166,7 @@ def select_similar(
|
|
|
166
166
|
):
|
|
167
167
|
"""Select similar metaballs by property types
|
|
168
168
|
|
|
169
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
169
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
170
170
|
:type execution_context: int | str | None
|
|
171
171
|
:type undo: bool | None
|
|
172
172
|
:param type: Type
|