fake-bpy-module 20250103__py3-none-any.whl → 20250108__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/node_add_menu_shader/__init__.pyi +0 -1
- bl_ui/properties_data_camera/__init__.pyi +0 -2
- bl_ui/space_node/__init__.pyi +0 -1
- bmesh/ops/__init__.pyi +1 -1
- bpy/__init__.pyi +0 -1
- bpy/_typing/__init__.pyi +4 -0
- bpy/{typing → _typing/rna_enums}/__init__.pyi +9 -9
- bpy/app/__init__.pyi +3 -3
- bpy/ops/action/__init__.pyi +13 -13
- bpy/ops/boid/__init__.pyi +3 -3
- bpy/ops/brush/__init__.pyi +3 -3
- bpy/ops/clip/__init__.pyi +3 -3
- bpy/ops/curve/__init__.pyi +5 -5
- bpy/ops/curves/__init__.pyi +9 -9
- bpy/ops/dpaint/__init__.pyi +3 -3
- bpy/ops/geometry/__init__.pyi +19 -19
- bpy/ops/graph/__init__.pyi +17 -17
- bpy/ops/grease_pencil/__init__.pyi +9 -27
- bpy/ops/image/__init__.pyi +9 -9
- bpy/ops/lattice/__init__.pyi +3 -3
- bpy/ops/mesh/__init__.pyi +54 -43
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/node/__init__.pyi +3 -3
- bpy/ops/object/__init__.pyi +69 -69
- bpy/ops/outliner/__init__.pyi +5 -5
- bpy/ops/paint/__init__.pyi +7 -7
- bpy/ops/pose/__init__.pyi +13 -13
- bpy/ops/rigidbody/__init__.pyi +9 -9
- bpy/ops/scene/__init__.pyi +10 -9
- bpy/ops/screen/__init__.pyi +7 -7
- bpy/ops/sequencer/__init__.pyi +3 -3
- bpy/ops/sound/__init__.pyi +3 -3
- bpy/ops/transform/__init__.pyi +87 -73
- bpy/ops/uv/__init__.pyi +3 -3
- bpy/ops/wm/__init__.pyi +18 -15
- bpy/props/__init__.pyi +61 -63
- bpy/types/__init__.pyi +31646 -31532
- bpy/utils/__init__.pyi +3 -10
- {fake_bpy_module-20250103.dist-info → fake_bpy_module-20250108.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250103.dist-info → fake_bpy_module-20250108.dist-info}/RECORD +44 -43
- {fake_bpy_module-20250103.dist-info → fake_bpy_module-20250108.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- gpu_extras/batch/__init__.pyi +3 -2
- {fake_bpy_module-20250103.dist-info → fake_bpy_module-20250108.dist-info}/top_level.txt +0 -0
bpy/ops/rigidbody/__init__.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.
|
|
4
|
+
import bpy._typing.rna_enums
|
|
5
5
|
|
|
6
6
|
def bake_to_keyframes(
|
|
7
7
|
execution_context: int | str | None = None,
|
|
@@ -100,14 +100,14 @@ def constraint_add(
|
|
|
100
100
|
undo: bool | None = None,
|
|
101
101
|
/,
|
|
102
102
|
*,
|
|
103
|
-
type: bpy.
|
|
103
|
+
type: bpy._typing.rna_enums.RigidbodyConstraintTypeItems | None = "FIXED",
|
|
104
104
|
):
|
|
105
105
|
"""Add Rigid Body Constraint to active object
|
|
106
106
|
|
|
107
107
|
:type execution_context: int | str | None
|
|
108
108
|
:type undo: bool | None
|
|
109
109
|
:param type: Rigid Body Constraint Type
|
|
110
|
-
:type type: bpy.
|
|
110
|
+
:type type: bpy._typing.rna_enums.RigidbodyConstraintTypeItems | None
|
|
111
111
|
"""
|
|
112
112
|
|
|
113
113
|
def constraint_remove(
|
|
@@ -142,14 +142,14 @@ def object_add(
|
|
|
142
142
|
undo: bool | None = None,
|
|
143
143
|
/,
|
|
144
144
|
*,
|
|
145
|
-
type: bpy.
|
|
145
|
+
type: bpy._typing.rna_enums.RigidbodyObjectTypeItems | None = "ACTIVE",
|
|
146
146
|
):
|
|
147
147
|
"""Add active object as Rigid Body
|
|
148
148
|
|
|
149
149
|
:type execution_context: int | str | None
|
|
150
150
|
:type undo: bool | None
|
|
151
151
|
:param type: Rigid Body Type
|
|
152
|
-
:type type: bpy.
|
|
152
|
+
:type type: bpy._typing.rna_enums.RigidbodyObjectTypeItems | None
|
|
153
153
|
"""
|
|
154
154
|
|
|
155
155
|
def object_remove(execution_context: int | str | None = None, undo: bool | None = None):
|
|
@@ -173,14 +173,14 @@ def objects_add(
|
|
|
173
173
|
undo: bool | None = None,
|
|
174
174
|
/,
|
|
175
175
|
*,
|
|
176
|
-
type: bpy.
|
|
176
|
+
type: bpy._typing.rna_enums.RigidbodyObjectTypeItems | None = "ACTIVE",
|
|
177
177
|
):
|
|
178
178
|
"""Add selected objects as Rigid Bodies
|
|
179
179
|
|
|
180
180
|
:type execution_context: int | str | None
|
|
181
181
|
:type undo: bool | None
|
|
182
182
|
:param type: Rigid Body Type
|
|
183
|
-
:type type: bpy.
|
|
183
|
+
:type type: bpy._typing.rna_enums.RigidbodyObjectTypeItems | None
|
|
184
184
|
"""
|
|
185
185
|
|
|
186
186
|
def objects_remove(
|
|
@@ -197,14 +197,14 @@ def shape_change(
|
|
|
197
197
|
undo: bool | None = None,
|
|
198
198
|
/,
|
|
199
199
|
*,
|
|
200
|
-
type: bpy.
|
|
200
|
+
type: bpy._typing.rna_enums.RigidbodyObjectShapeItems | None = "MESH",
|
|
201
201
|
):
|
|
202
202
|
"""Change collision shapes for selected Rigid Body Objects
|
|
203
203
|
|
|
204
204
|
:type execution_context: int | str | None
|
|
205
205
|
:type undo: bool | None
|
|
206
206
|
:param type: Rigid Body Shape
|
|
207
|
-
:type type: bpy.
|
|
207
|
+
:type type: bpy._typing.rna_enums.RigidbodyObjectShapeItems | None
|
|
208
208
|
"""
|
|
209
209
|
|
|
210
210
|
def world_add(execution_context: int | str | None = None, undo: bool | None = None):
|
bpy/ops/scene/__init__.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.
|
|
4
|
+
import bpy._typing.rna_enums
|
|
5
5
|
|
|
6
6
|
def delete(execution_context: int | str | None = None, undo: bool | None = None):
|
|
7
7
|
"""Delete active scene
|
|
@@ -33,14 +33,14 @@ def freestyle_alpha_modifier_add(
|
|
|
33
33
|
undo: bool | None = None,
|
|
34
34
|
/,
|
|
35
35
|
*,
|
|
36
|
-
type: bpy.
|
|
36
|
+
type: bpy._typing.rna_enums.LinestyleAlphaModifierTypeItems | None = "ALONG_STROKE",
|
|
37
37
|
):
|
|
38
38
|
"""Add an alpha transparency modifier to the line style associated with the active lineset
|
|
39
39
|
|
|
40
40
|
:type execution_context: int | str | None
|
|
41
41
|
:type undo: bool | None
|
|
42
42
|
:param type: Type
|
|
43
|
-
:type type: bpy.
|
|
43
|
+
:type type: bpy._typing.rna_enums.LinestyleAlphaModifierTypeItems | None
|
|
44
44
|
"""
|
|
45
45
|
|
|
46
46
|
def freestyle_color_modifier_add(
|
|
@@ -48,14 +48,14 @@ def freestyle_color_modifier_add(
|
|
|
48
48
|
undo: bool | None = None,
|
|
49
49
|
/,
|
|
50
50
|
*,
|
|
51
|
-
type: bpy.
|
|
51
|
+
type: bpy._typing.rna_enums.LinestyleColorModifierTypeItems | None = "ALONG_STROKE",
|
|
52
52
|
):
|
|
53
53
|
"""Add a line color modifier to the line style associated with the active lineset
|
|
54
54
|
|
|
55
55
|
:type execution_context: int | str | None
|
|
56
56
|
:type undo: bool | None
|
|
57
57
|
:param type: Type
|
|
58
|
-
:type type: bpy.
|
|
58
|
+
:type type: bpy._typing.rna_enums.LinestyleColorModifierTypeItems | None
|
|
59
59
|
"""
|
|
60
60
|
|
|
61
61
|
def freestyle_fill_range_by_selection(
|
|
@@ -90,14 +90,14 @@ def freestyle_geometry_modifier_add(
|
|
|
90
90
|
undo: bool | None = None,
|
|
91
91
|
/,
|
|
92
92
|
*,
|
|
93
|
-
type: bpy.
|
|
93
|
+
type: bpy._typing.rna_enums.LinestyleGeometryModifierTypeItems | None = "2D_OFFSET",
|
|
94
94
|
):
|
|
95
95
|
"""Add a stroke geometry modifier to the line style associated with the active lineset
|
|
96
96
|
|
|
97
97
|
:type execution_context: int | str | None
|
|
98
98
|
:type undo: bool | None
|
|
99
99
|
:param type: Type
|
|
100
|
-
:type type: bpy.
|
|
100
|
+
:type type: bpy._typing.rna_enums.LinestyleGeometryModifierTypeItems | None
|
|
101
101
|
"""
|
|
102
102
|
|
|
103
103
|
def freestyle_lineset_add(
|
|
@@ -258,14 +258,15 @@ def freestyle_thickness_modifier_add(
|
|
|
258
258
|
undo: bool | None = None,
|
|
259
259
|
/,
|
|
260
260
|
*,
|
|
261
|
-
type: bpy.
|
|
261
|
+
type: bpy._typing.rna_enums.LinestyleThicknessModifierTypeItems
|
|
262
|
+
| None = "ALONG_STROKE",
|
|
262
263
|
):
|
|
263
264
|
"""Add a line thickness modifier to the line style associated with the active lineset
|
|
264
265
|
|
|
265
266
|
:type execution_context: int | str | None
|
|
266
267
|
:type undo: bool | None
|
|
267
268
|
:param type: Type
|
|
268
|
-
:type type: bpy.
|
|
269
|
+
:type type: bpy._typing.rna_enums.LinestyleThicknessModifierTypeItems | None
|
|
269
270
|
"""
|
|
270
271
|
|
|
271
272
|
def gltf2_action_filter_refresh(
|
bpy/ops/screen/__init__.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.
|
|
4
|
+
import bpy._typing.rna_enums
|
|
5
5
|
|
|
6
6
|
def actionzone(
|
|
7
7
|
execution_context: int | str | None = None,
|
|
@@ -315,14 +315,14 @@ def region_toggle(
|
|
|
315
315
|
undo: bool | None = None,
|
|
316
316
|
/,
|
|
317
317
|
*,
|
|
318
|
-
region_type: bpy.
|
|
318
|
+
region_type: bpy._typing.rna_enums.RegionTypeItems | None = "WINDOW",
|
|
319
319
|
):
|
|
320
320
|
"""Hide or unhide the region
|
|
321
321
|
|
|
322
322
|
:type execution_context: int | str | None
|
|
323
323
|
:type undo: bool | None
|
|
324
324
|
:param region_type: Region Type, Type of the region to toggle
|
|
325
|
-
:type region_type: bpy.
|
|
325
|
+
:type region_type: bpy._typing.rna_enums.RegionTypeItems | None
|
|
326
326
|
"""
|
|
327
327
|
|
|
328
328
|
def repeat_history(
|
|
@@ -601,14 +601,14 @@ def space_type_set_or_cycle(
|
|
|
601
601
|
undo: bool | None = None,
|
|
602
602
|
/,
|
|
603
603
|
*,
|
|
604
|
-
space_type: bpy.
|
|
604
|
+
space_type: bpy._typing.rna_enums.SpaceTypeItems | None = "EMPTY",
|
|
605
605
|
):
|
|
606
606
|
"""Set the space type or cycle subtype
|
|
607
607
|
|
|
608
608
|
:type execution_context: int | str | None
|
|
609
609
|
:type undo: bool | None
|
|
610
610
|
:param space_type: Type
|
|
611
|
-
:type space_type: bpy.
|
|
611
|
+
:type space_type: bpy._typing.rna_enums.SpaceTypeItems | None
|
|
612
612
|
"""
|
|
613
613
|
|
|
614
614
|
def spacedata_cleanup(
|
|
@@ -625,14 +625,14 @@ def userpref_show(
|
|
|
625
625
|
undo: bool | None = None,
|
|
626
626
|
/,
|
|
627
627
|
*,
|
|
628
|
-
section: bpy.
|
|
628
|
+
section: bpy._typing.rna_enums.PreferenceSectionItems | None = "INTERFACE",
|
|
629
629
|
):
|
|
630
630
|
"""Edit user preferences and system settings
|
|
631
631
|
|
|
632
632
|
:type execution_context: int | str | None
|
|
633
633
|
:type undo: bool | None
|
|
634
634
|
:param section: Section to activate in the Preferences
|
|
635
|
-
:type section: bpy.
|
|
635
|
+
:type section: bpy._typing.rna_enums.PreferenceSectionItems | None
|
|
636
636
|
"""
|
|
637
637
|
|
|
638
638
|
def workspace_cycle(
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
+
import bpy._typing.rna_enums
|
|
4
5
|
import bpy.ops.transform
|
|
5
6
|
import bpy.types
|
|
6
|
-
import bpy.typing
|
|
7
7
|
import mathutils
|
|
8
8
|
|
|
9
9
|
def change_effect_input(
|
|
@@ -1951,14 +1951,14 @@ def strip_color_tag_set(
|
|
|
1951
1951
|
undo: bool | None = None,
|
|
1952
1952
|
/,
|
|
1953
1953
|
*,
|
|
1954
|
-
color: bpy.
|
|
1954
|
+
color: bpy._typing.rna_enums.StripColorItems | None = "NONE",
|
|
1955
1955
|
):
|
|
1956
1956
|
"""Set a color tag for the selected strips
|
|
1957
1957
|
|
|
1958
1958
|
:type execution_context: int | str | None
|
|
1959
1959
|
:type undo: bool | None
|
|
1960
1960
|
:param color: Color Tag
|
|
1961
|
-
:type color: bpy.
|
|
1961
|
+
:type color: bpy._typing.rna_enums.StripColorItems | None
|
|
1962
1962
|
"""
|
|
1963
1963
|
|
|
1964
1964
|
def strip_jump(
|
bpy/ops/sound/__init__.pyi
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.
|
|
4
|
+
import bpy._typing.rna_enums
|
|
5
5
|
|
|
6
6
|
def bake_animation(
|
|
7
7
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
@@ -462,7 +462,7 @@ def unpack(
|
|
|
462
462
|
undo: bool | None = None,
|
|
463
463
|
/,
|
|
464
464
|
*,
|
|
465
|
-
method: bpy.
|
|
465
|
+
method: bpy._typing.rna_enums.UnpackMethodItems | None = "USE_LOCAL",
|
|
466
466
|
id: str = "",
|
|
467
467
|
):
|
|
468
468
|
"""Unpack the sound to the samples filename
|
|
@@ -470,7 +470,7 @@ def unpack(
|
|
|
470
470
|
:type execution_context: int | str | None
|
|
471
471
|
:type undo: bool | None
|
|
472
472
|
:param method: Method, How to unpack
|
|
473
|
-
:type method: bpy.
|
|
473
|
+
:type method: bpy._typing.rna_enums.UnpackMethodItems | None
|
|
474
474
|
:param id: Sound Name, Sound data-block name to unpack
|
|
475
475
|
:type id: str
|
|
476
476
|
"""
|