fake-bpy-module 20240927__py3-none-any.whl → 20240929__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/generic_ui_list/__init__.pyi +2 -2
- bl_ui/space_dopesheet/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +36 -0
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +144 -120
- 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 +220 -200
- 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 +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- 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 +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- 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 +68 -68
- 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 +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +449 -226
- bpy/typing/__init__.pyi +1 -0
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/mball/__init__.pyi
CHANGED
|
@@ -5,7 +5,7 @@ import bpy.ops.transform
|
|
|
5
5
|
import bpy.types
|
|
6
6
|
|
|
7
7
|
def delete_metaelems(
|
|
8
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
8
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
9
9
|
execution_context: int | str | None = None,
|
|
10
10
|
undo: bool | None = None,
|
|
11
11
|
*,
|
|
@@ -13,7 +13,7 @@ def delete_metaelems(
|
|
|
13
13
|
):
|
|
14
14
|
"""Delete selected metaball element(s)
|
|
15
15
|
|
|
16
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
16
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
17
17
|
:type execution_context: int | str | None
|
|
18
18
|
:type undo: bool | None
|
|
19
19
|
:param confirm: Confirm, Prompt for confirmation
|
|
@@ -21,19 +21,19 @@ def delete_metaelems(
|
|
|
21
21
|
"""
|
|
22
22
|
|
|
23
23
|
def duplicate_metaelems(
|
|
24
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
24
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
25
25
|
execution_context: int | str | None = None,
|
|
26
26
|
undo: bool | None = None,
|
|
27
27
|
):
|
|
28
28
|
"""Duplicate selected metaball element(s)
|
|
29
29
|
|
|
30
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
30
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
31
31
|
:type execution_context: int | str | None
|
|
32
32
|
:type undo: bool | None
|
|
33
33
|
"""
|
|
34
34
|
|
|
35
35
|
def duplicate_move(
|
|
36
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
36
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
37
37
|
execution_context: int | str | None = None,
|
|
38
38
|
undo: bool | None = None,
|
|
39
39
|
*,
|
|
@@ -42,7 +42,7 @@ def duplicate_move(
|
|
|
42
42
|
):
|
|
43
43
|
"""Make copies of the selected metaball elements and move them
|
|
44
44
|
|
|
45
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
45
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
46
46
|
:type execution_context: int | str | None
|
|
47
47
|
:type undo: bool | None
|
|
48
48
|
:param MBALL_OT_duplicate_metaelems: Duplicate Metaball Elements, Duplicate selected metaball element(s)
|
|
@@ -52,7 +52,7 @@ def duplicate_move(
|
|
|
52
52
|
"""
|
|
53
53
|
|
|
54
54
|
def hide_metaelems(
|
|
55
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
55
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
56
56
|
execution_context: int | str | None = None,
|
|
57
57
|
undo: bool | None = None,
|
|
58
58
|
*,
|
|
@@ -60,7 +60,7 @@ def hide_metaelems(
|
|
|
60
60
|
):
|
|
61
61
|
"""Hide (un)selected metaball element(s)
|
|
62
62
|
|
|
63
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
63
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
64
64
|
:type execution_context: int | str | None
|
|
65
65
|
:type undo: bool | None
|
|
66
66
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
@@ -68,7 +68,7 @@ def hide_metaelems(
|
|
|
68
68
|
"""
|
|
69
69
|
|
|
70
70
|
def reveal_metaelems(
|
|
71
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
71
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
72
72
|
execution_context: int | str | None = None,
|
|
73
73
|
undo: bool | None = None,
|
|
74
74
|
*,
|
|
@@ -76,7 +76,7 @@ def reveal_metaelems(
|
|
|
76
76
|
):
|
|
77
77
|
"""Reveal all hidden metaball elements
|
|
78
78
|
|
|
79
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
79
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
80
80
|
:type execution_context: int | str | None
|
|
81
81
|
:type undo: bool | None
|
|
82
82
|
:param select: Select
|
|
@@ -84,7 +84,7 @@ def reveal_metaelems(
|
|
|
84
84
|
"""
|
|
85
85
|
|
|
86
86
|
def select_all(
|
|
87
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
87
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
88
88
|
execution_context: int | str | None = None,
|
|
89
89
|
undo: bool | None = None,
|
|
90
90
|
*,
|
|
@@ -92,7 +92,7 @@ def select_all(
|
|
|
92
92
|
):
|
|
93
93
|
"""Change selection of all metaball elements
|
|
94
94
|
|
|
95
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
95
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
96
96
|
:type execution_context: int | str | None
|
|
97
97
|
:type undo: bool | None
|
|
98
98
|
:param action: Action, Selection action to execute
|
|
@@ -112,7 +112,7 @@ def select_all(
|
|
|
112
112
|
"""
|
|
113
113
|
|
|
114
114
|
def select_random_metaelems(
|
|
115
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
115
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
116
116
|
execution_context: int | str | None = None,
|
|
117
117
|
undo: bool | None = None,
|
|
118
118
|
*,
|
|
@@ -122,7 +122,7 @@ def select_random_metaelems(
|
|
|
122
122
|
):
|
|
123
123
|
"""Randomly select metaball elements
|
|
124
124
|
|
|
125
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
125
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
126
126
|
:type execution_context: int | str | None
|
|
127
127
|
:type undo: bool | None
|
|
128
128
|
:param ratio: Ratio, Portion of items to select randomly
|
|
@@ -140,7 +140,7 @@ def select_random_metaelems(
|
|
|
140
140
|
"""
|
|
141
141
|
|
|
142
142
|
def select_similar(
|
|
143
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
143
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
144
144
|
execution_context: int | str | None = None,
|
|
145
145
|
undo: bool | None = None,
|
|
146
146
|
*,
|
|
@@ -149,7 +149,7 @@ def select_similar(
|
|
|
149
149
|
):
|
|
150
150
|
"""Select similar metaballs by property types
|
|
151
151
|
|
|
152
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
152
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
153
153
|
:type execution_context: int | str | None
|
|
154
154
|
:type undo: bool | None
|
|
155
155
|
:param type: Type
|