fake-bpy-module 20240405__py3-none-any.whl → 20240406__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_operators/geometry_nodes/__init__.pyi +45 -45
- bl_operators/node/__init__.pyi +9 -9
- bl_ui/properties_data_curve/__init__.pyi +59 -59
- bl_ui/properties_data_mesh/__init__.pyi +96 -96
- bl_ui/properties_freestyle/__init__.pyi +10 -10
- bl_ui/properties_paint_common/__init__.pyi +205 -205
- bl_ui/properties_scene/__init__.pyi +12 -12
- bl_ui/properties_texture/__init__.pyi +12 -12
- bl_ui/space_image/__init__.pyi +893 -893
- bl_ui/space_view3d/__init__.pyi +1278 -1099
- bl_ui/space_view3d_toolbar/__init__.pyi +1201 -1201
- bpy/ops/curves/__init__.pyi +31 -0
- bpy/ops/export_scene/__init__.pyi +3 -3
- bpy/ops/nla/__init__.pyi +3 -3
- bpy/ops/sculpt/__init__.pyi +2 -2
- bpy/types/__init__.pyi +38252 -38221
- bpy/utils/previews/__init__.pyi +0 -45
- bpy_types/__init__.pyi +543 -543
- {fake_bpy_module-20240405.dist-info → fake_bpy_module-20240406.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240405.dist-info → fake_bpy_module-20240406.dist-info}/RECORD +22 -22
- {fake_bpy_module-20240405.dist-info → fake_bpy_module-20240406.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240405.dist-info → fake_bpy_module-20240406.dist-info}/top_level.txt +0 -0
bpy/ops/curves/__init__.pyi
CHANGED
|
@@ -382,6 +382,23 @@ def snap_curves_to_surface(
|
|
|
382
382
|
|
|
383
383
|
...
|
|
384
384
|
|
|
385
|
+
def subdivide(
|
|
386
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
387
|
+
execution_context: str = None,
|
|
388
|
+
undo: bool = None,
|
|
389
|
+
number_cuts: typing.Any = 1,
|
|
390
|
+
):
|
|
391
|
+
"""Subdivide selected curve segments
|
|
392
|
+
|
|
393
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
394
|
+
:type execution_context: str
|
|
395
|
+
:type undo: bool
|
|
396
|
+
:param number_cuts: Number of Cuts
|
|
397
|
+
:type number_cuts: typing.Any
|
|
398
|
+
"""
|
|
399
|
+
|
|
400
|
+
...
|
|
401
|
+
|
|
385
402
|
def surface_set(
|
|
386
403
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
387
404
|
execution_context: str = None,
|
|
@@ -396,6 +413,20 @@ def surface_set(
|
|
|
396
413
|
|
|
397
414
|
...
|
|
398
415
|
|
|
416
|
+
def switch_direction(
|
|
417
|
+
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
418
|
+
execution_context: str = None,
|
|
419
|
+
undo: bool = None,
|
|
420
|
+
):
|
|
421
|
+
"""Reverse the direction of the selected curves
|
|
422
|
+
|
|
423
|
+
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
424
|
+
:type execution_context: str
|
|
425
|
+
:type undo: bool
|
|
426
|
+
"""
|
|
427
|
+
|
|
428
|
+
...
|
|
429
|
+
|
|
399
430
|
def tilt_clear(
|
|
400
431
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
401
432
|
execution_context: str = None,
|
|
@@ -19,11 +19,11 @@ def fbx(
|
|
|
19
19
|
use_space_transform: typing.Union[bool, typing.Any] = True,
|
|
20
20
|
bake_space_transform: typing.Union[bool, typing.Any] = False,
|
|
21
21
|
object_types: typing.Any = {
|
|
22
|
-
'"
|
|
23
|
-
'"MESH"',
|
|
22
|
+
'"CAMERA"',
|
|
24
23
|
'"ARMATURE"',
|
|
25
24
|
'"EMPTY"',
|
|
26
|
-
'"
|
|
25
|
+
'"MESH"',
|
|
26
|
+
'"LIGHT"',
|
|
27
27
|
'"OTHER"',
|
|
28
28
|
},
|
|
29
29
|
use_mesh_modifiers: typing.Union[bool, typing.Any] = True,
|
bpy/ops/nla/__init__.pyi
CHANGED
|
@@ -100,11 +100,11 @@ def bake(
|
|
|
100
100
|
clean_curves: typing.Union[bool, typing.Any] = False,
|
|
101
101
|
bake_types: typing.Any = {'"POSE"'},
|
|
102
102
|
channel_types: typing.Any = {
|
|
103
|
-
'"ROTATION"',
|
|
104
|
-
'"PROPS"',
|
|
105
|
-
'"SCALE"',
|
|
106
103
|
'"LOCATION"',
|
|
104
|
+
'"SCALE"',
|
|
105
|
+
'"ROTATION"',
|
|
107
106
|
'"BBONE"',
|
|
107
|
+
'"PROPS"',
|
|
108
108
|
},
|
|
109
109
|
):
|
|
110
110
|
"""Bake all selected objects location/scale/rotation animation to an action
|
bpy/ops/sculpt/__init__.pyi
CHANGED
|
@@ -47,7 +47,7 @@ def cloth_filter(
|
|
|
47
47
|
bpy.types.OperatorStrokeElement
|
|
48
48
|
] = None,
|
|
49
49
|
type: typing.Any = "GRAVITY",
|
|
50
|
-
force_axis: typing.Any = {'"
|
|
50
|
+
force_axis: typing.Any = {'"X"', '"Z"', '"Y"'},
|
|
51
51
|
orientation: typing.Any = "LOCAL",
|
|
52
52
|
cloth_mass: typing.Any = 1.0,
|
|
53
53
|
cloth_damping: typing.Any = 0.0,
|
|
@@ -599,7 +599,7 @@ def mesh_filter(
|
|
|
599
599
|
bpy.types.OperatorStrokeElement
|
|
600
600
|
] = None,
|
|
601
601
|
type: typing.Any = "INFLATE",
|
|
602
|
-
deform_axis: typing.Any = {'"
|
|
602
|
+
deform_axis: typing.Any = {'"X"', '"Z"', '"Y"'},
|
|
603
603
|
orientation: typing.Any = "LOCAL",
|
|
604
604
|
surface_smooth_shape_preservation: typing.Any = 0.5,
|
|
605
605
|
surface_smooth_current_vertex: typing.Any = 0.5,
|