fake-bpy-module 20240828__py3-none-any.whl → 20240831__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.
- bpy/ops/anim/__init__.pyi +14 -0
- bpy/ops/wm/__init__.pyi +2 -43
- bpy/types/__init__.pyi +825 -44
- {fake_bpy_module-20240828.dist-info → fake_bpy_module-20240831.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240828.dist-info → fake_bpy_module-20240831.dist-info}/RECORD +8 -8
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240828.dist-info → fake_bpy_module-20240831.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240828.dist-info → fake_bpy_module-20240831.dist-info}/top_level.txt +0 -0
bpy/ops/anim/__init__.pyi
CHANGED
|
@@ -950,6 +950,20 @@ def scene_range_frame(
|
|
|
950
950
|
|
|
951
951
|
...
|
|
952
952
|
|
|
953
|
+
def slot_new_for_object(
|
|
954
|
+
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
955
|
+
execution_context: int | str | None = None,
|
|
956
|
+
undo: bool | None = None,
|
|
957
|
+
):
|
|
958
|
+
"""Create a new Slot for this object, on the Action already assigned to it
|
|
959
|
+
|
|
960
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
961
|
+
:type execution_context: int | str | None
|
|
962
|
+
:type undo: bool | None
|
|
963
|
+
"""
|
|
964
|
+
|
|
965
|
+
...
|
|
966
|
+
|
|
953
967
|
def slot_unassign_object(
|
|
954
968
|
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
955
969
|
execution_context: int | str | None = None,
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -4132,48 +4132,7 @@ def properties_edit(
|
|
|
4132
4132
|
step_float: float | None = 0.1,
|
|
4133
4133
|
subtype: str | None = "",
|
|
4134
4134
|
default_string: str = "",
|
|
4135
|
-
id_type: typing.Literal[
|
|
4136
|
-
"ACTION",
|
|
4137
|
-
"ARMATURE",
|
|
4138
|
-
"BRUSH",
|
|
4139
|
-
"CACHEFILE",
|
|
4140
|
-
"CAMERA",
|
|
4141
|
-
"COLLECTION",
|
|
4142
|
-
"CURVE",
|
|
4143
|
-
"CURVES",
|
|
4144
|
-
"FONT",
|
|
4145
|
-
"GREASEPENCIL",
|
|
4146
|
-
"GREASEPENCIL_V3",
|
|
4147
|
-
"IMAGE",
|
|
4148
|
-
"KEY",
|
|
4149
|
-
"LATTICE",
|
|
4150
|
-
"LIBRARY",
|
|
4151
|
-
"LIGHT",
|
|
4152
|
-
"LIGHT_PROBE",
|
|
4153
|
-
"LINESTYLE",
|
|
4154
|
-
"MASK",
|
|
4155
|
-
"MATERIAL",
|
|
4156
|
-
"MESH",
|
|
4157
|
-
"META",
|
|
4158
|
-
"MOVIECLIP",
|
|
4159
|
-
"NODETREE",
|
|
4160
|
-
"OBJECT",
|
|
4161
|
-
"PAINTCURVE",
|
|
4162
|
-
"PALETTE",
|
|
4163
|
-
"PARTICLE",
|
|
4164
|
-
"POINTCLOUD",
|
|
4165
|
-
"SCENE",
|
|
4166
|
-
"SCREEN",
|
|
4167
|
-
"SOUND",
|
|
4168
|
-
"SPEAKER",
|
|
4169
|
-
"TEXT",
|
|
4170
|
-
"TEXTURE",
|
|
4171
|
-
"VOLUME",
|
|
4172
|
-
"WINDOWMANAGER",
|
|
4173
|
-
"WORKSPACE",
|
|
4174
|
-
"WORLD",
|
|
4175
|
-
]
|
|
4176
|
-
| None = "OBJECT",
|
|
4135
|
+
id_type: typing.Literal["OBJECT"] | None = "OBJECT",
|
|
4177
4136
|
eval_string: str = "",
|
|
4178
4137
|
):
|
|
4179
4138
|
"""Change a custom property's type, or adjust how it is displayed in the interface
|
|
@@ -4255,7 +4214,7 @@ def properties_edit(
|
|
|
4255
4214
|
:param default_string: Default Value
|
|
4256
4215
|
:type default_string: str
|
|
4257
4216
|
:param id_type: ID Type
|
|
4258
|
-
:type id_type: typing.Literal['
|
|
4217
|
+
:type id_type: typing.Literal['OBJECT'] | None
|
|
4259
4218
|
:param eval_string: Value, Python value for unsupported custom property types
|
|
4260
4219
|
:type eval_string: str
|
|
4261
4220
|
"""
|